打靶常用命令

# 查找系统中所有设置了SUID权限的可执行文件(用于提权检测) # SUID权限允许普通用户以文件所有者权限执行,常用于权限提升漏洞利用 find / -perm -u=s -type f 2>/dev/null # 使用Nikto进行Web服务器漏洞扫描 # 对指定IP地址(192.168.2

ConstStar ConstStar 发布于 2025-05-07

第一次开机随机mac地址

/etc/init.d/boot_init.sh ifconfig eth0 down ifconfig eth1 down if [ ! -e "/boot/first/boot_mac_eth0" ] || [ ! -e "/boot/first/boot_mac_eth1" ] ; then

ConstStar ConstStar 发布于 2024-11-29