分享一个英雄联盟的 QQ 钓鱼网页

2019-02-06 10:38:34 +08:00
 ififi

http://www.vizay.xyz

3363 次点击
所在节点    分享发现
7 条回复
llllllLllll
2019-02-06 11:13:50 +08:00
这个钓鱼页做的不行啊
niubikelasi
2019-02-06 11:21:05 +08:00
post 直接给他刷爆-。-
bankroft
2019-02-06 12:40:34 +08:00
试了,点完登陆跳转到 lol 官网 hhh
bankroft
2019-02-06 18:15:12 +08:00
```python
# coding :utf-8
import requests
from random import randint, choices
from string import ascii_letters



headers = {
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
'Accept-Encoding': 'gzip, deflate',
'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8',
'Cache-Control': 'max-age=0',
'Connection': 'keep-alive',
'Content-Type': 'application/x-www-form-urlencoded',
# 'Cookie': '__cfduid=dac60a7c5e3c3bfa126bd285b6598c6cb1549427923; PHPSESSID=7frq0835cir5h5172mdhmpsne3; pgv_pvid=6881914654; pgv_info=pgvReferrer=&ssid=s1459310656; ied_rf=www.vizay.xyz/zhaohuan/index.php',
'DNT': '1',
'Host': 'www.vizay.xyz',
'Origin': 'http://www.vizay.xyz',
'Referer': 'http://www.vizay.xyz/zhaohuan/index.php?act=1',
'Upgrade-Insecure-Requests': '1',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'
}

url = 'http://www.vizay.xyz/shzz.php'

def main():
while True:
try:
requests.post(url, headers=headers, data={'u': randint(12345, 3000000000), 'p': choices(ascii_letters, k=randint(6, 16)), 'bianhao': 1})
except Exception:
pass


if __name__ == '__main__':
import threading
import time
for _ in range(10):
t = threading.Thread(target=main)
t.setDaemon(True)
t.start()
try:
while True:
time.sleep(1)
except KeyboardInterrupt:
exit(0)
```
@niubikelasi #2 hhh
whatsmyip
2019-02-07 09:24:43 +08:00
您当前浏览器不支持或操作系统语言设置非中文,无法访问本站!


😂
HeiXiaoBai
2019-02-07 11:20:51 +08:00
这是在丢人
Rh1
2019-02-07 13:10:42 +08:00
这也算钓鱼网站? 那你看看我这个 https://i.loli.net/2019/02/07/5c5bbdd028921.png

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

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

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

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

© 2021 V2EX