2022-08-12
Automatic Cmcc Network Switching

the policy follows:

如何校园网免流?

kali, could you use some network card for sniffing while connecting to existing network? or could you automate the sniffing so that we don’t get bored?

could you extract some login default patterns/filters?

for macos and linux:

if modifier hotspot is present, connect to it.

otherwise if CMCC present, connect to it.

if CMCC fails after login attempts, try to connect with some paid network.

for modifier:

if CMCC present, connect to it.

if CMCC fails, try to connect with some paid network.

internet switch will be manually turned on, to save power.

Read More

2022-08-05
Resolve Host Name Computer Name From Ip

many methods have been tried. NetBIOS not working. DHCP server not found. nmap script engine(NSE) uses lua to automate sniffing and attacks.

Read More

2022-07-27
Clash Route Only Github Related Domains To Fastgithub

DNS

use clash official DNS settings to resolve issues related to domain resolution, especially when used as a system proxy.

documentation

to persist program using platform-specific service manager like nssm on windows:

macos

use launchctl(launchd) or easyd

linux

create systemd

need to change system wide proxy settings in init files

or use monit, with control over the service itself.

or shell script alike linuxNSSM

Read More

2022-07-25
免流帮 停机卡上网 持续上网

收集别人的帐号然后登录

kali负责收集网络帐号 然后在一个web页面上面提供一个加密的auth接口 最好是rsa加密的东西 有时间延迟防暴力破解的访问接口 通过验证之后可以获得用户名密码 同时可以访问相应接口进行占用或者解除占用 当然你也可以直接弄个静态的页面谁也破解不了 但是访问的时候就得一个一个的尝试 当然也更安全

免流卡

微信小程序 免流帮

qq群:857969390

搜索github

校园网也可以免认证登录

Read More

2022-07-22
蹭网Wifi天线 雷达扫描 五轴机械臂

利用淘宝铜片焊接的WiFi天线 安装在开源机械臂上 利用固定点抵达算法 扫描算法 自动探测WiFi源与方向的对应关系 机械手臂应当安装在比较高的支撑点上 周围不要挡着WiFi天线 有比较长的延长线 扫描算法不得超过线材的限制(旋转角度控制)必须得知初始态的绝对位置

Read More

2022-07-11
Self Hosted Web Applications

common web applications could be big, like search engines. this is a list of open-sourced self hosted services:

https://github.com/awesome-selfhosted/awesome-selfhosted

Read More

2022-05-29
Upload Model To Huggingface

via code:

https://zhuanlan.zhihu.com/p/390826470

from transformers import AutoModelForMaskedLM, AutoTokenizer

checkpoint = “camembert-base”

model = AutoModelForMaskedLM.from_pretrained(checkpoint)

tokenizer = AutoTokenizer.from_pretrained(checkpoint)

model.push_to_hub(“dummy-model”)

tokenizer.push_to_hub(“dummy-model”)

config.push_to_hub(““)

Read More

2022-05-05
Dns Proxy For Campus Network

use kaggle for testing, if we can connect to it we are good for 12 hours.

the campus network allows dns query, might allow dns port based proxies.

use dig for DNS avaliability check.

dig baidu.com

https://www.a2hosting.com/kb/getting-started-guide/internet-and-networking/troubleshooting-dns-with-dig-and-nslookup

dns proxies:

https://code.kryo.se/iodine/

https://0day.work/tunneling-all-traffic-over-dns-with-a-socks-proxy/

https://serverfault.com/questions/962961/socks-proxy-over-dns

Read More