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
| <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
| <!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
| <!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
| <!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
| wangwei | |
| wangfang | |
| liwei | |
| lina | |
| zhangmin | |
| lijing | |
| wangjing | |
| liuwei | |
| wangxiuying | |
| zhangli |
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
| { | |
| "ddys.pro": [ | |
| "#kasjbgih > a > img", | |
| "#afc_sidebar_2842 > a > img", | |
| "#fkasjgf > span > a > img", | |
| "#fkasjgf" | |
| ], | |
| "greasyfork.org": [ | |
| "#script-show-info-ad" | |
| ] |
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 isPure(attr) { | |
| return ["火", "水", "草", "飞行", "电", "地面", "机械", "冰", "超能", "普通", "战斗", "暗影", "光", "龙", "神秘", "圣灵", "次元", "远古", "邪灵", "自然", "王", "混沌", "神灵", "轮回", "虫", "虚空"].includes(attr) | |
| } | |
| document.querySelectorAll(".box_rc ul li").forEach(e => { | |
| if (!isPure(e.querySelector("a").textContent)) { | |
| e.remove() | |
| } | |
| }) |
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
| resolver 8.8.8.8; | |
| map $request_uri $custom_referer { | |
| default $http_referer; | |
| "~i\.pximg\.net" https://i.pximg.net/; | |
| "~sinaimg\.cn" https://m.weibo.cn/; | |
| } | |
| server | |
| { |
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
| export http_proxy="http://127.0.0.1:7890" | |
| export https_proxy=$http_proxy | |
| # 设置setproxy和unsetproxy 可以快捷的开关 需要时先输入命令 setproxy 不需要时输入命令 unsetproxy | |
| alias setproxy="export http_proxy=$http_proxy; export https_proxy=$http_proxy; echo 'HTTP Proxy on';" | |
| alias unsetproxy="unset http_proxy; unset https_proxy; echo 'HTTP Proxy off';" |