Utilizo Agent Ransack para buscar directorios completos. Pero no descomprime los archivos JAR antes de examinarlos. ¿Existe alguna herramienta que haga eso?
Respuesta1
Intenta usar unzip
:
unzip -p your_file.jar | grep "your_search"
De la man
página:
-p extract files to pipe (stdout). Nothing but the file data is sent to
stdout, and the files are always extracted in binary format, just as
they are stored (no conversions).