packing-box / docker-packing-box

Docker image gathering packers and tools for making datasets of packed executables and training machine learning models for packing detection

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduce visualization of file data

smarbal opened this issue · comments

Improvement suggestion

Currently, the visualization tool can only select data present in the features to make additional plots. It would be nice to also be able to select the file type (e.g. PE32, PE64) or the extension if there is one (e.g. .exe, .dll).
I just need a way to get that data and can take it from there for the plot generation.

commented

@smarbal
With a0f604c you have now :

  • params['format'] for the executable format (PE32, ELF, ...)
  • params['extension'] for the executable's extension (.exe, .dll, .sys, ...)
    You can proceed with your code in pbox.learning.visualization.

Thank you. Added visualization in #65.