Coder Social home page Coder Social logo

Comments (2)

dlevi309 avatar dlevi309 commented on August 11, 2024 1

@ZonD80 I noticed coming from iOS13->iOS14 that fouldecrypt and flexdecrypt werenโ€™t working unless the encrypted app/binary were launched in some form (they need to be catalogued into memory) I wrote a simple tool that achieves this in a non-destructive and unobtrusive way, it basically dlopenโ€˜s the target binary without having to launch it:

#include <dlfcn.h>
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char** argv) {
  for (int i = 1; i < argc; i++) {
    void* handle = dlopen(argv[i], RTLD_LAZY | RTLD_GLOBAL);
    if (!handle) {
      fprintf(stderr, "Error: %s\n", dlerror());
    }
    dlclose(handle);
  }
  return 0;
}

build this code as a separate tool and run it on the encrypted binary (linktool <path/to/encrypted_binary>) after you run it, you should be able to decrypt the target binary without mremap_encrypted failing.

from fouldecrypt.

HenryQuan avatar HenryQuan commented on August 11, 2024

@dlevi309 The same trick doesn't seem to work for app extension. Is it due to security concerns in the latest system?

from fouldecrypt.

Related Issues (11)

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.