Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "expdb"]
path = expdb
url = https://github.com/RndU53r/expdb.git
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,36 @@ Demonstrative code snippets and reproducible environments for responsible testin
- **Detection & Hardening Tools**
Scripts and techniques to aid defenders in identifying vulnerable components, misconfigurations, and implementing mitigations.

- **Exploit Database Mirror (`expdb/`)**
A git submodule pointing to a full [Exploit-DB](https://www.exploit-db.com/) mirror with supplemental third-party CVE collections. Useful for cross-referencing public PoCs during SAP vulnerability research.

All contributions are intended to **educate, empower, and protect** the global SAP ecosystem in line with OWASP’s mission.

## Structure of the Repository
```text
SAP-Security-Research/
├── papers/ # Research documents and presentations
├── CVE-20XX-XXXX/ # Proof-of-Concept exploits, test scripts and descriptive Readme to the CVE.
├── papers/ # Research documents and presentations
├── CVE-20XX-XXXX/ # Proof-of-Concept exploits, test scripts and descriptive Readme to the CVE.
├── expdb/ # Git submodule — Exploit-DB mirror + external CVE sources (see expdb/README.md)
└── README.md
```

### Cloning with submodules

The `expdb/` directory is a [git submodule](https://git-scm.com/book/en/v2/Git-Tools-Submodules) (~GB-scale). To clone this repository with expdb included:

```bash
git clone --recurse-submodules https://github.com/SecuritySilverbacks/sap-security-research.git
```

If you already cloned without submodules:

```bash
git submodule update --init --recursive
```

Upstream: [RndU53r/expdb](https://github.com/RndU53r/expdb)

## Contribution

To add your own contribution, fork the repo, create your feature branch, and [open a pull request](https://github.com/SecuritySilverbacks/sap-security-research/pulls) — we review all contributions related to SAP vulnerability research, PoCs, and detection techniques.
Expand Down
1 change: 1 addition & 0 deletions expdb
Submodule expdb added at 084f3f