Android super.img 镜像解包
在Cygwin64上编译cgo lib:“ ld:找不到-lmingw32”
在Windows 上 Build LuaJit32 和 LuaJit64

from--https://www.jianshu.com/p/aa567960156c 简介 在 Android 10 及更高版本上支持了"动态分区",所以 ROM 包中看不到了传统的 system.img 等镜像。支持的动态分区包括: System Vendor Product System Ext ODM 所以在 super.img 都可能包括以上分区的镜像文件。 具体信息可以查看官方文档 动态分区 具体解包步骤 super.img 的解包必须两个工具 simg2img 和 lpunpack。其中 simg2img 可以在线安装,执行命令后可以按照提示自行安装即可。lpunpack 需要自己下载源码进行编译。lpunpack 生成后是通用的,所以下载别人编译好的 lpunpack 也是可以的,但是需要添加依赖的相关 so 库。注意工具…
from--https://www.codingdict.com/questions/64206 我正在尝试在Windows上使用cgo库 github.com/mattn/go-sqlite3 我使用Cygwin64,并安装了所有“开发”软件包,因此可以使用gcc。 但是运行会go get github.com/mattn/go-sqlite3导致: /usr/lib/gcc/x86_64-pc-cygwin/5.3.0/../../../../x86_64-pc-cygwin/bin/ld: cannot find -lmingwex /usr/lib/gcc/x86_64-pc-cygwin/5.3.0/../../../../x86_64-pc-cygwin/bin/ld: cannot find -lmingw32 …
from--https://blog.csdn.net/u013700908/article/details/86366443 1、Build环境 Windows 10 Visual Studio 2017 2、Build需求 1、首先我们需要Luajit的源代码 [前往下载](http://luajit.org/download.html) 2、Window只需要下载.Zip后缀的压缩包即可,红框表示稳定版,绿框为开发测试版自行取舍,笔者选的beta3的 1 2 3、Build工具 如上图 x64 Native Tools Command Prompt for VS 2017 用于构建 64位的Luajit.exe x86 Native Tools Command Prompt for VS 2017 用于构建 32位的Luajit.ex…
透明代理实现APP抓包的方法

from--http://www.itawp.com/185.html 01-07 Linux 4.59k 平时电脑浏览器抓包主要使用Fiddler设置代理进行抓包,使用非常方便。但是在app抓包中这种方法却时常不好使。使用Wireshark这类工具可以看到APP的流量,说明APP使用的主要应用协议依然是HTTP(https),但是在Fiddler中却抓不到任何流量,下面来说下如何处理这种情况。 问题分析: 为整明白这类代理抓包软件为什么在APP抓包过程中不好使了,就需要简单了解下代理抓包的原理。这里只是简单的白话描述,专业解释请自行查阅相关知识。 首先,Fiddler 或 Charles 这类使用的代理的抓包软件与Wireshark是完全不同的Wireshark 使用的网卡数据复制,只要是经过指定网卡都会被抓取。代理类的抓包…
Advanced DHCP Options: Pushing static routes to clients

from--https://ercpe.de/blog/advanced-dhcp-options-pushing-static-routes-to-clients 24.07.2011, Johann Schmitz The DHCP protocol contains several more or less options to configure the clients (e.g. PAC-Files, NTP-Servers, etc.). One of these cool options is the ability to push static routes to clients. This can be done in two different ways: Single route (DHCP Option…
capture a pages xmlhttp requests with a userscript
Android ROM的解包和打包
from--https://stackoverflow.com/questions/8251955/capture-a-pages-xmlhttp-requests-with-a-userscript Ask Question Asked 11 years, 9 months ago Modified 11 years, 9 months ago Viewed 8k times 8 I have a user script (for chrome and FF) that adds significant functionality to a page, but has recently been broken because the developers added some AJAX to the page. I would like …
from--https://www.littlecontrol.io/skill/31.html # 环境要求 基于Linux,因为win下比较麻烦 刷机包为卡刷包 # 步骤 解压卡刷包一般得到如下文件 firmware-update META-INF boot.img system.new.dat.br system.patch.dat system.transfer.list vendor.new.dat.br vendor.patch.dat vendor.transfer.list 这里我们以system为例,vendor和system是一样的.因为boot.img较为复杂,这里不作了解和阐述. 需要注意的,对于system.new.dat.br 和 system.patch.dat 和 system.transfer.list,其…