Projects STRLCPY userefuzz Commits 43bed1db
🤬
  • ■ ■ ■ ■ ■ ■
    README.md
    1 1  <p align="center">
    2  -<img src="images/logo.png" width=20%>
     2 +<img src="https://github.com/root-tanishq/userefuzz/blob/main/images/logo.png" width=20%>
    3 3  </p>
    4 4  <h1 align="center">
    5 5  <b>UseReFuzz</b>
    skipped 4 lines
    10 10  <h3><b>Installation</b></h3><br/>
    11 11   
    12 12  ```sh
    13  -pip install userefuzz==1.1.0
     13 +sudo pip3 install userefuzz
    14 14  ```
    15 15   
    16 16  ```sh
    skipped 8 lines
    25 25  ```sh
    26 26  userefuzz -l <URL LIST>
    27 27  ```
    28  -![list](images/parse_a_list.png)<br />
     28 +![list](https://github.com/root-tanishq/userefuzz/blob/main/images/parse_a_list.png)<br />
    29 29   
    30 30  - **Setup proxy for vulnerable requests**
    31 31   
    32 32  ```sh
    33 33  userefuzz -l <URL LIST> -p 'http://127.1:8080'
    34 34  ```
    35  -![proxy](images/proxy_setup.png)<br />
     35 +![proxy](https://github.com/root-tanishq/userefuzz/blob/main/images/proxy_setup.png)<br />
    36 36   
    37  -![burp_proxy](images/proxy_setup_burp.png)<br />
     37 +![burp_proxy](https://github.com/root-tanishq/userefuzz/blob/main/images/proxy_setup_burp.png)<br />
    38 38   
    39 39  - **Custom Message**
    40 40   
    skipped 3 lines
    44 44  userefuzz -l <URL LIST> -p 'http://127.1:8080' -m '<Custom Message Here>'
    45 45  ```
    46 46   
    47  -![message](images/custom_message.png)<br />
     47 +![message](https://github.com/root-tanishq/userefuzz/blob/main/images/custom_message.png)<br />
    48 48   
    49  -![burp_message](images/custom_message_burp.png)<br />
     49 +![burp_message](https://github.com/root-tanishq/userefuzz/blob/main/images/custom_message_burp.png)<br />
    50 50   
    51 51  - **Custom Payload Injection**
    52 52   
    skipped 1 lines
    54 54  userefuzz -l <URL LIST> -i '<CUSTOM SQLI PAYLOAD>' -s <SLEEP ACCORDING TO PAYLOAD>
    55 55  ```
    56 56   
    57  -![inject](images/custom_inject.png)<br />
     57 +![inject](https://github.com/root-tanishq/userefuzz/blob/main/images/custom_inject.png)<br />
    58 58   
    59 59  <h3><b>Follow</b></h3>
    60 60  If this tool helped you or you like my work<br/>
    61 61  [`@root-tanishq`](https://twitter.com/root_tanishq)
     62 +[![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/root_tanishq.svg?style=social&label=Follow%20%40root_tanishq)](https://twitter.com/root_tanishq)
     63 + 
  • ■ ■ ■ ■ ■ ■
    setup.py
    1 1  from setuptools import setup
    2 2   
    3  -with open("README.md", "r", "utf-8") as f:
    4  - readme = f.read()
     3 +def readme():
     4 + with open('README.md') as f:
     5 + return f.read()
    5 6   
    6 7  setup(
    7 8   name='userefuzz',
    8  - version='1.0.0',
    9  - long_description=readme,
     9 + version='1.1.1',
     10 + long_description=readme(),
    10 11   long_description_content_type="text/markdown",
    11 12   description='User-Agent and Referer Header SQLI Fuzzer',
    12  - url='https://github.com/root_tanishq/userefuzz',
     13 + url='https://github.com/root-tanishq/userefuzz',
    13 14   author='Tanishq Rathore',
    14 15   license='MIT',
    15 16   packages=['userefuzz'],
    16 17   scripts=['userefuzz/userefuzz'],
    17  - install_requires=['requests==2.28.1'],
     18 + install_requires=['requests'],
    18 19   
    19 20   classifiers=[
    20 21   'Programming Language :: Python :: 3',
    skipped 4 lines
  • ■ ■ ■ ■
    userefuzz/userefuzz
    skipped 39 lines
    40 40   
    41 41  😍 {bcolors.BOLD}Made with ❤️ By [🤵 Tanishq Rathore] Kun 🐱‍🚀 {bcolors.OKBLUE}
    42 42  »»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»{bcolors.ENDC}{bcolors.BOLD}
    43  -�� {bcolors.WARNING}STAR ❯ https://github.com/userefuzz
     43 +�� {bcolors.WARNING}STAR ❯ https://github.com/root-tanishq/userefuzz
    44 44  🐦 {bcolors.WARNING}Twitter ❯ https://twitter.com/root_tanishq{bcolors.OKBLUE}{bcolors.BOLD}
    45 45  »»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»
    46 46  {bcolors.ENDC}"""
    skipped 74 lines
Please wait...
Page is in error, reload to recover