有些学校连接了VPN但是还是没有改变IP,因为走的不是全隧道
可以简单的搜索下
更简单的方法
直接在官网搜索VPN,就会有连接方法了,这个帖子仅限于没有明确标注怎么连接全隧道的
如一个学校(域名不同走的协议不同,与其它的没有关系)
正常连接:vpn.xxx.edu
全隧道连接:vpn.xxx.edu/full
那么我们可以通过扫域名然后查找出所有关于VPN的域名
fofa扫
host*=“vpn.xxx.edu”
domain=“xxx.edu”
import re
with open("your_file.txt", "r", encoding="utf-8") as file:
data = file.read()
# 正则表达式匹配带有 "vpn" 的 URL
vpn_pattern = re.compile(r"https?://[^,]*vpn[^,]*")
# 提取所有匹配的 VPN 域名
vpn_domains = vpn_pattern.findall(data)
with open("vpn_domains.txt", "w", encoding="utf-8") as output_file:
for domain in vpn_domains:
output_file.write(domain + "\n")