Python burp.IScanIssue() Examples

The following are 12 code examples of burp.IScanIssue(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module burp , or try the search function .
Example #1
Source File: CTFhelper.py    From CTFHelper with MIT License 6 votes vote down vote up
def registerExtenderCallbacks(self, callbacks):
        # keep a reference to our callbacks object
        global cbs, helpers, stdout, stderr
        cbs = callbacks

        helpers = callbacks.getHelpers()

        stdout = PrintWriter(callbacks.getStdout(), True)
        stderr = PrintWriter(callbacks.getStderr(), True)

        callbacks.setExtensionName("CTF helper")

        stdout.println("Welcome to my CTF world...")
        stdout.println('CTF helper by unamer.')

        # register ourselves as a custom scanner check
        callbacks.registerScannerCheck(backupScan())
        callbacks.registerScannerCheck(DirScan())


#
# class implementing IScanIssue to hold our custom scan issue details
# 
Example #2
Source File: burpsecheaders.py    From securityheaders with Apache License 2.0 5 votes vote down vote up
def doActiveScan(self, baseRequestResponse, insertionPoint):
        pass


#
# class implementing IScanIssue to hold our custom scan issue details
# 
Example #3
Source File: scanner.py    From inql with Apache License 2.0 5 votes vote down vote up
def getUrl(self):
        """
        Overrides IScanIssue

        :return: the URL
        """
        return self._url 
Example #4
Source File: scanner.py    From inql with Apache License 2.0 5 votes vote down vote up
def getIssueName(self):
        """
        Overrides IScanIssue

        :return: the Issue Name
        """
        return self._name 
Example #5
Source File: scanner.py    From inql with Apache License 2.0 5 votes vote down vote up
def getIssueType(self):
        """
        Overrides IScanIssue

        See http://portswigger.net/burp/help/scanner_issuetypes.html

        :return: always 0
        """
        return 0 
Example #6
Source File: scanner.py    From inql with Apache License 2.0 5 votes vote down vote up
def getSeverity(self):
        """
        Overrides IScanIssue

        :return: "High", "Medium", "Low", "Information" or "False positive"
        """
        return self._severity 
Example #7
Source File: scanner.py    From inql with Apache License 2.0 5 votes vote down vote up
def getConfidence(self):
        """
        Overrides IScanIssue

        :return: "Certain", "Firm" or "Tentative"
        """
        return self._confidence 
Example #8
Source File: scanner.py    From inql with Apache License 2.0 5 votes vote down vote up
def getRemediationBackground(self):
        """
        Overrides IScanIssue

        :return: remediation background
        """
        return self._rembg 
Example #9
Source File: scanner.py    From inql with Apache License 2.0 5 votes vote down vote up
def getIssueDetail(self):
        """
        Overrides IScanIssue

        :return: issue detail
        """
        return self._detail 
Example #10
Source File: scanner.py    From inql with Apache License 2.0 5 votes vote down vote up
def getRemediationDetail(self):
        """
        Overrides IScanIssue

        :return: remediation detail
        """
        return self._remdet 
Example #11
Source File: scanner.py    From inql with Apache License 2.0 5 votes vote down vote up
def getHttpMessages(self):
        """
        Overrides IScanIssue

        :return: Http messages content
        """
        return self._http_messages 
Example #12
Source File: scanner.py    From inql with Apache License 2.0 5 votes vote down vote up
def getHttpService(self):
        """
        Overrides IScanIssue

        :return: Http Service
        """
        return self._http_service