Skip to content

Instantly share code, notes, and snippets.

@truong0vanchien
truong0vanchien / frida_multiple_unpinning.js
Created February 6, 2023 00:26 — forked from akabe1/frida_multiple_unpinning.js
Another Android ssl certificate pinning bypass for various methods
/* Android ssl certificate pinning bypass script for various methods
by Maurizio Siddu
Run with:
frida -U -f [APP_ID] -l frida_multiple_unpinning.js --no-pause
*/
setTimeout(function() {
Java.perform(function() {
console.log('');
@truong0vanchien
truong0vanchien / edit-init-rc.md
Created January 22, 2023 05:26 — forked from ashutosh-mishra/edit-init-rc.md
How to run custom script from init.rc, How to Extract Android Kernel And Modify The Boot Ramdisk(Android 4+)

init.rc changes

init.rc changes to run any script Can be used to start any android application, service

on property:dev.bootcomplete=1
    exec - system system -- /system/bin/sh <custom script path>
    # exec - system system -- /system/bin/sh /data/local/bootscript/testservice.sh

Script can contains applications start, stop commands

@truong0vanchien
truong0vanchien / BuildGuide.txt
Created January 14, 2023 08:45 — forked from masemoel/BuildGuide.txt
How to build an A10+ ROM from scratch under Ubuntu 20.04 (or based) and higher
To build a A9+ (AOSP/LOS based) on Ubuntu 20.04+ (or distros based on it), there are four main steps:
(This guide is applicable for recoveries as well (TWRP, OFRP...))
Working on Android 9 and upper
#################################################################
# Step 1: Setup your environment #
#################################################################
****Setup Linux to build Android****