Justman10000

Manage Bashfuscator

Jul 10th, 2023
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.83 KB | None | 0 0
  1. // To install
  2. # You need Python: https://pastebin.com/7GJYFSQm
  3. mkdir /home/Bashfuscator
  4. cd /home/Bashfuscator
  5. git init
  6. git remote add origin https://github.com/Bashfuscator/Bashfuscator
  7. git pull origin master
  8. rm -r .* *.md *.yml LICENSE
  9. touch README.md
  10. python3 setup.py install
  11.  
  12. # Obfuscate
  13. # Append `--choose-mutators <mutator>` at the end of both commands, to select a mutator
  14. # Append `-o file.sh` at the end of both commands to pass the result to a bash file
  15. ## Obfuscate a command
  16. bashfuscator -c "<command>"
  17.  
  18. ## Obfuscate a bash file
  19. bashfuscator -f script.sh
  20.  
  21.  
  22. # Avaible mutators:
  23. ## command/case_swapper
  24. ## command/reverse
  25. ## compress/bzip2
  26. ## compress/gzip
  27. ## encode/base64
  28. ## encode/urlencode
  29. ## string/file_glob
  30. ## string/folder_glob
  31.  
  32. // To uninstall
  33. pip uninstall bashfuscator
  34. rm -r /home/Bashfuscator
Add Comment
Please, Sign In to add comment