문제

Is there a way to reverse engineer a Jboss web application with only the build of the application?

Regards, Brat

도움이 되었습니까?

해결책

A web application is basically a .war file containing all the stuff, which is a renamed zip archive and you can extract it using your favourite unzipping program. Once decompressed, you will find:

  • Web pages (commonly JSPs): there's no need to reverse anything.
  • Config files: again, they are just fine
  • class files: this is the tricky part, since you have to decompile them. there is a lot of software to do that (this, for instance)
  • JARs: they are libraries, most likely third party libraries so, again, nothing to do. Maybe some of them are not third party libraries, and you have to decompress them (yes, renamed zip files) and you will find .class files inside.

It's pretty hard to be exhaustive, just wanted to point you in the right direction.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top