Posts

Showing posts from September, 2024

XSStrike causes error when running latest version

Image
  Roll back to the older vertion or, consider creating a virtual environment with an older Python version: pyenv install 3.8.10 pyenv virtualenv 3.8.10 xsstrike-env pyenv activate xsstrike-env After this you may run into an error: ModuleNotFoundError: No module named 'requests' Just run this command: pip install requests Now the tool will be working just fine. If it helped consider subscribing to my YouTube channel:  https://www.youtube.com/channel/UCR9txckubHGilBvNGvud_dg I create contents about bug boundy and reverse engineering.

Uninstall ZAP installed using the .sh script

Image
The uninstall script is in the folder " /opt/zapproxy/ " cd /opt/zapproxy/ sudo ./uninstall

Instagram API Reverse Engineering | Bug Bounty Tips | #bugbounty

Image

Install & set up mitmweb or mitmproxy in Linux

Image
Step 1: Go to the mitmproxy page and download the binaries. Step 2: Install the downloaded tar file with the command " tar -xzf <filename>.tar.gz " Step 3: In the FoxyProxy add the proxy 127.0.0.1:8080  and turn it on. Step 4 : In the terminal run command " ./mitmweb " Step 5: Go to the page  http://mitm.it/   and download the mitmproxy's Certificate. Step 6: If you downloaded the certificate for Firefox, then go to " settings -> Privacy & Security -> Click View Certificates -> Click  Import ", then import the certificate.  Step 7: Now you are ready to capture the web traffic. Step 8 : In terminal run " ./mitmweb"