-
Notifications
You must be signed in to change notification settings - Fork 50
Organize documents and serve document homepage from '/docs' #330
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
Merged
Merged
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
7b257dd
docsify init for documentation home (#326)
jeremychoi d307c53
separate README and USER-GUIDE - now show the docs/README in the repo…
jeremychoi 28d3488
add links to the user guide, developer guide and contributing guide p…
jeremychoi a1aa5b9
updated links
jeremychoi 83b970e
merged the defect dojo doc into user guide
jeremychoi c7e0aac
updated title and meta data
jeremychoi dcbf2cd
fixed the scanners section level - moving up a level higher
jeremychoi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Empty file.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| # RapiDAST | ||
|
|
||
|   | ||
|
|
||
| RapiDAST (Rapid DAST) is an open-source security testing tool that automates DAST ([Dynamic Application Security Testing](https://owasp.org/www-project-devsecops-guideline/latest/02b-Dynamic-Application-Security-Testing)) and streamlines the integration of security testing into development workflows. It is designed to help Developers and/or QA engineers rapidly and effectively identify low-hanging security vulnerabilities in your applications, ideally in CI/CD pipelines. RapiDAST is for organizations implementing DevSecOps with a shift-left approach. | ||
|
|
||
| RapiDAST provides: | ||
|
|
||
| - Automated HTTP/API security scanning leveraging ZAP | ||
| - Automated LLM AI scanning leveraging Garak | ||
| - Kubernetes operator scanning leveraging OOBTKUBE | ||
| - Automated vulnerability scanning using Nessus (requires a Nessus instance) | ||
| - Command-line execution with yaml configuration, suitable for integration in CI/CD pipelines | ||
| - Ability to run automated DAST scanning with pre-built or custom container images | ||
| - HTML, JSON and XML report generation | ||
| - Integration with Google Cloud Storage and OWASP DefectDojo | ||
|
|
||
| RapiDAST is for testing purposes, and should not be used on production systems. | ||
|
|
||
| See [User Guide](./USER-GUIDE.md)<br /> | ||
| See [Developer Guide](./DEVELOPER-GUIDE.md) | ||
|
|
||
| ## Contributing | ||
|
|
||
| Contribution to the project is more than welcome. | ||
|
|
||
| See [CONTRIBUTING.md](./CONTRIBUTING.md) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| * [Home](/) | ||
| * [User Guide](USER-GUIDE.md) | ||
| * [Developer Guide](DEVELOPER-GUIDE.md) | ||
| * [Contributing](CONTRIBUTING.md) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <title>Document</title> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
| <meta name="description" content="Description"> | ||
jeremychoi marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> | ||
| <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"> | ||
| </head> | ||
| <body> | ||
| <div id="app"></div> | ||
| <script> | ||
| window.$docsify = { | ||
| name: 'RapiDAST', | ||
| repo: 'https://github.com/redHatProductSecurity/rapidast/', | ||
| loadSidebar: true, | ||
| subMaxLevel: 3 | ||
| } | ||
| </script> | ||
| <!-- Docsify v4 --> | ||
| <script src="//cdn.jsdelivr.net/npm/docsify@4"></script> | ||
| </body> | ||
| </html> | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.