Exetools

Exetools (https://forum.exetools.com/index.php)
-   Community Tools (https://forum.exetools.com/forumdisplay.php?f=47)
-   -   JEB Decompiler 5.22.0.202412102010 mod by CXV (https://forum.exetools.com/showthread.php?t=21171)

CXVUSER 03-21-2024 05:40

JEB Decompiler 5.11.0.202403192101 mod by CXV
 
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, generic unpacker, unvirtualizer, native emulator, and plugins fixed
- callgraph enabled

Download:
https://pixeldrain.com/u/7QyDtaxW (mod by cxv)

CXVUSER 04-05-2024 20:55

JEB Decompiler 5.12.0.202404022046 mod by CXV
 
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, generic unpacker, unvirtualizer, native emulator, and plugins fixed
- callgraph enabled

Download:
https://pixeldrain.com/u/hEj2Jdvg (mod by cxv)

chants 05-30-2024 07:00

It is working still for me.

Spiderz_Soft 05-30-2024 13:48

Sorry. My mistake! I accidentally pasted the whole line instead of the URL.
Link is working fine.

CXVUSER 05-31-2024 10:16

JEB Decompiler 5.13.0.202405301942 mod by CXV
 
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, generic unpacker, unvirtualizer, native emulator, and plugins fixed
- callgraph enabled

Download:
https://pixeldrain.com/u/VsgdG7wE (mod by cxv)

Fyyre 06-07-2024 21:24

Thanks, I really like JEB :)

CXVUSER 06-13-2024 17:18

JEB Decompiler 5.14.0.202406122044 mod by CXV
 
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, generic unpacker, unvirtualizer, native emulator, and plugins fixed
- callgraph enabled

Download:
https://pixeldrain.com/u/pp6suXFe (mod by cxv)
https://pixeldrain.com/u/VJ9X1TzJ (FIX unpack to jeb folder and owerwrite)

Mendax47 06-16-2024 12:36

Just a question... is it possible to patch jar or apk file using JEB..? as far as i know i can only view or decompile jar or apk file.

Go2Crck 06-16-2024 17:52

Quote:

Originally Posted by Mendax47 (Post 131122)
Just a question... is it possible to patch jar or apk file using JEB..? as far as i know i can only view or decompile jar or apk file.

AFAIK JEB cannot edit APK directly because it requires signing later which is manual.

Check out these resources:
https://www.pnfsoftware.com/jeb/manual/actions/
https://www.pnfsoftware.com/jeb/manual/android/

mongza 06-17-2024 09:03

Quote:

Originally Posted by Mendax47 (Post 131122)
Just a question... is it possible to patch jar or apk file using JEB..? as far as i know i can only view or decompile jar or apk file.

for JARs, try recaf

https://github.com/Col-E/Recaf/releases
https://github.com/Col-E/recaf-3x-issues/releases

PermaNull 06-17-2024 10:36

Quote:

Originally Posted by mongza (Post 131127)
for JARs, try recaf

https://github.com/Col-E/Recaf/releases
https://github.com/Col-E/recaf-3x-issues/releases

APK aren't JAR. Unless you do dex2jar and back the other way.

Options are full decompilation/recompile or modifying the java bytecode afaik. Though with dex2jar you could possibly use Recaf's java editor but I recommend v4 if you do it with this way, otherwise apktool -d and modify the bytecode then re-assemble and sign.

If you're looking to patch/modify it another option is Frida too which would allow you to write JS like syntax, you could modify the bytecode to load Frida agent from libs dir of APK when it's started and place all your code there. This is how Oculus Quest apps are cracked.
https://frida.re/

If I wanted to do this without modifying bytecode and could see actual java code via something like JEB, Frida would be my preferred approach due to the ease-of-use vs trying to manipulate the software via bytecode.

mongza 06-17-2024 12:23

Quote:

Originally Posted by PermaNull (Post 131128)
APK aren't JAR. Unless you do dex2jar and back the other way.

Options are full decompilation/recompile or modifying the java bytecode afaik. Though with dex2jar you could possibly use Recaf's java editor but I recommend v4 if you do it with this way, otherwise apktool -d and modify the bytecode then re-assemble and sign.

If you're looking to patch/modify it another option is Frida too which would allow you to write JS like syntax, you could modify the bytecode to load Frida agent from libs dir of APK when it's started and place all your code there. This is how Oculus Quest apps are cracked.
https://frida.re/

If I wanted to do this without modifying bytecode and could see actual java code via something like JEB, Frida would be my preferred approach due to the ease-of-use vs trying to manipulate the software via bytecode.


Please re-read Mendax47's question.

PermaNull 06-17-2024 15:22

Quote:

Originally Posted by mongza (Post 131129)
Please re-read Mendax47's question.

My issue, I only read the quoted post after where it was discussing APK and not the OP. Regardless, both were mentioned, and the solutions provided by either of us should work.

CKCat 06-17-2024 16:32

It may be caused by the plug-in I use. After deleting the plug-in, I will try again to see if the error occurs! thank you for your sharing!!!

The following error is reported every time it is used. JEB 5.12 will not report an error, but JEB 5.13 and later will report the following error:

[C] java.lang.IllegalArgumentException: Index out of bounds
[C] at org.eclipse.swt.SWT.error(SWT.java:4903)
[C] at org.eclipse.swt.SWT.error(SWT.java:4837)
[C] at org.eclipse.swt.SWT.error(SWT.java:4808)
[C] at org.eclipse.swt.custom.StyledText.getRanges(StyledText.java:4339)
[C] at org.eclipse.swt.custom.StyledText.setStyleRanges(StyledText.java:10156)
[C] at org.eclipse.swt.custom.StyledText.replaceStyleRanges(StyledText.java:7727)
[C] at org.eclipse.jface.text.TextViewer.addPresentation(TextViewer.java:4782)
[C] at org.eclipse.jface.text.TextViewer.changeTextPresentation(TextViewer.java:4859)
[C] at com.pnfsoftware.jeb.rcpclient.iviewers.text.InteractiveTextViewer.updateDocument(InteractiveTextViewer.java:1094)
[C] at com.pnfsoftware.jeb.rcpclient.iviewers.text.ScrollBufferManager.viewAtAnchor(ScrollBufferManager.java:136)
[C] at com.pnfsoftware.jeb.rcpclient.iviewers.text.ScrollBufferManager.viewAtAnchor(ScrollBufferManager.java:76)
[C] at com.pnfsoftware.jeb.rcpclient.iviewers.text.ScrollBufferManager.viewAtAnchor(ScrollBufferManager.java:63)
[C] at com.pnfsoftware.jeb.rcpclient.iviewers.text.ScrollBufferManager.setVisualPosition(ScrollBufferManager.java:763)
[C] at com.pnfsoftware.jeb.rcpclient.iviewers.text.InteractiveTextViewer.setVisualPosition(InteractiveTextViewer.java:713)
[C] at com.pnfsoftware.jeb.rcpclient.iviewers.text.InteractiveTextViewer.setCaretCoordinates(InteractiveTextViewer.java:675)
[C] at com.pnfsoftware.jeb.rcpclient.parts.units.TextFragment.setActiveAddress(TextFragment.java:432)
[C] at com.pnfsoftware.jeb.rcpclient.parts.units.AbstractTextFragment.followItem(AbstractTextFragment.java:291)
[C] at com.pnfsoftware.jeb.rcpclient.parts.units.AbstractTextFragment.doItemFollow(AbstractTextFragment.java:206)
[C] at com.pnfsoftware.jeb.rcpclient.parts.units.TextFragment.doOperation(TextFragment.java:570)
[C] at com.pnfsoftware.jeb.rcpclient.parts.UnitPartManager.delegateOperation(UnitPartManager.java:1320)
[C] at com.pnfsoftware.jeb.rcpclient.parts.UnitPartManager.doOperation(UnitPartManager.java:1235)
[C] at com.pnfsoftware.jeb.rcpclient.parts.units.AbstractUnitFragment.requestOperation(AbstractUnitFragment.java:445)
[C] at com.pnfsoftware.jeb.rcpclient.parts.units.TextFragment$2.mouseDoubleClick(TextFragment.java:142)
[C] at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:213)
[C] at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:91)
[C] at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4285)
[C] at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1160)
[C] at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4083)
[C] at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3673)
[C] at com.pnfsoftware.jeb.rcpclient.extensions.app.App.run(App.java:197)
[C] at com.pnfsoftware.jeb.rcpclient.Launcher.main(Launcher.java:20)
[C]

CXVUSER 07-06-2024 08:16

https://pixeldrain.com/u/VJ9X1TzJ (FIX unpack to jeb folder and replace)


All times are GMT +8. The time now is 04:23.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
Always Your Best Friend: Aaron, JMI, ahmadmansoor, ZeNiX