AutoC2.sh 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  1. #!/bin/bash
  2. cat << "EOF"
  3. __ _ ___ ___ _ _ _ __ ___ ___ | |__ _ __ ___ __ _ ___| |__
  4. / _` / __/ __| | | | '_ ` _ \ / _ \_____| '_ \| '__/ _ \/ _` |/ __| '_ \
  5. | (_| \__ \__ \ |_| | | | | | | __/_____| |_) | | | __/ (_| | (__| | | |
  6. \__,_|___/___/\__,_|_| |_| |_|\___| |_.__/|_| \___|\__,_|\___|_| |_|
  7. **AutoC2**
  8. Use At Your Own Risk
  9. EOF
  10. sleep 2
  11. echo""
  12. echo""
  13. echo "WARNING THIS SCRIPT TAKES FUCKING FOREVER!!!"
  14. echo""
  15. echo""
  16. echo "All Tools Can Be Found In The /opt Directory"
  17. echo ""
  18. sleep 2
  19. read -p "Press enter to continue"
  20. echo ""
  21. echo "Updating Your System"
  22. echo""
  23. sleep 2
  24. apt-get update -y && apt-get upgrade -y
  25. apt update -y && apt upgrade -y
  26. apt autoremove -y
  27. echo ""
  28. sleep 2
  29. echo "Installing System Dependencies"
  30. echo ""
  31. sleep 2
  32. apt install git docker.io golang python3 python3-pip pipx chromium-browser -y
  33. /usr/bin/python3 -m pip install --upgrade pip
  34. echo ""
  35. echo "Removing Unneeded Directories"
  36. sleep 2
  37. rm -rf Videos/
  38. rm -rf Music/
  39. rm -rf Public/
  40. rm -rf Templates/
  41. echo""
  42. echo "Installing Hackery Stuff"
  43. echo ""
  44. sleep 2
  45. apt install nmap recon-ng snap -y
  46. snap install amass
  47. echo ""
  48. echo "Creating Repo Folders"
  49. echo ""
  50. sleep 2
  51. cd /opt
  52. mkdir Initial_Access
  53. mkdir Recon
  54. mkdir Delivery
  55. mkdir Command_And_Control
  56. mkdir Situational_Awareness
  57. mkdir Credential_Dumping
  58. mkdir Privilege_Escallation
  59. mkdir Defense_Evasion
  60. mkdir Social_Engineering
  61. mkdir Phishing
  62. mkdir Persistence
  63. mkdir Lateral_Movement
  64. mkdir Exfiltration
  65. mkdir Cloud
  66. mkdir Payload_Development
  67. mkdir Hak5_Implants
  68. mkdir Wireless
  69. echo""
  70. echo "Getting Resources"
  71. sleep 2
  72. echo""
  73. echo "Cloning Recon Resources"
  74. echo""
  75. sleep 2
  76. cd Recon
  77. echo""
  78. echo "Installing RustScan"
  79. echo""
  80. sleep 2
  81. git clone https://github.com/RustScan/RustScan.git
  82. cd RustScan.git
  83. docker build -t rustscan .
  84. cd /opt/Recon/
  85. echo "Installing GitLeaks"
  86. echo ""
  87. sleep 2
  88. git clone https://github.com/zricethezav/gitleaks.git
  89. cd gitleaks/
  90. make build
  91. echo ""
  92. cd /opt/Recon/
  93. echo "Installing S3Scanner"
  94. echo ""
  95. sleep 2
  96. git clone https://github.com/sa7mon/S3Scanner.git
  97. cd S3Scanner/
  98. pip3 install -r requirements.txt
  99. python3 -m S3Scanner
  100. cd /opt/Recon/
  101. echo""
  102. echo "Installing Cloud_Enum"
  103. echo""
  104. sleep 2
  105. git clone https://github.com/initstring/cloud_enum.git
  106. cd cloud_enum
  107. pip3 install -r ./requirements.txt
  108. cd /opt/Recon/
  109. echo "Installing Buster"
  110. echo ""
  111. sleep 2
  112. git clone https://github.com/sham00n/buster.git
  113. cd buster/
  114. python3 setup.py install
  115. cd /opt/Repo/
  116. git clone https://github.com/initstring/linkedin2username.git
  117. echo ""
  118. echo "Installing WitnessMe"
  119. echo ""
  120. sleep 2
  121. python3 -m pip install --user pipx
  122. pipx install witnessme
  123. pipx ensurepath
  124. cd /opt/Recon/
  125. echo ""
  126. echo "Installing Pagodo"
  127. echo ""
  128. sleep 2
  129. git clone https://github.com/opsdisk/pagodo.git
  130. cd pagodo
  131. pip install -r requirements.txt
  132. cd /opt/Recon/
  133. echo ""
  134. echo "Installing AttackSurfaceMapper"
  135. echo""
  136. sleep 2
  137. git clone https://github.com/superhedgy/AttackSurfaceMapper.git
  138. cd AttackSurfaceMapper
  139. python3 -m pip install --no-cache-dir -r requirements.txt
  140. cd /opt/Recon/
  141. echo ""
  142. echo "Installing SpiderFoot"
  143. echo ""
  144. sleep 2
  145. git clone https://github.com/smicallef/spiderfoot.git
  146. cd spiderfoot
  147. pip3 install -r requirements.txt
  148. pip3 install cherrypy
  149. pip3 install cherrypy_cors
  150. pip3 install publicsuffixlist
  151. pip3 install networkx
  152. pip3 install openpyxl
  153. cd /opt/Recon/
  154. echo""
  155. echo "Installing DNScan"
  156. echo ""
  157. sleep 2
  158. git clone https://github.com/rbsec/dnscan.git
  159. cd dnscan
  160. pip3 install -r requirements.txt
  161. pip3 install setuptools
  162. cd /opt/Recon/
  163. echo""
  164. echo "Installing SpoofCheck"
  165. echo""
  166. sleep 2
  167. git clone https://github.com/BishopFox/spoofcheck.git
  168. cd spoofcheck
  169. pip3 install -r requirements.txt
  170. cd /opt/Recon/
  171. echo ""
  172. echo "Installing LinkedInt"
  173. echo""
  174. sleep 2
  175. git clone https://github.com/vysecurity/LinkedInt.git
  176. cd LinkedInt
  177. pip3 install -r requirements.txt
  178. cd /opt/Recon/
  179. echo ""
  180. echo "Installing EyeWitness"
  181. echo ""
  182. sleep 2
  183. git clone https://github.com/ChrisTruncer/EyeWitness.git
  184. cd EyeWitness/Python/setup
  185. bash setup.sh
  186. cd /opt/Recon/
  187. echo""
  188. echo "Installing Aquatone"
  189. echo ""
  190. sleep 2
  191. mkdir Aquatone
  192. cd Aquatone/
  193. wget https://github.com/michenriksen/aquatone/releases/download/v1.7.0/aquatone_linux_amd64_1.7.0.zip
  194. unzip aquatone_linux_amd64_1.7.0.zip
  195. cd /opt/Recon/
  196. echo""
  197. echo "Installing DNSrecon"
  198. echo ""
  199. sleep 2
  200. git clone https://github.com/darkoperator/dnsrecon.git
  201. cd dnsrecon
  202. pip install -r requirements.txt
  203. python setup.py install
  204. cd /opt/Recon/
  205. echo ""
  206. echo "Installing Social Mapper"
  207. echo ""
  208. sleep 2
  209. git clone https://github.com/SpiderLabs/social_mapper.git
  210. cd /social_mapper/setup/
  211. pip install -r requirements.txt
  212. echo""
  213. cd /opt/Recon/
  214. echo "Installing theHarvester"
  215. echo ""
  216. sleep 2
  217. git clone https://github.com/laramies/theHarvester.git
  218. cd theHarvester/
  219. pip3 install aiohttp
  220. pip3 install aiomultiprocess
  221. python3 -m pip install -r requirements/base.txt
  222. python3 setup.py install
  223. cd /opt/Recon/
  224. echo ""
  225. echo "Installing Metagoofil"
  226. echo ""
  227. sleep 2
  228. git clone https://github.com/laramies/metagoofil.git
  229. echo""
  230. echo "Installing TruffleHog"
  231. echo ""
  232. sleep 2
  233. git clone https://github.com/dxa4481/truffleHog.git
  234. cd trufflehog; go install
  235. cd /opt/Recon/
  236. echo""
  237. echo "Installing Pwned0rNot -- API KEY REQUIRE"
  238. git clone https://github.com/thewhiteh4t/pwnedOrNot.git
  239. cd pwnedOrNot
  240. chmod +x install.sh
  241. ./install.sh
  242. cd /opt/Recon/
  243. echo""
  244. echo "Installing GitHarvester"
  245. echo ""
  246. sleep 2
  247. git clone https://github.com/metac0rtex/GitHarvester.git
  248. echo ""
  249. echo "Cloning Initial Access Resources"
  250. echo ""
  251. sleep 2
  252. ###Break For Recon Folder###
  253. cd /opt/Initial_Access
  254. echo "Installing Initial Access Tools"
  255. echo ""
  256. sleep 2
  257. echo "Installing Spraying Toolkit"
  258. echo ""
  259. sleep 2
  260. git clone https://github.com/byt3bl33d3r/SprayingToolkit.git
  261. cd SprayingToolkit/
  262. pip3 install -r requirements.txt
  263. cd /opt/Initial_Access
  264. echo ""
  265. sleep 2
  266. echo "Installing O365 Recon"
  267. echo ""
  268. git clone https://github.com/nyxgeek/o365recon.git
  269. echo ""
  270. sleep 2
  271. echo "Installing TREVORspray"
  272. echo ""
  273. sleep 2
  274. git clone https://github.com/blacklanternsecurity/TREVORspray.git
  275. cd TREVORspray/
  276. pip3 install -r requirements.txt
  277. sleep2
  278. echo ""
  279. echo "Cloning Payload Development Resources"
  280. echo ""
  281. sleep 2
  282. cd ../Payload_Development
  283. echo "Installing Unicorn"
  284. git clone https://github.com/trustedsec/unicorn.git
  285. echo""
  286. echo "Installing Demiguise"
  287. echo ""
  288. sleep 2
  289. git clone https://github.com/nccgroup/demiguise.git
  290. echo ""
  291. echo "Installing The Backdoor Factory"
  292. echo ""
  293. docker pull secretsquirrel/the-backdoor-factory
  294. echo ""
  295. sleep 2
  296. echo "Installing Avet"
  297. echo ""
  298. git clone https://github.com/govolution/avet.git
  299. cd avet
  300. bash setup.sh
  301. cd /opt/Payload_Development/
  302. sleep 2
  303. echo ""
  304. echo "Installing MetaTwin"
  305. git clone https://github.com/threatexpress/metatwin.git
  306. echo "'"
  307. sleep 2
  308. echo "Installing PSAmsi"
  309. git clone https://github.com/cobbr/PSAmsi.git
  310. sleep 2
  311. echo ""
  312. echo "Worse-PDF"
  313. echo ""
  314. git clone https://github.com/3gstudent/Worse-PDF.git
  315. echo ""
  316. sleep 2
  317. echo "Installing Ivy"
  318. git clone https://github.com/optiv/Ivy.git
  319. cd Ivy
  320. go get github.com/fatih/color
  321. go get github.com/KyleBanks/XOREncryption/Go
  322. go build Ivy.go
  323. echo ""
  324. cd /opt/Payload_Development/
  325. echo "Installing PEzor"
  326. git clone https://github.com/phra/PEzor.git
  327. git clone https://github.com/med0x2e/GadgetToJScript.git
  328. git clone https://github.com/optiv/ScareCrow.git
  329. git clone https://github.com/TheWover/donut.git
  330. git clone https://github.com/D00MFist/Mystikal.git
  331. git clone https://github.com/9emin1/charlotte.git
  332. git clone https://github.com/xforcered/InvisibilityCloak.git
  333. git clone https://github.com/FuzzySecurity/Dendrobate.git
  334. git clone https://github.com/BC-SECURITY/Offensive-VBA-and-XLS-Entanglement.git
  335. git clone https://github.com/aaaddress1/xlsGen.git
  336. git clone https://github.com/bats3c/darkarmour.git
  337. git clone https://github.com/outflanknl/InlineWhispers.git
  338. git clone https://github.com/outflanknl/EvilClippy.git
  339. git clone https://github.com/fireeye/OfficePurge.git
  340. git clone https://github.com/rasta-mouse/ThreatCheck.git
  341. git clone https://github.com/gloxec/CrossC2.git
  342. git clone https://github.com/sensepost/ruler.git
  343. git clone https://github.com/fireeye/DueDLLigence.git
  344. git clone https://github.com/rasta-mouse/RuralBishop.git
  345. git clone https://github.com/rasta-mouse/TikiTorch.git
  346. git clone https://github.com/mdsecactivebreach/SharpShooter.git
  347. git clone https://github.com/cobbr/SharpSploit.git
  348. git clone https://github.com/rvrsh3ll/MSBuildAPICaller.git
  349. git clone https://github.com/sevagas/macro_pack.git
  350. git clone https://github.com/klezVirus/inceptor.git
  351. git clone https://github.com/0xsp-SRD/mortar.git
  352. git clone https://github.com/Mr-Un1k0d3r/RedTeamCCode.git
  353. echo "Cloning Delivery Resources"
  354. cd ../Delivery
  355. git clone https://github.com/mdsecactivebreach/o365-attack-toolkit.git
  356. git clone https://github.com/beefproject/beef.git
  357. echo "Cloning Your C2 Resources"
  358. cd ../Command_And_Control
  359. echo "Cloning C2 Frameworks"
  360. mkdir C2_Frameworks
  361. cd C2_Frameworks
  362. git clone https://github.com/BC-SECURITY/Empire.git
  363. git clone https://github.com/nettitude/PoshC2.git
  364. git clone https://github.com/zerosum0x0/koadic.git
  365. git clone https://github.com/Ne0nd0g/merlin.git
  366. git clone https://github.com/its-a-feature/Mythic.git
  367. git clone https://github.com/cobbr/Covenant.git
  368. git clone https://github.com/bats3c/shad0w.git
  369. git clone https://github.com/BishopFox/sliver.git
  370. git clone https://github.com/byt3bl33d3r/SILENTTRINITY.git
  371. git clone https://github.com/n1nj4sec/pupy.git
  372. sudo apt-get install build-essential libreadline-dev libssl-dev libpq5 libpq-dev libreadline5 libsqlite3-dev libpcap-dev subversion git-core autoconf postgresql pgadmin3 curl zlib1g-dev libxml2-dev libxslt1-dev libyaml-dev nmap -y
  373. sudo curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && chmod 755 msfinstall && ./msfinstall
  374. echo "Cloning Staging Resources"
  375. cd ../
  376. mkdir Staging
  377. cd Staging
  378. git clone https://github.com/kgretzky/pwndrop.git
  379. git clone https://github.com/FortyNorthSecurity/C2concealer.git
  380. git clone https://github.com/rvrsh3ll/FindFrontableDomains.git
  381. git clone https://github.com/threatexpress/domainhunter.git
  382. git clone https://github.com/mgeeky/RedWarden.git
  383. git clone https://github.com/Flangvik/AzureC2Relay.git
  384. git clone https://github.com/FSecureLABS/C3.git
  385. git clone https://github.com/mdsecactivebreach/Chameleon.git
  386. git clone https://github.com/0xZDH/redirect.rules.git
  387. echo "Cloning Log Aggregation Resources"
  388. cd ../
  389. mkdir Log_Aggregation
  390. cd Log_Aggregation
  391. git clone https://github.com/outflanknl/RedELK.git
  392. git clone https://github.com/SecurityRiskAdvisors/RedTeamSIEM.git
  393. echo "Cloning Situational Awareness Resources"
  394. cd /home/pi/Repo/Situational_Awareness
  395. mkdir Host_Situtational_Awareness
  396. cd Host_Situational_Awareness
  397. git clone https://github.com/EncodeGroup/AggressiveProxy.git
  398. git clone https://github.com/EncodeGroup/Gopher.git
  399. git clone https://github.com/PwnDexter/SharpEDRChecker.git
  400. git clone https://github.com/trustedsec/CS-Situational-Awareness-BOF.git
  401. git clone https://github.com/GhostPack/Seatbelt.git
  402. git clone https://github.com/vivami/SauronEye.git
  403. git clone https://github.com/mitchmoser/SharpShares.git
  404. git clone https://github.com/Flangvik/SharpAppLocker/.git
  405. git clone https://github.com/rvrsh3ll/SharpPrinter.git
  406. cd ../
  407. mkdir Domain_Situational_Awareness
  408. cd Domain_Situational_Awareness
  409. git clone https://github.com/FuzzySecurity/StandIn.git
  410. git clone https://github.com/outflanknl/Recon-AD.git
  411. git clone https://github.com/BloodHoundAD/BloodHound.git
  412. git clone https://github.com/GhostPack/PSPKIAudit.git
  413. git clone https://github.com/tevora-threat/SharpView.git
  414. git clone https://github.com/GhostPack/Rubeus.git
  415. git clone https://github.com/l0ss/Grouper.git
  416. git clone https://github.com/improsec/ImproHound.git
  417. git clone https://github.com/adrecon/ADRecon.git
  418. git clone https://github.com/bats3c/ADCSPwn.git
  419. cd /home/pi/Repo/Credential_Dumping/
  420. git clone https://github.com/gentilkiwi/mimikatz.git
  421. git clone https://github.com/outflanknl/Dumpert.git
  422. git clone https://github.com/swisskyrepo/SharpLAPS.git
  423. git clone https://github.com/GhostPack/SharpDPAPI.git
  424. git clone https://github.com/GhostPack/KeeThief.git
  425. git clone https://github.com/GhostPack/SafetyKatz.git
  426. git clone https://github.com/Barbarisch/forkatz.git
  427. git clone https://github.com/RedCursorSecurityConsulting/PPLKiller.git
  428. git clone https://github.com/AlessandroZ/LaZagne.git
  429. git clone https://github.com/hoangprod/AndrewSpecial.git
  430. git clone https://github.com/outflanknl/Net-GPPPassword.git
  431. git clone https://github.com/djhohnstein/SharpChromium.git
  432. git clone https://github.com/rxwx/chlonium.git
  433. git clone https://github.com/chrismaddalena/SharpCloud.git
  434. git clone https://github.com/skelsec/pypykatz.git
  435. git clone https://github.com/helpsystems/nanodump.git
  436. echo "Cloning Privilege Escallation Resources"
  437. cd /home/pi/Repo/Privilege_Escallation
  438. git clone https://github.com/rsmudge/ElevateKit.git
  439. git clone https://github.com/rasta-mouse/Watson.git
  440. git clone https://github.com/GhostPack/SharpUp.git
  441. git clone https://github.com/hlldz/dazzleUP.git
  442. git clone https://github.com/carlospolop/PEASS-ng.git
  443. git clone https://github.com/CCob/SweetPotato.git
  444. git clone https://github.com/S3cur3Th1sSh1t/MultiPotato.git
  445. echo "Cloning Defense Evasion Resources"
  446. cd /home/pi/Repo/Defense_Evasion
  447. git clone https://github.com/hlldz/RefleXXion.git
  448. git clone https://github.com/wavestone-cdt/EDRSandblast.git
  449. git clone https://github.com/APTortellini/unDefender.git
  450. git clone https://github.com/Yaxser/Backstab.git
  451. git clone https://github.com/boku7/spawn.git
  452. git clone https://github.com/CCob/BOF.NET.git
  453. git clone https://github.com/Flangvik/NetLoader.git
  454. git clone https://github.com/outflanknl/FindObjects-BOF.git
  455. git clone https://github.com/GetRektBoy724/SharpUnhooker.git
  456. git clone https://github.com/bats3c/EvtMute.git
  457. git clone https://github.com/xforcered/InlineExecute-Assembly.git
  458. git clone https://github.com/hlldz/Phant0m.git
  459. git clone https://github.com/CCob/SharpBlock.git
  460. git clone https://github.com/Kharos102/NtdllUnpatcher.git
  461. git clone https://github.com/bats3c/DarkLoadLibrary.git
  462. git clone https://github.com/Soledge/BlockEtw.git
  463. git clone https://github.com/mdsecactivebreach/firewalker.git
  464. git clone https://github.com/Cerbersec/KillDefenderBOF.git
  465. echo "Cloning Social Engineering Resources"
  466. cd /home/pi/Social_Engineering
  467. git clone https://github.com/trustedsec/social-engineer-toolkit.git
  468. git clone https://github.com/bhdresh/SocialEngineeringPayloads.git
  469. echo "Cloning Phishing Resources"
  470. cd /home/pi/Phishing
  471. git clone https://github.com/ryhanson/phishery.git
  472. git clone https://github.com/kgretzky/evilginx2.git
  473. git clone https://github.com/fireeye/PwnAuth.git
  474. git clone https://github.com/drk1wi/Modlishka.git
  475. git clone https://github.com/securestate/king-phisher.git
  476. git clone https://github.com/Raikia/FiercePhish.git
  477. git clone https://github.com/fireeye/ReelPhish.git
  478. git clone https://github.com/gophish/gophish.git
  479. git clone https://github.com/ustayready/CredSniper.git
  480. git clone https://github.com/pentestgeek/phishing-frenzy.git
  481. git clone https://github.com/L4bF0x/PhishingPretexts.git
  482. echo "Cloning Persistence Resources"
  483. cd /home/pi/Repo/Persistence
  484. git clone https://github.com/0xthirteen/SharpStay.git
  485. git clone https://github.com/fireeye/SharPersist.git
  486. git clone https://github.com/outflanknl/SharpHide.git
  487. git clone https://github.com/Ben0xA/DoUCMe.git
  488. git clone https://github.com/nccgroup/ABPTTS.git
  489. git clone https://github.com/blackarrowsec/pivotnacci.git
  490. git clone https://github.com/sensepost/reGeorg.git
  491. git clone https://github.com/HarmJ0y/DAMP.git
  492. git clone https://github.com/0x09AL/IIS-Raid.git
  493. git clone https://github.com/antonioCoco/SharPyShell.git
  494. echo "Cloning Lateral Movement Resources"
  495. cd /home/pi/Repo/Lateral_Movement
  496. git clone https://github.com/RiccardoAncarani/LiquidSnake.git
  497. git clone https://github.com/NetSPI/PowerUpSQL.git
  498. git clone https://github.com/0xthirteen/SharpRDP.git
  499. git clone https://github.com/0xthirteen/MoveKit.git
  500. git clone https://github.com/juliourena/SharpNoPSExec.git
  501. git clone https://github.com/lgandx/Responder.git
  502. git clone https://github.com/dirkjanm/mitm6.git
  503. git clone https://github.com/SecureAuthCorp/impacket.git
  504. git clone https://github.com/mdsecactivebreach/Farmer.git
  505. git clone https://github.com/FortyNorthSecurity/CIMplant.git
  506. git clone https://github.com/Mr-Un1k0d3r/PowerLessShell.git
  507. git clone https://github.com/FSecureLABS/SharpGPOAbuse.git
  508. git clone https://github.com/ropnop/kerbrute.git
  509. git clone https://github.com/blackarrowsec/mssqlproxy.git
  510. git clone https://github.com/Kevin-Robertson/Invoke-TheHash.git
  511. git clone https://github.com/Kevin-Robertson/InveighZero.git
  512. git clone https://github.com/jnqpblc/SharpSpray/git
  513. git clone https://github.com/byt3bl33d3r/CrackMapExec.git
  514. git clone https://github.com/pkb1s/SharpAllowedToAct.git
  515. git clone https://github.com/bohops/SharpRDPHijack.git
  516. git clone https://github.com/klezVirus/CheeseTools.git
  517. git clone https://github.com/iomoath/SharpSpray.git
  518. git clone https://github.com/BloodHoundAD/SharpHound.git
  519. git clone https://github.com/PowerShellMafia/PowerSploit.git
  520. git clone https://github.com/NetSPI/PowerUpSQL.git
  521. git clone https://github.com/DanMcInerney/icebreaker.git
  522. git clone https://github.com/JavelinNetworks/HoneypotBuster.git
  523. echo "Cloning Exfiltration Resources"
  524. cd /home/pi/Repo/Exfiltration
  525. git clone https://github.com/Flangvik/SharpExfiltrate.git
  526. git clone https://github.com/Arno0x/DNSExfiltrator.git
  527. git clone https://github.com/FortyNorthSecurity/Egress-Assess.git
  528. echo "Cloning Cloud Resources"
  529. cd /home/pi/Repo/Cloud
  530. mkdir AWS
  531. git clone https://github.com/RhinoSecurityLabs/pacu.git
  532. git clone https://github.com/duo-labs/cloudmapper.git
  533. git clone https://github.com/andresriancho/enumerate-iam.git
  534. git clone https://github.com/jordanpotti/AWSBucketDump.git
  535. cd ../
  536. mkdir Azure
  537. cd Azure
  538. git clone https://github.com/fox-it/adconnectdump.git
  539. git clone https://github.com/Azure/Stormspotter.git
  540. git clone https://github.com/dirkjanm/ROADtools.git
  541. git clone https://github.com/NetSPI/MicroBurst.git
  542. git clone https://github.com/Gerenios/AADInternals.git
  543. echo "Cloning Hak5 Implant Resources"
  544. cd /home/pi/Repo/Hak5_Implants
  545. git clone https://github.com/hak5/omg-payloads.git
  546. git clone https://github.com/hak5/bashbunny-payloads.git
  547. git clone https://github.com/hak5/usbrubberducky-payloads.git
  548. git clone https://github.com/hak5/pineapple-community-packages.git
  549. git clone https://github.com/hak5/pineapple-modules.git
  550. git clone https://github.com/hak5/mk7-docs.git
  551. git clone https://github.com/hak5/keycroc-payloads.git
  552. git clone https://github.com/hak5/sharkjack-payloads.git
  553. git clone https://github.com/hak5/lanturtle-modules.git
  554. git clone https://github.com/hak5/hak5-docs.git
  555. git clone https://github.com/hak5/packetsquirrel-payloads.git
  556. git clone https://github.com/hak5/nano-tetra-modules.git
  557. git clone https://github.com/hak5/signalowl-payloads.git
  558. git clone https://github.com/hak5/plunderbug-scripts.git
  559. echo "Cloning Wireless Resources"
  560. cd /home/pi/Repo/Wireless
  561. git clone https://github.com/derv82/wifite2.git
  562. git clone https://github.com/wifiphisher/wifiphisher.git
  563. git clone https://github.com/sensepost/mana.git
  564. git clone https://github.com/joswr1ght/cowpatty.git
  565. git clone https://github.com/athanstan/EvilTwin_AP_CaptivePortal.git