Skip to content

Commit

Permalink
Updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
0xTas committed Nov 3, 2022
1 parent c90b391 commit 91a9ec1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ let filename = String::from("obfuscated.bat");
obfuscator.write_obfuscated_script(Some(filename));

// You could also print to stdout if necessary, though it can be spammy and copy/pasting might be unreliable:
println!("{:#?}", obfuscator.obfuscated_code);
println!("{:?}", obfuscator.obfuscated_code);
```
<br><br>
**Deobfuscation:**<br>
Expand All @@ -94,7 +94,7 @@ deobfuscator.initialize(source);
deobfuscator.write_deobfuscated_script(None); // Using "None" causes the method to use a default filename: "deobfuscated.bat".

// Or alternatively, to stdout:
println!("{:#?}", deobfuscator.cleaned_code);
println!("{:?}", deobfuscator.cleaned_code);
```

---
Expand Down

0 comments on commit 91a9ec1

Please sign in to comment.