Advertisement
James_inthe_box

Analyze script

Aug 30th, 2017
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Analyze bash script:
  2.  
  3. analyze bleh.exe
  4.  
  5. #!/bin/bash
  6. portex "$1" > "$1.portex.txt"
  7. peframe "$1" > "$1.peframe.txt"
  8. floss "$1" > "$1.floss.txt"
  9. floss -r "$1.r2" "$1"
  10. rabin2 -g "$1" > "$1.rabin2.txt"
  11. cave_miner search "$1" > "$1.cave.txt"
  12.  
  13. https://github.com/katjahahn/PortEx
  14. https://github.com/guelfoweb/peframe
  15. https://github.com/fireeye/flare-floss
  16. https://github.com/radare/radare2
  17. https://github.com/Antonin-Deniau/cave_miner
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement