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,000 | banner.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/parse/banner.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from xml.sax.handler import ContentHandler
from lib.core.common import checkFile
from lib.core.common import Backend
from lib.core.common import parseXmlFile
from ... | 3,613 | Python | .py | 92 | 31.119565 | 108 | 0.632618 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,001 | payloads.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/parse/payloads.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from xml.etree import ElementTree as et
from lib.core.data import conf
from lib.core.data import paths
from lib.core.datatype import AttribDict
def cleanupVals(text, tag):
... | 2,096 | Python | .py | 55 | 27.563636 | 77 | 0.567688 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,002 | handler.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/parse/handler.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from xml.sax.handler import ContentHandler
from lib.core.common import sanitizeStr
class FingerprintHandler(ContentHandler):
"""
This class defines methods... | 2,640 | Python | .py | 60 | 33.766667 | 124 | 0.578845 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,003 | enums.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/enums.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
class PRIORITY:
LOWEST = -100
LOWER = -50
LOW = -10
NORMAL = 0
HIGH = 10
HIGHER = 50
HIGHEST = 100
class SORT_ORDER:
FIRST = 0
SECOND = 1
... | 9,259 | Python | .py | 307 | 24.071661 | 191 | 0.590261 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,004 | settings.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/settings.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import random
import re
import subprocess
import string
import sys
import time
from lib.core.enums import DBMS
from lib.core.enums import DBMS_DIRECTORY_NAME
from l... | 28,035 | Python | .py | 478 | 54.610879 | 375 | 0.700095 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,005 | wordlist.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/wordlist.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import zipfile
from lib.core.exception import SqlmapDataException
from lib.core.settings import UNICODE_ENCODING
class Wordlist(object):
"""
Iterator for l... | 2,180 | Python | .py | 66 | 23.19697 | 85 | 0.550166 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,006 | exception.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/exception.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
class SqlmapBaseException(Exception):
pass
class SqlmapCompressionException(SqlmapBaseException):
pass
class SqlmapConnectionException(SqlmapBaseException):
pass... | 1,459 | Python | .py | 47 | 27.787234 | 65 | 0.853237 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,007 | target.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/target.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import codecs
import functools
import os
import re
import tempfile
import time
import urlparse
from lib.core.common import Backend
from lib.core.common import getUnicode
from... | 28,422 | Python | .py | 542 | 41.112546 | 254 | 0.608688 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,008 | profiling.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/profiling.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import codecs
import os
import cProfile
from lib.core.common import getUnicode
from lib.core.data import logger
from lib.core.data import paths
from lib.core.settings import ... | 3,064 | Python | .py | 71 | 37.704225 | 100 | 0.726875 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,009 | unescaper.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/unescaper.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.common import Backend
from lib.core.data import conf
from lib.core.datatype import AttribDict
from lib.core.settings import EXCLUDE_UNESCAPE
class Unescaper(Att... | 933 | Python | .py | 26 | 28.884615 | 64 | 0.689655 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,010 | optiondict.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/optiondict.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
optDict = {
# Format:
# Family: { "parameter name": "parameter datatype" },
# Or:
# Family: { "parameter name"... | 12,505 | Python | .py | 218 | 28.16055 | 126 | 0.242034 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,011 | subprocessng.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/subprocessng.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import errno
import os
import subprocess
import sys
import time
from lib.core.settings import IS_WIN
if IS_WIN:
try:
from win32file import ReadFile, WriteFile
... | 5,645 | Python | .py | 168 | 22.875 | 129 | 0.536653 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,012 | convert.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/convert.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import json
import pickle
import sys
from lib.core.settings import IS_WIN
from lib.core.settings import UNICODE_ENCODING
def base64decode(value):
"""
Decodes string ... | 4,546 | Python | .py | 139 | 26.503597 | 96 | 0.63578 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,013 | xmldump.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/xmldump.py | #!/usr/bin/env python
import codecs
import os
import re
import xml
import xml.sax.saxutils as saxutils
from lib.core.common import getUnicode
from lib.core.data import conf
from lib.core.data import kb
from lib.core.data import logger
from lib.core.exception import SqlmapFilePathException
from lib.core.settings impo... | 20,219 | Python | .py | 462 | 33.080087 | 115 | 0.616623 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,014 | defaults.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/defaults.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.datatype import AttribDict
_defaults = {
"csvDel": ",",
"timeSec": 5,
"googlePage": 1,
"cpuThrottle": 5,
"verbose": 1,
"del... | 586 | Python | .py | 24 | 21.375 | 62 | 0.535842 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,015 | __init__.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/__init__.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
pass
| 150 | Python | .py | 6 | 23.666667 | 62 | 0.746479 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,016 | replication.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/replication.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import sqlite3
from extra.safe2bin.safe2bin import safechardecode
from lib.core.common import unsafeSQLIdentificatorNaming
from lib.core.exception import SqlmapGenericExcepti... | 4,034 | Python | .py | 92 | 33.804348 | 181 | 0.607343 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,017 | log.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/log.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import logging
import sys
from lib.core.enums import CUSTOM_LOGGING
logging.addLevelName(CUSTOM_LOGGING.PAYLOAD, "PAYLOAD")
logging.addLevelName(CUSTOM_LOGGING.TRAFFIC_OUT, ... | 1,384 | Python | .py | 33 | 37.69697 | 96 | 0.742537 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,018 | dicts.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/dicts.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import DBMS
from lib.core.enums import OS
from lib.core.enums import POST_HINT
from lib.core.settings import BLANK
from lib.core.settings import NULL
from ... | 9,284 | Python | .py | 207 | 25.082126 | 184 | 0.388582 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,019 | threads.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/threads.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import difflib
import threading
import time
import traceback
from thread import error as threadError
from lib.core.data import conf
from lib.core.data import kb
from lib.cor... | 5,979 | Python | .py | 163 | 28.196319 | 169 | 0.645949 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,020 | bigarray.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/bigarray.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
try:
import cPickle as pickle
except:
import pickle
import os
import tempfile
from lib.core.settings import BIGARRAY_CHUNK_LENGTH
class Cache(object):
"""
Aux... | 3,698 | Python | .py | 105 | 26.533333 | 135 | 0.56551 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,021 | shell.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/shell.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import atexit
import os
import rlcompleter
from lib.core import readlineng as readline
from lib.core.common import Backend
from lib.core.data import logger
from lib.core.data... | 4,054 | Python | .py | 104 | 28.971154 | 99 | 0.597651 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,022 | testing.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/testing.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import codecs
import doctest
import os
import re
import shutil
import sys
import tempfile
import time
import traceback
from extra.beep.beep import beep
from lib.controller.co... | 10,693 | Python | .py | 256 | 32.167969 | 129 | 0.610838 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,023 | readlineng.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/readlineng.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.data import logger
from lib.core.settings import IS_WIN
from lib.core.settings import PLATFORM
_readline = None
try:
from readline import *
import read... | 1,850 | Python | .py | 51 | 31.235294 | 98 | 0.701401 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,024 | revision.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/revision.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import re
from subprocess import PIPE
from subprocess import Popen as execute
def getRevisionNumber():
"""
Returns abbreviated commit hash number as retrie... | 1,563 | Python | .py | 45 | 25.533333 | 94 | 0.553347 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,025 | datatype.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/datatype.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import copy
import types
from lib.core.exception import SqlmapDataException
class AttribDict(dict):
"""
This class defines the sqlmap object, inheriting from Python ... | 2,973 | Python | .py | 82 | 27.926829 | 135 | 0.602931 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,026 | option.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/option.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import cookielib
import glob
import inspect
import logging
import os
import random
import re
import socket
import string
import sys
import threading
import time
import urllib2... | 81,697 | Python | .py | 1,874 | 34.685699 | 194 | 0.632749 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,027 | common.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/common.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import codecs
import contextlib
import cookielib
import copy
import getpass
import hashlib
import httplib
import inspect
import json
import logging
import ntpath
import os
imp... | 126,017 | Python | .py | 2,998 | 33.026351 | 239 | 0.612198 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,028 | update.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/update.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import re
import time
from subprocess import PIPE
from subprocess import Popen as execute
from lib.core.common import dataToStdout
from lib.core.common import poll... | 2,464 | Python | .py | 55 | 37.981818 | 115 | 0.67209 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,029 | decorators.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/decorators.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
def cachedmethod(f, cache={}):
"""
Method with a cached content
Reference: http://code.activestate.com/recipes/325205-cache-decorator-in-python-24/
"""
d... | 608 | Python | .py | 19 | 25.894737 | 87 | 0.599315 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,030 | data.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/data.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.datatype import AttribDict
from lib.core.log import LOGGER
# sqlmap paths
paths = AttribDict()
# object to store original command line options
cmdLineOptions =... | 731 | Python | .py | 22 | 31.818182 | 87 | 0.8 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,031 | dump.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/dump.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import cgi
import codecs
import os
import re
import threading
from lib.core.common import Backend
from lib.core.common import dataToDumpFile
from lib.core.common import dataT... | 24,346 | Python | .py | 487 | 34.823409 | 162 | 0.532285 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,032 | session.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/session.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.common import Backend
from lib.core.common import Format
from lib.core.common import hashDBWrite
from lib.core.data import kb
from lib.core.data impor... | 1,913 | Python | .py | 57 | 28.421053 | 86 | 0.646514 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,033 | agent.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/core/agent.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.common import Backend
from lib.core.common import extractRegexResult
from lib.core.common import getSQLSnippet
from lib.core.common import isDBMSVersi... | 46,203 | Python | .py | 793 | 46.151324 | 431 | 0.6085 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,034 | udf.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/takeover/udf.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
from lib.core.agent import agent
from lib.core.common import checkFile
from lib.core.common import dataToStdout
from lib.core.common import Backend
from lib.core.co... | 14,350 | Python | .py | 306 | 34.176471 | 182 | 0.581696 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,035 | icmpsh.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/takeover/icmpsh.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import time
from extra.icmpsh.icmpsh_m import main as icmpshmaster
from lib.core.common import getLocalIP
from lib.core.common import getRemoteIP
from lib.core.comm... | 3,632 | Python | .py | 81 | 37.222222 | 126 | 0.676496 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,036 | __init__.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/takeover/__init__.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
pass
| 150 | Python | .py | 6 | 23.666667 | 62 | 0.746479 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,037 | abstraction.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/takeover/abstraction.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from extra.safe2bin.safe2bin import safechardecode
from lib.core.common import dataToStdout
from lib.core.common import Backend
from lib.core.common import getSQLSnippet
from ... | 7,647 | Python | .py | 165 | 35.048485 | 98 | 0.616543 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,038 | xp_cmdshell.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/takeover/xp_cmdshell.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.agent import agent
from lib.core.common import Backend
from lib.core.common import flattenValue
from lib.core.common import getLimitRange
from lib.core.common im... | 11,781 | Python | .py | 230 | 39.786957 | 188 | 0.62475 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,039 | registry.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/takeover/registry.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
from lib.core.common import randomStr
from lib.core.data import conf
from lib.core.data import logger
from lib.core.enums import REGISTRY_OPERATION
class Registry:... | 3,928 | Python | .py | 85 | 35.894118 | 158 | 0.594332 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,040 | metasploit.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/takeover/metasploit.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import re
import sys
import time
from subprocess import PIPE
from lib.core.common import dataToStdout
from lib.core.common import Backend
from lib.core.common impo... | 27,329 | Python | .py | 518 | 37.218147 | 200 | 0.55273 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,041 | web.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/lib/takeover/web.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import urlparse
import os
import re
import StringIO
from tempfile import mkstemp
from extra.cloak.cloak import decloak
from lib.core.agent import agent
from lib.core.common ... | 14,749 | Python | .py | 284 | 39.017606 | 160 | 0.602378 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,042 | greatest.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/greatest.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.HIGHEST
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Replaces greater than... | 1,155 | Python | .py | 32 | 30.1875 | 107 | 0.61982 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,043 | space2mysqlblank.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/space2mysqlblank.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import random
from lib.core.common import singleTimeWarnMessage
from lib.core.enums import DBMS
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
de... | 1,878 | Python | .py | 53 | 27.830189 | 139 | 0.58218 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,044 | charencode.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/charencode.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import string
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOWEST
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Url-encodes all ch... | 1,379 | Python | .py | 39 | 28.179487 | 150 | 0.606631 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,045 | space2mysqldash.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/space2mysqldash.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
from lib.core.common import singleTimeWarnMessage
from lib.core.enums import DBMS
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
def dependencies... | 1,161 | Python | .py | 36 | 25.777778 | 139 | 0.600719 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,046 | base64encode.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/base64encode.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import base64
from lib.core.enums import PRIORITY
from lib.core.settings import UNICODE_ENCODING
__priority__ = PRIORITY.LOWEST
def dependencies():
pass
def tamper(pay... | 552 | Python | .py | 18 | 27.666667 | 85 | 0.737643 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,047 | lowercase.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/lowercase.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.data import kb
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.NORMAL
def dependencies():
pass
def tamper(payload, **kwargs):
"... | 1,044 | Python | .py | 33 | 25.69697 | 74 | 0.651303 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,048 | unionalltounion.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/unionalltounion.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.HIGHEST
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Replaces UNION ALL SELECT with U... | 489 | Python | .py | 16 | 27.375 | 86 | 0.7103 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,049 | varnish.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/varnish.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.NORMAL
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Append a HTTP header 'X-originati... | 948 | Python | .py | 25 | 32.92 | 144 | 0.674317 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,050 | space2hash.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/space2hash.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import random
import string
from lib.core.common import singleTimeWarnMessage
from lib.core.enums import DBMS
from lib.core.enums import PRIORITY
__priority__ = PR... | 1,534 | Python | .py | 42 | 29.928571 | 139 | 0.630156 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,051 | space2randomblank.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/space2randomblank.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import random
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Replaces space charac... | 1,635 | Python | .py | 50 | 24.56 | 71 | 0.558036 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,052 | between.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/between.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.HIGHEST
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Replaces greater than... | 1,739 | Python | .py | 43 | 33.302326 | 112 | 0.561905 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,053 | nonrecursivereplacement.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/nonrecursivereplacement.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import random
import re
from lib.core.common import singleTimeWarnMessage
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.NORMAL
def tamper(payload, **kwargs):
... | 1,138 | Python | .py | 30 | 33.233333 | 108 | 0.671832 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,054 | apostrophenullencode.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/apostrophenullencode.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOWEST
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Replaces apostrophe character wit... | 503 | Python | .py | 16 | 28.25 | 77 | 0.695833 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,055 | space2comment.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/space2comment.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Replaces space character (' ') with ... | 1,319 | Python | .py | 41 | 23.268293 | 69 | 0.545166 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,056 | multiplespaces.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/multiplespaces.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import random
import re
from lib.core.data import kb
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.NORMAL
def dependencies():
pass
def tamper(payload, **... | 1,260 | Python | .py | 34 | 31.088235 | 152 | 0.613543 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,057 | chardoubleencode.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/chardoubleencode.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import string
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Double url-encodes al... | 1,197 | Python | .py | 33 | 29.333333 | 150 | 0.616319 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,058 | randomcomments.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/randomcomments.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.common import randomRange
from lib.core.data import kb
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
def tamper(payload, **kwargs)... | 1,122 | Python | .py | 34 | 24.5 | 80 | 0.523765 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,059 | versionedmorekeywords.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/versionedmorekeywords.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import re
from lib.core.common import singleTimeWarnMessage
from lib.core.data import kb
from lib.core.enums import DBMS
from lib.core.enums import PRIORITY
from li... | 1,759 | Python | .py | 39 | 39.897436 | 196 | 0.642438 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,060 | space2mssqlblank.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/space2mssqlblank.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import random
from lib.core.common import singleTimeWarnMessage
from lib.core.enums import DBMS
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
de... | 2,540 | Python | .py | 69 | 28.797101 | 139 | 0.534068 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,061 | bluecoat.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/bluecoat.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.data import kb
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.NORMAL
def dependencies():
pass
def tamper(payload, **kwargs):
"... | 1,316 | Python | .py | 37 | 29.864865 | 98 | 0.651383 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,062 | equaltolike.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/equaltolike.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import re
from lib.core.common import singleTimeWarnMessage
from lib.core.enums import DBMS
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.HIGHEST
de... | 1,323 | Python | .py | 35 | 32.628571 | 135 | 0.654631 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,063 | apostrophemask.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/apostrophemask.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOWEST
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Replaces apostrophe character wit... | 799 | Python | .py | 21 | 33.619048 | 83 | 0.687013 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,064 | xforwardedfor.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/xforwardedfor.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
from random import sample
__priority__ = PRIORITY.NORMAL
def dependencies():
pass
def randomIP():
numbers = []
while not numb... | 703 | Python | .py | 23 | 27.043478 | 62 | 0.683976 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,065 | space2plus.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/space2plus.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Replaces space character (' ') with ... | 1,260 | Python | .py | 38 | 24.131579 | 73 | 0.56338 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,066 | ifnull2ifisnull.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/ifnull2ifisnull.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.HIGHEST
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Replaces instances like 'IFNULL(... | 1,625 | Python | .py | 47 | 24.340426 | 74 | 0.50128 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,067 | space2morehash.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/space2morehash.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import re
import random
import string
from lib.core.common import singleTimeWarnMessage
from lib.core.data import kb
from lib.core.enums import DBMS
from lib.core.e... | 2,188 | Python | .py | 53 | 34.509434 | 148 | 0.636149 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,068 | concat2concatws.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/concat2concatws.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.HIGHEST
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Replaces instances like 'CONCAT(... | 766 | Python | .py | 25 | 25.76 | 85 | 0.647945 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,069 | __init__.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/__init__.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
pass
| 150 | Python | .py | 6 | 23.666667 | 62 | 0.746479 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,070 | unmagicquotes.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/unmagicquotes.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.NORMAL
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Replaces quote charact... | 1,185 | Python | .py | 38 | 23.5 | 86 | 0.555163 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,071 | sp_password.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/sp_password.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.HIGH
def tamper(payload, **kwargs):
"""
Appends 'sp_password' to the end of the payload for automatic obf... | 811 | Python | .py | 22 | 32.136364 | 123 | 0.650834 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,072 | space2dash.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/space2dash.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import random
import string
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
def tamper(payload, **kwargs):
"""
Replaces space character (' ') with a... | 1,235 | Python | .py | 36 | 27.055556 | 138 | 0.597643 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,073 | space2mssqlhash.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/space2mssqlhash.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
def tamper(payload, **kwargs):
"""
Replaces space character (' ') with a pound character ('#') follow... | 890 | Python | .py | 30 | 22.466667 | 75 | 0.562353 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,074 | securesphere.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/securesphere.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.NORMAL
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Appends special crafted string
... | 605 | Python | .py | 19 | 27.894737 | 71 | 0.692042 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,075 | charunicodeencode.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/charunicodeencode.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import string
from lib.core.enums import PRIORITY
from lib.core.common import singleTimeWarnMessage
__priority__ = PRIORITY.LOWEST
def dependencies():
singleT... | 1,627 | Python | .py | 43 | 30.930233 | 154 | 0.635032 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,076 | versionedkeywords.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/versionedkeywords.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import re
from lib.core.common import singleTimeWarnMessage
from lib.core.data import kb
from lib.core.enums import DBMS
from lib.core.enums import PRIORITY
__prio... | 1,619 | Python | .py | 38 | 37.289474 | 167 | 0.642629 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,077 | modsecurityversioned.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/modsecurityversioned.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.common import randomInt
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.HIGHER
def dependencies():
pass
def tamper(payload, **kwargs):
"""... | 1,067 | Python | .py | 35 | 24.114286 | 127 | 0.591176 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,078 | overlongutf8.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/overlongutf8.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import string
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOWEST
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Converts all chara... | 1,194 | Python | .py | 33 | 28.393939 | 150 | 0.592689 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,079 | randomcase.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/randomcase.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.common import randomRange
from lib.core.data import kb
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.NORMAL
def dependencies():
pa... | 1,413 | Python | .py | 42 | 25.547619 | 86 | 0.586716 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,080 | halfversionedmorekeywords.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/halfversionedmorekeywords.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import re
from lib.core.common import singleTimeWarnMessage
from lib.core.data import kb
from lib.core.enums import DBMS
from lib.core.enums import PRIORITY
from li... | 1,877 | Python | .py | 41 | 40.341463 | 207 | 0.663008 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,081 | modsecurityzeroversioned.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/modsecurityzeroversioned.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.HIGHER
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Embraces complete query with zero... | 976 | Python | .py | 32 | 23.875 | 114 | 0.583691 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,082 | percentage.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/percentage.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
import string
from lib.core.enums import PRIORITY
from lib.core.common import singleTimeWarnMessage
__priority__ = PRIORITY.LOW
def dependencies():
singleTime... | 1,386 | Python | .py | 40 | 27.325 | 150 | 0.579895 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,083 | appendnullbyte.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/tamper/appendnullbyte.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOWEST
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Appends encoded NULL byte charact... | 771 | Python | .py | 23 | 28.782609 | 80 | 0.697832 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,084 | __init__.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/__init__.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
pass
| 150 | Python | .py | 6 | 23.666667 | 62 | 0.746479 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,085 | __init__.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/__init__.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
pass
| 150 | Python | .py | 6 | 23.666667 | 62 | 0.746479 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,086 | filesystem.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/postgresql/filesystem.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
from lib.core.common import randomInt
from lib.core.data import kb
from lib.core.data import logger
from lib.core.exception import SqlmapUnsupportedFeatureException... | 4,505 | Python | .py | 88 | 42.954545 | 162 | 0.671832 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,087 | connector.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/postgresql/connector.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
try:
import psycopg2
import psycopg2.extensions
psycopg2.extensions.register_type(psycopg2.extensions.UNICODE)
psycopg2.extensions.register_type(psycopg2.exten... | 2,057 | Python | .py | 57 | 28.877193 | 139 | 0.682139 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,088 | syntax.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/postgresql/syntax.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from plugins.generic.syntax import Syntax as GenericSyntax
class Syntax(GenericSyntax):
def __init__(self):
GenericSyntax.__init__(self)
@staticmethod
de... | 1,033 | Python | .py | 20 | 45.2 | 151 | 0.65507 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,089 | __init__.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/postgresql/__init__.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import DBMS
from lib.core.settings import PGSQL_SYSTEM_DBS
from lib.core.unescaper import unescaper
from plugins.dbms.postgresql.enumeration import Enumera... | 1,539 | Python | .py | 34 | 37.264706 | 93 | 0.63509 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,090 | fingerprint.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/postgresql/fingerprint.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.common import Backend
from lib.core.common import Format
from lib.core.data import conf
from lib.core.data import kb
from lib.core.data import logger
from lib.co... | 6,416 | Python | .py | 129 | 38.643411 | 120 | 0.591353 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,091 | takeover.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/postgresql/takeover.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import os
from lib.core.common import Backend
from lib.core.common import randomStr
from lib.core.data import kb
from lib.core.data import logger
from lib.core.data import pa... | 3,426 | Python | .py | 71 | 39.535211 | 181 | 0.643905 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,092 | enumeration.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/postgresql/enumeration.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.data import logger
from plugins.generic.enumeration import Enumeration as GenericEnumeration
class Enumeration(GenericEnumeration):
def __init__(self):
... | 495 | Python | .py | 13 | 34.230769 | 78 | 0.748428 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,093 | filesystem.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/sybase/filesystem.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.exception import SqlmapUnsupportedFeatureException
from plugins.generic.filesystem import Filesystem as GenericFilesystem
class Filesystem(GenericFilesystem):
... | 726 | Python | .py | 16 | 40.8125 | 71 | 0.757447 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,094 | connector.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/sybase/connector.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
try:
import _mssql
import pymssql
except ImportError:
pass
import logging
from lib.core.convert import utf8encode
from lib.core.data import conf
from lib.core.da... | 2,499 | Python | .py | 62 | 32.935484 | 195 | 0.680314 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,095 | syntax.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/sybase/syntax.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from plugins.generic.syntax import Syntax as GenericSyntax
class Syntax(GenericSyntax):
def __init__(self):
GenericSyntax.__init__(self)
@staticmethod
de... | 764 | Python | .py | 18 | 36.666667 | 132 | 0.65 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,096 | __init__.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/sybase/__init__.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import DBMS
from lib.core.settings import SYBASE_SYSTEM_DBS
from lib.core.unescaper import unescaper
from plugins.dbms.sybase.enumeration import Enumeratio... | 1,039 | Python | .py | 27 | 34.444444 | 87 | 0.750497 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,097 | fingerprint.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/sybase/fingerprint.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.common import Backend
from lib.core.common import Format
from lib.core.common import unArrayizeValue
from lib.core.data import conf
from lib.core.data import kb
... | 3,490 | Python | .py | 86 | 30.197674 | 107 | 0.597745 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,098 | takeover.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/sybase/takeover.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.exception import SqlmapUnsupportedFeatureException
from plugins.generic.takeover import Takeover as GenericTakeover
class Takeover(GenericTakeover):
def __i... | 1,038 | Python | .py | 24 | 37.458333 | 67 | 0.726912 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |
19,099 | enumeration.py | pwnieexpress_raspberry_pwn/src/pentest/sqlmap/plugins/dbms/sybase/enumeration.py | #!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.common import Backend
from lib.core.common import filterPairValues
from lib.core.common import isTechniqueAvailable
from lib.core.common import randomStr
from li... | 9,617 | Python | .py | 208 | 34.769231 | 147 | 0.60227 | pwnieexpress/raspberry_pwn | 1,024 | 184 | 8 | GPL-3.0 | 9/5/2024, 5:12:22 PM (Europe/Amsterdam) |