Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mitre/vulcan
A web application to streamline the development of STIGs from SRGs
https://github.com/mitre/vulcan
compliance compliance-automation disa inspec mitre-corporation mitre-inspec srg stig
Last synced: 3 months ago
JSON representation
A web application to streamline the development of STIGs from SRGs
- Host: GitHub
- URL: https://github.com/mitre/vulcan
- Owner: mitre
- License: other
- Created: 2018-03-16T19:38:01.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-24T22:09:16.000Z (3 months ago)
- Last Synced: 2024-07-25T00:31:59.804Z (3 months ago)
- Topics: compliance, compliance-automation, disa, inspec, mitre-corporation, mitre-inspec, srg, stig
- Language: Ruby
- Homepage: https://mitre-vulcan-prod.herokuapp.com/
- Size: 47.6 MB
- Stars: 59
- Watchers: 25
- Forks: 16
- Open Issues: 59
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-rainmana - mitre/vulcan - A web application to streamline the development of STIGs from SRGs (Ruby)
README
# Vulcan
[![Run Test Suite on Draft Release Creation, Push, and Pull Request to master](https://github.com/mitre/vulcan/actions/workflows/run-tests.yml/badge.svg)](https://github.com/mitre/vulcan/actions/workflows/run-tests.yml) [![Push Vulcan to Docker Hub on successful test suite run](https://github.com/mitre/vulcan/actions/workflows/push-to-docker.yml/badge.svg)](https://github.com/mitre/vulcan/actions/workflows/push-to-docker.yml)
## DescriptionVulcan is a tool to help streamline the process of creating STIG-ready securiy guidance documentation and InSpec automated validation profiles.
Vulcan models the STIG intent form and the process of aligning security controls from high-level DISA Security Requirements Guides (SRGs) into [Security Technical Implementation Guides](public.cyber.mil/stigs) (STIGs) tailored to a particular system component. STIG-ready content developed with Vulcan can be provided to DISA for peer review and formal publishing as a STIG. Vulcan allows the guidance author to develop both human-readable instructions and machine-readable automated validation code at the same time.
## Features
* Model the STIG creation process between the creator (vendor) and the approver (sponsor)
* Write and test InSpec code on a local system, or across SSH, AWS, and Docker targets
* Easily view control status and revision history
* Enable distributed authorship with multiple authors working on sets of controls and reviewing each others' work.
* Enable looking up related controls (controls using the same SRG ID) in published STIGs while auhtoring or reviewing a control.
* View DISA published STIG Contents.
* Confidential data in the database is encrypted using symmetric encryption
* Authenticate via the local server, through GitHub, and through configuring an LDAP server.
* Email and Slack notification enabled## Latest Release: [v2.1.8](https://github.com/mitre/vulcan/releases/tag/v2.1.8)
You can pull the Docker image for the latest release with the following command:
```bash
docker pull mitre/vulcan:v2.1.8
```For more details on this release and previous ones, check the [Changelog](https://vulcan.mitre.org/CHANGELOG.html).
## Deploy Vulcan
[Deploying Vulcan in Production](https://vulcan.mitre.org/docs/) [](https://pages.github.com/)[](https://pages.github.com/)
## Deployment Dependencies
For Ruby (on Ubuntu):
* Ruby
* `build-essentials`
* Bundler
* `libq-dev`
* nodejs### Run With Ruby
#### Setup Ruby
1. Install the version of Ruby specified in `.ruby-version`
2. Install postgres and rbenv
3. Run `gem install foreman`
4. Run `rbenv install`
5. Run `bin/setup`>> **Note**: `bin/setup` will install the JS dependencies andprepare the database.
6. Run `rails db:seed` to seed the database.
#### Running with Ruby
Make sure you have run the setup steps at least once before following these steps!
1. ensure postgres is running
2. foreman start -f Procfile.dev
3. Navigate to `http://127.0.0.1:3000`#### Test User
For testing purposes in the development environment, you can use the following credentials:
**Email**:
**Password**: 1234567ab!
#### Stopping Vulcan
1. Stop Vulcan by doing `ctrl + c`
2. Stop the postgres server## Configuration
See `docker-compose.yml` for container configuration options.
Documentation on how to configure additional Vulcan settings such as SMTP, LDAP, etc, are available on the [Vulcan website](https://vulcan.mitre.org/docs/config.html).
## Tasks
### STIG/SRG Puller Task
This application includes a rake task that pulls published Security Requirements Guides (SRGs) and Security Technical Implementation Guides (STIGs) from
public.cyber.mil and saves them locally. This task can be executed manually or set up to run on a schedule in a production environment.#### Manual Execution
You can manually execute the STIG/SRG puller task by running the following command in your terminal:
```shell
bundle exec rails stig_and_srg_puller:pull
```#### Scheduling the Task in Production
If you wish to automate the execution of this task in a production environment, you can set up a task scheduler on your hosting platform.
The configuration will depend on your specific hosting service.Generally, you will need to create a job that runs the following command:
```shell
bundle exec rails stig_and_srg_puller:pull
```You can set the frequency of this task according to your preference or needs. However, it's important to consider the volume of data being pulled
and the impact on the application's performance when deciding on the frequency.>> Please refer to your hosting platform's documentation or support services for specific instructions on how to set up scheduled tasks or cron jobs.
## Releasing Vulcan
For detailed information about creating a release, please refer to the [release documentation](https://github.com/mitre/vulcan/wiki/Release_vulcan).
### NOTICE
© 2022 The MITRE Corporation.
Approved for Public Release; Distribution Unlimited. Case Number 18-3678.
### NOTICE
MITRE hereby grants express written permission to use, reproduce, distribute, modify, and otherwise leverage this software to the extent permitted by the licensed terms provided in the LICENSE.md file included with this project.
### NOTICE
This software was produced for the U. S. Government under Contract Number HHSM-500-2012-00008I, and is subject to Federal Acquisition Regulation Clause 52.227-14, Rights in Data-General.
No other use other than that granted to the U. S. Government, or to those acting on behalf of the U. S. Government under that Clause is authorized without the express written permission of The MITRE Corporation.
For further information, please contact The MITRE Corporation, Contracts Management Office, 7515 Colshire Drive, McLean, VA 22102-7539, (703) 983-6000.