Contributing to the Hacking Playground can be done in many different ways:
- File issues for bugs and errors. Explain what is not correct and what you think might be the root cause. PR's with the fixes are welcome :-)
- Contribute to the Hacking Playground Apps. Extend and maintain our existing mobile applications on our Hacking playground.
- Create a [Pull Request (PR)]https://github.com/OWASP/MASTG-Hacking-Playground/pulls "Create a pull request"). This is a direct contribution to the hacking playground and may be merged after review. You should ideally create an issue for any PR you would like to submit, as we can first review the merit of the PR and avoid any unnecessary work. This is of course not needed for small modifications such as correcting typos.
- Review pull requests for technical content. Do you have tons of experience with the technical subject described in the PR? Chip in with constructive feedback.
In order to increase the chances of your PR being accepted, please make sure that your code is well-tested and provide comments for key code lines.
After your PR has been submitted, we will review it as quickly as possible. This typically only takes a few days, but can vary depending on the size of the PR. Small PRs require only one reviewer, while large PRs may require multiple reviewers. We will always try to give initial feedback on your PR within 14 days. If you think we have forgotten about your PR, feel free to give us a nudge after these 7 days have passed.
-
Create a GitHub account. Multiple different GitHub subscription plans are available, but you only need a free one. Follow these steps to set up your account.
-
Fork the repository. Creating a fork means creating a copy of the repository on your own account, which you can modify without any impact on this repository. GitHub has an article that describes all the needed steps.
-
Clone your own repository to your machine so that you can make modifications. If you followed the GitHub tutorial from step 2, you have already done this.
-
Go to the newly cloned directory "MSTG-Hacking-Playground" and add the remote upstream repository:
$ git remote -v origin [email protected]:<your Github handle>/MSTG-Hacking-Playground.git (fetch) origin [email protected]:<your Github handle>/MSTG-Hacking-Playground.git (push) $ git remote add upstream [email protected]:OWASP/MSTG-Hacking-Playground.git $ git remote -v origin [email protected]:<your Github handle>/MSTG-Hacking-Playground.git (fetch) origin [email protected]:<your Github handle>/MSTG-Hacking-Playground.git (push) upstream [email protected]:OWASP/MSTG-Hacking-Playground.git (fetch) upstream [email protected]:OWASP/MSTG-Hacking-Playground.git (push)
See also the GitHub documentation on "Configuring a remote for a fork".
-
Choose what to work on, based on any of the outstanding issues.
-
Create a branch so that you can cleanly work on the chosen issue:
git checkout -b FixingIssue66
-
Open your IDE and start making modifications.
-
After your modifications are done, push them to your forked repository. This can be done by executing the command
git add MYFILE
for every file you have modified, followed bygit commit -m 'Your Commit Message'
to commit the modifications andgit push
to push your modifications to GitHub. -
Create a Pull Request (PR) by going to your fork, https://github.com/Your_Github_Handle/MSTG-Hacking-Playground and click on the "New Pull Request" button. The target branch should typically be the Master branch. When submitting a PR, be sure to follow the checklist that is provided in the PR template. The checklist itself will be filled out by the reviewer.
-
Your PR will be reviewed and comments may be given. In order to process a comment, simply make modifications to the same branch as before and push them to your repository. GitHub will automatically detect these changes and add them to your existing PR.
-
When starting on a new PR in the future, make sure to always keep your local repo up to date:
$ git fetch upstream $ git merge upstream/master
See also the following article for further explanation on "How to Keep a Downstream git Repository Current with Upstream Repository Changes".
If at any time you want to work on a different issue, you can simply switch to a different branch, as explained in step 5.
Tip: Don't try to work on too many issues at once though, as it will be a lot more difficult to merge branches the longer they are open.
Although we greatly appreciate any and all contributions to the project, there are a few things that you should take into consideration:
- The Hacking Playground should not be used as a platform for advertisement of commercial tools, companies or individuals. Write-ups should be written with free and open-source tools in mind and commercial tools are typically not accepted, unless as a reference in the security tools section.
- Unnecessary self-promotion of tools or blog posts is frowned upon. If you have a relation with on of the URLs or tools you are referencing, please state so in the PR so that we can verify that the reference is in line with the rest of the guide.
Please be sure to take a careful look at our Code of Conduct for all the details.