AutoC2.sh 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180
  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 "Installing 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 "Installing 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. cd PEzor/
  328. bash install.sh
  329. echo ""
  330. read -p "Open A New Terminal And Export The Path For PEzor To Work!"
  331. echo ""
  332. sleep 2
  333. echo "Installing ScareCrow"
  334. echo""
  335. git clone https://github.com/optiv/ScareCrow.git
  336. cd ScareCrow/
  337. go get github.com/fatih/color
  338. go get github.com/yeka/zip
  339. go get github.com/josephspurrier/goversioninfo
  340. apt install openssl -y
  341. apt install osslsigncode -y
  342. apt install mingw-w64 -y
  343. go build ScareCrow.go
  344. cd /opt/Payload_Development/
  345. echo ""
  346. sleep 2
  347. echo "Installing Donut"
  348. echo ""
  349. git clone https://github.com/TheWover/donut.git
  350. cd donut/
  351. python3 setup.py install
  352. cd /opt/Payload_Development
  353. mkdir MAC_OS
  354. cd MAC_OS
  355. echo ""
  356. sleep 2
  357. echo "Installing Mystikal"
  358. echo ""
  359. git clone https://github.com/D00MFist/Mystikal.git
  360. cd /opt/Payload_Development/
  361. echo ""
  362. sleep 2
  363. mkdir Windows_OS
  364. cd Windows_OS
  365. echo "Installing GadgetToJscript"
  366. git clone https://github.com/med0x2e/GadgetToJScript.git
  367. echo ""
  368. cd /opt/Payload_Development/
  369. echo "Installing Charlotte"
  370. git clone https://github.com/9emin1/charlotte.git
  371. echo ""
  372. cd /opt/Payload_Development/
  373. echo "Installing Invisibility Cloak"
  374. git clone https://github.com/xforcered/InvisibilityCloak.git
  375. echo ""
  376. cd /opt/Payload_Development/Windows_OS/
  377. echo "Installing Dendrobate"
  378. echo ""
  379. git clone https://github.com/FuzzySecurity/Dendrobate.git
  380. echo ""
  381. sleep 2
  382. cd /opt/Payload_Development/
  383. echo "Installing Offensive-VBA-and-XLS-Entanglement"
  384. echo ""
  385. git clone https://github.com/BC-SECURITY/Offensive-VBA-and-XLS-Entanglement.git
  386. sleep 2
  387. echo ""
  388. echo "Installing xlsGen"
  389. echo ""
  390. sleep 2
  391. git clone https://github.com/aaaddress1/xlsGen.git
  392. echo ""
  393. echo "Installing DarkArmour"
  394. echo ""
  395. sleep 2
  396. git clone https://github.com/bats3c/darkarmour.git
  397. sudo apt install mingw-w64-tools mingw-w64-common g++-mingw-w64 gcc-mingw-w64 upx-ucl osslsigncode
  398. echo ""
  399. echo "Installing InlineWhispers"
  400. echo""
  401. sleep 2
  402. git clone https://github.com/outflanknl/InlineWhispers.git
  403. echo ""
  404. cd /opt/Payload_Development/Windows_OS/
  405. echo "Installing EvilClippy"
  406. echo ""
  407. sleep 2
  408. git clone https://github.com/outflanknl/EvilClippy.git
  409. echo ""
  410. echo "Installing OfficePurge"
  411. echo ""
  412. git clone https://github.com/fireeye/OfficePurge.git
  413. sleep 2
  414. echo ""
  415. echo "Installing ThreatCheck"
  416. echo ""
  417. git clone https://github.com/rasta-mouse/ThreatCheck.git
  418. echo ""
  419. echo "Ruler"
  420. echo ""
  421. sleep 2
  422. git clone https://github.com/sensepost/ruler.git
  423. echo ""
  424. echo "Installing DueDLLigence"
  425. echo ""
  426. sleep 2
  427. git clone https://github.com/fireeye/DueDLLigence.git
  428. echo ""
  429. echo "Installing RuralBishop"
  430. echo ""
  431. sleep 2
  432. git clone https://github.com/rasta-mouse/RuralBishop.git
  433. echo ""
  434. echo "Installing TikiTorch"
  435. echo ""
  436. sleep 2
  437. git clone https://github.com/rasta-mouse/TikiTorch.git
  438. echo ""
  439. echo "Installing SharpShooter"
  440. echo ""
  441. sleep 2
  442. git clone https://github.com/mdsecactivebreach/SharpShooter.git
  443. echo ""
  444. echo "Installing SharpSploit"
  445. echo ""
  446. sleep 2
  447. git clone https://github.com/cobbr/SharpSploit.git
  448. echo ""
  449. echo "Installing MSBuildAPICaller"
  450. echo ""
  451. sleep 2
  452. git clone https://github.com/rvrsh3ll/MSBuildAPICaller.git
  453. echo ""
  454. echo "Installing Macro_Pack"
  455. echo ""
  456. sleep 2
  457. git clone https://github.com/sevagas/macro_pack.git
  458. echo ""
  459. echo "Installing Inceptor"
  460. echo ""
  461. sleep 2
  462. git clone https://github.com/klezVirus/inceptor.git
  463. echo ""
  464. echo "Installing Mortar
  465. echo ""
  466. sleep 2
  467. git clone https://github.com/0xsp-SRD/mortar.git
  468. echo ""
  469. echo "Installing RedTeamCCode"
  470. echo ""
  471. sleep 2
  472. git clone https://github.com/Mr-Un1k0d3r/RedTeamCCode.git
  473. echo ""
  474. sleep 2
  475. echo "Cloning Delivery Resources"
  476. echo ""
  477. cd /opt/Payload_Development/Delivery/
  478. echo ""
  479. echo "Installing O365 Attack Toolkit"
  480. echo ""
  481. sleep 2
  482. git clone https://github.com/mdsecactivebreach/o365-attack-toolkit.git
  483. echo ""
  484. sleep 2
  485. echo "
  486. echo "Installing BEEF"
  487. echo ""
  488. sleep 2
  489. git clone https://github.com/beefproject/beef.git
  490. cd beef
  491. ./install
  492. echo ""
  493. echo "Cloning Your C2 Resources"
  494. echo ""
  495. cd /opt/Command_And_Control
  496. echo "Cloning C2 Frameworks"
  497. echo ""
  498. echo "Installing Empire & Starkiller"
  499. echo ""
  500. sleep 2
  501. git clone https://github.com/BC-SECURITY/Empire.git
  502. version=$(lsb_release -sr)
  503. cd Empire/
  504. find ./ -type f -print0 | xargs -0 sed -i "s/20.04/${version}/g"
  505. find ./ -type f -print0 | xargs -0 sed -i "s/18.04/${version}/g"
  506. find ./ -type f -print0 | xargs -0 sed -i "s/21.04/${version}/g"
  507. find ./ -type f -print0 | xargs -0 sed -i "s/21.10/${version}/g"
  508. find ./ -type f -print0 | xargs -0 sed -i "s/16.04/${version}/g"
  509. find ./ -type f -print0 | xargs -0 sed -i "s/22.04/${version}/g"
  510. cd setup/
  511. bash install.sh
  512. sudo wget https://github.com/BC-SECURITY/Starkiller/releases/download/v1.8.0/starkiller-1.8.0.AppImage
  513. sudo chmod +x starkiller-1.0.0.AppImage
  514. echo""
  515. sleep 2
  516. cd /opt/Command_And_Control/
  517. echo "Installing PoshC2"
  518. echo ""
  519. git clone https://github.com/nettitude/PoshC2.git
  520. cd PoshC2/
  521. bash Install.sh
  522. cd /opt/Command_And_Control/
  523. echo ""
  524. echo "Installing Merlin C2"
  525. echo ""
  526. sleep 2
  527. git clone https://github.com/Ne0nd0g/merlin.git
  528. cd merlin/
  529. go build
  530. cd /opt/Command_And_Control/
  531. echo ""
  532. echo "Installing Mythic"
  533. echo ""
  534. sleep 2
  535. git clone https://github.com/its-a-feature/Mythic.git
  536. cd Mythic/
  537. ./install_docker_ubuntu.sh
  538. cd /opt/Command_And_Control
  539. echo ""
  540. echo "Installing Covenant With Random Profile"
  541. echo ""
  542. echo "Enter A Random Word!"
  543. read Random1
  544. echo ""
  545. echo "Enter A Different Random Word!"
  546. read Random2
  547. echo ""
  548. echo "Enter A Different Random Word!"
  549. read Random3
  550. custom1=$(echo $custom1 | md5sum | head -c 20)
  551. sudo git clone --recurse-submodules https://github.com/ZeroPointSecurity/Covenant.git /opt/Covenant
  552. cd /opt/Covenant/Covenant/
  553. mv ./Data/AssemblyReferences/ ../AssemblyReferences/
  554. mv ./Data/ReferenceSourceLibraries/ ../ReferenceSourceLibraries/
  555. mv ./Data/EmbeddedResources/ ../EmbeddedResources/
  556. mv ./Models/Covenant/ ./Models/${Random1^}/
  557. mv ./Components/CovenantUsers/ ./Components/${Random1^}Users/
  558. mv ./Components/Grunts/ ./Components/${Random2^}s/
  559. mv ./Models/Grunts/ ./Models/${Random2^}s/
  560. mv ./Data/Grunt/GruntBridge/ ./Data/Grunt/${Random2^}Bridge/
  561. mv ./Data/Grunt/GruntHTTP/ ./Data/Grunt/${Random2^}HTTP/
  562. mv ./Data/Grunt/GruntSMB/ ./Data/Grunt/${Random2^}SMB/
  563. mv ./Components/GruntTaskings/ ./Components/${Random2^}Taskings/
  564. mv ./Components/GruntTasks/ ./Components/${Random2^}Tasks/
  565. mv ./Data/Grunt/ ./Data/${Random2^}/
  566. find ./ -type f -print0 | xargs -0 sed -i "s/Grunt/${Random2^}/g"
  567. find ./ -type f -print0 | xargs -0 sed -i "s/GRUNT/${Random2^^}/g"
  568. find ./ -type f -print0 | xargs -0 sed -i "s/grunt/${Random2,,}/g"
  569. #find ./ -type f -print0 | xargs -0 sed -i "s/covenant/${Random1,,}/g"
  570. find ./ -type f -print0 | xargs -0 sed -i "s/Covenant/${Random1^}/g"
  571. find ./ -type f -print0 | xargs -0 sed -i "s/COVENANT/${Random1^^}/g"
  572. find ./ -type f -print0 | xargs -0 sed -i "s/ExecuteStager/ExecLevel/g"
  573. #find ./ -type f -print0 | xargs -0 sed -i "s/REPLACE_PROFILE/REP_PROF/g"
  574. #find ./ -type f -print0 | xargs -0 sed -i "s/REPLACE_PIPE/REP_PIP/g"
  575. #find ./ -type f -print0 | xargs -0 sed -i "s/GUID/ANGID/g"
  576. find ./ -type f -print0 | xargs -0 sed -i "s/SetupAES/Install"${custom1}"AES/g"
  577. find ./ -type f -print0 | xargs -0 sed -i "s/SessionKey/Sess"${custom1}"KEy/g"
  578. find ./ -type f -print0 | xargs -0 sed -i "s/EncryptedChallenge/Enc"${custom1}"ChallEnge/g"
  579. find ./ -type f -print0 | xargs -0 sed -i "s/DecryptedChallenges/Decrypt"${custom1}"ChallEnges/g"
  580. find ./ -type f -print0 | xargs -0 sed -i "s/Stage0Body/First"${custom1}"Body/g"
  581. find ./ -type f -print0 | xargs -0 sed -i "s/Stage0Response/First"${custom1}"Response/g"
  582. find ./ -type f -print0 | xargs -0 sed -i "s/Stage0Bytes/First"${custom1}"Bytes/g"
  583. find ./ -type f -print0 | xargs -0 sed -i "s/Stage1Body/Seccond"${custom1}"Body/g"
  584. find ./ -type f -print0 | xargs -0 sed -i "s/Stage1Response/Seccond"${custom1}"Response/g"
  585. find ./ -type f -print0 | xargs -0 sed -i "s/Stage1Bytes/Seccond"${custom1}"Bytes/g"
  586. find ./ -type f -print0 | xargs -0 sed -i "s/Stage2Body/Third"${custom1}"Body/g"
  587. find ./ -type f -print0 | xargs -0 sed -i "s/Stage2Response/Third"${custom1}"Response/g"
  588. find ./ -type f -print0 | xargs -0 sed -i "s/Stage2Bytes/Third"${custom1}"Bytes/g"
  589. find ./ -type f -print0 | xargs -0 sed -i "s/message64str/messAgE"${custom1}"64str/g"
  590. find ./ -type f -print0 | xargs -0 sed -i "s/messageBytes/messAgE"${custom1}"bytes/g"
  591. find ./ -type f -print0 | xargs -0 sed -i "s/totalReadBytes/ToTal"${custom1}"ReaDBytes/g"
  592. #find ./ -type f -print0 | xargs -0 sed -i "s/inputStream/instream/g"
  593. #find ./ -type f -print0 | xargs -0 sed -i "s/outputStream/outstream/g"
  594. find ./ -type f -print0 | xargs -0 sed -i "s/deflateStream/deFlatE"${custom1}"stream/g"
  595. find ./ -type f -print0 | xargs -0 sed -i "s/memoryStream/memOrYstream/g" #don't change
  596. find ./ -type f -print0 | xargs -0 sed -i "s/compressedBytes/packed"${custom1}"bytes/g"
  597. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/REPLACE_/REP"${custom1}"_/g"
  598. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/_PROFILE_/_PROF"${custom1}"_/g"
  599. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/_VALIDATE_/_VA"${custom1}"L_/g"
  600. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/GUID/${Random3^^}/g"
  601. find ./ -type f -name "*.razor" -print0 | xargs -0 sed -i "s/GUID/${Random3^^}/g"
  602. find ./ -type f -name "*.json" -print0 | xargs -0 sed -i "s/GUID/${Random3^^}/g"
  603. find ./ -type f -name "*.yaml" -print0 | xargs -0 sed -i "s/GUID/${Random3^^}/g"
  604. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/guid/${Random3,,}/g"
  605. find ./ -type f -name "*.razor" -print0 | xargs -0 sed -i "s/guid/${Random3,,}/g"
  606. find ./ -type f -name "*.json" -print0 | xargs -0 sed -i "s/guid/${Random3,,}/g"
  607. find ./ -type f -name "*.yaml" -print0 | xargs -0 sed -i "s/guid/${Random3,,}/g"
  608. find ./ -type f -print0 | xargs -0 sed -i "s/ProfileHttp/Prof"${custom1}"HTTP/g"
  609. find ./ -type f -print0 | xargs -0 sed -i "s/baseMessenger/bAse"${custom1}"mEsSenger/g"
  610. find ./ -type f -print0 | xargs -0 sed -i "s/PartiallyDecrypted/Part"${custom1}"decrypted/g"
  611. find ./ -type f -print0 | xargs -0 sed -i "s/FullyDecrypted/Fulld"${custom1}"ecrypted/g"
  612. find ./ -type f -print0 | xargs -0 sed -i "s/compressedBytes/packed"${custom1}"bytes/g"
  613. find ./ -type f -print0 | xargs -0 sed -i "s/CookieWebClient/Ottos"${custom1}"WebClient/g"
  614. #find ./ -type f -print0 | xargs -0 sed -i "s/CookieContainer/KekseContains/g"
  615. #find ./ -type f -print0 | xargs -0 sed -i "s/GetWebRequest/DoAnWebReq/g"
  616. find ./ -type f -print0 | xargs -0 sed -i "s/Jitter/JIt"${custom1}"ter/g"
  617. find ./ -type f -print0 | xargs -0 sed -i "s/ConnectAttempts/ConneCT"${custom1}"AttEmpts/g"
  618. find ./ -type f -print0 | xargs -0 sed -i "s/RegisterBody/Reg"${custom1}"Body/g"
  619. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/messenger/meSsenGer"${custom1}"/g"
  620. find ./ -type f -print0 | xargs -0 sed -i "s/Hello World/"${custom1}"/g"
  621. find ./ -type f -print0 | xargs -0 sed -i "s/ValidateCert/Val"${custom1}"CerT/g"
  622. find ./ -type f -print0 | xargs -0 sed -i "s/UseCertPinning/UsCert"${custom1}"Pin/g"
  623. find ./ -type f -print0 | xargs -0 sed -i "s/EncryptedMessage/Enc"${custom1}"Msg/g"
  624. find ./ -type f -print0 | xargs -0 sed -i "s/cookieWebClient/"${custom1}"WebClient/g" #ottos
  625. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/aes/crypt"${custom1}"var/g"
  626. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/aes2/crypt"${custom1}"var2/g"
  627. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array5/ar"${custom1}"r5/g"
  628. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array6/ar"${custom1}"r6/g"
  629. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array4/ar"${custom1}"r4/g"
  630. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array7/ar"${custom1}"r7/g"
  631. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array1/ar"${custom1}"r1/g"
  632. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array2/ar"${custom1}"r2/g"
  633. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array3/ar"${custom1}"r3/g"
  634. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/list1/l"${custom1}"i1/g"
  635. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/list2/l"${custom1}"i2/g"
  636. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/list3/l"${custom1}"i3/g"
  637. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/list4/l"${custom1}"i4/g"
  638. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/list5/l"${custom1}"i5/g"
  639. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group0/gr"${custom1}"p0/g"
  640. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group1/gr"${custom1}"p1/g"
  641. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group2/gr"${custom1}"p2/g"
  642. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group3/gr"${custom1}"p3/g"
  643. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group4/gr"${custom1}"p4/g"
  644. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group5/gr"${custom1}"p5/g"
  645. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group6/gr"${custom1}"p6/g"
  646. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group7/gr"${custom1}"p7/g"
  647. find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group8/gr"${custom1}"p8/g"
  648. find ./ -type f -name "*Grunt*" | while read FILE ; do
  649. newfile="$(echo ${FILE} |sed -e "s/Grunt/${Random2^}/g")";
  650. mv "${FILE}" "${newfile}";
  651. done
  652. find ./ -type f -name "*GRUNT*" | while read FILE ; do
  653. newfile="$(echo ${FILE} |sed -e "s/GRUNT/${Random2^^}/g")";
  654. mv "${FILE}" "${newfile}";
  655. done
  656. find ./ -type f -name "*grunt*" | while read FILE ; do
  657. newfile="$(echo ${FILE} |sed -e "s/grunt/${Random2,,}/g")";
  658. mv "${FILE}" "${newfile}";
  659. done
  660. find ./ -type f -name "*Covenant*" | while read FILE ; do
  661. newfile="$(echo ${FILE} |sed -e "s/Covenant/${Random1^}/g")";
  662. mv "${FILE}" "${newfile}";
  663. done
  664. find ./ -type f -name "*COVENANT*" | while read FILE ; do
  665. newfile="$(echo ${FILE} |sed -e "s/COVENANT/${Random2^^}/g")";
  666. mv "${FILE}" "${newfile}";
  667. done
  668. #find ./ -type f -name "*covenant*" | while read FILE ; do
  669. # newfile="$(echo ${FILE} |sed -e "s/covenant/ottocommand/g")";
  670. # mv "${FILE}" "${newfile}";
  671. #done
  672. mv ../AssemblyReferences/ ./Data/
  673. mv ../ReferenceSourceLibraries/ ./Data/
  674. mv ../EmbeddedResources/ ./Data/
  675. dotnet build
  676. echo ""
  677. cd /opt/Command_And_Control/
  678. echo"Installing Shad0w"
  679. echo ""
  680. sleep 2
  681. git clone https://github.com/bats3c/shad0w.git
  682. cd shad0w/
  683. bash install.sh
  684. echo ""
  685. cd /opt/Command_And_
  686. /
  687. echo "Installing Sliver"
  688. echo ""
  689. sleep 2
  690. git clone https://github.com/BishopFox/sliver.git
  691. cd sliver/
  692. python3 build.py
  693. cd /opt/Command_And_Control
  694. echo ""
  695. echo "Installing SilentTrinity"
  696. echo ""
  697. sleep 2
  698. git clone https://github.com/byt3bl33d3r/SILENTTRINITY.git
  699. cd SILENTTRINITY/
  700. pip3 install -r requirements.txt
  701. cd /opt/Command_And_Control
  702. echo ""
  703. echo "Installing Pupy C2"
  704. echo ""
  705. sleep 2
  706. git clone https://github.com/n1nj4sec/pupy.git
  707. echo ""
  708. echo "Installing Metasploit"
  709. sleep 2
  710. echo ""
  711. apt install postgresql -y
  712. systemctl start postgresql
  713. systemctl enable postgresql
  714. apt install curl -y
  715. apt --fix-broken install -y
  716. curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall
  717. chmod +x msfinstall
  718. ./msfinstall
  719. apt --fix-broken install -y
  720. echo ""
  721. echo "Cloning Staging Resources"
  722. echo ""
  723. cd /opt/
  724. mkdir Staging
  725. cd Staging/
  726. echo "Installing PwnDrop"
  727. git clone https://github.com/kgretzky/pwndrop.git
  728. cd pwndrop/
  729. go build
  730. cd /opt/Staging
  731. echo ""
  732. echo "Installing C2 Concealer"
  733. echo ""
  734. sleep 2
  735. git clone https://github.com/FortyNorthSecurity/C2concealer.git
  736. cd C2concealer/
  737. bash install.sh
  738. cd /opt/Staging/
  739. echo ""
  740. echo "Installing FindFrontableDomains"
  741. echo ""
  742. sleep 2
  743. git clone https://github.com/rvrsh3ll/FindFrontableDomains.git
  744. cd FindFrontableDomains/
  745. bash install.sh
  746. echo ""
  747. echo "Installing DomainHunter"
  748. echo ""
  749. cd /opt/Staging/
  750. sleep 2
  751. git clone https://github.com/threatexpress/domainhunter.git
  752. cd domainhunter/
  753. pip3 install -r requirements.txt
  754. echo ""
  755. cd /opt/Staging/
  756. echo "Installing RedWarden"
  757. echo ""
  758. sleep 2
  759. git clone https://github.com/mgeeky/RedWarden.git
  760. cd RedWarden/
  761. pip3 install -r requirements.txt
  762. cd /opt/Staging/
  763. echo ""
  764. echo "Installing AzureC2Relay"
  765. echo ""
  766. sleep 2
  767. git clone https://github.com/Flangvik/AzureC2Relay.git
  768. echo ""
  769. echo "Installing C3"
  770. echo ""
  771. sleep 2
  772. cd /opt/Windows_OS
  773. git clone https://github.com/FSecureLABS/C3.git
  774. echo ""
  775. cd /opt/Staging/
  776. echo "Installing Chameleon"
  777. echo ""
  778. sleep 2
  779. git clone https://github.com/mdsecactivebreach/Chameleon.git
  780. cd Chameleon/
  781. pip3 install -r requirements.txt
  782. cd /opt/Staging/
  783. echo ""
  784. echo "Installing Redirect Rules"
  785. echo ""
  786. sleep 2
  787. git clone https://github.com/0xZDH/redirect.rules.git
  788. cd redirect.rules/
  789. bash setup.sh
  790. echo ""
  791. echo "Installing Log Aggregation Resources"
  792. echo ""
  793. sleep 2
  794. cd /opt
  795. mkdir Log_Aggregation
  796. cd Log_Aggregation
  797. echo ""
  798. echo "Installing RedELK"
  799. echo ""
  800. sleep 2
  801. git clone https://github.com/outflanknl/RedELK.git
  802. echo ""
  803. echo "Installing RedTeamSIEM"
  804. echo ""
  805. sleep 2
  806. git clone https://github.com/SecurityRiskAdvisors/RedTeamSIEM.git
  807. echo ""
  808. echo "Installing Situational Awareness Resources"
  809. echo ""
  810. sleep 2
  811. cd /opt/Situational_Awareness
  812. mkdir Host_Situtational_Awareness
  813. cd Host_Situational_Awareness
  814. echo ""
  815. echo "Installing AggressiveProxy"
  816. echo ""
  817. sleep 2
  818. cd /opt/Windows_OS
  819. git clone https://github.com/EncodeGroup/AggressiveProxy.git
  820. echo ""
  821. echo "Installing Gopher"
  822. echo ""
  823. sleep 2
  824. git clone https://github.com/EncodeGroup/Gopher.git
  825. echo ""
  826. echo "Installing SharpEDRChecker"
  827. echo ""
  828. sleep 2
  829. git clone https://github.com/PwnDexter/SharpEDRChecker.git
  830. echo ""
  831. echo "Installing CS-Situational-Awareness-BOF"
  832. echo ""
  833. sleep 2
  834. git clone https://github.com/trustedsec/CS-Situational-Awareness-BOF.git
  835. echo ""
  836. echo "Installing Seatbelt"
  837. echo ""
  838. sleep 2
  839. git clone https://github.com/GhostPack/Seatbelt.git
  840. echo ""
  841. echo "Installing SauronEye"
  842. echo ""
  843. sleep 2
  844. git clone https://github.com/vivami/SauronEye.git
  845. echo ""
  846. echo "Installing SharpShares"
  847. echo ""
  848. sleep 2
  849. git clone https://github.com/mitchmoser/SharpShares.git
  850. echo ""
  851. echo "Installing SharpAppLocker"
  852. echo ""
  853. sleep2
  854. git clone https://github.com/Flangvik/SharpAppLocker/.git
  855. echo ""
  856. echo "Installing SharpPrinter"
  857. echo ""
  858. sleep 2
  859. git clone https://github.com/rvrsh3ll/SharpPrinter.git
  860. echo ""
  861. echo "Installing Standin"
  862. echo ""
  863. git clone https://github.com/FuzzySecurity/StandIn.git
  864. echo ""
  865. echo "Installing Recon-AD"
  866. echo ""
  867. sleep 2
  868. git clone https://github.com/outflanknl/Recon-AD.git
  869. echo ""
  870. echo "Cloning BloodHound For Windows"
  871. echo ""
  872. sleep 2
  873. git clone https://github.com/BloodHoundAD/BloodHound.git
  874. echo ""
  875. echo "Installing PSPKIAudit"
  876. echo ""
  877. sleep 2
  878. git clone https://github.com/GhostPack/PSPKIAudit.git
  879. echo ""
  880. echo "Installing SharpView"
  881. echo ""
  882. sleep 2
  883. git clone https://github.com/tevora-threat/SharpView.git
  884. echo ""
  885. echo "Installing Rubeus"
  886. echo ""
  887. sleep 2
  888. git clone https://github.com/GhostPack/Rubeus.git
  889. echo ""
  890. echo "Installing Grouper"
  891. echo ""
  892. sleep 2
  893. git clone https://github.com/l0ss/Grouper.git
  894. echo ""
  895. echo "Installing ImproHound"
  896. echo ""
  897. sleep 2
  898. git clone https://github.com/improsec/ImproHound.git
  899. echo ""
  900. echo "Installing ADRecon"
  901. echo ""
  902. sleep 2
  903. git clone https://github.com/adrecon/ADRecon.git
  904. echo ""
  905. echo "Installing ADCSPwn"
  906. echo ""
  907. sleep2
  908. git clone https://github.com/bats3c/ADCSPwn.git
  909. echo ""
  910. cd /opt/Windows_OS
  911. echo "Cloning Mimikatz"
  912. echo ""
  913. sleep2
  914. git clone https://github.com/gentilkiwi/mimikatz.git
  915. echo ""
  916. echo "Cloning Dumpert"
  917. echo ""
  918. sleep 2
  919. git clone https://github.com/outflanknl/Dumpert.git
  920. echo ""
  921. echo "Cloning SharpLAPS"
  922. echo ""
  923. sleep 2
  924. git clone https://github.com/swisskyrepo/SharpLAPS.git
  925. echo ""
  926. echo "Cloning SharpDPAPI"
  927. echo ""
  928. sleep 2
  929. git clone https://github.com/GhostPack/SharpDPAPI.git
  930. echo ""
  931. echo "Cloning KeeThief"
  932. echo ""
  933. sleep 2
  934. git clone https://github.com/GhostPack/KeeThief.git
  935. echo ""
  936. echo "Cloning SafetyKatz"
  937. echo ""
  938. sleep 2
  939. git clone https://github.com/GhostPack/SafetyKatz.git
  940. echo ""
  941. echo "Cloning Forkatz"
  942. echo ""
  943. sleep 2
  944. git clone https://github.com/Barbarisch/forkatz.git
  945. echo ""
  946. echo "Cloning PPLKiller"
  947. echo ""
  948. sleep 2
  949. git clone https://github.com/RedCursorSecurityConsulting/PPLKiller.git
  950. echo ""
  951. echo "Cloning LaZagne"
  952. echo ""
  953. sleep 2
  954. git clone https://github.com/AlessandroZ/LaZagne.git
  955. echo ""
  956. echo "Cloning AndrewSpecial"
  957. echo ""
  958. sleep 2
  959. git clone https://github.com/hoangprod/AndrewSpecial.git
  960. echo ""
  961. echo "Cloning Net-GPPassword"
  962. echo ""
  963. sleep 2
  964. git clone https://github.com/outflanknl/Net-GPPPassword.git
  965. echo ""
  966. echo "Cloning SharpChromium"
  967. echo ""
  968. sleep 2
  969. git clone https://github.com/djhohnstein/SharpChromium.git
  970. echo ""
  971. echo "Cloning Chlonium"
  972. echo ""
  973. sleep 2
  974. git clone https://github.com/rxwx/chlonium.git
  975. echo ""
  976. echo "Cloning SharpCloud"
  977. echo ""
  978. sleep 2
  979. git clone https://github.com/chrismaddalena/SharpCloud.git
  980. echo ""
  981. echo "Cloning PypyKatz"
  982. echo ""
  983. sleep 2
  984. git clone https://github.com/skelsec/pypykatz.git
  985. echo ""
  986. echo "Cloning NanoDump"
  987. echo ""
  988. sleep 2
  989. git clone https://github.com/helpsystems/nanodump.git
  990. echo "Cloning Privilege Escallation Resources"
  991. cd /home/pi/Repo/Privilege_Escallation
  992. git clone https://github.com/rsmudge/ElevateKit.git
  993. git clone https://github.com/rasta-mouse/Watson.git
  994. git clone https://github.com/GhostPack/SharpUp.git
  995. git clone https://github.com/hlldz/dazzleUP.git
  996. git clone https://github.com/carlospolop/PEASS-ng.git
  997. git clone https://github.com/CCob/SweetPotato.git
  998. git clone https://github.com/S3cur3Th1sSh1t/MultiPotato.git
  999. echo "Cloning Defense Evasion Resources"
  1000. cd /home/pi/Repo/Defense_Evasion
  1001. git clone https://github.com/hlldz/RefleXXion.git
  1002. git clone https://github.com/wavestone-cdt/EDRSandblast.git
  1003. git clone https://github.com/APTortellini/unDefender.git
  1004. git clone https://github.com/Yaxser/Backstab.git
  1005. git clone https://github.com/boku7/spawn.git
  1006. git clone https://github.com/CCob/BOF.NET.git
  1007. git clone https://github.com/Flangvik/NetLoader.git
  1008. git clone https://github.com/outflanknl/FindObjects-BOF.git
  1009. git clone https://github.com/GetRektBoy724/SharpUnhooker.git
  1010. git clone https://github.com/bats3c/EvtMute.git
  1011. git clone https://github.com/xforcered/InlineExecute-Assembly.git
  1012. git clone https://github.com/hlldz/Phant0m.git
  1013. git clone https://github.com/CCob/SharpBlock.git
  1014. git clone https://github.com/Kharos102/NtdllUnpatcher.git
  1015. git clone https://github.com/bats3c/DarkLoadLibrary.git
  1016. git clone https://github.com/Soledge/BlockEtw.git
  1017. git clone https://github.com/mdsecactivebreach/firewalker.git
  1018. git clone https://github.com/Cerbersec/KillDefenderBOF.git
  1019. echo "Cloning Social Engineering Resources"
  1020. cd /home/pi/Social_Engineering
  1021. git clone https://github.com/trustedsec/social-engineer-toolkit.git
  1022. git clone https://github.com/bhdresh/SocialEngineeringPayloads.git
  1023. echo "Cloning Phishing Resources"
  1024. cd /home/pi/Phishing
  1025. git clone https://github.com/ryhanson/phishery.git
  1026. git clone https://github.com/kgretzky/evilginx2.git
  1027. git clone https://github.com/fireeye/PwnAuth.git
  1028. git clone https://github.com/drk1wi/Modlishka.git
  1029. git clone https://github.com/securestate/king-phisher.git
  1030. git clone https://github.com/Raikia/FiercePhish.git
  1031. git clone https://github.com/fireeye/ReelPhish.git
  1032. git clone https://github.com/gophish/gophish.git
  1033. git clone https://github.com/ustayready/CredSniper.git
  1034. git clone https://github.com/pentestgeek/phishing-frenzy.git
  1035. git clone https://github.com/L4bF0x/PhishingPretexts.git
  1036. echo "Cloning Persistence Resources"
  1037. cd /home/pi/Repo/Persistence
  1038. git clone https://github.com/0xthirteen/SharpStay.git
  1039. git clone https://github.com/fireeye/SharPersist.git
  1040. git clone https://github.com/outflanknl/SharpHide.git
  1041. git clone https://github.com/Ben0xA/DoUCMe.git
  1042. git clone https://github.com/nccgroup/ABPTTS.git
  1043. git clone https://github.com/blackarrowsec/pivotnacci.git
  1044. git clone https://github.com/sensepost/reGeorg.git
  1045. git clone https://github.com/HarmJ0y/DAMP.git
  1046. git clone https://github.com/0x09AL/IIS-Raid.git
  1047. git clone https://github.com/antonioCoco/SharPyShell.git
  1048. echo "Cloning Lateral Movement Resources"
  1049. cd /home/pi/Repo/Lateral_Movement
  1050. git clone https://github.com/RiccardoAncarani/LiquidSnake.git
  1051. git clone https://github.com/NetSPI/PowerUpSQL.git
  1052. git clone https://github.com/0xthirteen/SharpRDP.git
  1053. git clone https://github.com/0xthirteen/MoveKit.git
  1054. git clone https://github.com/juliourena/SharpNoPSExec.git
  1055. git clone https://github.com/lgandx/Responder.git
  1056. git clone https://github.com/dirkjanm/mitm6.git
  1057. git clone https://github.com/SecureAuthCorp/impacket.git
  1058. git clone https://github.com/mdsecactivebreach/Farmer.git
  1059. git clone https://github.com/FortyNorthSecurity/CIMplant.git
  1060. git clone https://github.com/Mr-Un1k0d3r/PowerLessShell.git
  1061. git clone https://github.com/FSecureLABS/SharpGPOAbuse.git
  1062. git clone https://github.com/ropnop/kerbrute.git
  1063. git clone https://github.com/blackarrowsec/mssqlproxy.git
  1064. git clone https://github.com/Kevin-Robertson/Invoke-TheHash.git
  1065. git clone https://github.com/Kevin-Robertson/InveighZero.git
  1066. git clone https://github.com/jnqpblc/SharpSpray/git
  1067. git clone https://github.com/byt3bl33d3r/CrackMapExec.git
  1068. git clone https://github.com/pkb1s/SharpAllowedToAct.git
  1069. git clone https://github.com/bohops/SharpRDPHijack.git
  1070. git clone https://github.com/klezVirus/CheeseTools.git
  1071. git clone https://github.com/iomoath/SharpSpray.git
  1072. git clone https://github.com/BloodHoundAD/SharpHound.git
  1073. git clone https://github.com/PowerShellMafia/PowerSploit.git
  1074. git clone https://github.com/NetSPI/PowerUpSQL.git
  1075. git clone https://github.com/DanMcInerney/icebreaker.git
  1076. git clone https://github.com/JavelinNetworks/HoneypotBuster.git
  1077. echo "Cloning Exfiltration Resources"
  1078. cd /home/pi/Repo/Exfiltration
  1079. git clone https://github.com/Flangvik/SharpExfiltrate.git
  1080. git clone https://github.com/Arno0x/DNSExfiltrator.git
  1081. git clone https://github.com/FortyNorthSecurity/Egress-Assess.git
  1082. echo "Cloning Cloud Resources"
  1083. cd /home/pi/Repo/Cloud
  1084. mkdir AWS
  1085. git clone https://github.com/RhinoSecurityLabs/pacu.git
  1086. git clone https://github.com/duo-labs/cloudmapper.git
  1087. git clone https://github.com/andresriancho/enumerate-iam.git
  1088. git clone https://github.com/jordanpotti/AWSBucketDump.git
  1089. cd ../
  1090. mkdir Azure
  1091. cd Azure
  1092. git clone https://github.com/fox-it/adconnectdump.git
  1093. git clone https://github.com/Azure/Stormspotter.git
  1094. git clone https://github.com/dirkjanm/ROADtools.git
  1095. git clone https://github.com/NetSPI/MicroBurst.git
  1096. git clone https://github.com/Gerenios/AADInternals.git
  1097. echo "Cloning Hak5 Implant Resources"
  1098. cd /home/pi/Repo/Hak5_Implants
  1099. git clone https://github.com/hak5/omg-payloads.git
  1100. git clone https://github.com/hak5/bashbunny-payloads.git
  1101. git clone https://github.com/hak5/usbrubberducky-payloads.git
  1102. git clone https://github.com/hak5/pineapple-community-packages.git
  1103. git clone https://github.com/hak5/pineapple-modules.git
  1104. git clone https://github.com/hak5/mk7-docs.git
  1105. git clone https://github.com/hak5/keycroc-payloads.git
  1106. git clone https://github.com/hak5/sharkjack-payloads.git
  1107. git clone https://github.com/hak5/lanturtle-modules.git
  1108. git clone https://github.com/hak5/hak5-docs.git
  1109. git clone https://github.com/hak5/packetsquirrel-payloads.git
  1110. git clone https://github.com/hak5/nano-tetra-modules.git
  1111. git clone https://github.com/hak5/signalowl-payloads.git
  1112. git clone https://github.com/hak5/plunderbug-scripts.git
  1113. echo "Cloning Wireless Resources"
  1114. cd /home/pi/Repo/Wireless
  1115. git clone https://github.com/derv82/wifite2.git
  1116. git clone https://github.com/wifiphisher/wifiphisher.git
  1117. git clone https://github.com/sensepost/mana.git
  1118. git clone https://github.com/joswr1ght/cowpatty.git
  1119. git clone https://github.com/athanstan/EvilTwin_AP_CaptivePortal.git