Skip to content

Commit

Permalink
fix somalifuscator for people using cmd :puke:
Browse files Browse the repository at this point in the history
  • Loading branch information
Fudfather committed Nov 5, 2023
1 parent af8f5e0 commit 3558719
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def main(self):
super_obf = all_.super_obf
if any([args.file]):
current_time = time.time()
Obfuscator(args.file, double_click_check=False, utf_16_bom=False)
Obfuscator(args.file, double_click_check=False, utf_16_bom=True)
finish_time = time.time()
print(f"It only took {finish_time - current_time} to finish!")
return
Expand Down
2 changes: 1 addition & 1 deletion src/util/supporting/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
f.write(
"""{
"chinese": false,
"bloat": false,
"bloat": true,
"remove_blank_lines": true,
"super_obf": false,
"double_click_check": false,
Expand Down

0 comments on commit 3558719

Please sign in to comment.