上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 123 下一页
摘要: #define M_DATA 0x00 #define M_SOF0 0xc0 #define M_DHT 0xc4 #define M_SOI 0xd8 #define M_EOI 0xd9 #define M_SOS 0xda #define M_DQT 0xdb #define M_DNL 0 阅读全文
posted @ 2022-09-19 16:17 公众号python学习开发 阅读(18) 评论(0) 推荐(0) 编辑
摘要: scanning:扫描 lexing:词法 lexical analysis. :词法分析 scanner (or lexer) :扫描器(或词法解析器) token:标记 identifier:标识符 parser:解析器 parse tree :解析树* abstract syntax tree 阅读全文
posted @ 2022-09-13 19:59 公众号python学习开发 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 1.下载该项目的代码 https://github.com/unk2k/txsocksx 然后打包上传到python第三方库,之后导入包即可。 2.修改的下载中间件代码如下: from scrapy.core.downloader.handlers.http11 import HTTP11Downl 阅读全文
posted @ 2022-08-31 11:37 公众号python学习开发 阅读(288) 评论(0) 推荐(0) 编辑
摘要: API部分 #TODO write a description for this script #@author CXA #@category Memory #@keybinding ctrl alt shift n #@menupath Tools.Packet.Nop #@toolbar cur 阅读全文
posted @ 2022-07-25 19:46 公众号python学习开发 阅读(41) 评论(0) 推荐(0) 编辑
摘要: const fs = require('fs') const {NodeVM, VMScript} = require('vm2') let gdata={}; const vm = new NodeVM({ console: 'inherit', sandbox: { gdata }, //全局变 阅读全文
posted @ 2022-07-20 19:15 公众号python学习开发 阅读(283) 评论(0) 推荐(0) 编辑
摘要: sailfish:/data/app/com.ss.android.ugc.aweme--KbgjmPrFnQH5uY_UO0kug==/lib/arm # chgrp system libsscronet.so sailfish:/data/app/com.ss.android.ugc.aweme 阅读全文
posted @ 2022-07-12 15:11 公众号python学习开发 阅读(270) 评论(0) 推荐(0) 编辑
摘要: for i in `ls |grep .m4a` do ffmpeg -i $i -y -acodec libmp3lame -aq 0 ${i/m4a/mp3} done 阅读全文
posted @ 2022-07-08 00:13 公众号python学习开发 阅读(119) 评论(0) 推荐(0) 编辑
摘要: adb shell “echo 1 > /sys/class/power_supply/battery/input_suspend” input_suspend为1时,USB充电被停用,使用USB监测仪发现电流为0; input_suspend为0时,USB充电正常。 用adb启动一个/data/l 阅读全文
posted @ 2022-07-04 11:00 公众号python学习开发 阅读(292) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- import cv2 class SlideCrack(object): def __init__(self, gap, bg, out): """ init code :param gap: 缺口图片 :param bg: 背景图片 :param o 阅读全文
posted @ 2022-06-27 22:58 公众号python学习开发 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 在做 js 逆向的时候,为了方便调试和分析 js 文件,一般我们将js请求替换为我们本地自己优化好的 js 文件。 本文使用的是比较通用方式通过抓包工具 Charles 进行,请求的替换。我们的测试网站是 aHR0cHM6Ly93d3cuZG91eWluLmNvbQ==。 0x1 配置Charles 阅读全文
posted @ 2022-06-21 23:16 公众号python学习开发 阅读(533) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 123 下一页