Skip to content

Commit

Permalink
Added GitHub Pages Code
Browse files Browse the repository at this point in the history
  • Loading branch information
DefinetlyNotAI committed Jun 18, 2024
1 parent 70d5a1a commit 16d27b8
Show file tree
Hide file tree
Showing 20 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion CODE/Backup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import shutil
from datetime import datetime
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


def filter_zip_files(names):
Expand Down
2 changes: 1 addition & 1 deletion CODE/CMD_Disabled_Bypass.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pyautogui
import time
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


def press_win_r():
Expand Down
2 changes: 1 addition & 1 deletion CODE/Copy_Media.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *
import shutil


Expand Down
2 changes: 1 addition & 1 deletion CODE/Crash_Reporter.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import tkinter as tk
from tkinter import messagebox
from CODE.local_libraries.Lists_and_variables import *
from local_libraries.Lists_and_variables import *
from datetime import datetime

time = datetime.now().strftime('%Y-%m-%d_at_time_%H-%M-%S')
Expand Down
2 changes: 1 addition & 1 deletion CODE/Debugger.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pathlib import Path
import requests
from datetime import datetime
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *

time = datetime.now().strftime('%Y-%m-%d')

Expand Down
2 changes: 1 addition & 1 deletion CODE/Error_Gen.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import re
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


def validate_error_id(error_id):
Expand Down
2 changes: 1 addition & 1 deletion CODE/Extra_Menu.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


def print_colored(text, color):
Expand Down
2 changes: 1 addition & 1 deletion CODE/GUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from tkinter import messagebox
import subprocess # Import the subprocess module
import mss
from CODE.local_libraries.Lists_and_variables import *
from local_libraries.Lists_and_variables import *

with mss.mss() as sct:
monitors = sct.monitors
Expand Down
2 changes: 1 addition & 1 deletion CODE/Hash.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import hashlib
from pathlib import Path
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


def hash_zip():
Expand Down
2 changes: 1 addition & 1 deletion CODE/IP_Scanner.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import time
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


def run_command_with_timeout(command, timeout=10):
Expand Down
4 changes: 2 additions & 2 deletions CODE/Logicytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import random
import shutil
import argparse
from CODE.local_libraries.Lists_and_variables import * # Import the list of flag names and any flag related dictionary.
from CODE.local_libraries.Setups import *
from local_libraries.Lists_and_variables import * # Import the list of flag names and any flag related dictionary.
from local_libraries.Setups import *
from datetime import datetime


Expand Down
2 changes: 1 addition & 1 deletion CODE/Restore.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import zipfile
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


def unzip_backup():
Expand Down
2 changes: 1 addition & 1 deletion CODE/SSH_Key_Logger.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import getpass
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


def copy_ssh_files_to_txt():
Expand Down
2 changes: 1 addition & 1 deletion CODE/Simple_Password_Miner.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import winreg
import shutil
from contextlib import closing
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


def copy_file(src_path, dest_dir):
Expand Down
2 changes: 1 addition & 1 deletion CODE/Sys_Tools.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pathlib import Path
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


def run_command(command, shell=False, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion CODE/System_Info_Grabber.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import socket
import uuid
import wmi
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


def extract_version_number(output):
Expand Down
2 changes: 1 addition & 1 deletion CODE/UACPY.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


def get_uac_setting():
Expand Down
2 changes: 1 addition & 1 deletion CODE/Unzip_Extra.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import zipfile
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


def unzip_extra():
Expand Down
2 changes: 1 addition & 1 deletion CODE/Update.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pathlib import Path
import requests
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *


# Function to read the version number from a file
Expand Down
2 changes: 1 addition & 1 deletion CODE/Zipper.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import getpass
import shutil
import zipfile
from CODE.local_libraries.Setups import *
from local_libraries.Setups import *

USER_NAME = getpass.getuser()
DESTINATION_PREFIX = "DATA\\" + USER_NAME
Expand Down

0 comments on commit 16d27b8

Please sign in to comment.