Metadata-Version: 1.0
Name: RoboWFuzz
Version: 1.0
Summary: RoboWFuzz - Generic Robot Framework Library for the WFuzz Fuzzing Framework. Currently, only a Directory Bruter
Home-page: UNKNOWN
Author: Abhay Bhargav
Author-email: UNKNOWN
License: MIT
Description-Content-Type: text/markdown
Description: ## RoboWFuzz
        
        Robot Framework Integration for the generic python fuzzing library `wfuzz`
        
        Currently, there's only a single functionality implemented, which is Directory Bruteforcing
        
        `brute directories | url | concur=2 | file_name=exportfile.json | follow=False`
        
        - `url`: mandatory param
        - `concur`: concurrency, the number of parallel processes that need to be run. optional param
        - `file_name`: export file name, default writes to the same directory that you install. Optional Param
        - `follow`: Follow 301 redirects or not, defaults to False. Optional Param
        
        ```
        *** Settings ***
        Library  RoboWFuzz  lists/directory-list-1.0.txt
        
        *** Test Cases ***
        Directory Bruter
            [Timeout]  15 minutes
            brute_directories  http://testphp.vulnweb.com/FUZZ  concur=6  follow=True
        
        ``` 
        
Platform: UNKNOWN
