摘要:
JS解析 function bin2String(array) { return String.fromCharCode.apply(String, array); } var bit= [104,101,108,108,111,32,119,111,114,108,100]; var bit= [ 阅读全文
摘要:
###1.先安装pyHook 进入其官网,搜索pyHook找到该文件: https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml 文件前的CP37是指python的版本,命令行中直接输入py就可以查看 后面的win32是指电脑为32位的。win_amd64则是 阅读全文
摘要:
###python3 获取当前路径及os.path.dirname的使用 ####方法一: import os os.getcwd() #直接获取结果 import os 开发环境 //RUNSTATUS = "dev" 测试环境 //RUNSTATUS = "test" 线上环境 //RUNSTA 阅读全文
摘要:
遇到APP无法抓包怎么办 比如:现金借款app 如果一打开抓包工具(Charles,Fiddler)出现以下情况 可以用以下方法解决: ###安装插件 1.安装Xposed Installer安装器 2.VirtualXposed_0.18.2.apk 插件 3.JustTrustMe.apk 插件 阅读全文
摘要:
###爬取京东商品评分 import requests import json def jd(url): id = url.replace('https://item.jd.com/', '').replace('.html', '') params = { 'callback': 'fetchJS 阅读全文
摘要:
ImportError:libSM.so.6:cannot open shared object file: NO such file or directory Traceback (most recent call last): File "run_app.py", line 17, in <mo 阅读全文
摘要:
###官网下载地址 https://pypi.org/project/muggle-ocr/ pip install muggle_ocr pip install muggle_ocr -i http://pypi.douban.com/simple --trusted-host pypi.doub 阅读全文
摘要:
爬取安逸花 https://vayh.msxf.com/ 时出现这种错误,总结如下: ###1.https连接太多没有关闭导致的433,解决方法: import requests requests.adapters.DEFAULT_RETRIES = 5 # 增加重连次数 s = requests. 阅读全文
摘要:
###第一步就是抓包 根据抓到的包,可以看出需要破解的参数 newSign 、password、uuid 还有 headers 中的参数 shumeiid/x-auth-token/duuid/duimei/shumengid 。也就是有这么多的参数是不知道的,需要去 app 中找的。 ###第二步 阅读全文
摘要:
###爱查快递 查询 顺丰单号 物流信息 Query.sign = function() { function t(t) { var e, i, s, a, r = -1; for (e = 0, s = t.length; s > e; e += 1) { for (a = 255 & (r ^ 阅读全文