随笔分类 - 网络/安全
网络技术,安全
摘要:docker pull piaoyizy/openwrt-x86 sudo ip link set eth0 promisc on docker network create -d macvlan --subnet=10.0.2.0/24 --gateway=10.0.2.254 -o parent
阅读全文
摘要:外部 外部转发端口2222 目标端口 3333 mknod backpipe p nc -lk 2222 0<backpipe | nc 目标IP 3333 | tee backpipe
阅读全文
摘要:history命令时间戳 vi /etc/profile在文件的末尾添加参数export HISTTIMEFORMAT="%F %T `whoami` " 会话超时(5分钟) vi /etc/profile在文件的末尾添加参数 export TMOUT=300
阅读全文
摘要:////IDC dump dex//// auto fp, dex_addr, end_addr; fp = fopen("F:\\dump.dex", "wb"); end_addr = r0 + r1; for ( dex_addr = r0; dex_addr < end_addr; dex_
阅读全文
摘要:过滤 包含网站(可以部分匹配)H:www.baidu.comH:baidu.com # 匹配域名www.qq.com下的所有请求 www.qq.com operatorURI # 匹配域名www.qq.com下的所有http请求 http://www.qq.com operatorURI # 匹配域
阅读全文
摘要:udp://denis.stalker.upeer.me:6969/announceudp://explodie.org:6969/announceudp://ipv4.tracker.harry.lu:80/announceudp://open.demonii.si:1337/announceud
阅读全文
摘要:ss5IP: c.v.cn 7050U:P test test set:git config --global http.https://github.com.proxy socks5://test:test@c.v.cn:7050git config --global https.https://
阅读全文
摘要:nginx key+pem iis pfx+pfx-password.txt tomcat pfx+pfx-password.txt apache key+chain.crt+public.crt
阅读全文
摘要:/etc/lightdm/lightdm.conf.d/50-nvidia.conf
阅读全文
摘要:http://tushare.org/ https://tushare.pro/
阅读全文
摘要:function main(splash, args) splash.images_enabled = false //不加载图片 assert(splash:go(args.url)) assert(splash:wait(1.5)) return { html = splash:html(), png = splash:png(), har = sp...
阅读全文
摘要:hydra -L user.txt -P pass.txt -o savessh.log -f -vV -e ns 10.0.5.24 sshhydra -L user.txt -P sup.txt -o savessh.log -f -vV -e ns 113.105.144.130 mysql
阅读全文
摘要:vi /etc/pam.d/sshd #%PAM-1.0auth required pam_tally2.so deny=3 unlock_time=600 even_deny_root root_unlock_time=1200 查看错误登录次数:pam_tally2 -u root pam_ta
阅读全文
摘要:cd /etc/sysconfig/network-scripts/ #进入网卡目录 cp ifcfg-eth0 ifcfg-eth0:1 # 复制出ifcfg-eth0:1虚拟网卡 vi ifcfg-eth0:1 #配置ifcfg-eth0:1虚拟网卡 DEVICE="eth0:1" #修改名称
阅读全文
摘要:海康 rtsp://admin:123@192.168.10.244:554/h264/ch1/main/av_stream 测试连接 rtsp://184.72.239.149/vod/mp4://BigBuckBunny_175k.mov
阅读全文
摘要:chatter +i file 文件不能删除,不能更改,不能移动 chatter -i file 恢复 lsattr file 查看 i e-- file 修改会提示: file: Permission denied
阅读全文
摘要:udo add-apt-repository ppa:pi-rho/security sudo apt-get update sudo apt-get install hydra hydra -l root -P pwd.txt -t 2 ssh://2.2.2.2 pwd.txt 11212312
阅读全文
摘要:匹配模式及顺序 location = /uri =开头表示精确匹配,只有完全匹配上才能生效。 location ^~ /uri ^~ 开头对URL路径进行前缀匹配,并且在正则之前。 location ~ pattern ~开头表示区分大小写的正则匹配。 location ~* pattern ~*开
阅读全文
摘要:curl -H "tocken: 123456789" -H "userName: admin" http://39.18.10.2/log/v1/errorlog/201.log -o log.log
阅读全文