├── Readme.md ├── bin ├── colors.php ├── header.php └── img │ ├── code.png │ ├── script.png │ └── wtfpl.png ├── blindShell.php ├── in └── example.sh └── obfuscate.php /Readme.md: -------------------------------------------------------------------------------- 1 | # Please Read This Before Using it 2 | I made this tool when i was 16 years old, i wasn't that good at obfuscation by the time 3 | so do not use this tool to obfuscate sensitive information because its easy to crack. 4 | And you can of course use it to get a simple understanding for how obfuscation work, maybe in the future if i had free time I'll make a new , better and more complicated version 5 | Blind bash is open source project
6 | You can use this project to obfuscate your bash code
7 | The obfuscation is the best way to hide important things in your code
8 |
So this obfuscation not 100% secure , don't let important things in your bash code just use this obfuscation for joking.
9 | # For What? 10 | 1.The goal of this project is to make code hard to read by people with limited knowledge in Bash 11 |
2.For everyone who love Coding & BASH 12 | # Operating system 13 | [+] Linux 14 | # Screen Shots 15 | 16 | 17 |

License

18 | 19 | 20 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 21 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 22 | You just DO WHAT THE FUCK YOU WANT TO. 23 | -------------------------------------------------------------------------------- /bin/colors.php: -------------------------------------------------------------------------------- 1 | 25 | -------------------------------------------------------------------------------- /bin/header.php: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /bin/img/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rizer0/Blind-Bash/27fcddec5184f39e6b050eb923c6ef2794578509/bin/img/code.png -------------------------------------------------------------------------------- /bin/img/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rizer0/Blind-Bash/27fcddec5184f39e6b050eb923c6ef2794578509/bin/img/script.png -------------------------------------------------------------------------------- /bin/img/wtfpl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rizer0/Blind-Bash/27fcddec5184f39e6b050eb923c6ef2794578509/bin/img/wtfpl.png -------------------------------------------------------------------------------- /blindShell.php: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /in/example.sh: -------------------------------------------------------------------------------- 1 | echo "Hello World !" -------------------------------------------------------------------------------- /obfuscate.php: -------------------------------------------------------------------------------- 1 | $out"); 35 | $path = shell_exec("pwd");$path=trim($path); 36 | $path = $path."/"; 37 | echo $blue."\n[+] Obfuscated Done$red File$blue Saved as => $red$path$out\n"; 38 | echo $yellow."[!] Bye Bye\n\n$nbold"; 39 | //close the file 40 | fclose($fh); 41 | } 42 | ?> 43 | --------------------------------------------------------------------------------