node使用ncu更新package.json中依赖包版本
npm install -g npm-check-updates
ncu
ncu -u
Enjoy It. IT 技术、相关资讯分享
CR回车 LF换行Windows/Dos CRLF \r\n
Linux/Unix LF \n
MacOS CR \r
一、AutoCRLF
#提交时转换为LF,检出时转换为CRLF
git config --global core.autocrlf true
#提交时转换为LF,检出时不转换
git config --global...
通过dns分析,目标网站使用阿里云ECS云盾.网站流量先经过aliyunddos1001.com服务器
经过反复尝试将之前Curl请求改成基于HTTP_Request2的Socket请求,顺利绕过防火墙.
通过tcpdump抓包比较
# socket
23:37:37.498916 IP localhost.58718 > localhost.http: Flags , seq 258486799, win 65495, options [mss...
ssh -qnfNT -g -R 8888:localhost:9999 -o ServerAliveInterval=600 -o ServerAliveCountMax=3 -p 22 [email protected]
{ "keys": , "command": "select_lines", "args": {"forward": false} },
{ "keys": , "command": "select_lines", "args":...
if (method_exists($controller, $action)) {
ob_start();
$controller -> {$action}();
$content = ob_get_contents();
ob_end_clean();
$etag =...
安装airodump-ng、reaver
sudo apt-get install airodump-ng
sudo apt-get install reaver
开启设置无线网卡的监听接口
sudo airodump-ng start mon0
sudo airodump-ng mon0
进行破解
sudo reaver -i mon0 -b...
Cloudflare公开中国节点IP段
https://www.cloudflare.com/zh-cn/ips/
# 获取CF代理IP
# 配置加入nginx Server前
set_real_ip_from 173.245.48.0/20;
set_real_ip_from 103.21.244.0/22;
set_real_ip_from 103.22.200.0/22;
set_real_ip_from 103.31.4.0/22;
set_real_ip_from 141.101.64.0/18;
set_real_ip_from 108.162.192.0/18;
set_real_ip_from 190.93.240.0/20;
set_real_ip_from 188.114.96.0/20;
set_real_ip_from 197.234.240.0/22;
set_real_ip_from 198.41.128.0/17;
set_real_ip_from...
CR回车 LF换行Windows/Dos CRLF \r\n
Linux/Unix LF \n
MacOS CR \r
一、AutoCRLF
#提交时转换为LF,检出时转换为CRLF
git config --global core.autocrlf true
#提交时转换为LF,检出时不转换
git config --global...
通过dns分析,目标网站使用阿里云ECS云盾.网站流量先经过aliyunddos1001.com服务器
经过反复尝试将之前Curl请求改成基于HTTP_Request2的Socket请求,顺利绕过防火墙.
通过tcpdump抓包比较
# socket
23:37:37.498916 IP localhost.58718 > localhost.http: Flags , seq 258486799, win 65495, options [mss...
安装 wsl-transdebian
sudo apt install apt-transport-https
wget -O /etc/apt/trusted.gpg.d/wsl-transdebian.gpg https://arkane-systems.github.io/wsl-transdebian/apt/wsl-transdebian.gpg
chmod a+r /etc/apt/trusted.gpg.d/wsl-transdebian.gpg
cat << EOF > /etc/apt/sources.list.d/wsl-transdebian.list
deb...
Cloudflare Origin CA 证书安装说明
1、先创建CA证书
2、将证书文件下载
3、获取CloudFlare的根证书
4、将根证书合并的xxxxx.pem的后面
再将证书部署到服务器,浏览器刷新显示“连接安全”。
第一步 timedatectl set-ntp 0 关闭时间同步
以ubuntu为例子
# 修复地区时间问题
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
date -s '2017-07-26 00:00:00'
Leave a Comment