绕过清华校园网的二层隔离

写了个脚本绕过校园网二层隔离,自动化这个教程里面提到的加路由的方法。 依赖 ipcalc 计算子网地址。apt install ipcalc。 #!/bin/bash IPA=$(ip address list dev eth0 | awk ' /inet/ {print $2}' | head -1)...

五月 16, 2022 · 1 分钟 · 143 字 · Ruotian

小Tip: 使用其他设备连接Tsinghua WiFi

有些时候,需要使用非智能设备去连接Tsinghua WiFi。 可能没法打开net.tsinghua.edu.cn/ usereg.tsinghu...

十月 13, 2017 · 1 分钟 · 399 字 · Ruotian

六教的包

wireshark挂着,抓抓空气中的数据。 写了个脚本利用抓到的cookie。 大概长这样: def cookie_to_js(s): res = '' a=s.split(';') for x in a: if '=' in x: res+='document.cookie="%s";'%(x) return res print(cookie_to_js('a=b;c=d;')) 有其他好用的工具...

五月 24, 2017 · 1 分钟 · 293 字 · Ruotian

启用了BBR

温馨提醒:这篇文章已经过时,请不要参考 Ubuntu如何启用BBR 关于BBR –知乎 在把DigitalOcean SF1的Ubuntu16.04启用BBR后网速x20,油管4k无压力,效果非常好,记录一下步骤。 ...

十二月 20, 2016 · 1 分钟 · 280 字 · Ruotian