Giter Site home page Giter Site logo

frida-seccomp's People

Contributors

abbbbbi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

frida-seccomp's Issues

call_thread_read_maps的作用

请问下面这段代码里的 call_thread_read_maps 的意义是不是在 maps 文件里找到 sp 所在的内存段? 如果是的话, 那么用 Process.findRangeByAddress 是不是也可以?
function stacktrace(pc, fp, sp) { let n = 0, stack_arr = [], fp_c = fp; stack_arr[n++] = pc; const mem_region = call_thread_read_maps(sp); while (n < MAX_STACK_TRACE_DEPTH) { if (parseInt(fp_c.toString()) < parseInt(sp.toString()) || fp_c < mem_region.start || fp_c > mem_region.end) { break } let next_fp = fp_c.readPointer() let lr = fp_c.add(8).readPointer() fp_c = next_fp stack_arr[n++] = lr } return stack_arr; }

grep output buffering issues causing premature truncation of logs

The grep command may also buffer its output, leading to premature truncation. This issue can be resolved by using the grep --line-buffered option.

subprocess.Popen(args="adb logcat --pid={} | grep --line-buffered seccomp > {}/{}_{}.log ".format(pid, dir_path, package_name, pid), stdin=None, stdout=None,stderr=None, shell=True)

image

无法隐藏root

const Target_NR = 48;
然后启动程序,app卡住进不去

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.