PiRepo.sh 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #!/bin/bash
  2. sudo su
  3. cd /home/pi
  4. echo "Updating Your System"
  5. apt-get update -y && apt-get upgrade -y
  6. apt update -y && apt upgrade -y
  7. apt autoremove -y
  8. echo "Removing Unneeded Directories"
  9. rm -rf Videos/
  10. rm -rf Music/
  11. rm -rf Public/
  12. rm -rf Templates/
  13. echo "Creating Repo Folders"
  14. mkdir Repo
  15. cd Repo
  16. mkdir Initial_Access
  17. mkdir Recon
  18. mkdir Delivery
  19. mkdir Situational_Awareness
  20. mkdir Credential_Dumping
  21. mkdir Privilege_Escallation
  22. mkidr Defense_Evasion
  23. mkdir Persistence
  24. mkdir Lateral_Movement
  25. mkdir Exfiltration
  26. mkdir Miscellaneous
  27. mkdir Payload_Development
  28. mkdir Hak5_Implants
  29. echo "Getting Resources"
  30. sleep 2
  31. echo "Cloning Recon Resources"
  32. cd Recon
  33. git clone https://github.com/RustScan/RustScan.git
  34. git clone https://github.com/OWASP/Amass.git
  35. git clone https://github.com/zricethezav/gitleaks.git
  36. git clone https://github.com/sa7mon/S3Scanner.git
  37. git clone https://github.com/initstring/cloud_enum.git
  38. git clone https://github.com/lanmaster53/recon-ng.git
  39. git clone https://github.com/sham00n/buster.git
  40. git clone https://github.com/initstring/linkedin2username.git
  41. git clone https://github.com/byt3bl33d3r/WitnessMe/git
  42. git clone https://github.com/opsdisk/pagodo.git
  43. git clone https://github.com/superhedgy/AttackSurfaceMapper.git
  44. git clone https://github.com/smicallef/spiderfoot.git
  45. git clone https://github.com/rbsec/dnscan.git
  46. git clone https://github.com/BishopFox/spoofcheck.git
  47. git clone https://github.com/vysecurity/LinkedInt.git
  48. echo "Cloning Initial Access Resources"
  49. cd ../Initial_Access
  50. git clone https://github.com/byt3bl33d3r/SprayingToolkit.git
  51. git clone https://github.com/nyxgeek/o365recon.git
  52. git clone https://github.com/blacklanternsecurity/TREVORspray.git
  53. echo "Cloning Payload Development Resources"
  54. cd ../Payload_Development
  55. git clone https://github.com/optiv/Ivy.git
  56. git clone https://github.com/phra/PEzor.git
  57. git clone https://github.com/med0x2e/GadgetToJScript.git
  58. git clone https://github.com/optiv/ScareCrow.git
  59. git clone https://github.com/TheWover/donut.git
  60. git clone https://github.com/D00MFist/Mystikal.git
  61. git clone https://github.com/9emin1/charlotte.git
  62. git clone https://github.com/xforcered/InvisibilityCloak.git