0x01 环境准备

安装谷歌浏览器

安装wegt

1
apt-get install wget

使用wegt下载最新的Google Chrome .deb程序包

1
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

安装 Google Chrome

1
apt install ./google-chrome-stable_current_amd64.deb

谷歌浏览器开启沙箱模式

1
2
3
4
修改/usr/share/applications/google-chrome.desktop文件
Exec=/usr/bin/google-chrome-stable %U
改为
Exec=/usr/bin/google-chrome-stable --no-sandbox %U

国内网络加速下载github文件

1
2
3
4
5
6
7
8
9
10
11
12
git clone
git clone https://ghproxy.com/https://github.com/stilleshan/ServerStatus

git clone 私有仓库
Clone 私有仓库需要用户在 Personal access tokens 申请 Token 配合使用.
git clone https://user:your_token@ghproxy.com/https://github.com/your_name/your_private_repo

wget & curl
wget https://ghproxy.com/https://github.com/stilleshan/ServerStatus/archive/master.zip
wget https://ghproxy.com/https://raw.githubusercontent.com/stilleshan/ServerStatus/master/Dockerfile
curl -O https://ghproxy.com/https://github.com/stilleshan/ServerStatus/archive/master.zip
curl -O https://ghproxy.com/https://raw.githubusercontent.com/stilleshan/ServerStatus/master/Dockerfile

0x02 Crawlergo+xray+企业微信推送

xray前期的配置

1
2
3
4
5
chmod +x xray_linux_amd64   
./xray_linux_amd64 version //查看版本
./xray_linux_amd64 genca //生成证书
cp ca.crt /usr/local/share/ca-certificates/xray.crt //安装证书
update-ca-certificates

配置好launcher.py的cmd变量中的crawlergo爬虫配置(主要是chrome路径转换本地路径)

1
/usr/bin/google-chrome

下载crawlergo+xray

下载crawlergo

1
chmod +x crawlergo

开始扫描

1
2
3
4
5
6
7
第一步:xray启动被动扫描状态
./xray_linux_amd64 webscan --listen 127.0.0.1:7777 --html-output 1.html --webhook-output http://127.0.0.1:5000/webhook
第二步:python3运行launcher.py
pip3 install simplejson
pip3 install requests
第三步:运行企业微信推送的脚本
python qyxxx.py

0x03 cenos安装java环境

1
2
3
4
先去官网下载jdk环境
创建java目录:mkdir /usr/java
把下载好的jdk解压好后,移动过去java目录
设置环境变量:vi /etc/profile

添加一下内容

1
2
3
4
5
6
#set java environment
JAVA_HOME=/usr/java/jdk1.7.0_79
JRE_HOME=/usr/java/jdk1.7.0_79/jre
CLASS_PATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar:$JRE_HOME/lib
PATH=$PATH:$JAVA_HOME/bin:$JRE_HOME/bin
export JAVA_HOME JRE_HOME CLASS_PATH PATH

让修改生效:source /etc/profile

0x04 安装notify

1
2
3
go install -v github.com/projectdiscovery/notify/cmd/notify@latest
默认配置文件在:$HOME/.config/notify/provider-config.yaml

0x05 mov转mp4

1
fmpeg -i 1.mov -vcodec libx264 -preset fast -crf 20 -y -ab 128k 1.mp4

0x06 debain 安装go

1
2
3
4
5
6
wget https://dl.google.com/go/go1.17.6.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.17.6.linux-amd64.tar.gz
echo export PATH=$PATH:/usr/local/go/bin >> ~/.profile #当前用户
echo export PATH=$PATH:/root/go/bin >> ~/.profile
source ~/.profile
go version