您现在的位置是:首页 >学无止境 >红队常用命令网站首页学无止境

红队常用命令

肖萧然 2024-06-16 06:01:02
简介红队常用命令

原文链接 https://github.com/safe6Sec/command

command

收集渗透中会用到的常用命令 。

建议直接[Ctrl+F]查找

java命令执行

如下编码网站:
https://ares-x.com/tools/runtime-exec/
https://r0yanx.com/tools/java_exec_encode/
https://www.bugku.net/runtime-exec-payloads/

手动编码操作

bash -c {echo,cGluZyAxMjcuMC4wLjE7ZWNobyAxID50ZXN0LnR4dA==}|{base64,-d}|{bash,-i}

命令执行,定位资源文件写文件回显

Linux

find /|grep index.js|while read f;do sh -c "whoami" >$(dirname $f)/test.txt;done

Windows(注意盘符)

for /r D: %i in (index.js*) do whoami > %i/../test.txt
for /r D: %i in (index.js*) do whoami > %i

写shell

在windows中,批处理需要转义字符主要有 “&”,“|”,“<”,“>”等等,转义字符为”^”<

风语者!平时喜欢研究各种技术,目前在从事后端开发工作,热爱生活、热爱工作。