Skip to content

Commit

Permalink
Release 5.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Jan 8, 2025
1 parent 41479e1 commit b365fe8
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
PKGNAME='r2frida' ; VERSION='5.9.6' ; VERSION_MAJOR=5; VERSION_MINOR=9; VERSION_PATCH=6; VERSION_NUMBER=50906; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
PKGNAME='r2frida' ; VERSION='5.9.8' ; VERSION_MAJOR=5; VERSION_MINOR=9; VERSION_PATCH=8; VERSION_NUMBER=50908; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
}

show_usage() {
cat <<EOF2
'configure' configures r2frida-5.9.6 to adapt to many kinds of systems.
'configure' configures r2frida-5.9.8 to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -200,10 +200,10 @@ ocho() {

show_version() {
if [ "$QUIET" = 1 ]; then
echo "5.9.6"
echo "5.9.8"
exit 0
fi
echo "r2frida-5.9.6 configuration script done with acr v2.1.4.
echo "r2frida-5.9.8 configuration script done with acr v2.1.4.
The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <nopcode.org>."
exit 0
Expand Down Expand Up @@ -232,7 +232,7 @@ case $flag in
show_version ; ;;
-r|--r|--report)
echo "PKGNAME: r2frida"
echo "VERSION: 5.9.6"
echo "VERSION: 5.9.8"
echo "AUTHOR: pancake"
echo "EMAIL: [email protected]"
echo "LANGS: c"
Expand Down
2 changes: 1 addition & 1 deletion configure.acr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PKGNAME r2frida
VERSION 5.9.6
VERSION 5.9.8
CONTACT pancake ; [email protected]

USE_PKGCONFIG!
Expand Down
2 changes: 1 addition & 1 deletion configure.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo OFF
setlocal
set "R2V=5.9.6"
set "R2V=5.9.8"
set "R2ZIP=https://github.com/radareorg/radare2/releases/download/%R2V%/radare2-%R2V%-w64.zip"
set "R2DIR=radare2"

Expand Down
18 changes: 9 additions & 9 deletions make.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off
REM setlocal EnableDelayedExpansion
set frida_version=16.5.9
set r2frida_version=5.9.6
set r2frida_version=5.9.8
if "%PLATFORM%" == "x64" (set frida_os_arch=x86_64) else (set frida_os_arch=x86)
set DEBUG=/O2

Expand Down Expand Up @@ -65,14 +65,14 @@ if %ERRORLEVEL%==0 (
)
cd ..

REM REM echo Building the Agent...
REM REM del src\_agent.js
REM REM src\r2frida-compile.exe -Sc src\agent\index.ts > src\_agent.js
REM REM echo Creating the header...
REM REM del src\_agent.js.hex
REM REM %R2_BASE%\bin\radare2 -nfqc "pcq~0x" src\_agent.js > src\_agent.js.hex
REM REM powershell -command "Get-Content .\src\_agent.js.hex | Select-String -Exclude Start 0x" > src\_agent.h
REM REM DEL src\_agent.js.hex
REM REM echo Building the Agent...
REM REM del src\_agent.js
REM REM src\r2frida-compile.exe -Sc src\agent\index.ts > src\_agent.js
REM REM echo Creating the header...
REM REM del src\_agent.js.hex
REM REM %R2_BASE%\bin\radare2 -nfqc "pcq~0x" src\_agent.js > src\_agent.js.hex
REM REM powershell -command "Get-Content .\src\_agent.js.hex | Select-String -Exclude Start 0x" > src\_agent.h
REM REM DEL src\_agent.js.hex

REM echo Downloading precompiled agent
REM powershell -command "iwr -OutFile src\_agent.txt https://github.com/nowsecure/r2frida/releases/download/5.8.0/_agent.js"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "r2frida-agent",
"version": "5.9.6",
"version": "5.9.8",
"description": "Agent for frida:// io plugin",
"private": true,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/agent/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export interface R2FridaPlugin {
}

export const r2frida: R2FridaPlugin = {
version: "5.9.6",
version: "5.9.8",
commandHandler: commandHandler,
pluginRegister: pluginRegister,
pluginUnregister: pluginUnregister,
Expand Down

0 comments on commit b365fe8

Please sign in to comment.