Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #373

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,36 @@ Apart from that, XSStrike has crawling, fuzzing, parameter discovery, WAF detect
- Powered by [Photon](https://github.com/s0md3v/Photon), [Zetanize](https://github.com/s0md3v/zetanize) and [Arjun](https://github.com/s0md3v/Arjun)
- Payload Encoding


### INSTALLATION
To install XSStrike, you can follow these steps:

Step 1: Open a terminal on your system.

Step 2: Clone the XSStrike repository from GitHub by running the following command:
```
git clone https://github.com/s0md3v/XSStrike.git
```

Step 3: Navigate to the XSStrike directory using the `cd` command:
```
cd XSStrike
```

Step 4: Install the required dependencies using pip (Python package installer). If you don't have pip installed, you can refer to the official pip documentation (https://pip.pypa.io/en/stable/installing/) for instructions on how to install pip on your system.

```
pip install -r requirements.txt
```

Step 5: XSStrike should now be installed on your system. You can run XSStrike by executing the following command:
```
python xsstrike.py
```

After executing the command, the XSStrike interface will be launched, and you can start using it to scan for XSS vulnerabilities.

Please note that XSStrike is a command-line tool and requires Python to be installed on your system. Ensure that you have Python installed and the appropriate version required by XSStrike.
### Documentation
- [Usage](https://github.com/s0md3v/XSStrike/wiki/Usage)
- [Compatibility & Dependencies](https://github.com/s0md3v/XSStrike/wiki/Compatibility-&-Dependencies)
Expand Down