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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>XSS Prove Using HTML</title> | |
</head> | |
<body> | |
<div class="flex"> | |
<img src="https://gzw.sinaimg.cn/large/007YVyKcly1h2kl9rs23cj30ma0mlk48.jpg"> | |
</div> | |
</body> |
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
<html> | |
<head></head> | |
<body> | |
<something:script xmlns:something="http://www.w3.org/1999/xhtml">alert("xss proved using xml")</something:script> | |
</body> | |
</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
function setproxy { $env:HTTP_PROXY="http://127.0.0.1:7890"; $env:HTTPS_PROXY="http://127.0.0.1:7890" } | |
function unsetproxy { $env:HTTP_PROXY=""; $env:HTTPS_PROXY="" } |
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()}` |
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
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
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
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
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
python ./dirsearch.py -u $args[0] |