- 关闭 Windows 沙盒功能
- 以管理员执行以下脚本, 启用显示隐藏设备. 可能需要重启.
Show_Hidden_Devices.bat
@echo off| import dns.rdata # pip3 install dnspython | |
| import io | |
| name = "host.example.com." | |
| rclass = dns.rdataclass.IN | |
| rtype = dns.rdatatype.HTTPS | |
| rdata = '1 . alpn="h3,h2" ipv4hint="XXX.XXX.XXX.XXX"' | |
| rd = dns.rdata.from_text(rclass, rtype, rdata) |
| #!/bin/sh | |
| # SM-DP+ Address* | |
| ADDRESS='dp-plus-par07-01.oasis-smartsim.com' | |
| # Activation Code* | |
| TOKEN='FV1BB-CA7N1-R1ECQ-65IGF' | |
| # Confimation Code | |
| CCODE='' | |
| # IMEI | |
| IMEI='' |
Take Oneplus 13 as an example
init_boot / boot / dtbo / recovery ?
payload-dumper to extract it from the stock Full OTA package of the current system version| #!/bin/bash | |
| __get_random_string () { | |
| openssl rand -hex "${1}" | cut -c "1-${1}" | |
| } | |
| __my_vm='W10' |
# Country Code
curl -s https://www.youtube.com/red | sed 's/,/\n/g' | grep countryCode
# Airport Code
curl -s https://redirector.googlevideo.com/report_mapping | grep "=>"哈哈,我也标题党一回。
其实也不算是秘密,只能说是我在制作 https://github.com/lennylxx/ipv6-hosts 时总结的规律。
Google 是世界上最大的互联网公司,其庞大的规模体现在[各个方面][]。其中一面即是其规模宏大的全球网络,以及难以计数的服务器。有人估计 Google 在 2013 年初的时候大概有 238 万台服务器。
Google 在全球建造了 13 个[数据中心][],通过其自己组建的多层内容分发网络(CDN),为全球超过 100 多个国家的用户提供免费内容及服务。

本文主要简要介绍一下 Google IPv6 地址与相关的域名。
| #!/bin/bash | |
| pause() { read -p "Press any key to continue..." -n1 -r; } | |
| # func <min> <max> | |
| randnum() { | |
| local min=$1 | |
| local max=$[ $2 - $min + 1 ] | |
| local num=$(cat /dev/urandom 2>/dev/null | head -n 8 | cksum | cut -f1 -d' ') | |
| echo $[ $num % $max + $min ] |