Lateral.sh 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. echo ""
  2. echo "Cloning Lateral Movement Resources"
  3. echo ""
  4. mkdir /opt/Windows_OS >/dev/null 2>&1
  5. mkdir /opt/Lateral_Movement >/dev/null 2>&1
  6. cd /opt/Lateral_Movement/
  7. apt install ettercap-graphical -y
  8. echo ""
  9. echo "Installing LDAP Tools"
  10. echo ""
  11. apt install ldap-utils -y
  12. echo ""
  13. echo "Installing Kerbrute"
  14. echo ""
  15. git clone https://github.com/ropnop/kerbrute.git
  16. echo ""
  17. echo "Installing Petitpotam"
  18. sleep 2
  19. git clone https://github.com/topotam/PetitPotam.git
  20. echo ""
  21. echo "Installing Responder"
  22. echo ""
  23. sleep 2
  24. git clone https://github.com/lgandx/Responder.git
  25. echo ""
  26. echo "Installing MITM6"
  27. echo ""
  28. sleep 2
  29. git clone https://github.com/dirkjanm/mitm6.git
  30. cd mitm6/
  31. pip3 install -r requirements.txt
  32. python3 setup.py install
  33. cd /opt/Lateral_Movement/
  34. echo ""
  35. echo "Installing Impacket"
  36. echo ""
  37. sleep 2
  38. git clone https://github.com/SecureAuthCorp/impacket.git
  39. cd impacket/
  40. python3 setup.py install
  41. echo ""
  42. sleep 2
  43. cd /opt/Lateral_Movement/
  44. echo "Cloning CrackMapExec"
  45. git clone https://github.com/byt3bl33d3r/CrackMapExec.git
  46. cd CrackMapExec/
  47. echo "Cloning Windows Lateral Movement Resources"
  48. echo ""
  49. sleep 2
  50. cd /opt/Windows_OS/
  51. mkdir Lateral_Movement >/dev/null 2>&1
  52. cd Lateral_Movement/
  53. git clone https://github.com/nettitude/SharpWSUS
  54. git clone https://github.com/RiccardoAncarani/LiquidSnake.git
  55. git clone https://github.com/NetSPI/PowerUpSQL.git
  56. git clone https://github.com/0xthirteen/SharpRDP.git
  57. git clone https://github.com/0xthirteen/MoveKit.git
  58. git clone https://github.com/juliourena/SharpNoPSExec.git
  59. git clone https://github.com/mdsecactivebreach/Farmer.git
  60. git clone https://github.com/FortyNorthSecurity/CIMplant.git
  61. git clone https://github.com/Mr-Un1k0d3r/PowerLessShell.git
  62. git clone https://github.com/FSecureLABS/SharpGPOAbuse.git
  63. git clone https://github.com/ropnop/kerbrute.git
  64. git clone https://github.com/blackarrowsec/mssqlproxy.git
  65. git clone https://github.com/Kevin-Robertson/Invoke-TheHash.git
  66. git clone https://github.com/Kevin-Robertson/InveighZero.git
  67. git clone https://github.com/jnqpblc/SharpSpray/git
  68. git clone https://github.com/pkb1s/SharpAllowedToAct.git
  69. git clone https://github.com/bohops/SharpRDPHijack.git
  70. git clone https://github.com/klezVirus/CheeseTools.git
  71. git clone https://github.com/PowerShellMafia/PowerSploit.git
  72. git clone https://github.com/DanMcInerney/icebreaker.git
  73. git clone https://github.com/JavelinNetworks/HoneypotBuster.git
  74. echo ""