I have a jar in which all of the class files have their magic number and type removed, I am not very knowledgeable about this specific area. What would be the best way to go about adding back in 0XCAFEBABE and the type back into each classfile and repacking the jar?
EDIT: i have checked, only the magic number is missing, the files are intact if i add it manually.
If you would like to do this at runtime, you could create your own classloader. I have attached some pseudo-code that might get you on the way:
But i guess it is better to just fix the jar file using some OS tooling.