mirror of https://github.com/n1nj4sec/pupy.git
9 lines
219 B
Python
9 lines
219 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: UTF8 -*-
|
||
|
|
||
|
import marshal, zlib
|
||
|
modules = marshal.loads(zlib.decompress(open("library_compressed_string.txt",'rb').read()))
|
||
|
for f in sorted([x for x in modules.iterkeys()]):
|
||
|
print f
|
||
|
|