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 1, 2022
1 parent eb52abb commit 82e2acf
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,21 +106,27 @@ A simple CLI tool is provided as an abstraction over the API for your convenienc

**Windows:**<br>
```powershell
# To obfuscate a source command from stdin (with -e to disable command echoing):
.\0xidiz3r.exe "start C:/Windows/System32/calc.exe" -e
# To obfuscate a source file with the default configuration:
.\0xidiz3r.exe input.bat
# To obfuscate a source file, adding "@echo off" and writing to a custom output file:
.\0xidiz3r.exe -e -o output.bat input.bat
.\0xidiz3r.exe input.bat -e -o output.bat
```
<br>

**Linux/MacOS:**<br>
```bash
# To obfuscate a source command from stdin (with -e to disable command echoing):
./0xidiz3r "start C:/Windows/System32/calc.exe" -e

# To obfuscate a source file with the default configuration:
./0xidiz3r input.bat

# To obfuscate a source file, adding "@echo off" and writing to a custom output file:
./0xidiz3r -e -o output.bat input.bat
./0xidiz3r input.bat -e -o output.bat
```

---
Expand Down

0 comments on commit 82e2acf

Please sign in to comment.