Metadata-Version: 1.1
Name: PyBurprestapi
Version: 0.1
Summary: Python library enumerating the Burp RESTFul API endpoints.
Home-page: https://github.com/anandtiwarics/python-burp-rest-api/
Author: Anand Tiwari
Author-email: anandtiwarics@gmail.com
License: MIT License
Download-URL: https://github.com/anandtiwarics/python-burp-rest-api/releases/download/v0.0.1/burprestapi-0.0.1.tar.gz
Description-Content-Type: UNKNOWN
Description: 
        # Burp REST API
        
        A burp python RESTFul API package.
        
        ## Requirements
        
        * [burp-rest-api](https://github.com/vmware/burp-rest-api)
        * Burp Suite Professional
        
        ## Quick Start
        
        - Install with pip: ``pip install burprestapi``
        - Build locally: ``python setup.py build``
        
        
        ## Example
        
        <pre>
        
            # import the package
            from burprestapi import burpscanner
        
            # setup burp connection
            host = 'http://localhost:8090'
        
            #
            bi = burpscanner.BurpApi(host)
        
            # Add target in burp scope
            response = bi.burp_scope('http://testwebsite.com')
        
            # Get the response message
            print response.message
        
        </pre>
        
        
        ## Bugs and Feature Requests
        
        [ If you Found bug or have a feature request? Please open a new issue] (https://github.com/anandtiwarics/python-burp-rest-api/issues).
        
        
Keywords: PyBurprestapi,api,security,software,burp
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
