├── .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 |
2 | Tweets by zaproxy Tweets by zaproxybot 3 | 4 |
5 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: col-sidebar 4 | title: OWASP ZAP 5 | site_side: true 6 | tags: zap 7 | project: true 8 | level: 4 9 | type: tool 10 | pitch: Zed Attack Proxy (ZAP) is one of the world’s most popular free security tools and is actively maintained by a dedicated international team of volunteers. Great for pentesters, devs, QA, and CI/CD integration. 11 | --- 12 | 13 | ZAP is no longer an OWASP project. 14 | 15 | For more details see [this blog post](https://www.zaproxy.org/blog/2023-08-01-zap-is-joining-the-software-security-project/) 16 | 17 | {% include zap_twitter_feeds.html %} 18 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | title: 404 - Not Found 4 | layout: col-generic 5 | 6 | --- 7 | 8 |
9 |

10 |

WHOA THAT PAGE CANNOT BE FOUND

11 |

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 |
14 |

If all else fails you can search our historical site.

15 |
16 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: ZAP or ZAP Add-on Issues 4 | url: https://github.com/zaproxy/zaproxyissues 5 | about: Issues about ZAP or ZAP Add-ons should be opened in the primary ZAP repository. 6 | - name: ZAP User Group 7 | url: https://groups.google.com/group/zaproxy-users 8 | about: Please ask and answer questions about using ZAP here - do not raise issues for questions. 9 | - name: ZAP Website 10 | url: https://www.zaproxy.org 11 | about: ZAP's primary website. 12 | - name: Donate to ZAP 13 | url: https://owasp.org/donate/?reponame=www-project-zap&title=OWASP+ZAP 14 | about: Donate to help support ZAP's continued development. 15 | - name: ZAP Developer Group 16 | url: https://groups.google.com/group/zaproxy-develop 17 | about: Please ask and answer questions about ZAP internals here. 18 | - name: ZAP Security Bug Bounty Program 19 | url: https://bugcrowd.com/owaspzap 20 | about: Please report security vulnerabilities here. -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- 1 | ### Project Information 2 | 3 | * 4 | Flagship Project 5 | 6 | #### Classification 7 | 8 | * Tool 9 | 10 | #### Audience 11 | 12 | * Breaker 13 | * Builder 14 | 15 | ### Downloads 16 | 17 | * [Download OWASP ZAP!](https://www.zaproxy.org/download/) 18 | 19 | ### Questionnaire 20 | 21 | * Please help us to make ZAP even better for you by answering the [ZAP Community Questionnaire](https://docs.google.com/forms/d/e/1FAIpQLSfkLr91IKNnuaErBqD4X0dohEsJ6V9hFZOiPoTTbw6Ld4SJKQ/viewform) 22 | 23 | ### Code Repositories 24 | 25 | * [zaproxy](https://github.com/zaproxy/zaproxy/) 26 | * [zap-extensions](https://github.com/zaproxy/zap-extensions/) 27 | * [zap-hud](https://github.com/zaproxy/zap-hud/) 28 | * [community-scripts](https://github.com/zaproxy/community-scripts) 29 | 30 | ### Change Logs 31 | 32 | * [zaproxy](https://github.com/zaproxy/zaproxy/commits/main) 33 | * [zap-extensions](https://github.com/zaproxy/zap-extensions/commits/main) 34 | * [zap-hud](https://github.com/zaproxy/zap-hud/commits/main) 35 | 36 | ### Licensing 37 | 38 | [Apache 2 License](https://www.apache.org/licenses/LICENSE-2.0) 39 | --------------------------------------------------------------------------------