AutoC2.sh 18 KB

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