show swf info when swf found in memor on command line search

This commit is contained in:
honfika@gmail.com
2016-03-13 10:36:48 +01:00
parent 4cff42370f
commit 3ae2da1d62

View File

@@ -1920,6 +1920,7 @@ public class CommandLineArgumentParser {
if (s instanceof SwfInMemory) {
SwfInMemory swf = (SwfInMemory) s;
String fileName = cnt.getAndIncrement() + ".swf";
System.out.println("SWF found (" + fileName + "). Version: " + swf.version + ", file size: " + swf.fileSize + ", address: " + swf.address);
Helper.writeFile(fileName, swf.is);
}
}