Metadata-Version: 1.1
Name: PyBurprestapi
Version: 0.3
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: 
        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 PyBurprestapi``
        - Build locally: ``python setup.py build``
        
        
        Example
        ~~~~~~~
        
        ::
        
        
            # import the package
            from burprestapi import burpscanner
        
            # setup burp connection
            host = 'http://localhost:8090'
        
            # initialize bi for request
            bi = burpscanner.BurpApi(host)
        
            # Add target in burp scope
            response = bi.burp_scope('http://testwebsite.com')
        
            # Get the response message
            print response.message
        
        
        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
