This commit is contained in:
davidalvarezp
2026-03-23 11:10:48 +01:00
commit 822fa07d45
11 changed files with 3849 additions and 0 deletions
+73
View File
@@ -0,0 +1,73 @@
---
name: Bug Report
about: Report a bug or unexpected behaviour in websec-audit
title: "[BUG] "
labels: bug
assignees: davidalvarezp
---
## Description
<!-- A clear and concise description of the bug -->
## Steps to Reproduce
```bash
# Exact command you ran (redact the target)
./websec-audit.sh -t https://REDACTED --option
```
1. Run the above command
2. See error / unexpected behaviour in module: **[MODULE NAME]**
## Expected Behaviour
<!-- What you expected to happen -->
## Actual Behaviour
<!-- What actually happened. Include relevant log output below -->
<details>
<summary>Log output (redact sensitive data)</summary>
```
paste relevant log lines here
```
</details>
## Environment
| Item | Details |
|------|---------|
| websec-audit version | `./websec-audit.sh -V` |
| OS / Distro | e.g. Debian 12, Ubuntu 22.04, Kali 2024.1 |
| Bash version | `bash --version` |
| Affected tool | e.g. nmap, sqlmap, gobuster |
| Tool version | e.g. `nmap --version` |
## Module
- [ ] Recon
- [ ] Port Scan
- [ ] Fingerprint
- [ ] SSL/TLS
- [ ] HTTP Headers
- [ ] Dir/File Enum
- [ ] Nikto
- [ ] SQLi
- [ ] XSS
- [ ] CMS
- [ ] CORS
- [ ] Open Redirect
- [ ] SSRF
- [ ] Subdomain Takeover
- [ ] Nuclei
- [ ] Reporting
- [ ] Install / Dependencies
- [ ] Other
## Additional Context
<!-- Any other context, screenshots, or information that might help -->
+42
View File
@@ -0,0 +1,42 @@
---
name: Feature Request
about: Suggest a new module, option, or improvement
title: "[FEAT] "
labels: enhancement
assignees: davidalvarezp
---
## Summary
<!-- A concise one-sentence summary of what you'd like -->
## Problem / Motivation
<!-- What problem does this solve? What security gap does it address? -->
## Proposed Solution
<!-- Describe how you'd like it to work. Include example CLI usage if applicable -->
```bash
# Example usage
./websec-audit.sh -t https://target.com --new-option
```
## Tools / Techniques Involved
<!-- What tools, techniques, or vulnerability classes would this cover? -->
## Alternatives Considered
<!-- Any alternative solutions or workarounds you've already explored -->
## Acceptance Criteria
<!-- How would you verify the feature is working correctly? -->
- [ ] ...
- [ ] ...
## Additional Context
<!-- Links, CVEs, research papers, or other context that may be helpful -->