- Switched off the "in repl" flag to make sure the command args were processed
- Fixed bug where output was being written before the tracing was complete
- Added support for connecting to a remote Frida server
- Support for Frida 14 and QuickJS - Thanks oleavr
- Fixed linting errors from new typescript version
- Changed the required version of Frida in the setup.py file to be 12.5.0
- Fixed a bug where local JNI references were not being deleted. The result was reuse by the runtime of reference values led to other arguments/return values being incorrectly named
- Bumped versions of all JavaScript dependencies to latest and fixed linter errors
- Bug fix where all JavaVM calls were being labeled as JNIEnv calls
- Bumped version of acorn to 7.1.1 to fix vulnerability CVE-2020-7598
- Updated version of jnitrace-engine to include fixes to use the config options provided by a user, such as library to trace
- Added support for displaying custom errors messages generated by the engine
- Updated version of jnitrace-engine to get new bug fixes
- Updated version of jnitrace-engine to get new bug fixes
- Updated version of jnitrace-engine to get new bug fixes
- Extracted the engine in jnitrace to a new project so that the API can be used by developers
- Improved the backtrace output when no DebugSymbol is found for an address.
- Bug fix to handle when a DebugSymbol look up has failed for an address.
- Sorted the alignment of the backtraces so they are right justified
- Fixed a bug when tracing ReleaseElements where all types were assumed to be the size of a pointer
- Upgraded eslint-package to patch security vulnerability
- Stopped trying to kill Frida session if it was already dead
- Changed backtrace output to include debug symbols, where possible
- Added two new command line arguments to filter the library exports from the trace
- Changed the way object data was associated with output to ensure it is still visible if the method is not being traced
- Fix a bug preventing frida attach from working
- Updated README
- General code refactoring, including upgrading codebase to TypeScript
- Added tracing of the JavaVM struct by default
- Added method filters to include or exclude certain methods from the trace
- Added options to allow custom Frida scripts to be loaded before and after jnitrace is loaded
- Added option to export all traced data to a json formatted file
- Added options to switch off tracking of the whole JavaVM or JNIEnv
- Application is now killed when the tracer is finished to prevent crashes
- Log messages have been added to show when a tracked library is loaded
- Added support to capture floating point return values on X86 devices
- jnitrace now also displays the values of jvalue* and va_list for method calls
- Bugfix for crashes on arm 32 bit devices
- Bug fix - Backtraces are now printed correctly for variadic functions
- jboolean values now print true/false as well as the integer value
- Updated README
- Bug fix - Used Interceptor.replace to ensure that the CpuContext is populated for use by the Backtracer
- Bug fix - Updated the JNI function definitions to set the return type of GetArrayElements to be a pointer rather than a primitive
- Bug fix - Checked whether the this context exists before using it
- Bug fix - Use Process.findRangeByAddress instead of Process.findModuleByAddress for checking the validity of the stack pointer
- Travis integration
- Added a command argument to get the version of jnitrace
- jnitrace now intercepts calls to GetJavaVM, returning a shadowJavaVM
- Added support for extracting arguments stored in jvalue arrays
- Bug fix - CallStaticObjectMethod was the only va args method intercepted
- Added arm64 architecture support
- Modified how dlopen is intercepted to support Android 7 and above