This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_KillSwitch/payload.py

58 lines
1.4 KiB
Python
Raw Normal View History

2023-01-31 13:27:10 +00:00
# Project: Telegram PC kill switch bot
# Author: Stanislav Mykhailenko
# License: Unlicense
# This file contains the payloads
2023-02-01 17:38:20 +00:00
from googledrive import *
from config import *
import ctypes, os, pyttsx3, shutil
2023-01-31 13:27:10 +00:00
def enableInput():
ctypes.windll.user32.BlockInput(False)
def disableInput():
ctypes.windll.user32.BlockInput(True)
def lockScreen():
ctypes.windll.user32.LockWorkStation()
def formatVolumes(volumes):
for volume in volumes:
os.system('format ' + volume + ' /y')
def playMessage(message):
engine = pyttsx3.init()
engine.say(message)
engine.runAndWait()
2023-02-01 17:38:20 +00:00
def listData(path):
try:
return os.listdir(path)
except NotADirectoryError:
return "Is a file."
except FileNotFoundError:
return "File or directory not found."
except:
return "An error occurred when trying to access the data."
def uploadFolder(path, parentDirectory):
directory = createFolder(os.path.basename(os.path.normpath(path)), parentDirectory)
entries = os.listdir(path)
for entry in entries:
if os.path.isdir(os.path.join(path, entry)):
uploadFolder(os.path.join(path, entry), directory)
else:
uploadFile(os.path.join(path, entry), directory)
def uploadData(path):
if not os.path.exists(path):
return False
if os.path.isdir(path):
uploadFolder(path, root_folder)
else:
uploadFile(path, root_folder)
def deleteData(path):
shutil.rmtree(path, ignore_errors=True)