File: example.py

package info (click to toggle)
file 5.11-2%2Bdeb7u8
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 5,704 kB
  • sloc: ansic: 11,475; sh: 10,051; makefile: 392; python: 130
file content (17 lines) | stat: -rw-r--r-- 207 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /usr/bin/python

import magic

ms = magic.open(magic.NONE)
ms.load()
tp = ms.file("/bin/ls")
print (tp)

f = open("/bin/ls", "rb")
buf = f.read(4096)
f.close()

tp = ms.buffer(buf)
print (tp)

ms.close()