Requirements: (Only JDK 17.0.X or above), 64-bit OS
Mod info(changes):- fix all integrity checks\timebomb- Time-limited sessions (fixed)- Requires an Internet connection (fixed)- dexdec: fix string decrypt via emulation- dexdec: instruction conversion (recovered)- gui: Usage of the clipboard is disallowed (fixed)- jdb2: Saving or loading projects is disabled (fixed)- android debug (enabled)- android native debug (enabled)- avrdec: decompiler (enabled)- Decompiler exporter (fixed)- CF-unflattener, unvirtualizer, native emulator, and plugins (fixed)- callgraph enabled- telemetry disabled
Download:c03K9s2c8@1M7s2y4Q4x3@1q4Q4x3V1k6Q4x3V1k6E0k6h3N6S2i4K6u0W2L8Y4A6Q4x3V1k6X3K9h3I4W2i4K6u0r3e0q4N6n7g2e0m8S2P5W2y4Q4x3U0y4h3K9f1A6h3c8h3c8v1M7%4y4U0j5i4W2D9N6o6S2s2i4K6u0V1y4X3I4H3f1#2)9#2k6U0g2A6y4W2M7#2K9o6m8U0d9V1c8F1L8$3#2k6b7K6k6H3e0q4R3&6e0b7`.`.7c7K9s2c8@1M7s2y4Q4x3@1q4Q4x3V1k6Q4x3V1k6H3K9i4S2W2L8r3c8J5j5h3W2F1i4K6u0W2j5$3!0E0i4K6u0r3N6g2)9J5c8X3y4B7e0X3y4#2c8V1N6$3
分流:
Download
传播安全知识、拓宽行业人脉——看雪讲师团队等你加入!
---
来源: 看雪论坛
原文链接: https://bbs.kanxue.com/thread-290324.htm
[转帖]JEB Decompiler 5.38.0.202603112011 mod by CXV
384 浏览
1 回复
[C] Thread[#1,main,5,main] terminated unexpectedly
[C] java.lang.NoSuchMethodError: Lcom/pnfsoftware/jeb/rcpclient/CocoaUIEnhancer$MenuHookObject;.actionProc(JJJ)J
[C] at org.eclipse.swt.internal.Callback.bind(Native Method)
[C] at org.eclipse.swt.internal.Callback.<init>(Callback.java:136)
[C] at org.eclipse.swt.internal.Callback.<init>(Callback.java:88)
[C] at org.eclipse.swt.internal.Callback.<init>(Callback.java:66)
[C] at com.pnfsoftware.jeb.rcpclient.CocoaUIEnhancer.hookApplicationMenu(CocoaUIEnhancer.java:2152)
[C] at com.pnfsoftware.jeb.rcpclient.JebApp.<init>(JebApp.java:45)
[C] at com.pnfsoftware.jeb.rcpclient.Launcher.main(Launcher.java:54)
It seems there is a problem with the launcher on macOS.If you are using a Mac, I recommend you postpone the update, we are looking into a fix.
We are deploying build 5.38.1.202603131410 that should be fixing thejava.lang.NoSuchMethodError: Lcom/pnfsoftware/jeb/rcpclient/CocoaUIEnhancer$MenuHookObject;.actionProc(JJJ)Jerror introduced in version 5.38.
When your update is available (you will receive the usual email), run the following command to update without starting the GUI:
$ `jeb_macos.sh -c --check-update`Root cause:
The CocoaUIEnhancer$MenuHookObject class in jebc.jar only has actionProc(int, int, int) returning int — the 32-bit Cocoa callback signature. On 64-bit macOS (all modern Macs), SWT's Callback class determines that C.PTR_SIZEOF == 8 and looks for actionProc(long, long, long) returning long via JNI. Since that method doesn't exist, you get NoSuchMethodError.Fix:1.
Compiled a patched MenuHookObject class (bin/patch/com/pnfsoftware/jeb/rcpclient/CocoaUIEnhancer$MenuHookObject.class) that provides the 64-bit method signature long actionProc(long, long, long) while also keeping the old 32-bit signature for compatibility.
Modified run.sh line 74 to prepend $BASEDIR/bin/patch to the classpath, so the patched class is loaded before the broken one in jebc.jar: -cp "$BASEDIR/bin/patch:$BASEDIR/bin/app/jebc.jar:..."
最后于 2026-3-16 02:09
被neomafo编辑
,原因:
[C] java.lang.NoSuchMethodError: Lcom/pnfsoftware/jeb/rcpclient/CocoaUIEnhancer$MenuHookObject;.actionProc(JJJ)J
[C] at org.eclipse.swt.internal.Callback.bind(Native Method)
[C] at org.eclipse.swt.internal.Callback.<init>(Callback.java:136)
[C] at org.eclipse.swt.internal.Callback.<init>(Callback.java:88)
[C] at org.eclipse.swt.internal.Callback.<init>(Callback.java:66)
[C] at com.pnfsoftware.jeb.rcpclient.CocoaUIEnhancer.hookApplicationMenu(CocoaUIEnhancer.java:2152)
[C] at com.pnfsoftware.jeb.rcpclient.JebApp.<init>(JebApp.java:45)
[C] at com.pnfsoftware.jeb.rcpclient.Launcher.main(Launcher.java:54)
It seems there is a problem with the launcher on macOS.If you are using a Mac, I recommend you postpone the update, we are looking into a fix.
We are deploying build 5.38.1.202603131410 that should be fixing thejava.lang.NoSuchMethodError: Lcom/pnfsoftware/jeb/rcpclient/CocoaUIEnhancer$MenuHookObject;.actionProc(JJJ)Jerror introduced in version 5.38.
When your update is available (you will receive the usual email), run the following command to update without starting the GUI:
$ `jeb_macos.sh -c --check-update`Root cause:
The CocoaUIEnhancer$MenuHookObject class in jebc.jar only has actionProc(int, int, int) returning int — the 32-bit Cocoa callback signature. On 64-bit macOS (all modern Macs), SWT's Callback class determines that C.PTR_SIZEOF == 8 and looks for actionProc(long, long, long) returning long via JNI. Since that method doesn't exist, you get NoSuchMethodError.Fix:1.
Compiled a patched MenuHookObject class (bin/patch/com/pnfsoftware/jeb/rcpclient/CocoaUIEnhancer$MenuHookObject.class) that provides the 64-bit method signature long actionProc(long, long, long) while also keeping the old 32-bit signature for compatibility.
Modified run.sh line 74 to prepend $BASEDIR/bin/patch to the classpath, so the patched class is loaded before the broken one in jebc.jar: -cp "$BASEDIR/bin/patch:$BASEDIR/bin/app/jebc.jar:..."
最后于 2026-3-16 02:09
被neomafo编辑
,原因: