benlawsus

Joe McCray Malware Analysis July 2

Jul 2nd, 2016
441
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. Joe McCray July 2
  2.  
  3. http://pastebin.com/QXURDzma
  4.  
  5. Coukoo Sandbox
  6. https://infosecspeakeasy.org/t/howto-build-a-cuckoo-sandbox/27
  7.  
  8. Deep Freeze
  9.  
  10.  
  11. http://resources.infosecinstitute.com/portable-malware-lab-for-beginners/
  12.  
  13. sudo pip install -U olefile
  14.  
  15. Powershell commands executed in prefetch
  16. https://www.blackhat.com/docs/us-14/materials/us-14-Kazanciyan-Investigating-Powershell-Attacks-WP.pdf
  17.  
  18. malware@ubuntu:~/Desktop$ mysql -u root -p
  19. Enter password:
  20.  
  21. show databases;
  22.  
  23. use malware;
  24.  
  25. show tables;
  26.  
  27. describe files;
  28. mysql> show databases;
  29. +--------------------+
  30. | Database |
  31. +--------------------+
  32. | information_schema |
  33. | malware |
  34. | mysql |
  35. | performance_schema |
  36. +--------------------+
  37. 4 rows in set (0.00 sec)
  38.  
  39. mysql>
  40. mysql> use malware;
  41. Reading table information for completion of table and column names
  42. You can turn off this feature to get a quicker startup with -A
  43.  
  44. Database changed
  45. mysql>
  46. mysql> show tables;
  47. +-------------------+
  48. | Tables_in_malware |
  49. +-------------------+
  50. | files |
  51. +-------------------+
  52. 1 row in set (0.00 sec)
  53.  
  54. mysql>
  55. mysql> describe files;
  56. +---------+----------+------+-----+---------+----------------+
  57. | Field | Type | Null | Key | Default | Extra |
  58. +---------+----------+------+-----+---------+----------------+
  59. | id | int(11) | NO | PRI | NULL | auto_increment |
  60. | md5 | text | YES | | NULL | |
  61. | sha1 | text | YES | | NULL | |
  62. | sha256 | text | YES | | NULL | |
  63. | malware | longblob | YES | | NULL | |
  64. | time | datetime | YES | | NULL | |
  65. +---------+----------+------+-----+---------+----------------+
  66. 6 rows in set (0.00 sec)
Advertisement
Add Comment
Please, Sign In to add comment