コード例 #1
0
ファイル: consoles.py プロジェクト: ellipsys/penework
    def __init__(self):
        if IS_WIN:
            coloramainit()
        Cmd.__init__(self)
        os.system("clear")

        conf.report = False
        conf.retry = False
        conf.delay = 0
        conf.quiet = False
        conf.isPocString = False
        conf.isPycFile = False
        conf.requires = False
        conf.requiresFreeze = False

        conf.url = None
        conf.proxy = None
        conf.params = None
        conf.urlFile = None
        conf.agent = None
        conf.referer = None
        conf.cookie = None
        conf.proxy = None
        conf.randomAgent = False

        conf.threads = 1
        conf.timeout = 5
        conf.httpHeaders = HTTP_DEFAULT_HEADER

        self.prompt = "Pcs> "
        banner()
        self.case_insensitive = False
コード例 #2
0
    def __init__(self):
        if IS_WIN:
            coloramainit()
        Cmd.__init__(self)
        os.system("clear")

        conf.report = False
        conf.retry = False
        conf.delay = 0
        conf.quiet = False
        conf.isPocString = False
        conf.isPycFile = False
        conf.requires = False
        conf.requiresFreeze = False

        conf.url = None
        conf.proxy = None
        conf.params = None
        conf.urlFile = None
        conf.agent = None
        conf.referer = None
        conf.cookie = None
        conf.proxy = None
        conf.randomAgent = False

        conf.threads = 1
        conf.timeout = 5
        conf.httpHeaders = HTTP_DEFAULT_HEADER

        self.prompt = "Pcs> "
        banner()
        self.case_insensitive = False
コード例 #3
0
ファイル: consoles.py プロジェクト: kakakacool/Pocsuite
    def __init__(self):
        Cmd.__init__(self)
        os.system("clear")
        banner()
        self.case_insensitive = False
        self.prompt = "Pcs> "

        conf.url = None
        conf.proxy = None
        conf.params = None
        conf.urlFile = None
        conf.agent = None
        conf.referer = None
        conf.cookie = None
        conf.proxy = None
        conf.randomAgent = False

        conf.threads = 1
        conf.timeout = 5
        conf.httpHeaders = HTTP_DEFAULT_HEADER
コード例 #4
0
ファイル: consoles.py プロジェクト: q1f3/Pocsuite
    def __init__(self):
        Cmd.__init__(self)
        os.system("clear")
        banner()
        self.case_insensitive = False
        self.prompt = "Pcs> "

        conf.url = None
        conf.proxy = None
        conf.params = None
        conf.urlFile = None
        conf.agent = None
        conf.referer = None
        conf.cookie = None
        conf.proxy = None
        conf.randomAgent = False

        conf.threads = 1
        conf.timeout = 5
        conf.httpHeaders = HTTP_DEFAULT_HEADER
コード例 #5
0
    def __init__(self):
        Cmd.__init__(self)
        os.system("clear")
        banner()

        conf.url = None
        conf.urlFile = None

        conf.cookie = None
        #随机ua的实现
        #conf.randomAgent = False

        conf.threads = 1

        #是否需要html报告
        conf.report = None

        conf.timeout = 3
        conf.httpHeaders = HTTP_DEFAULT_HEADER

        self.prompt = "ZEROScan > "
コード例 #6
0
ファイル: consoles.py プロジェクト: zer0yu/ZEROScan
    def __init__(self):
        Cmd.__init__(self)
        os.system("clear")
        banner()

        conf.url = None
        conf.urlFile = None

        conf.cookie = None
        #随机ua的实现
        #conf.randomAgent = False

        conf.threads = 1

        #是否需要html报告
        conf.report = None

        conf.timeout = 3
        conf.httpHeaders = HTTP_DEFAULT_HEADER

        self.prompt = "ZEROScan > "
コード例 #7
0
ファイル: consoles.py プロジェクト: Picture88/w0rmHole
 def __init__(self):
     Cmd.__init__(self)
     initializePoc()
     self.prompt = PROMPT
コード例 #8
0
ファイル: consoles.py プロジェクト: ellipsys/penework
 def __init__(self):
     Cmd.__init__(self)
     self.prompt = "Pcs.poc> "
     self.case_insensitive = False
コード例 #9
0
ファイル: consoles.py プロジェクト: ellipsys/penework
 def __init__(self):
     Cmd.__init__(self)
     self.prompt = "Pcs.config.header> "
     self.case_insensitive = False
コード例 #10
0
ファイル: consoles.py プロジェクト: JohnHubcr/w0rmHole
 def __init__(self):
     Cmd.__init__(self)
     initializePoc()
     self.prompt = PROMPT
コード例 #11
0
ファイル: consoles.py プロジェクト: kakakacool/Pocsuite
 def __init__(self):
     Cmd.__init__(self)
     self.prompt = "Pcs.poc> "
     self.case_insensitive = False
コード例 #12
0
ファイル: consoles.py プロジェクト: kakakacool/Pocsuite
 def __init__(self):
     Cmd.__init__(self)
     self.prompt = "Pcs.config.header> "
     self.case_insensitive = False