├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── owasp_org_issue.md │ └── config.yml ├── assets └── images │ └── zap-website.png ├── .gitignore ├── _data └── ow_attributions.json ├── leaders.md ├── README.md ├── _config.yml ├── .gitattributes ├── _includes └── zap_twitter_feeds.html ├── index.md ├── 404.html └── info.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://owasp.org/donate/?reponame=www-project-zap&title=OWASP+ZAP"] 2 | -------------------------------------------------------------------------------- /assets/images/zap-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-zap/HEAD/assets/images/zap-website.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /Gemfile 2 | /Gemfile.lock 3 | /favicon.ico 4 | _site/ 5 | 6 | # Eclipse 7 | # ------- 8 | *.project 9 | *.settings -------------------------------------------------------------------------------- /_data/ow_attributions.json: -------------------------------------------------------------------------------- 1 | ["mike", "shenneo", "DeepFactor, Inc.", "Catatonic Prime", "Mircea Mare", "Uri Fleyder Kotler", "Nina King", "HostedScan Security", "Airmannl ", "Ramesh Jha", "Ettienne Groenewald"] -------------------------------------------------------------------------------- /leaders.md: -------------------------------------------------------------------------------- 1 | ### Leaders 2 | * [Simon Bennetts (psiinon)](mailto:psiinon@gmail.com) 3 | * [Ricardo Pereira (thc202)](mailto:thc202@gmail.com) 4 | * [Rick Mitchell (kingthorin)](mailto:kingthorin@gmail.com) 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WWW ZAP Project 2 | 3 | The OWASP home for the ZAP project which can be found at: [owasp.org/www-project-zap](https://owasp.org/www-project-zap/). 4 | 5 | For any improvements, make sure to open up an issue or a pull request, and we'll make sure to tend to it! 6 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | remote_theme: "owasp/www--site-theme@main" 2 | 3 | #override default star and watch buttons 4 | code_user: zaproxy 5 | code_repo: zaproxy 6 | 7 | # core files/folders to exclude 8 | exclude: 9 | - README.md 10 | 11 | plugins: 12 | - jekyll-include-cache-0.2.0 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/owasp_org_issue.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Issue with ZAP content on OWASP.org 3 | about: If the issue is actually for something on owasp.org related to ZAP 4 | 5 | --- 6 | 7 | **Describe the bug** 8 | A clear and concise description of what the owasp.org/www-project-zap content issue is. 9 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | 3 | *.css text 4 | *.htm text 5 | *.html text 6 | *.js text 7 | *.md text 8 | *.svg text 9 | *.txt text 10 | *.xml text 11 | *.xsl text 12 | *.yml text 13 | *.yaml text 14 | *.json text 15 | *.sh text 16 | 17 | *.pdf binary 18 | *.png binary 19 | *.gif binary 20 | *.jpg binary 21 | -------------------------------------------------------------------------------- /_includes/zap_twitter_feeds.html: -------------------------------------------------------------------------------- 1 |

Try the SEARCH function in the main navigation to find something. If you are looking for chapter information, please see Chapters for the correct chapter. For information about OWASP projects see Projects. For common attacks, vulnerabilities, or information about other community-led contributions see Contributed Content.
12 | 13 |If all else fails you can search our historical site.
15 |