-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRepo Structure
More file actions
33 lines (32 loc) · 893 Bytes
/
Repo Structure
File metadata and controls
33 lines (32 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
autopentest/
├── README.md
├── pyproject.toml
├── docker/
│ ├── Dockerfile
│ └── docker-compose.yml
├── config/
│ ├── scope.yaml
│ ├── auth.yaml
│ └── settings.yaml
├── core/
│ ├── __init__.py
│ ├── engine.py # Orchestrator
│ ├── scope.py # Scope enforcement
│ ├── logger.py
│ ├── context.py # Shared attack context
│ └── mitre.py
├── modules/
│ ├── discovery/
│ │ └── http_probe.py
│ ├── vuln/
│ │ └── idor_scan.py
│ ├── exploit/
│ │ └── idor_validate.py
│ └── reporting/
│ └── markdown.py
├── evidence/
│ └── .gitkeep
├── scripts/
│ └── run.py
└── tests/
└── test_scope.py