This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Hello World! | |
| Fetch Successfully! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| time=`date '+%Y-%m-%d_%H:%M:%S'` | |
| echo $time | |
| ./xray webscan --basic-crawler $1 --html-output ./result/$time.Html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| python3 dirsearch.py -u $1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| python ./dirsearch.py -u $args[0] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| some good introductions: | |
| https://ivonblog.com/posts/termux-x11/ | |
| https://github.com/kde-yyds/termux-x11-plasma-installation-guide | |
| https://github.com/termux/termux-x11 | |
| https://github.com/coonrad/Debian-Xfce4-Minimal-Install | |
| https://itsfoss.com/install-kde-on-ubuntu/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://wiki.archlinux.org/title/Localization/Simplified_Chinese | |
| https://zhuanlan.zhihu.com/p/139652407 | |
| https://blog.csdn.net/huangshaotian/article/details/6782603 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| download mp3 free: | |
| https://rytmp3.fun/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let res = await fetch("https://api.wuuconix.link/setu?redirect") // at this time, the header is ok | |
| const bytesTotal = res.headers.get("content-length") | |
| const reader = res.body.getReader() | |
| let bytesRead = 0 | |
| const startTime = +Date.now() | |
| while (true) { | |
| const { done, value } = await reader.read() | |
| if (value) { | |
| bytesRead += value.length | |
| const nowTime = +Date.now() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const controller = new AbortController() | |
| setTimeout(() => { | |
| if (res.body.locked) { // body is locked means still reading | |
| console.log("Two seconds passed. It's time to abort this slow fetch") | |
| controller.abort() | |
| } else { | |
| console.log("Wow, you have get all body. So fast!") | |
| } | |
| }, 2000) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| process.env.NODE_TLS_REJECT_UNAUTHORIZED = 0 // 忽略ssl证书失效 | |
| async function register(mobile) { | |
| let res = await fetch("https://ad.hutaojie.com/online/sample") | |
| const cookie = res.headers.get("set-cookie").replace(/ path=\/; HttpOnly,?/ig, "") // 获取cookie | |
| // console.log(cookie) | |
| res = await (await fetch("https://ad.hutaojie.com/", { headers: { Cookie: cookie } })).text() | |
| const csrf = res.match(/<meta content=\"([\w-]{43})\" name=\"csrf-token\"\/>/)[1] // 获取csrf | |
| // console.log(csrf) | |
| const nickname = `Test${Date.now()}` |
OlderNewer