Skip to content

Instantly share code, notes, and snippets.

@neoneo40
Last active October 26, 2015 11:52
Show Gist options
  • Save neoneo40/15abae9ce81bccc7be0b to your computer and use it in GitHub Desktop.
Save neoneo40/15abae9ce81bccc7be0b to your computer and use it in GitHub Desktop.
packet analysis
import os
import magic
with magic.Magic() as m:
path = '/Users/re4lfl0w/Documents/_tmp/2/'
for ele in os.listdir(path):
ele = os.path.join(path, ele)
print('{} - {}'.format(os.path.basename(ele), m.id_filename(ele)))

Packet analysis

Resolution Solution

  • sudo apt-get update
  • sudo apt-get install virtualbox-*
  • sudo shutdown -r now
  • apt-get install -y virtualbox-guest-dkms virtualbox-guest-utils virtualbox-guest-x11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment