Author Topic: Metsploit Mega Primer!!  (Read 1591 times)

Offline trevelyn

  • Administrator
  • Elite Cactus Squad
  • Ninja Phone Loser
  • *****
  • Posts: 1687
  • 1337 13V3L: +183/-22
  • He likes cans and taking pictures in cans!
    • WeakNet Labs
Metsploit Mega Primer!!
« on: October 12, 2010, 10:04:06 AM »
Just sharing a few links since Chrstfer woke up the "Meatsploit Unleashed...Unleashed" post.  This was posted by HDMoore on his twitter account, but you have to sit there and look at advertisements and read bullshit you don't care about, so I am posting the direct links for you.
This shell script will dl each one sequentially so you can watch them with VLC at your leisure.
open an editor in Linux: (gedit, vim, ed, etc) and put this in it:

Code: [Select]
wget {http://videos.securitytube.net/Metasploit-Megaprimer-1.mp4,\
http://videos.securitytube.net/Metasploit-Megaprimer-2.mp4,\
http://videos.securitytube.net/Metasploit-3.mp4,\
http://videos.securitytube.net/Metasploit-4.mp4,\
http://videos.securitytube.net/Metasploit-5.mp4,\
http://videos.securitytube.net/Metasploit-6.mp4,\
http://videos.securitytube.net/Metasploit-7.mp4,\
http://videos.securitytube.net/Metasploit-8.mp4,\
http://videos.securitytube.net/Metasploit-9.mp4,\
http://videos.securitytube.net/Metasploit-10.mp4,\
http://videos.securitytube.net/Metasploit-11.mp4,\
http://videos.securitytube.net/Metasploit-12.mp4,\
http://videos.securitytube.net/Metasploit-13.mp4,\
http://videos.securitytube.net/Metasploit-14.mp4,\
http://videos.securitytube.net/Metasploit-15.mp4,\
http://videos.securitytube.net/Metasploit-16.mp4,\
http://videos.securitytube.net/Metasploit-17.mp4}

This uses a property of Bash: curly braces.  Each element in the curly brace is appended to the command and it's ran again each time.  Like a foreach loop.  (in case anyone cared, I love Bash.)
make it an executable:

Code: [Select]
chmod +x <filename>

Then run it:

Code: [Select]
./<filename>

Win!! Jack Pot! you get 300+ minutes of Metasploit beauty! <3  You may want to append --random-wait or something like that to your wget command to avoid being blocked, or whatever--like that str0ke video I shared with you years ago, where I slurped everything from the milw0rm server really fast and it blocked my IP.  (kinda embarrassing.. heh)

Your welcome.