We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Print export section information:
File file = new File("sample.exe"); String report = ReportCreator.newInstance(file).exportsReport(); System.out.println(report);
Get a list of all exports and obtain values for export entries:
PEData pedata = PELoader.loadPE(file); List<ExportEntry> exports = pedata.loadExports(); for(ExportEntry export : exports) { int ordinal = export.ordinal(); long rva = export.symbolRVA(); String name = ((ExportNameEntry) export).name(); }