Git Product home page Git Product logo

Comments (2)

Memexurer avatar Memexurer commented on June 26, 2024

even after you manage to bypass bumble ssl pins, then you will still get blocked by their backend - maybe they have some JA3 checks for checking if you are mitming requests?

anyways; maybe it will help you: here's my frida script for capturing some of data sent by that custom protocol
(also no clue if it will work on newer versions, because the class names could be different)

Java.perform(() => {

let yb7 = Java.use("b.yb7");
yb7["i"].implementation = function (c26527sn) {
    //send message; if you view this method in jadx then you'll find all the classes responsible for receiving/sending messages
    let gson = Java.use("b.jng").$new();

    console.log(gson.h(c26527sn));
    this["i"](c26527sn);
};

let mzu = Java.use("b.mzu");
mzu["invoke"].overload().implementation = function () {
    //IP pin bypass; you have to use this with  --codeshare 007panda/unpinning
    return null;
};

})

also: use mitmproxy instead of http toolkit, because, as you said, it doesnt support this custom message protocol and it could mess with the data

from frida-interception-and-unpinning.

dkbarn avatar dkbarn commented on June 26, 2024

Thanks for this @Memexurer. Which version of the app is the script confirmed working with?

from frida-interception-and-unpinning.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.