PiRepo.sh 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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 Command_And_Control
  20. mkdir Situational_Awareness
  21. mkdir Credential_Dumping
  22. mkdir Privilege_Escallation
  23. mkidr Defense_Evasion
  24. mkdir Persistence
  25. mkdir Lateral_Movement
  26. mkdir Exfiltration
  27. mkdir Miscellaneous
  28. mkdir Payload_Development
  29. mkdir Hak5_Implants
  30. echo "Getting Resources"
  31. sleep 2
  32. echo "Cloning Recon Resources"
  33. cd Recon
  34. git clone https://github.com/RustScan/RustScan.git
  35. git clone https://github.com/OWASP/Amass.git
  36. git clone https://github.com/zricethezav/gitleaks.git
  37. git clone https://github.com/sa7mon/S3Scanner.git
  38. git clone https://github.com/initstring/cloud_enum.git
  39. git clone https://github.com/lanmaster53/recon-ng.git
  40. git clone https://github.com/sham00n/buster.git
  41. git clone https://github.com/initstring/linkedin2username.git
  42. git clone https://github.com/byt3bl33d3r/WitnessMe/git
  43. git clone https://github.com/opsdisk/pagodo.git
  44. git clone https://github.com/superhedgy/AttackSurfaceMapper.git
  45. git clone https://github.com/smicallef/spiderfoot.git
  46. git clone https://github.com/rbsec/dnscan.git
  47. git clone https://github.com/BishopFox/spoofcheck.git
  48. git clone https://github.com/vysecurity/LinkedInt.git
  49. echo "Cloning Initial Access Resources"
  50. cd ../Initial_Access
  51. git clone https://github.com/byt3bl33d3r/SprayingToolkit.git
  52. git clone https://github.com/nyxgeek/o365recon.git
  53. git clone https://github.com/blacklanternsecurity/TREVORspray.git
  54. echo "Cloning Payload Development Resources"
  55. cd ../Payload_Development
  56. git clone https://github.com/optiv/Ivy.git
  57. git clone https://github.com/phra/PEzor.git
  58. git clone https://github.com/med0x2e/GadgetToJScript.git
  59. git clone https://github.com/optiv/ScareCrow.git
  60. git clone https://github.com/TheWover/donut.git
  61. git clone https://github.com/D00MFist/Mystikal.git
  62. git clone https://github.com/9emin1/charlotte.git
  63. git clone https://github.com/xforcered/InvisibilityCloak.git
  64. git clone https://github.com/FuzzySecurity/Dendrobate.git
  65. git clone https://github.com/BC-SECURITY/Offensive-VBA-and-XLS-Entanglement.git
  66. git clone https://github.com/aaaddress1/xlsGen.git
  67. git clone https://github.com/bats3c/darkarmour.git
  68. git clone https://github.com/outflanknl/InlineWhispers.git
  69. git clone https://github.com/outflanknl/EvilClippy.git
  70. git clone https://github.com/fireeye/OfficePurge.git
  71. git clone https://github.com/rasta-mouse/ThreatCheck.git
  72. git clone https://github.com/gloxec/CrossC2.git
  73. git clone https://github.com/sensepost/ruler.git
  74. git clone https://github.com/fireeye/DueDLLigence.git
  75. git clone https://github.com/rasta-mouse/RuralBishop.git
  76. git clone https://github.com/rasta-mouse/TikiTorch.git
  77. git clone https://github.com/mdsecactivebreach/SharpShooter.git
  78. git clone https://github.com/cobbr/SharpSploit.git
  79. git clone https://github.com/rvrsh3ll/MSBuildAPICaller.git
  80. git clone https://github.com/sevagas/macro_pack.git
  81. git clone https://github.com/klezVirus/inceptor.git
  82. git clone https://github.com/0xsp-SRD/mortar.git
  83. echo "Cloning Delivery Resources"
  84. cd ../Delivery
  85. git clone https://github.com/mdsecactivebreach/o365-attack-toolkit.git
  86. git clone https://github.com/kgretzky/evilginx2.git
  87. git clone https://github.com/gophish/gophish.git
  88. git clone https://github.com/fireeye/PwnAuth.git
  89. git clone https://github.com/drk1wi/Modlishka.git
  90. git clone https://github.com/beefproject/beef.git
  91. echo "Cloning Your C2 Resources"
  92. cd ../Command_And_Control
  93. echo "Cloning C2 Frameworks"
  94. mkdir C2_Frameworks
  95. cd C2_Frameworks
  96. git clone https://github.com/BC-SECURITY/Empire.git
  97. git clone https://github.com/nettitude/PoshC2.git
  98. git clone https://github.com/zerosum0x0/koadic.git
  99. git clone https://github.com/Ne0nd0g/merlin.git
  100. git clone https://github.com/its-a-feature/Mythic.git
  101. git clone https://github.com/cobbr/Covenant.git
  102. git clone https://github.com/bats3c/shad0w.git
  103. git clone https://github.com/BishopFox/sliver.git
  104. git clone https://github.com/byt3bl33d3r/SILENTTRINITY.git
  105. git clone https://github.com/n1nj4sec/pupy.git
  106. echo "Cloning Staging Resources"
  107. cd ../
  108. mkdir Staging
  109. cd Staging
  110. git clone https://github.com/kgretzky/pwndrop.git
  111. git clone https://github.com/FortyNorthSecurity/C2concealer.git
  112. git clone https://github.com/rvrsh3ll/FindFrontableDomains.git
  113. git clone https://github.com/threatexpress/domainhunter.git
  114. git clone https://github.com/mgeeky/RedWarden.git
  115. git clone https://github.com/Flangvik/AzureC2Relay.git
  116. git clone https://github.com/FSecureLABS/C3.git
  117. git clone https://github.com/mdsecactivebreach/Chameleon.git
  118. git clone https://github.com/0xZDH/redirect.rules.git
  119. echo "Cloning Log Aggregation Resources"
  120. cd ../
  121. mkdir Log_Aggregation
  122. cd Log_Aggregation
  123. git clone https://github.com/outflanknl/RedELK.git
  124. git clone https://github.com/SecurityRiskAdvisors/RedTeamSIEM.git
  125. echo "Cloning Situational Awareness Resources"
  126. cd /Repo/Situational_Awareness
  127. mkdir Host_Situtational_Awareness
  128. cd Host_Situational_Awareness
  129. git clone https://github.com/EncodeGroup/AggressiveProxy.git
  130. git clone https://github.com/EncodeGroup/Gopher.git
  131. git clone https://github.com/PwnDexter/SharpEDRChecker.git
  132. git clone https://github.com/trustedsec/CS-Situational-Awareness-BOF.git
  133. git clone https://github.com/GhostPack/Seatbelt.git
  134. git clone https://github.com/vivami/SauronEye.git
  135. git clone https://github.com/mitchmoser/SharpShares.git
  136. git clone https://github.com/Flangvik/SharpAppLocker/.git
  137. git clone https://github.com/rvrsh3ll/SharpPrinter.git
  138. cd ../Domain_Situational_Awareness
  139. git clone https://github.com/FuzzySecurity/StandIn.git
  140. git clone https://github.com/outflanknl/Recon-AD.git
  141. git clone https://github.com/BloodHoundAD/BloodHound.git
  142. git clone https://github.com/GhostPack/PSPKIAudit.git
  143. git clone https://github.com/tevora-threat/SharpView.git
  144. git clone https://github.com/GhostPack/Rubeus.git
  145. git clone https://github.com/l0ss/Grouper.git
  146. git clone https://github.com/improsec/ImproHound.git
  147. git clone https://github.com/adrecon/ADRecon.git
  148. git clone https://github.com/bats3c/ADCSPwn.git
  149. cd /Repo/Credential_Dumping/
  150. git clone https://github.com/gentilkiwi/mimikatz.git
  151. git clone https://github.com/outflanknl/Dumpert.git
  152. git clone https://github.com/xforcered/CredBandit.git
  153. git clone https://github.com/xforcered/CredBandit.git
  154. git clone https://github.com/swisskyrepo/SharpLAPS.git
  155. git clone https://github.com/GhostPack/SharpDPAPI.git
  156. git clone https://github.com/GhostPack/KeeThief.git
  157. git clone https://github.com/GhostPack/SafetyKatz.git
  158. git clone https://github.com/Barbarisch/forkatz.git
  159. git clone https://github.com/RedCursorSecurityConsulting/PPLKiller.git
  160. git clone https://github.com/AlessandroZ/LaZagne.git
  161. git clone https://github.com/hoangprod/AndrewSpecial.git
  162. git clone https://github.com/outflanknl/Net-GPPPassword.git
  163. git clone https://github.com/djhohnstein/SharpChromium.git
  164. git clone https://github.com/rxwx/chlonium.git
  165. git clone https://github.com/chrismaddalena/SharpCloud.git
  166. git clone https://github.com/skelsec/pypykatz.git
  167. git clone https://github.com/helpsystems/nanodump.git
  168. echo "Cloning Privilege Escallation Resources"
  169. cd /Repo/Privilege_Escallation
  170. git clone https://github.com/rsmudge/ElevateKit.git
  171. git clone https://github.com/rasta-mouse/Watson.git
  172. git clone https://github.com/GhostPack/SharpUp.git
  173. git clone https://github.com/hlldz/dazzleUP.git
  174. git clone https://github.com/carlospolop/PEASS-ng.git
  175. git clone https://github.com/CCob/SweetPotato.git
  176. git clone https://github.com/S3cur3Th1sSh1t/MultiPotato.git
  177. cd /Repo/Defense_Evasion
  178. git clone https://github.com/hlldz/RefleXXion.git
  179. git clone https://github.com/wavestone-cdt/EDRSandblast.git
  180. git clone https://github.com/APTortellini/unDefender.git
  181. git clone https://github.com/Yaxser/Backstab.git
  182. git clone https://github.com/boku7/spawn.git
  183. git clone https://github.com/CCob/BOF.NET.git
  184. git clone https://github.com/Flangvik/NetLoader.git
  185. git clone https://github.com/outflanknl/FindObjects-BOF.git
  186. git clone https://github.com/GetRektBoy724/SharpUnhooker.git
  187. git clone https://github.com/bats3c/EvtMute.git
  188. git clone https://github.com/xforcered/InlineExecute-Assembly.git
  189. git clone https://github.com/hlldz/Phant0m.git
  190. git clone https://github.com/CCob/SharpBlock.git
  191. git clone https://github.com/Kharos102/NtdllUnpatcher.git
  192. git clone https://github.com/bats3c/DarkLoadLibrary.git
  193. git clone https://github.com/Soledge/BlockEtw.git
  194. git clone https://github.com/mdsecactivebreach/firewalker.git
  195. git clone https://github.com/Cerbersec/KillDefenderBOF.git
  196. cd /Repos/Privilege_Escallation
  197. git clone https://github.com/0xthirteen/SharpStay.git
  198. git clone https://github.com/fireeye/SharPersist.git
  199. git clone https://github.com/outflanknl/SharpHide.git
  200. git clone https://github.com/Ben0xA/DoUCMe.git
  201. git clone https://github.com/nccgroup/ABPTTS.git
  202. git clone https://github.com/blackarrowsec/pivotnacci.git
  203. git clone https://github.com/sensepost/reGeorg.git
  204. git clone https://github.com/HarmJ0y/DAMP.git
  205. git clone https://github.com/0x09AL/IIS-Raid.git
  206. git clone https://github.com/antonioCoco/SharPyShell.git