Skip to content

Instantly share code, notes, and snippets.

View mt-ks's full-sized avatar

mt-ks

View GitHub Profile
@mt-ks
mt-ks / ssl-pinning.js
Created September 9, 2024 15:52
SSL Pinning Bypass JS File For Frida
/* 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("");
@mt-ks
mt-ks / network-tweak.md
Created May 1, 2021 19:04 — forked from mustafaturan/network-tweak.md
Linux Network Tweak for 2 million web socket connections

Sample config for 2 million web socket connection

    sysctl -w fs.file-max=12000500
    sysctl -w fs.nr_open=20000500
    # Set the maximum number of open file descriptors
    ulimit -n 20000000

    # Set the memory size for TCP with minimum, default and maximum thresholds 
 sysctl -w net.ipv4.tcp_mem='10000000 10000000 10000000'