From 0fc440f0f463919ad9b73256ad24c474d4b62350 Mon Sep 17 00:00:00 2001 From: Angelo DeLuca Date: Fri, 20 Sep 2024 11:27:26 -0400 Subject: [PATCH 1/2] Fixed an erroneous cast that led to symbol renaming issues in deobfuscation. --- src/jsxer/reader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jsxer/reader.cpp b/src/jsxer/reader.cpp index cee927e..db8ab89 100644 --- a/src/jsxer/reader.cpp +++ b/src/jsxer/reader.cpp @@ -248,7 +248,7 @@ ByteString Reader::readSID(bool operator_context) { // if a symbol name is obfuscated, rename it to something more sensible... if (_unblind && jsxer::deob::jsxblind_should_substitute(deobfuscationContext, symbol, operator_context)) { - string deobfuscated = "symbol_" + fmt::to_string((int)id); + string deobfuscated = "symbol_" + fmt::to_string(id_int); symbol = utils::to_byte_string(deobfuscated); } From 34a70cc7f735df37f299dbeba472ca6b28e9764e Mon Sep 17 00:00:00 2001 From: Angelo DeLuca Date: Fri, 20 Sep 2024 11:27:51 -0400 Subject: [PATCH 2/2] Bump version --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index f8a696c..661e7ae 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.7.2 +1.7.3