diff --git a/configure b/configure index cc0d5a9d..bc1de0f3 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #!/bin/sh -# This script was automatically generated by ACR v2.1.0 +# This script was automatically generated by ACR v2.1.1 # @author: pancake # @url: http://www.nopcode.org # @repo: git clone https://github.com/radare/acr @@ -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.8.6' ; VERSION_MAJOR=5; VERSION_MINOR=8; VERSION_PATCH=6; VERSION_NUMBER=50806; CONTACT_MAIL="pancake@nowsecure.com" ; CONTACT_NAME="pancake" ; CONTACT="pancake " ; + PKGNAME='r2frida' ; VERSION='5.8.8' ; VERSION_MAJOR=5; VERSION_MINOR=8; VERSION_PATCH=8; VERSION_NUMBER=50808; CONTACT_MAIL="pancake@nowsecure.com" ; CONTACT_NAME="pancake" ; CONTACT="pancake " ; } show_usage() { cat <." exit 0 @@ -232,7 +232,7 @@ case $flag in show_version ; ;; -r|--r|--report) echo "PKGNAME: r2frida" -echo "VERSION: 5.8.6" +echo "VERSION: 5.8.8" echo "AUTHOR: pancake" echo "EMAIL: pancake@nowsecure.com" echo "LANGS: c" @@ -358,7 +358,7 @@ if [ "${CROSSBUILD}" = 1 ]; then if [ $? = 0 ]; then CC="${HOST}-${CC}"; fi fi echo "int main(int argc, char **argv){return 0;}" > test.c - (exec ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} test.c >/dev/null 2>&1) + (exec ${CC} -o a.out ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} test.c >/dev/null 2>&1) if [ $? = 0 ]; then echo ${CC}; else echo no ; HAVE_LANG_C=0 do_remove diff --git a/configure.acr b/configure.acr index bf582192..d29f94a8 100644 --- a/configure.acr +++ b/configure.acr @@ -1,5 +1,5 @@ PKGNAME r2frida -VERSION 5.8.6 +VERSION 5.8.8 CONTACT pancake ; pancake@nowsecure.com USE_PKGCONFIG! diff --git a/make.bat b/make.bat index 8cde65d4..80d30619 100644 --- a/make.bat +++ b/make.bat @@ -1,7 +1,7 @@ @echo off setlocal EnableDelayedExpansion set frida_version=16.0.19 -set r2frida_version=5.8.6 +set r2frida_version=5.8.8 if "%PLATFORM%" == "x64" (set frida_os_arch=x86_64) else (set frida_os_arch=x86) set DEBUG=/O2 diff --git a/package.json b/package.json index 3f30adc2..2f20a3ca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "r2frida-agent", - "version": "5.8.6", + "version": "5.8.8", "description": "Agent for frida:// io plugin", "private": true, "type": "module", diff --git a/src/agent/plugin.ts b/src/agent/plugin.ts index 84aace09..fd63431b 100644 --- a/src/agent/plugin.ts +++ b/src/agent/plugin.ts @@ -69,7 +69,7 @@ r2frida.puts = initializePuts(); */ export const r2frida: R2FridaPlugin = { - version: "5.8.6", + version: "5.8.8", safeio: false, commandHandler: commandHandler, pluginRegister: pluginRegister,