# 代理节点
fofa 根据协议搜索, hysteria2
:hysteria2
body='type: hysteria2' | |
body='type: vless' | |
body='type: vmess' | |
body='type: ss' | |
body='type: ssr' | |
body='type: V2Ray' | |
body='type: trojan' |
fofa 根据配置搜索,链接:fofa 配置搜索
body="port: 7890" && body="socks-port: 7891" && body="allow-lan: true" |
fofa xui 面板薅节点
配合脚本 http 检测状态 200,默认账号 admin
/ admin
icon_hash="-1940576803" | |
(port="65432" || port="54321") && status_code="200" && (title="登录" || title="Login") | |
fid="z2ENYvhR/6Q/agEXGFVmdA==" |
360 测绘搜索
response:"'type': 'hysteria2'" |
# google 搜索
google 搜索节点
inurl:clash/proxies | |
可选参数 | |
c = 国家(HK、TW、KR、JP、US 等) | |
type = 节点类型(ss、ssr、vmess、trojan 等) | |
speed = 速度(数字)需要节点池打开测速才有效 |
# 爬虫代理池
body="get all proxy from proxy pool" |
# pandownload
fofa 百度网盘解析
fofa 搜索 “ws://localhost:6800/jsonrpc” | |
fofa 搜索 “baiduwp” |
# Gemini Search
fofa gemini 镜像
title="Gemini Search" && is_domain=true |
# GitHub 代理池
代理池验证脚本
#!/bin/bash | |
# 代理列表 | |
proxies=( | |
"47.96.176.130:59394" | |
"178.48.68.61:18080" | |
"91.148.127.162:8080" | |
"50.62.183.223:80" | |
"116.63.129.202:6000" | |
"120.197.40.219:9002" | |
"212.127.93.185:8081" | |
"154.203.132.55:8090" | |
"142.93.142.36:9122" | |
"223.113.80.158:9091" | |
"112.19.241.37:19999" | |
"51.89.73.162:80" | |
"154.203.132.55:8080" | |
"49.13.9.253:80" | |
"79.110.196.145:8081" | |
"60.12.168.114:9002" | |
"111.160.204.146:9091" | |
"91.148.126.189:8080" | |
"161.34.40.109:3128" | |
"160.248.93.84:3128" | |
"8.219.97.248:80" | |
"103.153.154.6:80" | |
) | |
# 目标 URL | |
url="http://www.baidu.com" | |
# 检查代理是否有效 | |
for proxy in "${proxies[@]}"; do | |
# 通过代理发送请求 | |
response=$(curl -s -o /dev/null -w "%{http_code}" -x "$proxy" "$url") | |
# 检查响应状态码 | |
if [ "$response" -eq 200 ]; then | |
echo "Proxy $proxy is valid." | |
else | |
echo "Proxy $proxy is invalid." | |
fi | |
done |