AutoC2.sh 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289
  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 ""
  991. sleep 2
  992. echo "Installing Privilege Escallation Resources"
  993. echo ""
  994. cd /opt/Privilege_Escallation
  995. echo ""
  996. echo "Installing ElevateKit"
  997. echo ""
  998. git clone https://github.com/rsmudge/ElevateKit.git
  999. echo ""
  1000. echo "Cloning Watson"
  1001. cd /opt/Windows_OS/
  1002. echo ""
  1003. sleep 2
  1004. git clone https://github.com/rasta-mouse/Watson.git
  1005. echo ""
  1006. echo "Cloning SharpUp"
  1007. echo ""
  1008. sleep 2
  1009. git clone https://github.com/GhostPack/SharpUp.git
  1010. echo ""
  1011. echo "Cloning dazzleUp"
  1012. echo ""
  1013. sleep 2
  1014. git clone https://github.com/hlldz/dazzleUP.git
  1015. echo ""
  1016. echo "Cloning PEASS-ng"
  1017. echo ""
  1018. sleep 2
  1019. git clone https://github.com/carlospolop/PEASS-ng.git
  1020. echo ""
  1021. echo "Cloning SweetPotato"
  1022. echo ""
  1023. sleep 2
  1024. git clone https://github.com/CCob/SweetPotato.git
  1025. echo ""
  1026. echo "Cloning MultiPotato"
  1027. echo ""
  1028. git clone https://github.com/S3cur3Th1sSh1t/MultiPotato.git
  1029. echo ""
  1030. echo "Cloning Defense Evasion Resources -- This is all Windows Based"
  1031. echo ""
  1032. sleep 2
  1033. cd /opt/Windows_OS/
  1034. git clone https://github.com/hlldz/RefleXXion.git
  1035. git clone https://github.com/wavestone-cdt/EDRSandblast.git
  1036. git clone https://github.com/APTortellini/unDefender.git
  1037. git clone https://github.com/Yaxser/Backstab.git
  1038. git clone https://github.com/boku7/spawn.git
  1039. git clone https://github.com/CCob/BOF.NET.git
  1040. git clone https://github.com/Flangvik/NetLoader.git
  1041. git clone https://github.com/outflanknl/FindObjects-BOF.git
  1042. git clone https://github.com/GetRektBoy724/SharpUnhooker.git
  1043. git clone https://github.com/bats3c/EvtMute.git
  1044. git clone https://github.com/xforcered/InlineExecute-Assembly.git
  1045. git clone https://github.com/hlldz/Phant0m.git
  1046. git clone https://github.com/CCob/SharpBlock.git
  1047. git clone https://github.com/Kharos102/NtdllUnpatcher.git
  1048. git clone https://github.com/bats3c/DarkLoadLibrary.git
  1049. git clone https://github.com/Soledge/BlockEtw.git
  1050. git clone https://github.com/mdsecactivebreach/firewalker.git
  1051. git clone https://github.com/Cerbersec/KillDefenderBOF.git
  1052. echo "Cloning Social Engineering Resources"
  1053. cd /opt/Social_Engineering
  1054. echo ""
  1055. echo "Installing Social Engineering Toolkit"
  1056. echo ""
  1057. sleep 2
  1058. git clone https://github.com/trustedsec/social-engineer-toolkit.git
  1059. cd social-engineering-toolkit/
  1060. pip3 install -r requirements.txt
  1061. python3 setup.py install
  1062. cd /opt/Social_Engineering/
  1063. echo ""
  1064. echo "Installing Social Engineering Payloads"
  1065. echo ""
  1066. sleep 2
  1067. git clone https://github.com/bhdresh/SocialEngineeringPayloads.git
  1068. echo ""
  1069. echo "Cloning Phishing Resources"
  1070. echo ""
  1071. sleep 2
  1072. cd /opt/Phishing/
  1073. echo ""
  1074. echo "Installing Phishery"
  1075. echo ""
  1076. sleep 2
  1077. mkdir phishery
  1078. cd phishery
  1079. wget https://github.com/ryhanson/phishery/releases/download/v1.0.2/phishery1.0.2linux-amd64.tar.gz
  1080. tar -xzvf phishery*.tar.gz
  1081. cp phishery /usr/local/bin
  1082. cd /opt/Phishing/
  1083. echo ""
  1084. echo "Installing EvilginX2"
  1085. echo ""
  1086. sleep 2
  1087. git clone https://github.com/kgretzky/evilginx2.git
  1088. cd evilginx2/
  1089. make
  1090. sudo make install
  1091. cd /opt/Phishing/
  1092. echo ""
  1093. echo "Installing PwnAuth"
  1094. echo ""
  1095. sleep 2
  1096. git clone https://github.com/fireeye/PwnAuth.git
  1097. cd PwnAuth/
  1098. bash setup.sh
  1099. cd /opt/Phishing/
  1100. echo ""
  1101. echo "Installig Modlishka"
  1102. echo ""
  1103. sleep 2
  1104. git clone https://github.com/drk1wi/Modlishka.git
  1105. cd Modlishka/
  1106. make
  1107. go build
  1108. cd /opt/Phishing/
  1109. echo ""
  1110. echo "Installing King-Phisher"
  1111. echo ""
  1112. sleep 2
  1113. git clone https://github.com/securestate/king-phisher.git
  1114. echo ""
  1115. echo "Installing FiercePhish"
  1116. echo ""
  1117. sleep 2
  1118. git clone https://github.com/Raikia/FiercePhish.git
  1119. cd FiercePhish/
  1120. bash install.sh
  1121. echo ""
  1122. echo "Installing ReelPhish"
  1123. echo ""
  1124. sleep 2
  1125. git clone https://github.com/fireeye/ReelPhish.git
  1126. cd ReelPhish/
  1127. pip3 install -r requirements.txt
  1128. cd /opt/Phishing/
  1129. echo ""
  1130. echo "Installing GoPhish"
  1131. echo ""
  1132. sleep 2
  1133. git clone https://github.com/gophish/gophish.git
  1134. cd gophish/
  1135. go build
  1136. echo ""
  1137. cd /opt/Phishing/
  1138. echo "Installing CredSniper"
  1139. echo ""
  1140. sleep 2
  1141. git clone https://github.com/ustayready/CredSniper.git
  1142. cd CredSniper/
  1143. read -p "Just Hit Enter Until All Dependencies Are Installed"
  1144. cd /opt/Phishing/
  1145. echo ""
  1146. echo "Cloning Phishing Pretexts"
  1147. echo ""
  1148. sleep 2
  1149. git clone https://github.com/L4bF0x/PhishingPretexts.git
  1150. echo ""
  1151. echo "Cloning Persistence Resources"
  1152. cd /opt/Windows_OS
  1153. mkdir Persistence
  1154. cd Persistence/
  1155. git clone https://github.com/0xthirteen/SharpStay.git
  1156. git clone https://github.com/fireeye/SharPersist.git
  1157. git clone https://github.com/outflanknl/SharpHide.git
  1158. git clone https://github.com/Ben0xA/DoUCMe.git
  1159. git clone https://github.com/nccgroup/ABPTTS.git
  1160. git clone https://github.com/blackarrowsec/pivotnacci.git
  1161. git clone https://github.com/sensepost/reGeorg.git
  1162. git clone https://github.com/HarmJ0y/DAMP.git
  1163. git clone https://github.com/0x09AL/IIS-Raid.git
  1164. git clone https://github.com/antonioCoco/SharPyShell.git
  1165. echo ""
  1166. echo "Cloning Lateral Movement Resources"
  1167. echo ""
  1168. echo "
  1169. cd /opt/Lateral_Movement/
  1170. git clone https://github.com/lgandx/Responder.git
  1171. git clone https://github.com/dirkjanm/mitm6.git
  1172. git clone https://github.com/SecureAuthCorp/impacket.git
  1173. git clone https://github.com/RiccardoAncarani/LiquidSnake.git
  1174. git clone https://github.com/NetSPI/PowerUpSQL.git
  1175. git clone https://github.com/0xthirteen/SharpRDP.git
  1176. git clone https://github.com/0xthirteen/MoveKit.git
  1177. git clone https://github.com/juliourena/SharpNoPSExec.git
  1178. git clone https://github.com/lgandx/Responder.git
  1179. git clone https://github.com/dirkjanm/mitm6.git
  1180. git clone https://github.com/SecureAuthCorp/impacket.git
  1181. git clone https://github.com/mdsecactivebreach/Farmer.git
  1182. git clone https://github.com/FortyNorthSecurity/CIMplant.git
  1183. git clone https://github.com/Mr-Un1k0d3r/PowerLessShell.git
  1184. git clone https://github.com/FSecureLABS/SharpGPOAbuse.git
  1185. git clone https://github.com/ropnop/kerbrute.git
  1186. git clone https://github.com/blackarrowsec/mssqlproxy.git
  1187. git clone https://github.com/Kevin-Robertson/Invoke-TheHash.git
  1188. git clone https://github.com/Kevin-Robertson/InveighZero.git
  1189. git clone https://github.com/jnqpblc/SharpSpray/git
  1190. git clone https://github.com/byt3bl33d3r/CrackMapExec.git
  1191. git clone https://github.com/pkb1s/SharpAllowedToAct.git
  1192. git clone https://github.com/bohops/SharpRDPHijack.git
  1193. git clone https://github.com/klezVirus/CheeseTools.git
  1194. git clone https://github.com/iomoath/SharpSpray.git
  1195. git clone https://github.com/BloodHoundAD/SharpHound.git
  1196. git clone https://github.com/PowerShellMafia/PowerSploit.git
  1197. git clone https://github.com/NetSPI/PowerUpSQL.git
  1198. git clone https://github.com/DanMcInerney/icebreaker.git
  1199. git clone https://github.com/JavelinNetworks/HoneypotBuster.git
  1200. echo "Cloning Exfiltration Resources"
  1201. cd /home/pi/Repo/Exfiltration
  1202. git clone https://github.com/Flangvik/SharpExfiltrate.git
  1203. git clone https://github.com/Arno0x/DNSExfiltrator.git
  1204. git clone https://github.com/FortyNorthSecurity/Egress-Assess.git
  1205. echo "Cloning Cloud Resources"
  1206. cd /home/pi/Repo/Cloud
  1207. mkdir AWS
  1208. git clone https://github.com/RhinoSecurityLabs/pacu.git
  1209. git clone https://github.com/duo-labs/cloudmapper.git
  1210. git clone https://github.com/andresriancho/enumerate-iam.git
  1211. git clone https://github.com/jordanpotti/AWSBucketDump.git
  1212. cd ../
  1213. mkdir Azure
  1214. cd Azure
  1215. git clone https://github.com/fox-it/adconnectdump.git
  1216. git clone https://github.com/Azure/Stormspotter.git
  1217. git clone https://github.com/dirkjanm/ROADtools.git
  1218. git clone https://github.com/NetSPI/MicroBurst.git
  1219. git clone https://github.com/Gerenios/AADInternals.git
  1220. echo "Cloning Hak5 Implant Resources"
  1221. cd /home/pi/Repo/Hak5_Implants
  1222. git clone https://github.com/hak5/omg-payloads.git
  1223. git clone https://github.com/hak5/bashbunny-payloads.git
  1224. git clone https://github.com/hak5/usbrubberducky-payloads.git
  1225. git clone https://github.com/hak5/pineapple-community-packages.git
  1226. git clone https://github.com/hak5/pineapple-modules.git
  1227. git clone https://github.com/hak5/mk7-docs.git
  1228. git clone https://github.com/hak5/keycroc-payloads.git
  1229. git clone https://github.com/hak5/sharkjack-payloads.git
  1230. git clone https://github.com/hak5/lanturtle-modules.git
  1231. git clone https://github.com/hak5/hak5-docs.git
  1232. git clone https://github.com/hak5/packetsquirrel-payloads.git
  1233. git clone https://github.com/hak5/nano-tetra-modules.git
  1234. git clone https://github.com/hak5/signalowl-payloads.git
  1235. git clone https://github.com/hak5/plunderbug-scripts.git
  1236. echo "Cloning Wireless Resources"
  1237. cd /home/pi/Repo/Wireless
  1238. git clone https://github.com/derv82/wifite2.git
  1239. git clone https://github.com/wifiphisher/wifiphisher.git
  1240. git clone https://github.com/sensepost/mana.git
  1241. git clone https://github.com/joswr1ght/cowpatty.git
  1242. git clone https://github.com/athanstan/EvilTwin_AP_CaptivePortal.git