Skip to content

Instantly share code, notes, and snippets.

@uriellberdeja
Last active July 20, 2024 15:12
Show Gist options
  • Save uriellberdeja/ef3b4dc1537de4bce3db443943b279f8 to your computer and use it in GitHub Desktop.
Save uriellberdeja/ef3b4dc1537de4bce3db443943b279f8 to your computer and use it in GitHub Desktop.
Wfuzz Windows Notes

Use version 3.11, if installed from store the path might be like this:

C:\Users\Redghost\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11*

Configure launcher to use python version 3.11 and run python using py launcher to initialize virtualenv

py --list 

Activate virtualenv and install it

pip install setuptools
pip install -r requirements.txt
python setup.py install

Wfuzz will be compiled as PE executable in Scripts directory Create a directory for shortcuts, and create a filename named wfuzz.cmd

@echo off

call C:\PathToYourVirtualEvn\Scripts\activate.bat
C:\PathToYourVirtualEvn\Scripts\wfuzz.exe %*
deactivate

add directory of shortcuts to %PATH%

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment