2020-09-23 15:59:06 +00:00
# CONTRIBUTING
2024-11-13 12:39:19 +00:00
PayloadsAllTheThings' Team :heart: pull requests.
2020-09-23 15:59:06 +00:00
Feel free to improve with your payloads and techniques !
2024-11-13 12:39:19 +00:00
You can also contribute with a :beers: IRL, or using the [sponsor ](https://github.com/sponsors/swisskyrepo ) button.
2020-09-23 15:59:06 +00:00
2022-06-30 14:33:35 +00:00
## Pull Requests Guidelines
In order to provide the safest payloads for the community, the following rules must be followed for **every** Pull Request.
- Payloads must be sanitized
2024-11-13 12:39:19 +00:00
- Use `id` , and `whoami` , for RCE Proof of Concepts
- Use `[REDACTED]` when the user has to replace a domain for a callback. E.g: XSSHunter, BurpCollaborator etc.
- Use `10.10.10.10` and `10.10.10.11` when the payload require IP addresses
- Use `Administrator` for privileged users and `User` for normal account
- Use `P@ssw0rd` , `Password123` , `password` as default passwords for your examples
- Prefer commonly used name for machines such as `DC01` , `EXCHANGE01` , `WORKSTATION01` , etc
2022-06-30 14:33:35 +00:00
- References must have an `author` , a `title` and a `link` . The `date` is not mandatory but appreciated :)
2024-11-13 12:39:19 +00:00
Every pull request will be checked with `markdownlint` to ensure consistent writing and Markdown best practices. You can validate your files locally using the following Docker command:
```ps1
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.15.0 "**/*.md" --config .github/.markdownlint.json --fix
```
2020-09-23 15:59:06 +00:00
## Techniques Folder
Every section should contains the following files, you can use the `_template_vuln` folder to create a new technique folder:
- README.md - vulnerability description and how to exploit it, including several payloads, more below
- Intruder - a set of files to give to Burp Intruder
- Images - pictures for the README.md
- Files - some files referenced in the README.md
## README.md format
2024-11-13 12:39:19 +00:00
Use the example folder [_template_vuln/ ](https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/_template_vuln/ ). The main page is [README.md ](https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/_template_vuln/README.md ).