摘要: 某讯滑块逆向记录 某讯滑块搞了快大半年了 这里简单记录下流程。相比目前的腾讯滑块,在更新前流程较为复杂些 目前的某讯滑块流程 1.一次初始化参数 2. 一次提交 具体的参数 collect tlg eks ans 这三个缺一不可。简单说下collect参数某加密,密约大概一个月会变一次;至于tlg看 阅读全文
posted @ 2022-08-05 09:47 SirPi 阅读(578) 评论(0) 推荐(0) 编辑
摘要: 利用websocket调用浏览器中的方法 js client //连接websocket服务端 var ws = new WebSocket('ws://localhost:8000/ws'); //连接成功时执行 ws.onopen = function () { console.log('bro 阅读全文
posted @ 2021-08-13 15:23 SirPi 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 记录一哈自己遇到的简单站点 Talk is cheap,show you the code! code import com.google.gson.Gson; import com.google.gson.internal.LinkedTreeMap; import org.jsoup.Conne 阅读全文
posted @ 2021-08-06 15:10 SirPi 阅读(141) 评论(0) 推荐(0) 编辑
摘要: ##启动 mitmdump -s http_proxy.py -p 9000 替换js代码 # -*- coding: utf-8 -*- import re main_url = 'http://match.yuanrenxue.com/match/9' # 9 js_url = 'http:// 阅读全文
posted @ 2021-06-03 15:06 SirPi 阅读(152) 评论(0) 推荐(0) 编辑
摘要: user_agent_list = [ "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; AcooBrowser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)", "Mozilla/4.0 (compa 阅读全文
posted @ 2021-05-30 10:38 SirPi 阅读(260) 评论(0) 推荐(0) 编辑
摘要: path:application language:PHP hostname 服务器地址 NOT 127.0.0.1 in:file fork:false language:php path:application filename:config sms/send 阅读全文
posted @ 2021-05-26 11:13 SirPi 阅读(45) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: UTF-8 -*- from Crypto.Util.Padding import pad from Crypto.Cipher import AES import base64 def aes_cipher(encrypt_key, plain): aes = AES. 阅读全文
posted @ 2021-05-25 19:43 SirPi 阅读(1054) 评论(0) 推荐(0) 编辑
摘要: //cookie hook (function () { 'use strict'; var cookie_cache = document.cookie; Object.defineProperty(document, 'cookie', { get: function () { console. 阅读全文
posted @ 2021-05-25 19:35 SirPi 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 先获取window对象属性 来源: 夜幕爬虫安全论坛 原文链接: http://bbs.nightteam.cn/thread-485.htm?orderby=desc&user=7 阅读全文
posted @ 2021-05-14 17:47 SirPi 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 1 window = new Proxy(global, { 2 get: function (target, key, receiver) { 3 console.log("window.get", key, target[key]); 4 if (key == "location") { 5 l 阅读全文
posted @ 2021-05-14 17:33 SirPi 阅读(655) 评论(0) 推荐(0) 编辑