-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
layout: news_item | ||
title: 'Frida 16.1.8 Released' | ||
date: 2023-11-28 22:06:07 +0100 | ||
author: oleavr | ||
version: 16.1.8 | ||
categories: [release] | ||
--- | ||
|
||
Three exciting changes this time around: | ||
|
||
- process: Add *get_main_module()*, exposed to JavaScript as | ||
*Process.mainModule*. Useful when needing to know which module represents the | ||
main executable of the process. In the past this was typically accomplished | ||
by enumerating the loaded modules and assuming that the first one in the list | ||
is the one. This is no longer the case on the latest Apple OSes, so we now | ||
provide an efficient and portable solution with this new API. Thanks | ||
[@mrmacete][]! | ||
- compiler: Bump @types/frida-gum to 18.5.0, now with typings for recent API | ||
additions. | ||
- barebone: Fix compatibility with latest Corellium. | ||
|
||
|
||
[@mrmacete]: https://x.com/bezjaje |