id
int64
0
458k
file_name
stringlengths
4
119
file_path
stringlengths
14
227
content
stringlengths
24
9.96M
size
int64
24
9.96M
language
stringclasses
1 value
extension
stringclasses
14 values
total_lines
int64
1
219k
avg_line_length
float64
2.52
4.63M
max_line_length
int64
5
9.91M
alphanum_fraction
float64
0
1
repo_name
stringlengths
7
101
repo_stars
int64
100
139k
repo_forks
int64
0
26.4k
repo_open_issues
int64
0
2.27k
repo_license
stringclasses
12 values
repo_extraction_date
stringclasses
433 values
19,800
converter.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/converter.py
#!/usr/bin/env python2 import sys, os.path from pdfdevice import PDFDevice, PDFTextDevice from pdffont import PDFUnicodeNotDefined from pdftypes import LITERALS_DCT_DECODE from pdfcolor import LITERAL_DEVICE_GRAY, LITERAL_DEVICE_RGB from layout import LTContainer, LTPage, LTText, LTLine, LTRect, LTCurve from layout imp...
18,982
Python
.py
443
30.250564
107
0.534579
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,801
pdfparser.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/pdfparser.py
#!/usr/bin/env python2 import sys import re import struct try: import hashlib as md5 except ImportError: import md5 try: from cStringIO import StringIO except ImportError: from StringIO import StringIO from psparser import PSStackParser from psparser import PSSyntaxError, PSEOF from psparser import lite...
27,593
Python
.py
718
26.82312
99
0.535802
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,802
pdftypes.pyc
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/pdftypes.pyc
Ñò Î ÈMc @s,ddkZddkZddklZddklZlZddklZddk l Z l Z ddk l Z l Z lZe dƒZe dƒe d ƒfZe d ƒe d ƒfZe d ƒe d ƒfZe dƒe dƒfZe dƒe dƒfZe dƒe dƒfZe d...
10,784
Python
.py
40
267.6
1,716
0.415588
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,803
layout.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/layout.py
#!/usr/bin/env python2 import sys from utils import INF, Plane, get_bound, uniq, csort, fsplit from utils import bbox2str, matrix2str, apply_matrix_pt ## LAParams ## class LAParams(object): def __init__(self, line_overlap=0.5, char_margin=2.0, line_margin=0.5, ...
19,560
Python
.py
518
26.664093
99
0.523789
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,804
pdftypes.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/pdftypes.py
#!/usr/bin/env python2 import sys import zlib from lzw import lzwdecode from ascii85 import ascii85decode, asciihexdecode from runlength import rldecode from psparser import PSException, PSObject from psparser import LIT, KWD, STRICT LITERAL_CRYPT = LIT('Crypt') # Abbreviation of Filter names in PDF 4.8.6. "Inline Im...
7,735
Python
.py
222
26.022523
100
0.580217
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,805
utils.pyc
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/utils.pyc
Ñò Î ÈMc@sdZddkZddklZdZd„Zd„Zd„Zd „Z d „Z d „Z d „Z d „Z d„Zdd„Zd„Zdd„Zdid„dDƒƒZd„Zdd„Zd„Zd„Zdefd„ƒYZdefd„ƒYZd„ZdS(s Misc...
12,876
Python
.py
31
414.032258
2,974
0.386035
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,806
cmapdb.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/cmapdb.py
#!/usr/bin/env python2 """ Adobe character mapping (CMap) support. CMaps provide the mapping between character codes and Unicode code-points to character ids (CIDs). More information is available on the Adobe website: http://opensource.adobe.com/wiki/display/cmap/CMap+Resources """ import sys import re import o...
11,181
Python
.py
349
21.770774
94
0.517631
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,807
fontmetrics.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/fontmetrics.py
#!/usr/bin/env python2 """ Font metrics for the Adobe core 14 fonts. Font metrics are used to compute the boundary of each character written with a proportional font. The following data were extracted from the AFM files: http://www.ctan.org/tex-archive/fonts/adobe/afm/ """ ### BEGIN Verbatim copy of the lice...
25,237
Python
.py
37
680.351351
2,122
0.593672
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,808
pdffont.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/pdffont.py
#!/usr/bin/env python2 import sys import struct try: from cStringIO import StringIO except ImportError: from StringIO import StringIO from cmapdb import CMapDB, CMapParser, FileUnicodeMap, CMap from encodingdb import EncodingDB, name2unicode from psparser import PSStackParser from psparser import PSSyntaxError,...
26,471
Python
.py
632
31.60443
98
0.555374
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,809
latin_enc.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/latin_enc.py
#!/usr/bin/env python2 """ Standard encoding tables used in PDF. This table is extracted from PDF Reference Manual 1.6, pp.925 "D.1 Latin Character Set and Encodings" """ ENCODING = [ # (name, std, mac, win, pdf) ('A', 65, 65, 65, 65), ('AE', 225, 174, 198, 198), ('Aacute', None, 231, 193, 193), ('Acirc...
7,835
Python
.py
237
30.092827
61
0.539768
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,810
ascii85.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/ascii85.py
#!/usr/bin/env python2 """ Python implementation of ASCII85/ASCIIHex decoder (Adobe version). This code is in the public domain. """ import re import struct # ascii85decode(data) def ascii85decode(data): """ In ASCII85 encoding, every four bytes are encoded with five ASCII letters, using 85 different t...
2,431
Python
.py
69
28.57971
76
0.599829
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,811
encodingdb.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/encodingdb.py
#!/usr/bin/env python2 import re from psparser import PSLiteral from glyphlist import glyphname2unicode from latin_enc import ENCODING ## name2unicode ## STRIP_NAME = re.compile(r'[0-9]+') def name2unicode(name): """Converts Adobe glyph names to Unicode numbers.""" if name in glyphname2unicode: retu...
1,548
Python
.py
50
22.8
66
0.596644
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,812
lzw.pyc
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/lzw.pyc
Ñò Î ÈMc@s�ddkZyddklZWn#ej oddklZnXdefd„ƒYZd„ZedjoddkZei ƒndS(iÿÿÿÿN(tStringIOt LZWDecodercBs2eZdZd„Zd„Zd„Zd„ZRS(icCs:...
2,799
Python
.py
20
138.35
566
0.343885
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,813
psparser.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/psparser.py
#!/usr/bin/env python2 import sys import re from utils import choplist STRICT = 0 ## PS Exceptions ## class PSException(Exception): pass class PSEOF(PSException): pass class PSSyntaxError(PSException): pass class PSTypeError(PSException): pass class PSValueError(PSException): pass ## Basic PostScript Types ## #...
19,563
Python
.py
601
23.096506
100
0.506979
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,814
utils.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/utils.py
#!/usr/bin/env python2 """ Miscellaneous Routines. """ import struct from sys import maxint as INF ## Matrix operations ## MATRIX_IDENTITY = (1, 0, 0, 1, 0, 0) def mult_matrix((a1,b1,c1,d1,e1,f1), (a0,b0,c0,d0,e0,f0)): """Returns the multiplication of two matrices.""" return (a0*a1+c0*b1, b0*a1+d0*b1, ...
7,991
Python
.py
218
30.880734
92
0.611154
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,815
pdfparser.pyc
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/pdfparser.pyc
—Ú Œ »Mc@sddkZddkZddkZyddkZWnej oddkZnXyddklZWn#ej oddklZnXddkl Z ddkl Z l Z ddkl Z ddkl Z lZlZddklZlZlZddklZlZdd klZ...
27,720
Python
.py
187
145.823529
1,098
0.407634
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,816
ascii85.pyc
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/ascii85.pyc
Ñò Î ÈMc@s…dZddkZddkZd„ZeideiƒZeideiƒZd„Ze djoddk Z e i ƒndS(si Python implementation of ASCII85/ASCIIHex decoder (Adobe version). This code is in the public domain. iÿÿÿÿNcCs)d}}d}...
3,065
Python
.py
39
74.205128
496
0.52579
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,817
__init__.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/__init__.py
#!/usr/bin/env python2 __version__ = '20110227' if __name__ == '__main__': print __version__
94
Python
.py
3
30
44
0.588889
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,818
runlength.pyc
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/runlength.pyc
Ñò Î ÈMc@s@ddkZd„ZedjoddkZeiƒndS(iÿÿÿÿNcCsòg}d}xÖ|t|ƒjoÂt||ƒ}|djoPn|djoM|djo@||d|d|d!}|i|ƒ|d|d}n|djo5||dd|}...
1,597
Python
.py
18
82.388889
375
0.527848
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,819
rijndael.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/rijndael.py
#!/usr/bin/env python2 """ Python implementation of Rijndael encryption algorithm. This code is in the public domain. This code is based on a public domain C implementation by Philip J. Erdelsky: http://www.efgh.com/software/rijndael.htm """ import sys import struct def KEYLENGTH(keybits): return (keybits)/8 de...
47,510
Python
.py
1,027
41.206426
89
0.726501
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,820
psparser.pyc
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/psparser.pyc
—Ú Œ »Mc@sÀddkZddkZddklZdZdefdÑÉYZdefdÑÉYZdefd ÑÉYZd efd ÑÉYZ d efd ÑÉYZ de fdÑÉYZ de fdÑÉYZ de fdÑÉYZde fdÑÉYZee ÉZeeÉZeiZeiZed...
25,028
Python
.py
143
172.986014
1,166
0.394378
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,821
glyphlist.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/glyphlist.py
#!/usr/bin/env python2 """ Mappings from Adobe glyph names to Unicode characters. In some CMap tables, Adobe glyph names are used for specifying Unicode characters instead of using decimal/hex character code. The following data was taken by $ wget http://www.adobe.com/devnet/opentype/archives/glyphlist.txt $ py...
121,501
Python
.py
4,332
26.056556
85
0.664635
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,822
arcfour.py
pwnieexpress_raspberry_pwn/src/pentest/metagoofil/pdfminer/arcfour.py
#!/usr/bin/env python2 """ Python implementation of Arcfour encryption algorithm. This code is in the public domain. """ ## Arcfour ## class Arcfour(object): """ >>> Arcfour('Key').process('Plaintext').encode('hex') 'bbf316e8d940af0ad3' >>> Arcfour('Wiki').process('pedia').encode('hex') '1021b...
1,136
Python
.py
41
20.756098
65
0.483901
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,823
shell.py
pwnieexpress_raspberry_pwn/src/pentest/revshells/encrypted_http_shell/shell.py
#!/usr/bin/python ########################################################################################################################## # # # AES Encrypted Reverse HTTP Shell by: # # Dave Kennedy (ReL1K) # http://www.secmaniac.com # ####################################################################...
5,129
Python
.py
118
40.711864
169
0.578431
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,824
server.py
pwnieexpress_raspberry_pwn/src/pentest/revshells/encrypted_http_shell/server.py
#!/usr/bin/python ############################################ # # # AES Encrypted Reverse HTTP Listener by: # # Dave Kennedy (ReL1K) # http://www.secmaniac.com # # ############################################ from BaseHTTPServer import BaseHTTPRequestHandler from BaseHTTPServer import HTTPServer import urlp...
3,184
Python
.py
99
28.727273
76
0.658854
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,825
GoodFET.py
pwnieexpress_raspberry_pwn/src/pentest/goodfet/GoodFET.py
#!/usr/bin/env python # GoodFET Client Library # # (C) 2009 Travis Goodspeed <travis at radiantmachines.com> # # This code is being rewritten and refactored. You've been warned! import sys, time, string, cStringIO, struct, glob, serial, os; import sqlite3; fmt = ("B", "<H", None, "<L") def getClient(name="GoodFET"...
15,345
Python
.py
385
28.909091
116
0.55939
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,826
GoodFETCC.py
pwnieexpress_raspberry_pwn/src/pentest/goodfet/GoodFETCC.py
#!/usr/bin/env python # GoodFET Client Library # # (C) 2009 Travis Goodspeed <travis at radiantmachines.com> # # This code is being rewritten and refactored. You've been warned! import sys; import binascii; from GoodFET import GoodFET; from intelhex import IntelHex; import xml.dom.minidom; class GoodFETCC(GoodFET...
14,334
Python
.py
353
28.793201
90
0.539281
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,827
GoodFETMSP430.py
pwnieexpress_raspberry_pwn/src/pentest/goodfet/GoodFETMSP430.py
#!/usr/bin/env python # GoodFET Client Library # # (C) 2009 Travis Goodspeed <travis at radiantmachines.com> # # Presently being rewritten. import sys, time, string, cStringIO, struct, glob, serial, os; from GoodFET import GoodFET; class GoodFETMSP430(GoodFET): APP=0x11; MSP430APP=0x11; #Changed by inherit...
7,859
Python
.py
192
31.078125
111
0.584893
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,828
GoodFETNRF.py
pwnieexpress_raspberry_pwn/src/pentest/goodfet/GoodFETNRF.py
#!/usr/bin/env python # GoodFET Nordic RF Radio Client # # (C) 2009 Travis Goodspeed <travis at radiantmachines.com> # # This code is being rewritten and refactored. You've been warned! import sys, time, string, cStringIO, struct, glob, serial, os; from GoodFET import GoodFET; class GoodFETNRF(GoodFET): NRFAPP...
5,752
Python
.py
154
27.071429
87
0.560389
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,829
GoodFETSPI.py
pwnieexpress_raspberry_pwn/src/pentest/goodfet/GoodFETSPI.py
#!/usr/bin/env python # GoodFET SPI and SPIFlash Client Library # # (C) 2009 Travis Goodspeed <travis at radiantmachines.com> # # This code is being rewritten and refactored. You've been warned! import sys, time, string, cStringIO, struct, glob, serial, os; from GoodFET import GoodFET; class GoodFETSPI(GoodFET): ...
4,193
Python
.py
113
25.274336
76
0.535598
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,830
gplay-arm.py
pwnieexpress_raspberry_pwn/src/pentest/goodfet/gplay-arm.py
#!/usr/bin/env ipython import sys, struct, binascii from GoodFETARM import * from intelhex import IntelHex data = [] client=GoodFETARM(); def init(): #Initailize FET and set baud rate client.serInit() # #Connect to target client.setup() client.start() print "STARTUP: "+repr(client.data) ...
12,809
Python
.py
322
33.785714
156
0.61236
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,831
intelhex.py
pwnieexpress_raspberry_pwn/src/pentest/goodfet/intelhex.py
# Copyright (c) 2005-2009, Alexander Belchenko # All rights reserved. # # Redistribution and use in source and binary forms, # with or without modification, are permitted provided # that the following conditions are met: # # * Redistributions of source code must retain # the above copyright notice, this list of condi...
41,282
Python
.py
971
31.189495
107
0.549232
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,832
GoodFETGlitch.py
pwnieexpress_raspberry_pwn/src/pentest/goodfet/GoodFETGlitch.py
#!/usr/bin/env python # GoodFET Client Library # # (C) 2009 Travis Goodspeed <travis at radiantmachines.com> # # This code is being rewritten and refactored. You've been warned! import sys, time, string, cStringIO, struct, glob, serial, os, random; import sqlite3; from GoodFET import *; # After four million point...
10,635
Python
.py
260
30.638462
120
0.572579
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,833
scanwin32.py
pwnieexpress_raspberry_pwn/src/pentest/goodfet/scanwin32.py
# Win32 serial port scanner from PySerial. # Modified by Andrew Q Righter for the GoodFET Project. import ctypes import re import serial def ValidHandle(value): if value == 0: raise ctypes.WinError() return value NULL = 0 HDEVINFO = ctypes.c_int BOOL = ctypes.c_int CHAR = ctypes.c_char PCTSTR = ctype...
9,053
Python
.py
231
28.969697
147
0.594561
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,834
GoodFET.pyc
pwnieexpress_raspberry_pwn/src/pentest/goodfet/GoodFET.pyc
—Ú h߲Kc @s®ddkZddkZddkZddkZddkZddkZddkZddkZddkZd Z ddÑZ dd dÑÉYZ dd d ÑÉYZ dS( iˇˇˇˇNtBs<Hs<LtGoodFETcCs ddk}ddk}ddk}ddk}ddk...
17,196
Python
.py
60
285.6
3,451
0.386124
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,835
GoodFETAVR.py
pwnieexpress_raspberry_pwn/src/pentest/goodfet/GoodFETAVR.py
#!/usr/bin/env python # GoodFET SPI and SPIFlash Client Library # # (C) 2009 Travis Goodspeed <travis at radiantmachines.com> # # This code is being rewritten and refactored. You've been warned! import sys, time, string, cStringIO, struct, glob, serial, os; from GoodFET import GoodFET; class GoodFETAVR(GoodFET): ...
5,094
Python
.py
147
25.210884
67
0.56103
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,836
GoodFETARM.py
pwnieexpress_raspberry_pwn/src/pentest/goodfet/GoodFETARM.py
#!/usr/bin/env python # GoodFET Client Library # # # Good luck with alpha / beta code. # Contributions and bug reports welcome. # import sys, binascii, struct import atlasutils.smartprint as asp #Global Commands READ = 0x00 WRITE = 0x01 PEEK = 0x02 POKE = 0x03 SETUP = 0x10 START = 0x20 STOP = 0x21 CALL = 0x30 E...
10,058
Python
.py
272
28.676471
105
0.563559
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,837
GoodFETConsole.py
pwnieexpress_raspberry_pwn/src/pentest/goodfet/GoodFETConsole.py
#!/usr/bin/env python # GoodFET Client Library # # (C) 2009 Travis Goodspeed <travis at radiantmachines.com> # # This code is being rewritten and refactored. You've been warned! import sys, os; import binascii; from GoodFET import GoodFET; from intelhex import IntelHex; #grep CMD GoodFETConsole.py | grep def | se...
3,406
Python
.py
118
20.584746
77
0.543452
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,838
GoodFETSmartCard.py
pwnieexpress_raspberry_pwn/src/pentest/goodfet/GoodFETSmartCard.py
#!/usr/bin/env python # GoodFET SPI and SPIFlash Client Library # # (C) 2009 Travis Goodspeed <travis at radiantmachines.com> # # This code is being rewritten and refactored. You've been warned! import sys, time, string, cStringIO, struct, glob, serial, os; from GoodFET import GoodFET; class GoodFETSmartCard(GoodF...
617
Python
.py
17
31.941176
67
0.712838
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,839
intelhex.pyc
pwnieexpress_raspberry_pwn/src/pentest/goodfet/intelhex.pyc
—Ú h߲Kc @sydZdZddklZddklZlZddklZddkZde fdÑÉYZ d e fd ÑÉYZ e e e d d ÑZ d dÑZde fdÑÉYZdefdÑÉYZe dÑZdefdÑÉYZdefdÑÉYZdefdÑÉYZdefdÑ...
36,213
Python
.py
333
103.054054
3,908
0.430588
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,840
appHandlers.pyc
pwnieexpress_raspberry_pwn/src/pentest/wifizoo/appHandlers.pyc
Ñò /“Gc@szddkZddkTddkZddkZd„Zd„Zd„Zd„Zd„Z d„Z d „Z d „Z dS( iÿÿÿÿN(t*c CsÆtiidƒ|d}|d}|d}|itƒ}ttiiƒddƒ}|idtt i i ƒƒdƒ...
9,833
Python
.py
153
63.267974
413
0.28933
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,841
WifiZooEntities.pyc
pwnieexpress_raspberry_pwn/src/pentest/wifizoo/WifiZooEntities.pyc
Ñò /“Gc@s\ddkZdd d„ƒYZdd d„ƒYZdd d„ƒYZdd d „ƒYZdS(iÿÿÿÿNtCookiecBsYeZd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Z d„Z RS( cCs1d|_d|_d|_d|_h...
8,415
Python
.py
23
364.782609
1,853
0.366734
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,842
wifizoowebgui.pyc
pwnieexpress_raspberry_pwn/src/pentest/wifizoo/wifizoowebgui.pyc
—Ú $/ìGc@sÔddkZddkZddkZddkZddkZddklZddkZddkZddk Z ddkZddk Z ddk Z dei fdÑÉYZ deieifdÑÉYZdÑZdefd ÑÉYZdS( iˇˇˇˇN(tThreadt WebHandlerc...
18,610
Python
.py
161
114.590062
815
0.398591
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,843
wifizooproxy.pyc
pwnieexpress_raspberry_pwn/src/pentest/wifizoo/wifizooproxy.pyc
Ñò /“Gc @s×dZdZddkZddkZddkZddkZddkZddkZddkZddk Z ddk l Z dei fd„ƒYZ deieifd„ƒYZd „Zd e fd „ƒYZdS( s Tiny HTTP Proxy. This module implements GET, HEAD, POST, PUT and...
5,372
Python
.py
44
120.909091
1,222
0.40811
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,844
wifiglobals.py
pwnieexpress_raspberry_pwn/src/pentest/wifizoo/wifiglobals.py
# WifiZoo # complains to Hernan Ochoa (hernan@gmail.com) import curses.ascii from scapy import * import datetime import WifiZooEntities import os class WifiGlobals: def __init__(self): self.APdict = {} self.AccessPointsList = [] self.ProbeRequestsListBySSID = [] self.ProbeRequestsListBySRC = [] self._hasPr...
8,025
Python
.py
250
27.432
205
0.635077
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,845
wifiglobals.pyc
pwnieexpress_raspberry_pwn/src/pentest/wifizoo/wifiglobals.pyc
Ñò /“Gc@sZddkZddkTddkZddkZddkZdfd„ƒYZeƒZdS(iÿÿÿÿN(t*t WifiGlobalscBsãeZd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Z d„Z d „Z d „Z d „Z d „Zd „Zd„Z...
9,370
Python
.py
79
115.911392
641
0.364734
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,846
wifizoo.py
pwnieexpress_raspberry_pwn/src/pentest/wifizoo/wifizoo.py
# wifizoo # complains to Hernan Ochoa (hernan@gmail.com) import sys import curses.ascii from scapy import * import scapy import wifiglobals import appHandlers import datetime import getopt from scapy.all import * import WifiZooEntities import wifizoowebgui import wifizooproxy # tcp port numbers HTTP_PORT = 80 POP3_PO...
8,566
Python
.py
283
25.989399
106
0.671143
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,847
appHandlers.py
pwnieexpress_raspberry_pwn/src/pentest/wifizoo/appHandlers.py
# wifizoo # app handlers # complains to Hernan Ochoa (hernan@gmail.com) import curses.ascii from scapy import * import wifiglobals import datetime # big TODO: create class hierarchy, the same code is repeated 10 times def msnHandler(pkt): wifiglobals.Info.incrementCounter('1863/tcp') raw = pkt['Raw'] ippkt = pkt[...
9,507
Python
.py
275
31.669091
117
0.626045
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,848
wifizooproxy.py
pwnieexpress_raspberry_pwn/src/pentest/wifizoo/wifizooproxy.py
# wifizoo # web proxy # complains to Hernan Ochoa (hernan@gmail.com) #Copyright (c) 2001 SUZUKI Hisao # #Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limi...
6,735
Python
.py
159
32.666667
461
0.574744
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,849
WifiZooEntities.py
pwnieexpress_raspberry_pwn/src/pentest/wifizoo/WifiZooEntities.py
import datetime class Cookie: def __init__(self): self._data = '' self._ip = '' self._hostname = '' self._request = '' self._headers = {} def getRequest(self): return self._request def setRequest(self, aRequest): self._request = aRequest def getData(self): return self._data def setData(self, aDat...
2,877
Python
.py
121
20.975207
41
0.713553
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,850
wifizoowebgui.py
pwnieexpress_raspberry_pwn/src/pentest/wifizoo/wifizoowebgui.py
# wifizoo # web gui # complains to Hernan Ochoa (hernan@gmail.com) import BaseHTTPServer import SimpleHTTPServer import urlparse import SocketServer import wifiglobals from threading import Thread import os import cgi import urllib import urlparse import socket import WifiZooEntities class WebHandler (SimpleHTTPServe...
20,509
Python
.py
412
40.128641
484
0.581374
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,851
grabber.py
pwnieexpress_raspberry_pwn/src/pentest/grabber/grabber.py
#!/usr/bin/env python """ Grabber Core v0.1 Copyright (C) 2006 - Romain Gaucher - http://rgaucher.info """ from BeautifulSoup import BeautifulSoup from xml.sax import * # Need PyXML [http://pyxml.sourceforge.net/] from optparse import OptionParser from urllib2 import URLError, HTTPError import urllib impo...
15,818
Python
.py
495
28.032323
131
0.663749
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,852
bsql.py
pwnieexpress_raspberry_pwn/src/pentest/grabber/bsql.py
#!/usr/bin/env python """ Blind SQL Module for Grabber v0.1 Copyright (C) 2006 - Romain Gaucher - http://rgaucher.info """ import sys from grabber import getContent_POST, getContent_GET from grabber import getContentDirectURL_GET, getContentDirectURL_POST from grabber import single_urlencode # order of the...
5,202
Python
.py
139
31.395683
189
0.630034
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,853
backup.py
pwnieexpress_raspberry_pwn/src/pentest/grabber/backup.py
#!/usr/bin/env python """ Backup Files Module for Grabber v0.1 Copyright (C) 2006 - Romain Gaucher - http://rgaucher.info """ import sys from grabber import getContentDirectURL_GET from spider import allowed # list of possible add-in extension ext = [".bak",".old",".",".txt",".inc",".zip",".tar"] def g...
1,070
Python
.py
37
24.918919
60
0.650732
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,854
xss.py
pwnieexpress_raspberry_pwn/src/pentest/grabber/xss.py
#!/usr/bin/env python """ Cross-Site Scripting Module for Grabber v0.1 Copyright (C) 2006 - Romain Gaucher - http://rgaucher.info """ import sys from grabber import getContent_POST, getContent_GET from grabber import getContentDirectURL_GET, getContentDirectURL_POST from grabber import single_urlencode, par...
4,018
Python
.py
103
33.271845
182
0.638718
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,855
sql.py
pwnieexpress_raspberry_pwn/src/pentest/grabber/sql.py
#!/usr/bin/env python """ SQL Module for Grabber v0.1 Copyright (C) 2006 - Romain Gaucher - http://rgaucher.info """ import sys from grabber import getContent_POST, getContent_GET from grabber import getContentDirectURL_GET, getContentDirectURL_POST from grabber import single_urlencode def detect_sql(out...
3,990
Python
.py
101
33.871287
182
0.641324
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,856
spider.py
pwnieexpress_raspberry_pwn/src/pentest/grabber/spider.py
#!/usr/bin/env python """ Spider Module for Grabber v0.1 Copyright (C) 2006 - Romain Gaucher - http://rgaucher.info """ import urllib import time import re,sys,os,string from BeautifulSoup import BeautifulSoup,SoupStrainer from urllib2 import URLError, HTTPError COOKIEFILE = 'cookies.lwp' # the pat...
15,250
Python
.py
512
25.617188
120
0.647723
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,857
javascript.py
pwnieexpress_raspberry_pwn/src/pentest/grabber/javascript.py
#!/usr/bin/env python """ Simple JavaScript Checker Module for Grabber v0.1 Copyright (C) 2006 - Romain Gaucher - http://rgaucher.info - Look at the JavaScript Source... """ import sys, re, os from spider import htmlencode from xml.sax import * # Need PyXML [http://pyxml.sourceforge.net/] # JavaS...
5,929
Python
.py
163
32.509202
102
0.690534
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,858
spider.pyc
pwnieexpress_raspberry_pwn/src/pentest/grabber/spider.pyc
—Ú -€ªMc'@sdZddkZddkZddkZddkZddkZddkZddklZlZddk l Z l Z dZ ddk ZdZdZdZddkZddk Z e iZeiÉZe iZdZdZhdd6ed 6Zd d d d dddddddddddd...
15,657
Python
.py
157
98.324841
1,030
0.375008
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,859
crystal.py
pwnieexpress_raspberry_pwn/src/pentest/grabber/crystal.py
#!/usr/bin/env python """ Crystal Module for Grabber v0.1 Copyright (C) 2006 - Romain Gaucher - http://rgaucher.info """ import sys,os,re, string, shutil from xml.sax import * # Need PyXML [http://pyxml.sourceforge.net/] from grabber import getContent_POST, getContentDirectURL_POST from grabber import getCo...
16,280
Python
.py
482
29.155602
146
0.677648
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,860
count.py
pwnieexpress_raspberry_pwn/src/pentest/grabber/count.py
# return the loc of the files import os, sys, re count = 0 python = re.compile(r'(.*).py$') all = [f for f in os.listdir('./') if os.path.isfile(os.path.join('./', f)) and python.match(f)] for a in all: print a try: f = open(a, 'r') for l in f.readlines(): if len(l) > 0: count += 1 f.clos...
399
Python
.py
16
21.1875
97
0.597855
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,861
files.py
pwnieexpress_raspberry_pwn/src/pentest/grabber/files.py
#!/usr/bin/env python """ File Inclusion Module for Grabber v0.1 Copyright (C) 2006 - Romain Gaucher - http://rgaucher.info """ import sys from grabber import getContent_POST, getContent_GET from grabber import getContentDirectURL_GET, getContentDirectURL_POST from grabber import single_urlencode severity ...
4,459
Python
.py
111
34.612613
234
0.632441
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,862
session.py
pwnieexpress_raspberry_pwn/src/pentest/grabber/session.py
#!/usr/bin/env python """ Session Analyzer Module for Grabber v0.1 Copyright (C) 2006 - Romain Gaucher - http://rgaucher.info """ import sys,re,time,datetime from grabber import getContentDirectURL_GET sessions = {} def normalize_whitespace(text): return ' '.join(text.split()) def getDirectSessionI...
2,001
Python
.py
64
27.078125
94
0.656592
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,863
win_fuzzer_gui.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/win_fuzzer_gui.py
#!/usr/bin/env python #Boa:App:BoaApp ''' This file is part of VoIPER. VoIPER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. VoIPER is di...
1,139
Python
.py
31
33.83871
78
0.749316
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,864
fuzzer.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/fuzzer.py
''' This file is part of VoIPER. VoIPER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. VoIPER is distributed in the hope that it will be u...
6,256
Python
.py
119
48.352941
104
0.690199
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,865
crash_replay.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/crash_replay.py
''' This file is part of VoIPER. VoIPER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. VoIPER is distributed in the hope that it will be u...
3,509
Python
.py
81
39.728395
119
0.709953
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,866
torturer.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/torturer.py
''' This file is part of VoIPER. VoIPER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. VoIPER is distributed in the hope that it will be u...
2,068
Python
.py
43
46.534884
79
0.745283
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,867
frames.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/gui/frames.py
''' This file is part of VoIPER. VoIPER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. VoIPER is distributed in the hope that it will be u...
22,384
Python
.py
387
45.568475
140
0.649422
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,868
__init__.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/gui/__init__.py
''' This file is part of VoIPER. VoIPER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. VoIPER is distributed in the hope that it will be u...
737
Python
.py
16
44.75
68
0.796089
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,869
config.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/misc/config.py
''' This file is part of VoIPER. VoIPER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. VoIPER is distributed in the hope that it will be u...
1,330
Python
.py
33
35
68
0.674746
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,870
utilities.pyc
pwnieexpress_raspberry_pwn/src/pentest/voiper/misc/utilities.pyc
Ñò âпMc@s)dZddkZddd„ƒYZdS(sÀ This file is part of VoIPER. VoIPER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your o...
1,585
Python
.py
19
81.368421
317
0.583493
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,871
__init__.pyc
pwnieexpress_raspberry_pwn/src/pentest/voiper/misc/__init__.pyc
—Ú ‚–øMc@sdZddgZdS(s¿ This file is part of VoIPER. VoIPER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later ve...
913
Python
.py
16
55.8125
147
0.719239
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,872
config.pyc
pwnieexpress_raspberry_pwn/src/pentest/voiper/misc/config.pyc
—Ú ‚–øMc@sdZdÑZdS(s¿ This file is part of VoIPER. VoIPER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later versi...
1,576
Python
.py
24
64.5
279
0.560362
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,873
__init__.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/misc/__init__.py
''' This file is part of VoIPER. VoIPER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. VoIPER is distributed in the hope that it will be u...
763
Python
.py
16
46.375
68
0.793801
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,874
utilities.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/misc/utilities.py
''' This file is part of VoIPER. VoIPER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. VoIPER is distributed in the hope that it will be u...
1,071
Python
.py
25
38.8
92
0.734951
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,875
crash_replay_utilities.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/misc/crash_replay_utilities.py
''' This file is part of VoIPER. VoIPER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. VoIPER is distributed in the hope that it will be u...
5,145
Python
.py
131
31.48855
93
0.634304
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,876
vmcontrol.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/vmcontrol.py
#!c:\\python\\python.exe import os import sys import time import getopt try: from win32api import GetShortPathName from win32com.shell import shell except: if os.name == "nt": print "[!] Failed to import win32api/win32com modules, please install these! Bailing..." sys.exit(1) from sulley...
10,799
Python
.py
243
33.843621
132
0.521311
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,877
network_monitor.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/network_monitor.py
#!c:\\python\\python.exe import threading import getopt import time import sys import os from sulley import pedrpc import pcapy import impacket import impacket.ImpactDecoder PORT = 26001 IFS = [] ERR = lambda msg: sys.stderr.write("ERR> " + msg + "\n") or sys.exit(1) USAGE = "USAGE: network_monitor.py" ...
8,634
Python
.py
191
36.994764
120
0.547647
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,878
win_process_monitor.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/win_process_monitor.py
#!c:\\python\\python.exe import threading import getopt import time import sys import os from sulley import pedrpc sys.path.append(r"..\..\paimei") from pydbg import * from pydbg.defines import * import s_utils PORT = 26002 ERR = lambda msg: sys.stderr.write("ERR> " + msg + "\n") or sys.exit(1) USAGE =...
15,626
Python
.py
320
39.44375
142
0.590654
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,879
nix_process_monitor.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/nix_process_monitor.py
import os import sys import getopt import signal import time import threading from sulley import pedrpc ''' By nnp http://www.unprotectedhex.com This intended as a basic replacement for Sulley's process_monitor.py on *nix. The below options are accepted. Crash details are limited to the signal that caused the death ...
9,347
Python
.py
217
34.552995
129
0.591755
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,880
memory_snapshot_context.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/pydbg/memory_snapshot_context.py
# # PyDBG # Copyright (C) 2006 Pedram Amini <pedram.amini@gmail.com> # # $Id: memory_snapshot_context.py 194 2007-04-05 15:31:53Z cameron $ # # This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public # License as published by the Free Software Foundation; either...
1,595
Python
.py
38
38.447368
120
0.656149
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,881
system_dll.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/pydbg/system_dll.py
# # PyDBG # Copyright (C) 2006 Pedram Amini <pedram.amini@gmail.com> # # $Id: system_dll.py 194 2007-04-05 15:31:53Z cameron $ # # This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public # License as published by the Free Software Foundation; either version 2 of...
3,898
Python
.py
93
34.784946
120
0.597674
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,882
breakpoint.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/pydbg/breakpoint.py
# # PyDBG # Copyright (C) 2006 Pedram Amini <pedram.amini@gmail.com> # # $Id: breakpoint.py 194 2007-04-05 15:31:53Z cameron $ # # This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public # License as published by the Free Software Foundation; either version 2 of...
2,232
Python
.py
50
40.04
120
0.644169
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,883
pdx.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/pydbg/pdx.py
# # PyDBG # Copyright (C) 2006 Pedram Amini <pedram.amini@gmail.com> # # $Id: pdx.py 194 2007-04-05 15:31:53Z cameron $ # # This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public # License as published by the Free Software Foundation; either version 2 of the Li...
2,698
Python
.py
61
36.327869
120
0.578746
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,884
hardware_breakpoint.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/pydbg/hardware_breakpoint.py
# # PyDBG # Copyright (C) 2006 Pedram Amini <pedram.amini@gmail.com> # # $Id: hardware_breakpoint.py 194 2007-04-05 15:31:53Z cameron $ # # This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public # License as published by the Free Software Foundation; either ver...
2,670
Python
.py
58
40.948276
120
0.640583
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,885
memory_breakpoint.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/pydbg/memory_breakpoint.py
# # PyDBG # Copyright (C) 2006 Pedram Amini <pedram.amini@gmail.com> # # $Id: memory_breakpoint.py 194 2007-04-05 15:31:53Z cameron $ # # This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public # License as published by the Free Software Foundation; either versi...
3,187
Python
.py
61
47.262295
120
0.590253
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,886
pydbg_client.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/pydbg/pydbg_client.py
#!c:\python\python.exe # # PyDBG # Copyright (C) 2006 Pedram Amini <pedram.amini@gmail.com> # # $Id: pydbg_client.py 194 2007-04-05 15:31:53Z cameron $ # ''' @author: Pedram Amini @contact: pedram.amini@gmail.com @organization: www.openrce.org ''' import socket import cPickle from pydbg import * from d...
10,413
Python
.py
191
43.539267
120
0.564103
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,887
__init__.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/pydbg/__init__.py
# # PyDBG # Copyright (C) 2006 Pedram Amini <pedram.amini@gmail.com> # # $Id: __init__.py 194 2007-04-05 15:31:53Z cameron $ # # This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public # License as published by the Free Software Foundation; either version 2 of t...
1,638
Python
.py
47
32.87234
119
0.688483
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,888
memory_snapshot_block.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/pydbg/memory_snapshot_block.py
# # PyDBG # Copyright (C) 2006 Pedram Amini <pedram.amini@gmail.com> # # $Id: memory_snapshot_block.py 194 2007-04-05 15:31:53Z cameron $ # # This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public # License as published by the Free Software Foundation; either v...
1,585
Python
.py
38
37.947368
120
0.656454
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,889
windows_h.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/pydbg/windows_h.py
# generated by 'xml2py' # # $Id: windows_h.py 194 2007-04-05 15:31:53Z cameron $ # # flags 'windows.xml -s DEBUG_EVENT -s CONTEXT -s MEMORY_BASIC_INFORMATION -s LDT_ENTRY -s PROCESS_INFORMATION -s STARTUPINFO -s SYSTEM_INFO -s TOKEN_PRIVILEGES -s LUID -s HANDLE -o windows_h.py' # PEDRAM - line swap ... have to patc...
15,273
Python
.py
416
33.697115
195
0.704512
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,890
pydbg.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/pydbg/pydbg.py
#!c:\python\python.exe # # PyDBG # Copyright (C) 2006 Pedram Amini <pedram.amini@gmail.com> # # $Id: pydbg.py 204 2007-06-06 19:36:11Z aportnoy $ # # This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public # License as published by the Free Software Foundation;...
142,003
Python
.py
2,592
43.86034
138
0.562374
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,891
defines.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/pydbg/defines.py
# # PyDBG # Copyright (C) 2006 Pedram Amini <pedram.amini@gmail.com> # # $Id: defines.py 193 2007-04-05 13:30:01Z cameron $ # # This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public # License as published by the Free Software Foundation; either version 2 of th...
5,923
Python
.py
150
36.713333
119
0.625109
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,892
my_ctypes.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/pydbg/my_ctypes.py
#!c:\python\python.exe # # PyDBG # Copyright (C) 2006 Pedram Amini <pedram.amini@gmail.com> # # $Id: my_ctypes.py 194 2007-04-05 15:31:53Z cameron $ # # This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public # License as published by the Free Software Foundati...
3,418
Python
.py
63
51.174603
120
0.650794
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,893
fuzz_trillian_jabber.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/archived_fuzzies/fuzz_trillian_jabber.py
#!c:\\python\\python.exe # # pedram amini <pamini@tippingpoint.com> # # on vmware: # cd shared\sulley\branches\pedram # network_monitor.py -d 1 -f "src or dst port 5298" -p audits\trillian_jabber # process_monitor.py -c audits\trillian_jabber.crashbin -p trillian.exe # # on localhost: # vmcontrol.py -r...
1,618
Python
.py
36
43.305556
174
0.702857
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,894
fuzz_trend_server_protect_5168.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/archived_fuzzies/fuzz_trend_server_protect_5168.py
#!c:\\python\\python.exe # # pedram amini <pamini@tippingpoint.com> # # on vmware: # cd shared\sulley\branches\pedram # process_monitor.py -c audits\trend_server_protect_5168.crashbin -p SpntSvc.exe # network_monitor.py -d 1 -f "src or dst port 5168" -p audits\trend_server_protect_5168 # # on localhost: # ...
2,497
Python
.py
71
31.028169
180
0.671244
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,895
fuzz_trend_control_manager_20901.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/archived_fuzzies/fuzz_trend_control_manager_20901.py
#!c:\\python\\python.exe # # pedram amini <pamini@tippingpoint.com> # # this was a really half assed fuzz. someone should take it further, see my notes in the requests file for more info. # from sulley import * from requests import trend #############################################################################...
579
Python
.py
13
43.230769
120
0.603203
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,896
legos.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/unit_tests/legos.py
from sulley import * def run (): tag() ndr_string() ber() # clear out the requests. blocks.REQUESTS = {} blocks.CURRENT = None ######################################################################################################################## def tag (): s_initialize("UNIT TEST TAG...
1,500
Python
.py
38
35.026316
120
0.458305
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,897
blocks.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/unit_tests/blocks.py
from sulley import * def run (): groups_and_num_test_cases() dependencies() repeaters() return_current_mutant() exhaustion() # clear out the requests. blocks.REQUESTS = {} blocks.CURRENT = None #########################################################################################...
7,326
Python
.py
159
38.138365
120
0.547626
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,898
primitives.py
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/unit_tests/primitives.py
from sulley import * def run (): signed_tests() string_tests() fuzz_extension_tests() # clear out the requests. blocks.REQUESTS = {} blocks.CURRENT = None ######################################################################################################################## def signed_test...
4,385
Python
.py
92
42.391304
120
0.570291
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)
19,899
generate_epydocs.bat
pwnieexpress_raspberry_pwn/src/pentest/voiper/sulley/docs/generate_epydocs.bat
c:\Python\python.exe c:\Python\Scripts\epydoc.py -o Sulley --css blue --name "Sulley: Fuzzing Framework" --url "http://pedram.openrce.org" ..\sulley
148
Python
.py
1
148
148
0.722973
pwnieexpress/raspberry_pwn
1,024
184
8
GPL-3.0
9/5/2024, 5:12:22 PM (Europe/Amsterdam)