V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
mingl0280
V2EX  ›  分享发现

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

  •  
  •   mingl0280 · 2022-05-21 00:04:19 +08:00 · 1958 次点击
    这是一个创建于 678 天前的主题,其中的信息可能已经有所发展或是发生改变。

    邮件:

    邮件

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

    js

    4 条回复    2022-05-22 22:53:57 +08:00
    HAWCat
        1
    HAWCat  
       2022-05-21 00:12:19 +08:00 via iPhone
    填满它的硬盘
    koala9527
        2
    koala9527  
       2022-05-21 10:50:33 +08:00   ❤️ 1
    闲得无聊,看了下代码,按照钓鱼网站的提交格式限制撸了一些垃圾数据。
    ```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
        3
    andyhuzhill  
       2022-05-21 12:00:48 +08:00   ❤️ 1
    https://pastebin.ubuntu.com/p/8gT7H8FMpS/


    @koala9527 稍微修改了一下你的代码 不需要依赖字典了
    Felldeadbird
        4
    Felldeadbird  
       2022-05-22 22:53:57 +08:00
    好多啊,我的企业邮箱全是 什么服务器维护。。。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2874 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 32ms · UTC 00:28 · PVG 08:28 · LAX 17:28 · JFK 20:28
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.