1

I have one exe file, that is packed by Tool Jar2exe. Can anyone help me to Convert it to jar file or is it possible or not ? Below is the link of that file .

http://www.mediafire.com/?eh7dmuy9vxd9m3w

Oak Bytes
  • 4,649
  • 4
  • 36
  • 53
user1283869
  • 11
  • 1
  • 3

3 Answers3

2

Have you tried using an archiving program such as 7-zip or winzip to open up the file, then extracting the .class files?

Chris White
  • 29,949
  • 4
  • 71
  • 93
1

if 7-zip doesnt work or just show libs but not main jar it means the option " hide /encrypt " was used. Hence you need to use winhex, ollydbg and ressource hacker and you'r good to go http://reverseengineeringtips.blogspot.fr/2014/12/unpacking-jar2exe-21-extracting-jar.html

jack
  • 11
  • 1
1

If those are truly binaries, then you are screwed and nothing else besides some serious reverse engineering is going to help you.

Chances however are that the exe file will contain the class files nicely packed together. Then just try to open it in 7-ZIP or similar and see if that works out.

Jakub Zaverka
  • 8,816
  • 3
  • 32
  • 48
  • i extract it with winrar but its not giving jar file its giving any packer tool jar2 exe details of regex lab . any other way to do ? – user1283869 Mar 24 '12 at 21:29
  • I don't want to extract , Actually i want this file to convert to jar file back . it can be done any advice ? – user1283869 Mar 24 '12 at 22:09
  • From the Jar2Exe homepage: _Another important feature to be mentioned is the ability to hide the class files and even encrypt them. The encrypted files are decrypted at run time. This prevents the code from being reverse engineered to a certain extent._ So buddy, maybe you are out of luck. – Jakub Zaverka Mar 24 '12 at 22:12
  • at run time any option to do this ? :( – user1283869 Mar 24 '12 at 22:19
  • You mean something like "grab the bytecode from JVM when it's executing"? Doubt it... – Jakub Zaverka Mar 24 '12 at 22:32