This file contains 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 isPure(attr) { | |
return ["火", "水", "草", "飞行", "电", "地面", "机械", "冰", "超能", "普通", "战斗", "暗影", "光", "龙", "神秘", "圣灵", "次元", "远古", "邪灵", "自然", "王", "混沌", "神灵", "轮回", "虫", "虚空"].includes(attr) | |
} | |
document.querySelectorAll(".box_rc ul li").forEach(e => { | |
if (!isPure(e.querySelector("a").textContent)) { | |
e.remove() | |
} | |
}) |
This file contains 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
{ | |
"ddys.pro": [ | |
"#kasjbgih > a > img", | |
"#afc_sidebar_2842 > a > img", | |
"#fkasjgf > span > a > img", | |
"#fkasjgf" | |
], | |
"greasyfork.org": [ | |
"#script-show-info-ad" | |
] |
This file contains 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
wangwei | |
wangfang | |
liwei | |
lina | |
zhangmin | |
lijing | |
wangjing | |
liuwei | |
wangxiuying | |
zhangli |
This file contains 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 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 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 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 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 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 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) |
NewerOlder