APEV PX
Usage
Usage:
java -jar apevpx.jar <options> [-in IN] [-out OUT]
or
java -classpath apevpx.jar com.ucware.apevpx.APEVPX <options> [-in IN] [-out OUT]
<options> specify the types of reports that APEV PX will generate:
-pe - DOS Header, COFF File Header, Optional NT Headers;
-exp - Export Table;
-imp - Import Table.
These options are not mutually exclusive;
you can request to generate reports in any combination.
Input and output options:
-in IN - Specifies a file or a list of files for processing.
If present, IN must point to an existing PE file.
If you omit this option altogether, APEV PX will try
to read the list of files for processing from STDIN,
interpreting every line of input as a file name.
-out OUT - If present, OUT specifies the output folder.
All reports generated with APEV PX go into that folder,
one report file for every combination of report type
and source file.
If you omit this option altogether, APEV PX will print
all the reports to STDOUT.
Usage examples:
java -jar apevpx.jar -exp -in mydll.dll
java -jar apevpx.jar -pe -exp -in mydll.dll -out .\
java -jar apevpx.jar -imp -exp -out .\reports\ <filelist.txt