文件名称:mjolner:由Frida提供支持的Cycript后端
文件大小:14KB
文件格式:ZIP
更新时间:2024-05-23 04:29:23
dsl scripting dynamic-analysis frida nowsecure
Mjølner 由Frida提供支持的Cycript兼容运行时。 例子 const mjolner = require ( 'mjolner' ) ; mjolner . register ( ) ; const puts = int . functionWith ( char . constant ( ) . pointerTo ( ) ) ( dlsym ( RTLD_DEFAULT , 'puts' ) ) ; /* * ^ * | * \ Which would be the output from the cycript compiler if you wrote: * extern "C" int puts(char const*) */ puts ( 'Hello' ) ;