这年头居然还有发钓鱼邮件的……

2022-05-21 00:04:19 +08:00
 mingl0280

邮件:

随手写了点 JS 调戏一下(上班无聊)

2001 次点击
所在节点    分享发现
4 条回复
HAWCat
2022-05-21 00:12:19 +08:00
填满它的硬盘
koala9527
2022-05-21 10:50:33 +08:00
闲得无聊,看了下代码,按照钓鱼网站的提交格式限制撸了一些垃圾数据。
```python

import requests
import random
from random import choice
file_path = r'C:\Users\***\Downloads\RW_Password-master\密码字典 4952222 条\密码字典 4952222 条.txt'


def c(u, p):
url = 'http://38.55.192.143/Login.php?action=Login&u=' + \
str(u)+'&p='+str(p)+'&user=DL02'
resp = requests.get(url)
print(url, resp.text)


def read_file():
result = []
with open(file_path, 'r', encoding='utf-8') as f:
for line in f:
if len(line) > 6 and len(line) < 16:
result.append(line)
return result


p_list = read_file()


def run():
while True:
u = random.randint(100000, 9999999999)
p = choice(p_list)
# print(u,p)
c(u, p)


run()


```
andyhuzhill
2022-05-21 12:00:48 +08:00
https://pastebin.ubuntu.com/p/8gT7H8FMpS/


@koala9527 稍微修改了一下你的代码 不需要依赖字典了
Felldeadbird
2022-05-22 22:53:57 +08:00
好多啊,我的企业邮箱全是 什么服务器维护。。。

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/854279

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX