Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cyberbuff/atomicredteam-streamlit
Helper web app for the Atomic Red Team project
https://github.com/cyberbuff/atomicredteam-streamlit
atomic-red-team
Last synced: about 1 month ago
JSON representation
Helper web app for the Atomic Red Team project
- Host: GitHub
- URL: https://github.com/cyberbuff/atomicredteam-streamlit
- Owner: cyberbuff
- License: mit
- Created: 2023-08-30T04:59:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-11T05:13:39.000Z (about 1 year ago)
- Last Synced: 2023-09-11T07:28:55.934Z (about 1 year ago)
- Topics: atomic-red-team
- Language: Python
- Homepage: https://atomicredteam.streamlit.app/
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# atomicredteam-streamlit
[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://choosealicense.com/licenses/mit/)
This is a helper web app for the [Atomic Red Team](https://github.com/redcanaryco/atomic-red-team) project
## Features
- New Atomic: Create new atomics via web forms
- Validate Atomic: Upload your YAML file and validate themMore features coming soon...
## Run LocallyClone the project
```bash
git clone https://github.com/cyberbuff/atomicredteam-streamlit
```Go to the project directory
```bash
cd atomicredteam-streamlit
```Install dependencies
```bash
pip3 install -r requirements.txt
```Start the server
```bash
streamlit run Hello.py
```## Running Tests
To run tests, run the following command
```bash
pytest . -v
```## Contributing
Contributions are always welcome!
Source code is located in `pages/` directory. Feel free to edit them and create a PR.Before committing and pushing the code, install `pre-commit` and install pre-commit hooks. `pre-commit` hooks are used for linting.
Install pre-commit
```bash
pip3 install pre-commit
```Install pre-commit hooks
```bash
pre-commit install-hooks
```