Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikong/threat_hunt_api
Simple REST API for threat hunting data using Flask
https://github.com/mikong/threat_hunt_api
Last synced: about 1 month ago
JSON representation
Simple REST API for threat hunting data using Flask
- Host: GitHub
- URL: https://github.com/mikong/threat_hunt_api
- Owner: mikong
- Created: 2024-03-16T08:47:49.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-16T12:34:49.000Z (9 months ago)
- Last Synced: 2024-03-17T11:05:19.400Z (9 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Threat Hunt API
## API
```
/api/tenants
/api/technologies
/api/assets
/api/hunts
```## Database Schema
```
tenants
- id: uuid
- name: varchartechnologies
- id: uuid
- name: varchar
- versions: jsonassets
- id: uuid
- mac_address: varchar
- host: varchar
- timestamp: numeric
- tenant_id: uuid
- running_tech: jsonhunts
- id: uuid
- name: varchar
- description: text
- tenant_id: uuid
- asset_ids: uuid[]
```## Project Setup
```bash
python3.12 -m venv .venv
source .venv/bin/activate
pip install Flask==2.3.3
pip install "connexion[swagger-ui]==2.14.2"
```