Hex editing Java bytecode throwing ClassFormatError -


while researching java, bytecode editing in particular, stumbled across this tutorial, guides through steps of editing compiled java .class files hex editor. intrigued, gave go.

i made sure typed in correctly, checked , double-checked, replaced right bytes in hex editor, etc. everything's ok.

the first thing noticed hex dump different his, however, expected this, different java versions yield different results.

after inputting correct bytes (replacing hacking java bytecode! l33t hax0r bro, , 3 occurrences of 00 16 00 0e), saved file, , ran it. however, instead of getting output of l33t hax0r bro, writer of tutorial did, got rather ugly error:

error: jni error has occurred, please check installation , try again exception in thread "main" java.lang.classformaterror: unknown constant tag 116 in class file user     @ java.lang.classloader.defineclass1(native method)     @ java.lang.classloader.defineclass(classloader.java:760)     @ java.security.secureclassloader.defineclass(secureclassloader.java:142)     @ java.net.urlclassloader.defineclass(urlclassloader.java:467)     @ java.net.urlclassloader.access$100(urlclassloader.java:73)     @ java.net.urlclassloader$1.run(urlclassloader.java:368)     @ java.net.urlclassloader$1.run(urlclassloader.java:362)     @ java.security.accesscontroller.doprivileged(native method)     @ java.net.urlclassloader.findclass(urlclassloader.java:361)     @ java.lang.classloader.loadclass(classloader.java:424)     @ sun.misc.launcher$appclassloader.loadclass(launcher.java:331)     @ java.lang.classloader.loadclass(classloader.java:357)     @ sun.launcher.launcherhelper.checkandloadmain(launcherhelper.java:495) 

here java source code i'm using:

public class user {     protected int status = 0;      public boolean setstatustrue() {         return this.status == 1;     }      public static void main(string[] args) {         system.out.println("hacking java bytecode!");     } } 

the hexdump of unedited user.class file:

00000000: cafe babe 0000 0034 0029 0700 0201 0004  .......4.)...... 00000010: 5573 6572 0700 0401 0010 6a61 7661 2f6c  user......java/l 00000020: 616e 672f 4f62 6a65 6374 0100 0673 7461  ang/object...sta 00000030: 7475 7301 0001 4901 0006 3c69 6e69 743e  tus...i...<init> 00000040: 0100 0328 2956 0100 0443 6f64 650a 0003  ...()v...code... 00000050: 000b 0c00 0700 0809 0001 000d 0c00 0500  ................ 00000060: 0601 000f 4c69 6e65 4e75 6d62 6572 5461  ....linenumberta 00000070: 626c 6501 0012 4c6f 6361 6c56 6172 6961  ble...localvaria 00000080: 626c 6554 6162 6c65 0100 0474 6869 7301  bletable...this. 00000090: 0006 4c55 7365 723b 0100 0d73 6574 5374  ..luser;...setst 000000a0: 6174 7573 5472 7565 0100 0328 295a 0100  atustrue...()z.. 000000b0: 0d53 7461 636b 4d61 7054 6162 6c65 0100  .stackmaptable.. 000000c0: 046d 6169 6e01 0016 285b 4c6a 6176 612f  .main...([ljava/ 000000d0: 6c61 6e67 2f53 7472 696e 673b 2956 0900  lang/string;)v.. 000000e0: 1800 1a07 0019 0100 106a 6176 612f 6c61  .........java/la 000000f0: 6e67 2f53 7973 7465 6d0c 001b 001c 0100  ng/system....... 00000100: 036f 7574 0100 154c 6a61 7661 2f69 6f2f  .out...ljava/io/ 00000110: 5072 696e 7453 7472 6561 6d3b 0800 1e01  printstream;.... 00000120: 0016 4861 636b 696e 6720 4a61 7661 2042  ..hacking java b 00000130: 7974 6563 6f64 6521 0a00 2000 2207 0021  ytecode!.. ."..! 00000140: 0100 136a 6176 612f 696f 2f50 7269 6e74  ...java/io/print 00000150: 5374 7265 616d 0c00 2300 2401 0007 7072  stream..#.$...pr 00000160: 696e 746c 6e01 0015 284c 6a61 7661 2f6c  intln...(ljava/l 00000170: 616e 672f 5374 7269 6e67 3b29 5601 0004  ang/string;)v... 00000180: 6172 6773 0100 135b 4c6a 6176 612f 6c61  args...[ljava/la 00000190: 6e67 2f53 7472 696e 673b 0100 0a53 6f75  ng/string;...sou 000001a0: 7263 6546 696c 6501 0009 5573 6572 2e6a  rcefile...user.j 000001b0: 6176 6100 2100 0100 0300 0000 0100 0400  ava.!........... 000001c0: 0500 0600 0000 0300 0100 0700 0800 0100  ................ 000001d0: 0900 0000 3c00 0200 0100 0000 0a2a b700  ....<........*.. 000001e0: 0a2a 03b5 000c b100 0000 0200 0e00 0000  .*.............. 000001f0: 0e00 0300 0000 0100 0400 0200 0900 0100  ................ 00000200: 0f00 0000 0c00 0100 0000 0a00 1000 1100  ................ 00000210: 0000 0100 1200 1300 0100 0900 0000 3f00  ..............?. 00000220: 0200 0100 0000 0c2a b400 0c04 a000 0504  .......*........ 00000230: ac03 ac00 0000 0300 0e00 0000 0600 0100  ................ 00000240: 0000 0500 0f00 0000 0c00 0100 0000 0c00  ................ 00000250: 1000 1100 0000 1400 0000 0300 010a 0009  ................ 00000260: 0015 0016 0001 0009 0000 0037 0002 0001  ...........7.... 00000270: 0000 0009 b200 1712 1db6 001f b100 0000  ................ 00000280: 0200 0e00 0000 0a00 0200 0000 0900 0800  ................ 00000290: 0a00 0f00 0000 0c00 0100 0000 0900 2500  ..............%. 000002a0: 2600 0000 0100 2700 0000 0200 28         &.....'.....( 

the hexdump of edited user.class file:

00000000: cafe babe 0000 0034 0029 0700 0201 0004  .......4.)...... 00000010: 5573 6572 0700 0401 0010 6a61 7661 2f6c  user......java/l 00000020: 616e 672f 4f62 6a65 6374 0100 0673 7461  ang/object...sta 00000030: 7475 7301 0001 4901 0006 3c69 6e69 743e  tus...i...<init> 00000040: 0100 0328 2956 0100 0443 6f64 650a 0003  ...()v...code... 00000050: 000b 0c00 0700 0809 0001 000d 0c00 0500  ................ 00000060: 0601 000f 4c69 6e65 4e75 6d62 6572 5461  ....linenumberta 00000070: 626c 6501 0012 4c6f 6361 6c56 6172 6961  ble...localvaria 00000080: 626c 6554 6162 6c65 0100 0474 6869 7301  bletable...this. 00000090: 0006 4c55 7365 723b 0100 0d73 6574 5374  ..luser;...setst 000000a0: 6174 7573 5472 7565 0100 0328 295a 0100  atustrue...()z.. 000000b0: 0d53 7461 636b 4d61 7054 6162 6c65 0100  .stackmaptable.. 000000c0: 046d 6169 6e01 000e 285b 4c6a 6176 612f  .main...([ljava/ 000000d0: 6c61 6e67 2f53 7472 696e 673b 2956 0900  lang/string;)v.. 000000e0: 1800 1a07 0019 0100 106a 6176 612f 6c61  .........java/la 000000f0: 6e67 2f53 7973 7465 6d0c 001b 001c 0100  ng/system....... 00000100: 036f 7574 0100 154c 6a61 7661 2f69 6f2f  .out...ljava/io/ 00000110: 5072 696e 7453 7472 6561 6d3b 0800 1e01  printstream;.... 00000120: 000e 6c33 3374 2068 6178 3072 2062 726f  ..l33t hax0r bro 00000130: 0a0a 0020 0022 0700 2101 0013 6a61 7661  ... ."..!...java 00000140: 2f69 6f2f 5072 696e 7453 7472 6561 6d0c  /io/printstream. 00000150: 0023 0024 0100 0770 7269 6e74 6c6e 0100  .#.$...println.. 00000160: 1528 4c6a 6176 612f 6c61 6e67 2f53 7472  .(ljava/lang/str 00000170: 696e 673b 2956 0100 0461 7267 7301 0013  ing;)v...args... 00000180: 5b4c 6a61 7661 2f6c 616e 672f 5374 7269  [ljava/lang/stri 00000190: 6e67 3b01 000a 536f 7572 6365 4669 6c65  ng;...sourcefile 000001a0: 0100 0955 7365 722e 6a61 7661 0021 0001  ...user.java.!.. 000001b0: 0003 0000 0001 0004 0005 0006 0000 0003  ................ 000001c0: 0001 0007 0008 0001 0009 0000 003c 0002  .............<.. 000001d0: 0001 0000 000a 2ab7 000a 2a03 b500 0cb1  ......*...*..... 000001e0: 0000 0002 000e 0000 000e 0003 0000 0001  ................ 000001f0: 0004 0002 0009 0001 000f 0000 000c 0001  ................ 00000200: 0000 000a 0010 0011 0000 0001 0012 0013  ................ 00000210: 0001 0009 0000 003f 0002 0001 0000 000c  .......?........ 00000220: 2ab4 000c 04a0 0005 04ac 03ac 0000 0003  *............... 00000230: 000e 0000 0006 0001 0000 0005 000f 0000  ................ 00000240: 000c 0001 0000 000c 0010 0011 0000 0014  ................ 00000250: 0000 0003 0001 0a00 0900 1500 0e00 0100  ................ 00000260: 0900 0000 3700 0200 0100 0000 09b2 0017  ....7........... 00000270: 121d b600 1fb1 0000 0002 000e 0000 000a  ................ 00000280: 0002 0000 0009 0008 000a 000f 0000 000c  ................ 00000290: 0001 0000 0009 0025 0026 0000 0001 0027  .......%.&.....' 000002a0: 0000 0002 0028                           .....( 

the answer question suggests classformaterror bug in java 8 compiler. using java 8, however, answer states bug fixed in 8u60+. using 8u65.

in end, how can edit .class file hex editor desired output?

additional system specs:

  • fedora 23
  • javac -version: javac 1.8.0_65
  • java -version:

    java version "1.8.0_65" java(tm) se runtime environment (build 1.8.0_65-b17) java hotspot(tm) 64-bit server vm (build 25.65-b01, mixed mode) 

you're supposed replace length field of string modified. that's 2 bytes in front of string modified, other instances of 00 16 unrelated parts of classfile, , editing them turned garbage.

on side note, highly recommend using assembler. i've created , modified classes directly in hex editor before, , it's painstaking process that's easy mess if know you're doing. furthermore, it's pretty pointless nowadays, because krakatau assembler , disassembler let create , modify arbitrary classfiles in human readable format. (if find jvm supports krakatau doesn't, please file bug)


Comments

Popular posts from this blog

c - How to retrieve a variable from the Apache configuration inside the module? -

c# - Constructor arguments cannot be passed for interface mocks -

python - malformed header from script index.py Bad header -