Full Code of softrams/bulwark for AI

master 341b3a62f53d cached
276 files
715.9 KB
210.6k tokens
420 symbols
1 requests
Download .txt
Showing preview only (789K chars total). Download the full file or copy to clipboard to get everything.
Repository: softrams/bulwark
Branch: master
Commit: 341b3a62f53d
Files: 276
Total size: 715.9 KB

Directory structure:
gitextract_flcbq_fg/

├── .dockerignore
├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report.md
│   │   └── feature_request.md
│   ├── agents/
│   │   └── my-agent.agent.md
│   ├── dependabot.yml
│   ├── pull_request_template.md
│   ├── stale.yml
│   └── workflows/
│       ├── codeql-analysis.yml
│       └── node.js.yml
├── .gitignore
├── .jest/
│   └── setEnvVars.js
├── .prettierignore
├── .prettierrc.json
├── .versionrc
├── CHANGELOG.md
├── CODEOWNERS
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── Dockerfile
├── LICENSE
├── README.md
├── SECURITY.md
├── TESTING.md
├── babel.config.js
├── buildspec.yaml
├── bulwark_base/
│   ├── Dockerfile
│   ├── buildspec.yaml
│   └── bulwark-entrypoint
├── commitlint.config.js
├── docker-compose.yml
├── frontend/
│   ├── .browserslistrc
│   ├── .editorconfig
│   ├── .gitignore
│   ├── README.md
│   ├── angular.json
│   ├── e2e/
│   │   ├── protractor.conf.js
│   │   ├── src/
│   │   │   ├── app.e2e-spec.ts
│   │   │   └── app.po.ts
│   │   └── tsconfig.e2e.json
│   ├── package.json
│   ├── src/
│   │   ├── app/
│   │   │   ├── admin.guard.spec.ts
│   │   │   ├── admin.guard.ts
│   │   │   ├── administration/
│   │   │   │   ├── administration.component.html
│   │   │   │   ├── administration.component.sass
│   │   │   │   ├── administration.component.spec.ts
│   │   │   │   ├── administration.component.ts
│   │   │   │   ├── invite-user/
│   │   │   │   │   ├── invite-user.component.html
│   │   │   │   │   ├── invite-user.component.sass
│   │   │   │   │   ├── invite-user.component.spec.ts
│   │   │   │   │   └── invite-user.component.ts
│   │   │   │   └── settings/
│   │   │   │       ├── settings.component.html
│   │   │   │       ├── settings.component.sass
│   │   │   │       ├── settings.component.spec.ts
│   │   │   │       └── settings.component.ts
│   │   │   ├── alert/
│   │   │   │   ├── alert/
│   │   │   │   │   ├── alert.component.html
│   │   │   │   │   ├── alert.component.sass
│   │   │   │   │   ├── alert.component.spec.ts
│   │   │   │   │   └── alert.component.ts
│   │   │   │   ├── alert.module.ts
│   │   │   │   ├── alert.service.spec.ts
│   │   │   │   └── alert.service.ts
│   │   │   ├── apikey-management/
│   │   │   │   ├── apikey-management.component.html
│   │   │   │   ├── apikey-management.component.sass
│   │   │   │   ├── apikey-management.component.spec.ts
│   │   │   │   └── apikey-management.component.ts
│   │   │   ├── app-routing.module.ts
│   │   │   ├── app.component.html
│   │   │   ├── app.component.scss
│   │   │   ├── app.component.spec.ts
│   │   │   ├── app.component.ts
│   │   │   ├── app.interceptor.ts
│   │   │   ├── app.module.ts
│   │   │   ├── app.service.spec.ts
│   │   │   ├── app.service.ts
│   │   │   ├── assessment-form/
│   │   │   │   ├── Assessment.ts
│   │   │   │   ├── assessment-form.component.html
│   │   │   │   ├── assessment-form.component.sass
│   │   │   │   ├── assessment-form.component.spec.ts
│   │   │   │   └── assessment-form.component.ts
│   │   │   ├── assessments/
│   │   │   │   ├── assessments.component.html
│   │   │   │   ├── assessments.component.sass
│   │   │   │   ├── assessments.component.spec.ts
│   │   │   │   └── assessments.component.ts
│   │   │   ├── asset-form/
│   │   │   │   ├── Asset.ts
│   │   │   │   ├── Jira.ts
│   │   │   │   ├── asset-form.component.html
│   │   │   │   ├── asset-form.component.sass
│   │   │   │   ├── asset-form.component.spec.ts
│   │   │   │   └── asset-form.component.ts
│   │   │   ├── auth.guard.spec.ts
│   │   │   ├── auth.guard.ts
│   │   │   ├── auth.service.spec.ts
│   │   │   ├── auth.service.ts
│   │   │   ├── classes/
│   │   │   │   ├── Alert.ts
│   │   │   │   ├── ProblemLocation.ts
│   │   │   │   └── Resource.ts
│   │   │   ├── dashboard/
│   │   │   │   ├── dashboard.component.html
│   │   │   │   ├── dashboard.component.sass
│   │   │   │   ├── dashboard.component.spec.ts
│   │   │   │   └── dashboard.component.ts
│   │   │   ├── email-validate/
│   │   │   │   ├── email-validate.component.html
│   │   │   │   ├── email-validate.component.sass
│   │   │   │   ├── email-validate.component.spec.ts
│   │   │   │   └── email-validate.component.ts
│   │   │   ├── enums/
│   │   │   │   └── roles.enum.ts
│   │   │   ├── footer/
│   │   │   │   ├── footer.component.html
│   │   │   │   ├── footer.component.sass
│   │   │   │   ├── footer.component.spec.ts
│   │   │   │   └── footer.component.ts
│   │   │   ├── forgot-password/
│   │   │   │   ├── forgot-password.component.html
│   │   │   │   ├── forgot-password.component.sass
│   │   │   │   ├── forgot-password.component.spec.ts
│   │   │   │   └── forgot-password.component.ts
│   │   │   ├── global-manager.service.spec.ts
│   │   │   ├── global-manager.service.ts
│   │   │   ├── interfaces/
│   │   │   │   ├── ApiKey.ts
│   │   │   │   ├── App_File.ts
│   │   │   │   ├── Organization.ts
│   │   │   │   ├── Screenshot.ts
│   │   │   │   ├── Settings.ts
│   │   │   │   ├── Team.ts
│   │   │   │   ├── Tokens.ts
│   │   │   │   └── User.ts
│   │   │   ├── loader.service.spec.ts
│   │   │   ├── loader.service.ts
│   │   │   ├── login/
│   │   │   │   ├── login.component.html
│   │   │   │   ├── login.component.sass
│   │   │   │   ├── login.component.spec.ts
│   │   │   │   └── login.component.ts
│   │   │   ├── navbar/
│   │   │   │   ├── navbar.component.html
│   │   │   │   ├── navbar.component.sass
│   │   │   │   ├── navbar.component.spec.ts
│   │   │   │   └── navbar.component.ts
│   │   │   ├── org-form/
│   │   │   │   ├── Organization.ts
│   │   │   │   ├── org-form.component.html
│   │   │   │   ├── org-form.component.sass
│   │   │   │   ├── org-form.component.spec.ts
│   │   │   │   └── org-form.component.ts
│   │   │   ├── organization/
│   │   │   │   ├── organization.component.html
│   │   │   │   ├── organization.component.sass
│   │   │   │   ├── organization.component.spec.ts
│   │   │   │   └── organization.component.ts
│   │   │   ├── page-not-found/
│   │   │   │   ├── page-not-found.component.html
│   │   │   │   ├── page-not-found.component.sass
│   │   │   │   ├── page-not-found.component.spec.ts
│   │   │   │   └── page-not-found.component.ts
│   │   │   ├── password-reset/
│   │   │   │   ├── password-reset.component.html
│   │   │   │   ├── password-reset.component.sass
│   │   │   │   ├── password-reset.component.spec.ts
│   │   │   │   └── password-reset.component.ts
│   │   │   ├── register/
│   │   │   │   ├── register.component.html
│   │   │   │   ├── register.component.sass
│   │   │   │   ├── register.component.spec.ts
│   │   │   │   └── register.component.ts
│   │   │   ├── report/
│   │   │   │   ├── report.component.html
│   │   │   │   ├── report.component.sass
│   │   │   │   ├── report.component.spec.ts
│   │   │   │   └── report.component.ts
│   │   │   ├── team/
│   │   │   │   ├── team.component.html
│   │   │   │   ├── team.component.sass
│   │   │   │   ├── team.component.spec.ts
│   │   │   │   └── team.component.ts
│   │   │   ├── team-form/
│   │   │   │   ├── team-form.component.html
│   │   │   │   ├── team-form.component.sass
│   │   │   │   ├── team-form.component.spec.ts
│   │   │   │   └── team-form.component.ts
│   │   │   ├── team.service.spec.ts
│   │   │   ├── team.service.ts
│   │   │   ├── user-form/
│   │   │   │   ├── user-form.component.html
│   │   │   │   ├── user-form.component.sass
│   │   │   │   ├── user-form.component.spec.ts
│   │   │   │   └── user-form.component.ts
│   │   │   ├── user-management/
│   │   │   │   ├── user-management.component.html
│   │   │   │   ├── user-management.component.sass
│   │   │   │   ├── user-management.component.spec.ts
│   │   │   │   └── user-management.component.ts
│   │   │   ├── user-profile/
│   │   │   │   ├── user-profile.component.html
│   │   │   │   ├── user-profile.component.sass
│   │   │   │   ├── user-profile.component.spec.ts
│   │   │   │   └── user-profile.component.ts
│   │   │   ├── user.service.spec.ts
│   │   │   ├── user.service.ts
│   │   │   ├── vuln-form/
│   │   │   │   ├── Vulnerability.ts
│   │   │   │   ├── vuln-form.component.html
│   │   │   │   ├── vuln-form.component.sass
│   │   │   │   ├── vuln-form.component.spec.ts
│   │   │   │   └── vuln-form.component.ts
│   │   │   └── vulnerability/
│   │   │       ├── vulnerability.component.html
│   │   │       ├── vulnerability.component.sass
│   │   │       ├── vulnerability.component.spec.ts
│   │   │       └── vulnerability.component.ts
│   │   ├── assets/
│   │   │   ├── .gitkeep
│   │   │   └── theme/
│   │   │       └── button.scss
│   │   ├── environments/
│   │   │   ├── environment.prod.ts
│   │   │   └── environment.ts
│   │   ├── index.html
│   │   ├── karma.conf.js
│   │   ├── main.ts
│   │   ├── polyfills.ts
│   │   ├── styles.scss
│   │   ├── test.ts
│   │   ├── tsconfig.app.json
│   │   ├── tsconfig.spec.json
│   │   └── tslint.json
│   ├── tsconfig.json
│   └── tslint.json
├── jest.config.js
├── ormconfig.js
├── package.json
├── src/
│   ├── app.ts
│   ├── classes/
│   │   └── Report.ts
│   ├── data-source.ts
│   ├── entity/
│   │   ├── ApiKey.ts
│   │   ├── Assessment.ts
│   │   ├── Asset.ts
│   │   ├── Config.ts
│   │   ├── File.ts
│   │   ├── Jira.ts
│   │   ├── Organization.ts
│   │   ├── ProblemLocation.ts
│   │   ├── ReportAudit.ts
│   │   ├── Resource.ts
│   │   ├── Team.ts
│   │   ├── User.ts
│   │   ├── VulnDictionary.ts
│   │   └── Vulnerability.ts
│   ├── enums/
│   │   ├── message-enum.ts
│   │   ├── roles-enum.ts
│   │   └── status-enum.ts
│   ├── init/
│   │   ├── docker-run-exec.ts
│   │   └── setEnv.ts
│   ├── interfaces/
│   │   ├── jira/
│   │   │   ├── jira-init.interface.ts
│   │   │   ├── jira-issue-link.interface.ts
│   │   │   ├── jira-issue-priority.interface.ts
│   │   │   ├── jira-issue-status.interface.ts
│   │   │   ├── jira-issue-type.interface.ts
│   │   │   ├── jira-issue.interface.ts
│   │   │   ├── jira-project.interface.ts
│   │   │   └── jira-result.interface.ts
│   │   ├── team-info.interface.ts
│   │   └── user-request.interface.ts
│   ├── middleware/
│   │   ├── jwt.middleware.ts
│   │   └── jwt.spec.ts
│   ├── routes/
│   │   ├── api-key.controller.spec.ts
│   │   ├── api-key.controller.ts
│   │   ├── assessment.controller.spec.ts
│   │   ├── assessment.controller.ts
│   │   ├── asset.controller.spec.ts
│   │   ├── asset.controller.ts
│   │   ├── authentication.controller.ts
│   │   ├── config.controller.spec.ts
│   │   ├── config.controller.ts
│   │   ├── file-upload.controller.ts
│   │   ├── organization.controller.ts
│   │   ├── report-audit.controller.spec.ts
│   │   ├── report-audit.controller.ts
│   │   ├── team.controller.spec.ts
│   │   ├── team.controller.ts
│   │   ├── user.controller.spec.ts
│   │   ├── user.controller.ts
│   │   └── vulnerability.controller.ts
│   ├── services/
│   │   ├── email.service.spec.ts
│   │   └── email.service.ts
│   ├── temp/
│   │   └── empty.ts
│   └── utilities/
│       ├── column-mapper.utility.ts
│       ├── crypto.utility.spec.ts
│       ├── crypto.utility.ts
│       ├── file.utility.ts
│       ├── jira.utility.spec.ts
│       ├── jira.utility.ts
│       ├── password.utility.spec.ts
│       ├── password.utility.ts
│       ├── puppeteer.utility.ts
│       └── role.utility.ts
├── tsconfig.json
└── tslint.json

================================================
FILE CONTENTS
================================================

================================================
FILE: .dockerignore
================================================
.git/
monitoring/
node_modules/
screenshots/
test/
build/
dist/
vagrant/
docs/
logs/
Dockerfile
.npmrc
frontend/node_modules/
frontend/dist/
.env

================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
name: Bug report
about: Report a bug in Bulwark
title: ''
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**Problem Locations**
Did you find this issue while using Bulwark? Supply the URL and payload that caused the issue.  Furthermore, supply the relative path and line number of the affected source code.

**Steps to Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
 - OS: [e.g. iOS]
 - Browser [e.g. chrome, safari]
 - Version [e.g. 22]

**Smartphone (please complete the following information):**
 - Device: [e.g. iPhone6]
 - OS: [e.g. iOS8.1]
 - Browser [e.g. stock browser, safari]
 - Version [e.g. 22]

**Additional context**
Add any other context about the problem here.


================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.md
================================================
---
name: Feature request
about: Suggest an idea for Bulwark
title: ''
labels: enhancement
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.


================================================
FILE: .github/agents/my-agent.agent.md
================================================
---
# Fill in the fields below to create a basic custom agent for your repository.
# The Copilot CLI can be used for local testing: https://gh.io/customagents/cli
# To make this agent available, merge this file into the default repository branch.
# For format details, see: https://gh.io/customagents/config

name: SecBot
description: SecBot will look at security issues and perform required remediations.
---

# My Agent

SecBot will monitor for security issues and address them by performing remediation steps.


================================================
FILE: .github/dependabot.yml
================================================
version: 2
updates:
  - package-ecosystem: 'npm'
    directory: '/'
    schedule:
      interval: 'monthly'
    target-branch: 'develop'

  - package-ecosystem: 'npm'
    directory: '/frontend'
    schedule:
      interval: 'monthly'
    target-branch: 'develop'


================================================
FILE: .github/pull_request_template.md
================================================
# Pull Request

Thank you for your contribution to the Bulwark. Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.

Fixes # (issue)

## Type of change

- [ ] A new feature
- [ ] A bug fix
- [ ] Documentation only changes
- [ ] Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
- [ ] A code change that neither fixes a bug nor adds a feature
- [ ] A code change that improves performance
- [ ] Adding missing tests or correcting existing tests
- [ ] Changes that affect the build system or external dependencies
- [ ] Changes to our CI configuration files and scripts
- [ ] Other changes that don't modify src or test files

Add description here

```release-note

```

---

## Checklist

- [ ] My code follows the [contributing](../CONTRIBUTING.md) guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published in downstream modules


================================================
FILE: .github/stale.yml
================================================
daysUntilStale: 60
daysUntilClose: 7
exemptLabels:
  - confirmed
  - security
staleLabel: stale
markComment: >
  This issue has been automatically marked as stale because it has not had
  recent activity. It will be closed if no further activity occurs. Thank you
  for your contributions.


================================================
FILE: .github/workflows/codeql-analysis.yml
================================================
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
name: 'CodeQL'

on:
  push:
    branches: [master, develop]
  pull_request:
    # The branches below must be a subset of the branches above
    branches: [master]
  schedule:
    - cron: '0 2 * * 2'

jobs:
  analyze:
    name: Analyze
    runs-on: ubuntu-latest

    strategy:
      fail-fast: false
      matrix:
        # Override automatic language detection by changing the below list
        # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
        language: ['javascript']
        # Learn more...
        # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection

    steps:
      - name: Checkout repository
        uses: actions/checkout@v2
        with:
          # We must fetch at least the immediate parents so that if this is
          # a pull request then we can checkout the head.
          fetch-depth: 2

      # If this run was triggered by a pull request event, then checkout
      # the head of the pull request instead of the merge commit.
      - run: git checkout HEAD^2
        if: ${{ github.event_name == 'pull_request' }}

      # Initializes the CodeQL tools for scanning.
      - name: Initialize CodeQL
        uses: github/codeql-action/init@v1
        with:
          languages: ${{ matrix.language }}
          # If you wish to specify custom queries, you can do so here or in a config file.
          # By default, queries listed here will override any specified in a config file.
          # Prefix the list here with "+" to use these queries and those in the config file.
          # queries: ./path/to/local/query, your-org/your-repo/queries@main

      # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
      # If this step fails, then you should remove it and run the build manually (see below)
      - name: Autobuild
        uses: github/codeql-action/autobuild@v1

      # ℹ️ Command-line programs to run using the OS shell.
      # 📚 https://git.io/JvXDl

      # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
      #    and modify them (or add more) to build your code if your project
      #    uses a compiled language

      #- run: |
      #   make bootstrap
      #   make release

      - name: Perform CodeQL Analysis
        uses: github/codeql-action/analyze@v1


================================================
FILE: .github/workflows/node.js.yml
================================================
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: build

on:
  push:
    branches: [master]
  pull_request:
    branches: [develop]

jobs:
  build:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        node-version: [12.x, 14.x]

    steps:
      - uses: actions/checkout@v2
      - name: Use Node.js ${{ matrix.node-version }}
        uses: actions/setup-node@v1
        with:
          node-version: ${{ matrix.node-version }}
      - name: Install Packages
        run: npm install
      - name: Create Env File
        run: |
          touch .env
          echo JWT_KEY="test" >> .env
          echo JWT_REFRESH_KEY="test" >> .env
      - name: Backend Tests
        run: npm run test:node


================================================
FILE: .gitignore
================================================
# See http://help.github.com/ignore-files/ for more about ignoring files.

#angular
/frontend/.angular

# compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# dependencies
/node_modules

# profiling files
chrome-profiler-events.json
speed-measure-plugin.json

# database migrations
/src/database/migration/*

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
.vscode/

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings
.env
.env.*

# System Files
.DS_Store
Thumbs.db


================================================
FILE: .jest/setEnvVars.js
================================================
process.env.NODE_ENV = 'test';
process.env.CRYPTO_SECRET = 'test';
process.env.CRYPTO_SALT = 'test';
process.env.JWT_KEY = 'test';
process.env.JWT_REFRESH_KEY = 'test';
process.env.CRYPTO_SALT = 'test';


================================================
FILE: .prettierignore
================================================
coverage
dist
frontend/dist
node_modules
frontend/node_modules
.prettierignore
Dockerfile
CHANGELOG.md
# Ignore all HTML files:
*.html
*.sass
.gitignore
frontend/.gitignore

================================================
FILE: .prettierrc.json
================================================
{
  "arrowParens": "always",
  "bracketSpacing": true,
  "embeddedLanguageFormatting": "auto",
  "htmlWhitespaceSensitivity": "css",
  "insertPragma": false,
  "jsxBracketSameLine": false,
  "jsxSingleQuote": false,
  "printWidth": 80,
  "proseWrap": "preserve",
  "quoteProps": "as-needed",
  "requirePragma": false,
  "semi": true,
  "singleQuote": true,
  "tabWidth": 2,
  "trailingComma": "es5",
  "useTabs": false,
  "vueIndentScriptAndStyle": false
}


================================================
FILE: .versionrc
================================================
{
  "types": [
    {"type": "chore", "section":"Others", "hidden": false},
    {"type": "revert", "section":"Reverts", "hidden": false},
    {"type": "feat", "section": "Features", "hidden": false},
    {"type": "fix", "section": "Bug Fixes", "hidden": false},
    {"type": "docs", "section":"Docs", "hidden": false},
    {"type": "style", "section":"Styling", "hidden": false},
    {"type": "refactor", "section":"Code Refactoring", "hidden": false},
    {"type": "perf", "section":"Performance Improvements", "hidden": false},
    {"type": "test", "section":"Tests", "hidden": false},
    {"type": "build", "section":"Build System", "hidden": false},
    {"type": "ci", "section":"CI", "hidden":false}
  ]
}

================================================
FILE: CHANGELOG.md
================================================
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [7.3.0](https://github.com/softrams/bulwark/compare/v7.2.1...v7.3.0) (2021-06-28)


### Features

* **asset.controller.ts:** add open vulnerability modal to asset ([1c0b5b0](https://github.com/softrams/bulwark/commit/1c0b5b028a33be1f5225c9417a06635ec5f21726)), closes [#862](https://github.com/softrams/bulwark/issues/862)
* **asset.controller.ts:** optimize asset queries. Complete vulnerability table ([7c5729b](https://github.com/softrams/bulwark/commit/7c5729b847f02a5011be5f37f4c6f3758730dca4)), closes [#862](https://github.com/softrams/bulwark/issues/862)

### [7.2.1](https://github.com/softrams/bulwark/compare/v7.2.0...v7.2.1) (2021-06-23)


### Bug Fixes

* **app.ts:** fixed missing middleware for update password ([fd2600a](https://github.com/softrams/bulwark/commit/fd2600a77b369c13672d641aff47af9e3190ffe1)), closes [#860](https://github.com/softrams/bulwark/issues/860)

## [7.2.0](https://github.com/softrams/bulwark/compare/v7.1.4...v7.2.0) (2021-06-23)


### Features

* **asset.controller.ts:** return number of open vulnerabilities with assets ([8ccbbc7](https://github.com/softrams/bulwark/commit/8ccbbc7c055b3fef92382746a77b2b14a562bf42)), closes [#858](https://github.com/softrams/bulwark/issues/858)


### Docs

* **readme.md:** temporarily remove Team section from README ([7b17ee6](https://github.com/softrams/bulwark/commit/7b17ee63f6c330875a78dee4b53002923a6bebd8))

### [7.1.4](https://github.com/softrams/bulwark/compare/v7.1.3...v7.1.4) (2021-06-21)


### Docs

* **readme:** readMe gifs in public AWS repo ([3cef86f](https://github.com/softrams/bulwark/commit/3cef86fbb2de61e563928cedd38607066f36f4f5)), closes [#848](https://github.com/softrams/bulwark/issues/848)


### Build System

* **dependabot.yml:** update interval ([a592cd3](https://github.com/softrams/bulwark/commit/a592cd305b8c6be3dd5b5dabeaf34e5139b86627))


### Others

* **dependabot.yml/readme.md:** removed myself from the README.  Removed myself from dependabot ([c7676cf](https://github.com/softrams/bulwark/commit/c7676cfce5a17c2eaa83db014aa942eedffd6c59))
* **deps:** bump @ng-select/ng-select from 6.1.0 to 7.0.1 in /frontend ([ee7a3e9](https://github.com/softrams/bulwark/commit/ee7a3e95bcb95a5fe4ff729f1c37ab1e3659ffa1))
* **deps:** bump core-js from 3.12.1 to 3.15.0 in /frontend ([492702d](https://github.com/softrams/bulwark/commit/492702db13772e1a13e6c68b58e83a4a3590b3f8))
* **deps:** bump mime-types from 2.1.30 to 2.1.31 ([1af1aab](https://github.com/softrams/bulwark/commit/1af1aab0136b58a6057a4830d976bb2949e1dee0))
* **deps:** bump nodemailer from 6.6.1 to 6.6.2 ([7e6b9d2](https://github.com/softrams/bulwark/commit/7e6b9d226a8d6d3111517ac4da8840fda6eac124))
* **deps:** bump primeng from 11.4.2 to 12.0.0 in /frontend ([e8318ff](https://github.com/softrams/bulwark/commit/e8318ffa00b6d55ac74fcb57dc411bf035a47f21))
* **deps:** bump puppeteer from 9.1.1 to 10.0.0 ([9dde15b](https://github.com/softrams/bulwark/commit/9dde15b626b799575400cfb4dcabee873721df1c))
* **deps:** bump tslib from 2.2.0 to 2.3.0 in /frontend ([997a635](https://github.com/softrams/bulwark/commit/997a6357f76267dc5f82a503740e43e0bf4761c7))
* **deps:** bump typeorm from 0.2.32 to 0.2.34 ([d6cf805](https://github.com/softrams/bulwark/commit/d6cf805029cd4a3c3202fcc024e42739ad3ecf14))
* **deps-dev:** bump @babel/core from 7.14.3 to 7.14.6 ([44a7ac5](https://github.com/softrams/bulwark/commit/44a7ac56a5a10e38f41ad5258b70b4d63132e717))
* **deps-dev:** bump @babel/preset-env from 7.14.2 to 7.14.5 ([d7af0e2](https://github.com/softrams/bulwark/commit/d7af0e29001224953dfa7042afb8155a8b5bce14))
* **deps-dev:** bump @babel/preset-typescript from 7.13.0 to 7.14.5 ([b34dbde](https://github.com/softrams/bulwark/commit/b34dbde2451ae49f9a0b48e96efad142656c3cf2))
* **deps-dev:** bump @types/jasmine from 3.7.4 to 3.7.7 in /frontend ([205a783](https://github.com/softrams/bulwark/commit/205a78373301e9b4a78949ec9666a7214d3fe4fc))
* **deps-dev:** bump @types/node from 15.6.1 to 15.12.4 in /frontend ([987b2c7](https://github.com/softrams/bulwark/commit/987b2c72843f0fcf8e7e15c2d4f07907e64dafbb))
* **deps-dev:** bump babel-jest from 26.6.3 to 27.0.2 ([ec3fbbf](https://github.com/softrams/bulwark/commit/ec3fbbf92cde2f45a348312518f534e35cef0db9))
* **deps-dev:** bump highlight.js from 10.7.2 to 11.0.1 ([19d901c](https://github.com/softrams/bulwark/commit/19d901c43da8cea6a9690d7357f5bbeb5961cc20))
* **deps-dev:** bump jest from 26.6.3 to 27.0.4 ([c7a96a9](https://github.com/softrams/bulwark/commit/c7a96a986b38b7034c2766583e71728ebb2cd634))
* **deps-dev:** bump karma from 6.3.2 to 6.3.4 in /frontend ([0eb8f1a](https://github.com/softrams/bulwark/commit/0eb8f1ad69436cca44cf939207e27bf5735ccddd))
* **deps-dev:** bump prettier from 2.3.0 to 2.3.1 ([8430f66](https://github.com/softrams/bulwark/commit/8430f66c411a1271153781d242821de23deade38))
* **deps-dev:** bump typescript from 4.2.4 to 4.3.4 ([c5c571c](https://github.com/softrams/bulwark/commit/c5c571c78a25eae6698cba047471deace06a4b67))
* **ng update @angular/cdk:** ng update @angular/cdk ([03cfc4b](https://github.com/softrams/bulwark/commit/03cfc4b8786f61e84648fbe1594136f7b42cfe77))
* **ng update @angular/cli:** ng update @angular/cli ([075711d](https://github.com/softrams/bulwark/commit/075711deff26e44659facaeb3b12578d33043b36))
* **npm audit fix:** npm audit fix ([8d6774f](https://github.com/softrams/bulwark/commit/8d6774f53ef68546445448001d15073d09423c26))
* **readme.md:** fix conflict ([a05147e](https://github.com/softrams/bulwark/commit/a05147e9c93dce14db0f301a35bbe73a5f04d554))
* **unit tests:** fixed Jira and Password unit tests ([887e6a7](https://github.com/softrams/bulwark/commit/887e6a7d564f54cbe0d531894cf72f4ddcf88603))
* **update angular/core:** update angular/core ([e6cb7ff](https://github.com/softrams/bulwark/commit/e6cb7ffecec61b647a6939e74387ff5870c62966))

### [7.1.3](https://github.com/softrams/bulwark/compare/v7.1.2...v7.1.3) (2021-06-04)

### [7.1.2](https://github.com/softrams/bulwark/compare/v7.1.1...v7.1.2) (2021-05-27)


### Others

* **package-lock.json:** update package-lock.json to force docker build ([b1904c4](https://github.com/softrams/bulwark/commit/b1904c440009da267a50ee689045e127869844ee))

### [7.1.1](https://github.com/softrams/bulwark/compare/v7.1.0...v7.1.1) (2021-05-26)


### Bug Fixes

* **dockerfile:** update `NODE_VERSION` to 14.9.0 ([3ba025f](https://github.com/softrams/bulwark/commit/3ba025f13abccf522e25782cbeeef64ee3ca507d))

## [7.1.0](https://github.com/softrams/bulwark/compare/v7.0.11...v7.1.0) (2021-05-25)


### Features

* **assessments.component.html:** add `sortField` and `sortOrder` to assessments table ([f3dbd42](https://github.com/softrams/bulwark/commit/f3dbd427d33a11ebd413c5a11129caa8bea7cce2))


### Build System

* **node.js.yml:** remove support for Node version 10.x ([9938b24](https://github.com/softrams/bulwark/commit/9938b2463d409412bb85cbfdbe62d3e8ba2df31e))


### Others

* **deps:** bump concurrently from 6.0.2 to 6.1.0 ([817e4e9](https://github.com/softrams/bulwark/commit/817e4e97c07756d0c392867161bcf6946af4b96d))
* **deps:** bump concurrently from 6.1.0 to 6.2.0 ([826b576](https://github.com/softrams/bulwark/commit/826b576f2493221f0f8b2ab0e16bea016661bbee))
* **deps:** bump core-js from 3.11.0 to 3.12.1 in /frontend ([8102fd6](https://github.com/softrams/bulwark/commit/8102fd629c391360a7a933fed10b2dcea106510f))
* **deps:** bump dotenv from 8.2.0 to 10.0.0 ([51d9c8f](https://github.com/softrams/bulwark/commit/51d9c8fa251dc36e5ade49276730a6edbc8cb648))
* **deps:** bump helmet from 4.5.0 to 4.6.0 ([64c2fb3](https://github.com/softrams/bulwark/commit/64c2fb37377b1db74c900fbbddcfbe0e37b4cc08))
* **deps:** bump ngx-markdown from 11.1.3 to 12.0.1 in /frontend ([a1bf0e4](https://github.com/softrams/bulwark/commit/a1bf0e459e6f1f44df15ae9af4400e83dfc09825))
* **deps:** bump nodemailer from 6.5.0 to 6.6.1 ([536c513](https://github.com/softrams/bulwark/commit/536c513f9dde65cd6a7a63656b1cd28864f8972d))
* **deps:** bump primeng from 11.4.0 to 11.4.2 in /frontend ([868bd72](https://github.com/softrams/bulwark/commit/868bd727fba29181e55612caa12278d967a49b49))
* **deps:** bump puppeteer from 9.0.0 to 9.1.1 ([ffd5426](https://github.com/softrams/bulwark/commit/ffd5426a9d0970aef00292e00069a468802e7165))
* **deps:** bump ts-node from 9.1.1 to 10.0.0 ([0e471a9](https://github.com/softrams/bulwark/commit/0e471a9c79326037e7fa48755e0c2a3df04266cd))
* **deps-dev:** bump @babel/core from 7.13.16 to 7.14.3 ([393f0c6](https://github.com/softrams/bulwark/commit/393f0c6a30cd0e4146b4ccd0d7c318bd15e2a0fa))
* **deps-dev:** bump @babel/preset-env from 7.13.15 to 7.14.2 ([4ddd3bb](https://github.com/softrams/bulwark/commit/4ddd3bb4927223b1d5015e81e3860b005d503d42))
* **deps-dev:** bump @commitlint/cli from 12.1.1 to 12.1.4 ([1af5966](https://github.com/softrams/bulwark/commit/1af59660bf9c686ae18b877b66ff8cc9dccd74e9))
* **deps-dev:** bump @commitlint/config-conventional ([159f930](https://github.com/softrams/bulwark/commit/159f9303bdcf6ab53a7921d22a011b8d64d71c90))
* **deps-dev:** bump @types/jasmine from 3.6.9 to 3.7.4 in /frontend ([8b1b4da](https://github.com/softrams/bulwark/commit/8b1b4daa1910b1f322c3624bee7d74fc9d0c17cf))
* **deps-dev:** bump @types/jasminewd2 from 2.0.8 to 2.0.9 in /frontend ([50d58bf](https://github.com/softrams/bulwark/commit/50d58bf9d10886fee6a215c647280db96d987420))
* **deps-dev:** bump @types/jest from 26.0.22 to 26.0.23 ([778ee66](https://github.com/softrams/bulwark/commit/778ee66f3b655e96b9c83a197b8806d49a956c16))
* **deps-dev:** bump @types/node from 14.14.41 to 15.6.1 in /frontend ([480221a](https://github.com/softrams/bulwark/commit/480221a7d6f40ad6ca8dab5449f578cfd81217a8))
* **deps-dev:** bump codelyzer from 6.0.1 to 6.0.2 in /frontend ([da6f92e](https://github.com/softrams/bulwark/commit/da6f92ea07ed06b36996f98666653842525cf5cc))
* **deps-dev:** bump karma-jasmine-html-reporter in /frontend ([2073d3a](https://github.com/softrams/bulwark/commit/2073d3a0a7e41495c9710fe82935fe99071ef657))
* **deps-dev:** bump lint-staged from 10.5.4 to 11.0.0 ([87b5b48](https://github.com/softrams/bulwark/commit/87b5b48854c3ef7495c46558ba328f03e8ecc132))
* **deps-dev:** bump prettier from 2.2.1 to 2.3.0 ([36fe885](https://github.com/softrams/bulwark/commit/36fe885b5d722ebf6c26dce07928a950cb4e824a))
* **deps-dev:** bump standard-version from 9.2.0 to 9.3.0 ([50ba4aa](https://github.com/softrams/bulwark/commit/50ba4aa3f459f6b2a11ec137d1e875dce2f4b72b))
* **deps-dev:** bump ts-jest from 26.5.5 to 26.5.6 ([4214046](https://github.com/softrams/bulwark/commit/4214046b1d43f59502e587d71f9c9708a9a5f49a))
* **deps-dev:** bump ts-node from 9.1.1 to 10.0.0 in /frontend ([e1af4c3](https://github.com/softrams/bulwark/commit/e1af4c3d096e661c561a860ac984afd1edba4754))
* **frontend/package.json:** update Angular to v12 ([be6ac28](https://github.com/softrams/bulwark/commit/be6ac2829d1b2591a9a33aed4cddc1895d4ecee4))
* **package-lock.json:** npm audit fix ([c401f46](https://github.com/softrams/bulwark/commit/c401f46cda9e7a8c8bbd41a38c2d54bd391465d8))
* **package-lock.json:** update lockfileversion to 2 ([63c2460](https://github.com/softrams/bulwark/commit/63c24607d9183200621d583ea56c2946b2773255))
* **update @angular/cdk:** update @angular/cdk ([e36a9b6](https://github.com/softrams/bulwark/commit/e36a9b632731959b8d76576346e9ce00d5660cdd))
* **update @angular/cli:** update @angular/cli ([2a1cbde](https://github.com/softrams/bulwark/commit/2a1cbdee1fdaad04df643f604fb1f7da82ddb977))
* **update @angular/core:** update @angular/core ([e64a3ba](https://github.com/softrams/bulwark/commit/e64a3ba6cff98cd5594f5c7a4ab6de009ea31180))

### [7.0.11](https://github.com/softrams/bulwark/compare/v7.0.10...v7.0.11) (2021-05-10)


### Bug Fixes

* **multiple api's:** add additional ACL checks ([2cdc01a](https://github.com/softrams/bulwark/commit/2cdc01abaf6d499951407105d56883956c644e28))
* **role.utility.ts:** updated role-utility.ts ([f0fc0c5](https://github.com/softrams/bulwark/commit/f0fc0c57e5f0d13d287f7305900448a8bd80f6fe))


### Others

* **deps:** bump core-js from 3.10.2 to 3.11.0 in /frontend ([90aa392](https://github.com/softrams/bulwark/commit/90aa392655accf6d6212fc8bbadbd852518d773b))
* **deps:** bump primeng from 11.3.2 to 11.4.0 in /frontend ([211c294](https://github.com/softrams/bulwark/commit/211c29491912cf95f8c71494f2be77b5397ac498))
* **deps:** bump puppeteer from 8.0.0 to 9.0.0 ([9dbe9d2](https://github.com/softrams/bulwark/commit/9dbe9d299fb613690b078be01defc290ae9162b6))
* **deps-dev:** bump @babel/core from 7.13.15 to 7.13.16 ([08fa5a6](https://github.com/softrams/bulwark/commit/08fa5a647322f4dbfb599ecc2ea91f7a0de2e028))
* **frontend/package.json:** ng update @angular/cli ([58ad735](https://github.com/softrams/bulwark/commit/58ad735626521f4aa1480649a1a155982082dd3a))
* **frontend/package.json:** update @angular/cdk ([51fe3c1](https://github.com/softrams/bulwark/commit/51fe3c16d111d9dd3d960ae6048fe4096f575782))
* **frontend/package.json:** update @angular/cli ([b3b0a18](https://github.com/softrams/bulwark/commit/b3b0a18cf41b4ea5ceb14710c6e21f149119f3b6))
* **frontend/package.json:** update @angular/core ([8f8a247](https://github.com/softrams/bulwark/commit/8f8a24778a158deae7d8b936f815569bb3ddbc1a))
* **ng update @angular/cdk:** ng update @angular/cdk ([d960688](https://github.com/softrams/bulwark/commit/d9606880878f75aa61ce6d08a426b8f12ef37b65))
* **package.json:** ng update @angular/core ([431b10e](https://github.com/softrams/bulwark/commit/431b10ec7521e92c7f4aa4358816edce89b31da7))
* **package.json:** npm audit fix ([6a9f8b1](https://github.com/softrams/bulwark/commit/6a9f8b1b8fef2bb846e3dcd72e12080edee76270))

### [7.0.10](https://github.com/softrams/bulwark/compare/v7.0.9...v7.0.10) (2021-04-23)


### Bug Fixes

* **chart.js:** reverting chart.js to v2 ([05b7704](https://github.com/softrams/bulwark/commit/05b77040bee13cd7040a81cacb02f949b9b230a0))

### [7.0.9](https://github.com/softrams/bulwark/compare/v7.0.8...v7.0.9) (2021-04-23)


### Bug Fixes

* **frontend/package.json:** update angular CLI ([3107c38](https://github.com/softrams/bulwark/commit/3107c389226dac0ee7037328d4849a91d56d70e9))
* **password.utility.ts:** update password utility and user.controller for readability ([d6cdebb](https://github.com/softrams/bulwark/commit/d6cdebbe4958c85946f653779d7b0eab13e18b6f)), closes [#753](https://github.com/softrams/bulwark/issues/753)
* **user.controller.ts:** fixed failing unit tests ([ff08636](https://github.com/softrams/bulwark/commit/ff0863640765c119d8064724359a813069b3b109)), closes [#753](https://github.com/softrams/bulwark/issues/753)


### Others

* **deps:** bump @angular-devkit/build-angular in /frontend ([3543a48](https://github.com/softrams/bulwark/commit/3543a48c0026c35cab27188ed6fd457e9983d9d4))
* **deps:** bump @angular/cdk from 11.2.7 to 11.2.8 in /frontend ([414e270](https://github.com/softrams/bulwark/commit/414e27021febd4befe7e3133cd5e93b931b31f67))
* **deps:** bump @angular/router from 11.2.8 to 11.2.9 in /frontend ([65b900e](https://github.com/softrams/bulwark/commit/65b900ef4f7db31e9ec18fa1a89579e29b4e687c))
* **deps:** bump chart.js from 3.0.2 to 3.1.0 in /frontend ([c1c9a97](https://github.com/softrams/bulwark/commit/c1c9a97dfe5761da07f366bfbafdc420bcab473b))
* **deps:** bump chart.js from 3.1.0 to 3.1.1 in /frontend ([346cb8b](https://github.com/softrams/bulwark/commit/346cb8b1b0912c826f76d5fa2d277e3856280979))
* **deps:** bump concurrently from 6.0.0 to 6.0.1 ([217bcfe](https://github.com/softrams/bulwark/commit/217bcfec490913dacf44fc045815020fdcb4ab98))
* **deps:** bump concurrently from 6.0.1 to 6.0.2 ([337ac3a](https://github.com/softrams/bulwark/commit/337ac3aa8d515703f817f996393f92ca29334333))
* **deps:** bump core-js from 3.10.0 to 3.10.1 in /frontend ([8a321eb](https://github.com/softrams/bulwark/commit/8a321ebeed19ded4609a0ee816b9e173208b468f))
* **deps:** bump core-js from 3.10.1 to 3.10.2 in /frontend ([7e99aec](https://github.com/softrams/bulwark/commit/7e99aec0503dfeec4f0f449055265ca30c1ba65c))
* **deps:** bump helmet from 4.4.1 to 4.5.0 ([12275da](https://github.com/softrams/bulwark/commit/12275da6475a19368b0d9444446e0f9594d6bafd))
* **deps:** bump ngx-markdown from 11.1.2 to 11.1.3 in /frontend ([deec7bf](https://github.com/softrams/bulwark/commit/deec7bf0abf33889382511cbf21c799f7e3c0e66))
* **deps:** bump primeng from 11.3.1 to 11.3.2 in /frontend ([b296584](https://github.com/softrams/bulwark/commit/b296584376a6cd3c4fd1065d723c320f2a27f069))
* **deps:** bump tslib from 2.1.0 to 2.2.0 in /frontend ([090415a](https://github.com/softrams/bulwark/commit/090415a6be66454e239469aec7cdb30ca361462a))
* **deps-dev:** bump @babel/core from 7.13.13 to 7.13.15 ([4d2430d](https://github.com/softrams/bulwark/commit/4d2430dfd4225632179851f1b9f9e19619a57b70))
* **deps-dev:** bump @babel/preset-env from 7.13.12 to 7.13.15 ([ca01c10](https://github.com/softrams/bulwark/commit/ca01c102cac3176e608b559b6cd5c2ad3fa077c2))
* **deps-dev:** bump @types/node from 14.14.37 to 14.14.41 in /frontend ([2ae9804](https://github.com/softrams/bulwark/commit/2ae98040ecc6fc6b09bb6e81ac3448188c595a9f))
* **deps-dev:** bump jasmine-spec-reporter in /frontend ([2da5194](https://github.com/softrams/bulwark/commit/2da51946fcf47a7f8a50dd884603ce50ec7ec59b))
* **deps-dev:** bump standard-version from 9.1.1 to 9.2.0 ([b1623d9](https://github.com/softrams/bulwark/commit/b1623d951b713eab4f82e086a3518c04e64367b0))
* **deps-dev:** bump ts-jest from 26.5.4 to 26.5.5 ([371a25b](https://github.com/softrams/bulwark/commit/371a25bc304577dbad5e8cea0b09df7da25623f1))
* **deps-dev:** bump typescript from 4.2.3 to 4.2.4 ([a0bf85f](https://github.com/softrams/bulwark/commit/a0bf85fe62c951dca8d45099c5818c33be622fbc))
* **frontend/package.json:** update @angular/cdk ([dd5aab2](https://github.com/softrams/bulwark/commit/dd5aab2904dc4b9be7bfb138fced39ebdd54c8f3))
* **frontend/package.json:** update @angular/cli ([1ecd2ce](https://github.com/softrams/bulwark/commit/1ecd2ce752d3e0bd5baa8d5dddd9b2e53c89e707))
* **frontend/package.json:** update @angular/core ([9052f8a](https://github.com/softrams/bulwark/commit/9052f8a084299f3ff81954ba3b931a03dc8e183d))
* **frontend/package.json:** update global angular version ([9faf260](https://github.com/softrams/bulwark/commit/9faf260f296f49cea163893ce9857cc665f0fbfb))

### [7.0.8](https://github.com/softrams/bulwark/compare/v7.0.7...v7.0.8) (2021-04-13)


### Bug Fixes

* **chart.js:** rever chart.js to v2 ([0c59004](https://github.com/softrams/bulwark/commit/0c5900431d92d4a71ff304749af7e84394674dd1))

### [7.0.7](https://github.com/softrams/bulwark/compare/v7.0.6...v7.0.7) (2021-04-06)


### Bug Fixes

* **frontend/package.json:** downgrade Typescript. Downgrade Angular ([bd96650](https://github.com/softrams/bulwark/commit/bd96650c4278800f54443f24ec3e4ff597be6cb7))


### Others

* **deps:** bump @angular-devkit/build-angular in /frontend ([b6b577f](https://github.com/softrams/bulwark/commit/b6b577f16cccab8d8cf1a5a4229bdfe954a9184d))
* **deps:** bump @angular-devkit/build-angular in /frontend ([72fa45b](https://github.com/softrams/bulwark/commit/72fa45b18a5cc39023cb1755967bd012d11be457))
* **deps:** bump @angular-devkit/build-angular in /frontend ([4a94d44](https://github.com/softrams/bulwark/commit/4a94d4423ecd60953639756106f387866c769434))
* **deps:** bump @angular/animations from 11.0.0 to 11.0.9 in /frontend ([9fbd8e5](https://github.com/softrams/bulwark/commit/9fbd8e53753f8cb0c2ac2275494b20b840c618bd))
* **deps:** bump @angular/cdk from 11.2.4 to 11.2.5 in /frontend ([2a80c7c](https://github.com/softrams/bulwark/commit/2a80c7cfa7c18178d2c938ea0d0bc95ebe4cf23d))
* **deps:** bump @angular/cdk from 11.2.5 to 11.2.6 in /frontend ([2aac976](https://github.com/softrams/bulwark/commit/2aac97649670c910782c4324ac0cfab30bc6cf79))
* **deps:** bump @angular/cli from 11.2.4 to 11.2.5 in /frontend ([ec8d363](https://github.com/softrams/bulwark/commit/ec8d363ffef230deec2640273da8624e2a1afaa8))
* **deps:** bump @angular/cli from 11.2.5 to 11.2.6 in /frontend ([2566862](https://github.com/softrams/bulwark/commit/25668626ec64ff599ae0414c2aeb7203457f04fb))
* **deps:** bump @angular/cli from 11.2.6 to 11.2.7 in /frontend ([3b492ba](https://github.com/softrams/bulwark/commit/3b492ba39302894bfa0120bc0cfb1f99861362ac))
* **deps:** bump @angular/common from 11.0.0 to 11.0.9 in /frontend ([0d79621](https://github.com/softrams/bulwark/commit/0d79621386d914371d0fb416785ef3f07983a12f))
* **deps:** bump @angular/compiler from 11.0.0 to 11.2.8 in /frontend ([7c5ad50](https://github.com/softrams/bulwark/commit/7c5ad5021efc04fa2d2a6b0784bafa290e8f108a))
* **deps:** bump @angular/core from 11.0.0 to 11.2.5 in /frontend ([025d6fd](https://github.com/softrams/bulwark/commit/025d6fd82202b3cd2fd96433f2bdfb29d64d243a))
* **deps:** bump @angular/forms from 11.0.0 to 11.2.7 in /frontend ([5d79f0f](https://github.com/softrams/bulwark/commit/5d79f0fd3991c6c56c5899587728ac97e148a376))
* **deps:** bump @angular/platform-browser in /frontend ([5fe50eb](https://github.com/softrams/bulwark/commit/5fe50eb8bf30340ffaced73169378afeb8b0ab15))
* **deps:** bump @angular/platform-browser in /frontend ([9d1d6dd](https://github.com/softrams/bulwark/commit/9d1d6dd452f5b03e30d42c92fdf3cab3b1f68798))
* **deps:** bump @angular/platform-browser-dynamic in /frontend ([036932f](https://github.com/softrams/bulwark/commit/036932f15f0c8624e1d9a7d1da3b7f523aeac175))
* **deps:** bump @angular/router from 11.0.0 to 11.2.7 in /frontend ([30d45ca](https://github.com/softrams/bulwark/commit/30d45caf0b72e8ecf98ecbcb4753ca669af9ac4f))
* **deps:** bump @angular/router from 11.2.7 to 11.2.8 in /frontend ([03c65e7](https://github.com/softrams/bulwark/commit/03c65e7ddf897f40663422c2e3d78f98e59c7e7d))
* **deps:** bump chart.js from 2.9.4 to 3.0.2 in /frontend ([79e8fa8](https://github.com/softrams/bulwark/commit/79e8fa81ff9a876dd7b20a5f0c56254340c4ee10))
* **deps:** bump core-js from 3.9.1 to 3.10.0 in /frontend ([67f34d9](https://github.com/softrams/bulwark/commit/67f34d9c28f6595409f9d3e171790136256d7c8e))
* **deps:** bump mime-types from 2.1.29 to 2.1.30 ([d0545a7](https://github.com/softrams/bulwark/commit/d0545a75e6e4cad7ee80ff0676760ed045353006))
* **deps:** bump primeng from 11.2.3 to 11.3.1 in /frontend ([f1e1563](https://github.com/softrams/bulwark/commit/f1e15633ea51dd83b366d5f922f3d24b5c66f4b8))
* **deps:** bump rxjs from 6.6.6 to 6.6.7 in /frontend ([1d9a659](https://github.com/softrams/bulwark/commit/1d9a659bd39c78fa2c3a689653febfeb71f95630))
* **deps:** bump typeorm from 0.2.31 to 0.2.32 ([a95c62e](https://github.com/softrams/bulwark/commit/a95c62e7c308bf165dad94eaae515a3215b4cd54))
* **deps:** bump typescript from 4.0.5 to 4.2.3 in /frontend ([c0c6b0e](https://github.com/softrams/bulwark/commit/c0c6b0e653d8788fc8d228b03c65127fc221806e))
* **deps:** bump zone.js from 0.10.3 to 0.11.4 in /frontend ([516ea44](https://github.com/softrams/bulwark/commit/516ea445faf8d0c0cf4dd8e3067b7abdf52eddcd))
* **deps-dev:** bump @angular/language-service in /frontend ([b0d9084](https://github.com/softrams/bulwark/commit/b0d90849663f71da7b11f4c88f8a26305deaaaf0))
* **deps-dev:** bump @angular/language-service in /frontend ([5b28665](https://github.com/softrams/bulwark/commit/5b286652a913b9a49f57f73a35a8dc18f553117b))
* **deps-dev:** bump @angular/language-service in /frontend ([83d258c](https://github.com/softrams/bulwark/commit/83d258ceb6c599072e798d4ff3f21254b0019f45))
* **deps-dev:** bump @babel/core from 7.13.10 to 7.13.13 ([d00445a](https://github.com/softrams/bulwark/commit/d00445a43fe181befdc9109eb34d7176b9b6a246))
* **deps-dev:** bump @babel/preset-env from 7.13.10 to 7.13.12 ([42d18a1](https://github.com/softrams/bulwark/commit/42d18a19f18733d277c5af5f5ac72746a3cca730))
* **deps-dev:** bump @commitlint/cli from 12.0.1 to 12.1.1 ([d983fe1](https://github.com/softrams/bulwark/commit/d983fe1fb15917481c5ec0f5fa908241d0505075))
* **deps-dev:** bump @commitlint/config-conventional ([f4ed18a](https://github.com/softrams/bulwark/commit/f4ed18a6127180ee0353543113d5e9b40310c42d))
* **deps-dev:** bump @types/jasmine from 3.6.6 to 3.6.7 in /frontend ([e43dbf0](https://github.com/softrams/bulwark/commit/e43dbf0689c6de24d4876edb01c576e80e5ebe53))
* **deps-dev:** bump @types/jasmine from 3.6.7 to 3.6.9 in /frontend ([2137158](https://github.com/softrams/bulwark/commit/21371582d0f8e4812a7084c58fb67c5b3b30765c))
* **deps-dev:** bump @types/jest from 26.0.20 to 26.0.21 ([44fba40](https://github.com/softrams/bulwark/commit/44fba40f43aaa55c682a066a31a4a6423c94fc04))
* **deps-dev:** bump @types/jest from 26.0.21 to 26.0.22 ([f6eb459](https://github.com/softrams/bulwark/commit/f6eb4597579c45ce7475631aee493bcd95de7ec9))
* **deps-dev:** bump @types/node from 14.14.33 to 14.14.34 in /frontend ([eb11d60](https://github.com/softrams/bulwark/commit/eb11d60b459a72f0925f47e2394ded1bbfa12dd3))
* **deps-dev:** bump @types/node from 14.14.34 to 14.14.35 in /frontend ([7a517b1](https://github.com/softrams/bulwark/commit/7a517b1566c77cc09491b94740b7b6b3757656fa))
* **deps-dev:** bump @types/node from 14.14.35 to 14.14.37 in /frontend ([ad90266](https://github.com/softrams/bulwark/commit/ad90266b452e5c4ebdb053f5f6cd920d00e8145c))
* **deps-dev:** bump highlight.js from 10.6.0 to 10.7.1 ([5e4501f](https://github.com/softrams/bulwark/commit/5e4501f463b6291f6fc7dd208e7a906df88366e7))
* **deps-dev:** bump highlight.js from 10.7.1 to 10.7.2 ([bffc257](https://github.com/softrams/bulwark/commit/bffc257d3af1d7af102fa8e65719495dbf4a28a3))
* **deps-dev:** bump husky from 5.1.3 to 5.2.0 ([0227507](https://github.com/softrams/bulwark/commit/02275075d135c05d91a183321bdcf97c7afb17eb))
* **deps-dev:** bump husky from 5.2.0 to 6.0.0 ([672a3e1](https://github.com/softrams/bulwark/commit/672a3e1f9dad542d588c12bd6c2d5928f78e1432))
* **deps-dev:** bump jasmine-core from 3.6.0 to 3.7.1 in /frontend ([8128fac](https://github.com/softrams/bulwark/commit/8128fac61dad7cbbf2498711c8d84d6250a4557b))
* **deps-dev:** bump karma from 6.1.1 to 6.2.0 in /frontend ([064857a](https://github.com/softrams/bulwark/commit/064857a24854b4aba7321cfa562df59c740071d5))
* **deps-dev:** bump karma from 6.2.0 to 6.3.1 in /frontend ([4a537cd](https://github.com/softrams/bulwark/commit/4a537cd4fa7b83ba8ddb7e1cd908a242cf7db46f))
* **deps-dev:** bump karma from 6.3.1 to 6.3.2 in /frontend ([8c9445b](https://github.com/softrams/bulwark/commit/8c9445b60d2d6b1c54a10b08101662d6f7f553ce))
* **deps-dev:** bump ts-jest from 26.5.3 to 26.5.4 ([aad407d](https://github.com/softrams/bulwark/commit/aad407d8fe5c64531b5fa8c5dd879e8db6df329a))
* **frontend/package.json:** angular forced update ([898b100](https://github.com/softrams/bulwark/commit/898b1005921ac4b0b20edb5175f9b4459da17cac))
* **frontend/package.json:** update @angular/cdk ([a01f024](https://github.com/softrams/bulwark/commit/a01f0247a1859af656815ab164845ad736abda9b))
* **package.json:** update y18n to fix security vulnerability ([e452c4c](https://github.com/softrams/bulwark/commit/e452c4c547ca303ac3eba57649f77aceb8c88068))

### [7.0.6](https://github.com/softrams/bulwark/compare/v7.0.5...v7.0.6) (2021-03-11)


### Bug Fixes

* **puppeteer.utility.ts:** fix format error with Puppeteer ([daaf8d2](https://github.com/softrams/bulwark/commit/daaf8d2deb76035e118faaafe480f5b9d16b5238)), closes [#629](https://github.com/softrams/bulwark/issues/629)


### Others

* **deps:** bump @angular-devkit/build-angular in /frontend ([c88e50a](https://github.com/softrams/bulwark/commit/c88e50af2002e99e86395674496db761a6430138))
* **deps:** bump @angular-devkit/build-angular in /frontend ([3dfa6e0](https://github.com/softrams/bulwark/commit/3dfa6e035a549cb31e63d84bbcb9e893c488f1d5))
* **deps:** bump @angular/cdk from 11.2.1 to 11.2.2 in /frontend ([a0a3c94](https://github.com/softrams/bulwark/commit/a0a3c94eed9bdfea8743697710d9354f2a7cd5dc))
* **deps:** bump @angular/cdk from 11.2.2 to 11.2.3 in /frontend ([a9337e1](https://github.com/softrams/bulwark/commit/a9337e1c10fa87e8f61e91b6e0f0abb619d44197))
* **deps:** bump @angular/cli from 11.2.1 to 11.2.2 in /frontend ([897c052](https://github.com/softrams/bulwark/commit/897c052470fbfc382854e82c750887094aef50f0))
* **deps:** bump @angular/cli from 11.2.2 to 11.2.3 in /frontend ([fa6f145](https://github.com/softrams/bulwark/commit/fa6f145953930de713512654a64fcfc54963ccec))
* **deps:** bump bcrypt from 5.0.0 to 5.0.1 ([0c7f08e](https://github.com/softrams/bulwark/commit/0c7f08e8bb54e26f5460a41199871fe2a0cb8ca4))
* **deps:** bump core-js from 3.9.0 to 3.9.1 in /frontend ([4d474b7](https://github.com/softrams/bulwark/commit/4d474b7e2186a0f7ed721f6f7d8400f22839560e))
* **deps:** bump jira2md from 2.0.5 to 2.1.0 ([cff79ba](https://github.com/softrams/bulwark/commit/cff79bad62b51b836d9e4d2401ee3912e7077f32))
* **deps:** bump ngx-markdown from 11.1.0 to 11.1.1 in /frontend ([c7160dc](https://github.com/softrams/bulwark/commit/c7160dc0b17d7de552f18a5f091a3f21a8fe8614))
* **deps:** bump nodemailer from 6.4.18 to 6.5.0 ([58e85a8](https://github.com/softrams/bulwark/commit/58e85a83da3fcc498311d551cd6dc31faca9f307))
* **deps:** bump puppeteer from 5.5.0 to 8.0.0 ([a8a60d6](https://github.com/softrams/bulwark/commit/a8a60d66d44be281cbfbb6baf186d7360b01f8ac))
* **deps:** bump rxjs from 6.6.3 to 6.6.6 in /frontend ([9278b10](https://github.com/softrams/bulwark/commit/9278b101c4b44b278a3e015485b20fa7ddd68b67))
* **deps-dev:** bump @angular/language-service in /frontend ([df4439d](https://github.com/softrams/bulwark/commit/df4439df1dee6b7514db04551f8449115f0ed03e))
* **deps-dev:** bump @angular/language-service in /frontend ([9b57502](https://github.com/softrams/bulwark/commit/9b57502039953995af5ce681aa3b54de41fee51d))
* **deps-dev:** bump @babel/core from 7.12.17 to 7.13.8 ([b748325](https://github.com/softrams/bulwark/commit/b7483259827b2ac61571841cbbf51cd171cfad95))
* **deps-dev:** bump @babel/preset-env from 7.12.17 to 7.13.8 ([2537815](https://github.com/softrams/bulwark/commit/2537815a5a881f218c7a02923e9cde6a1d8c675b))
* **deps-dev:** bump @babel/preset-env from 7.13.8 to 7.13.9 ([fa8c224](https://github.com/softrams/bulwark/commit/fa8c2244dcb419de8cf9f380d25000d88778587d))
* **deps-dev:** bump @babel/preset-typescript from 7.12.17 to 7.13.0 ([ff119ee](https://github.com/softrams/bulwark/commit/ff119eefe5cefdacc918995f3e2f132820bdda96))
* **deps-dev:** bump @commitlint/cli from 11.0.0 to 12.0.1 ([e27f94d](https://github.com/softrams/bulwark/commit/e27f94d5a46911009511a18cdee24939aa617043))
* **deps-dev:** bump @commitlint/config-conventional ([6a5dfff](https://github.com/softrams/bulwark/commit/6a5dffff69e07eb6448963f431aa18a31c03656f))
* **deps-dev:** bump @types/jasmine from 3.6.4 to 3.6.6 in /frontend ([74caec6](https://github.com/softrams/bulwark/commit/74caec62fcec3032a43d3d41464de691934467c5))
* **deps-dev:** bump @types/node from 14.14.31 to 14.14.32 in /frontend ([bec5d54](https://github.com/softrams/bulwark/commit/bec5d54d346255624ab3230564972dd28fe7f032))
* **deps-dev:** bump husky from 5.1.0 to 5.1.2 ([f1f788d](https://github.com/softrams/bulwark/commit/f1f788d22df97cc5fb88a0885a5d5241e0379be4))
* **deps-dev:** bump husky from 5.1.2 to 5.1.3 ([c70aba1](https://github.com/softrams/bulwark/commit/c70aba1d96c51724a983fa463b2378e721513673))
* **deps-dev:** bump ts-jest from 26.5.1 to 26.5.2 ([acbdebf](https://github.com/softrams/bulwark/commit/acbdebf3613a1eeb25c9e32c56085b74c2c3e9b4))
* **deps-dev:** bump ts-jest from 26.5.2 to 26.5.3 ([e781e86](https://github.com/softrams/bulwark/commit/e781e86ce1b5067a43d2befd0941e77fe5aa4cb1))
* **deps-dev:** bump typescript from 4.1.5 to 4.2.2 ([8667aff](https://github.com/softrams/bulwark/commit/8667aff32502288037d054e9a18cead6f353ea12))
* **deps-dev:** bump typescript from 4.2.2 to 4.2.3 ([20cb44c](https://github.com/softrams/bulwark/commit/20cb44c188967bc96ba16c4fb8aa87abd845b9cd))
* **package.json:** fixing conflicts ([3555d42](https://github.com/softrams/bulwark/commit/3555d42965c32956d930ccf9a78afa56c72fbbcf))

### [7.0.5](https://github.com/softrams/bulwark/compare/v7.0.4...v7.0.5) (2021-02-25)


### Bug Fixes

* **report component:** fix pdf bug ([32f49cf](https://github.com/softrams/bulwark/commit/32f49cf954676990bbe20375effd7fdc852260da)), closes [#630](https://github.com/softrams/bulwark/issues/630)


### Others

* **deps:** bump @angular-devkit/build-angular in /frontend ([d0d3aa6](https://github.com/softrams/bulwark/commit/d0d3aa6222b3f42270643b507a2f84b46d6348d8))
* **deps:** bump @angular-devkit/build-angular in /frontend ([06a7952](https://github.com/softrams/bulwark/commit/06a7952a6c6ded4d252d9eae4e48ca9f200d68ce))
* **deps:** bump @angular/cdk from 11.1.2 to 11.2.0 in /frontend ([50f4127](https://github.com/softrams/bulwark/commit/50f41271566127f54ce9bcc76044a1078e7823c0))
* **deps:** bump @angular/cdk from 11.2.0 to 11.2.1 in /frontend ([9183a72](https://github.com/softrams/bulwark/commit/9183a7203289d432ed540f2cfa6227f153f19d4b))
* **deps:** bump @angular/cli from 11.1.4 to 11.2.0 in /frontend ([5efdefd](https://github.com/softrams/bulwark/commit/5efdefdd07dc0319054bf78784c0c9e3edb9ee7c))
* **deps:** bump @angular/cli from 11.2.0 to 11.2.1 in /frontend ([4f33044](https://github.com/softrams/bulwark/commit/4f33044754b8591ba79652418300ea1f984449bd))
* **deps:** bump @ng-select/ng-select from 6.0.0 to 6.1.0 in /frontend ([2ed6465](https://github.com/softrams/bulwark/commit/2ed64654f6a235c50da8901bd74f7e32f21d4622))
* **deps:** bump concurrently from 5.3.0 to 6.0.0 ([710b652](https://github.com/softrams/bulwark/commit/710b652ddcc0651f8943f25e6fca6461f09e3952))
* **deps:** bump core-js from 3.8.3 to 3.9.0 in /frontend ([58d28ef](https://github.com/softrams/bulwark/commit/58d28ef00548c2919c8119a3850b3f85e2fa63ff))
* **deps:** bump mime-types from 2.1.28 to 2.1.29 ([a1b5ad9](https://github.com/softrams/bulwark/commit/a1b5ad9e8d60d95a06e55e400e4765f179a2b694))
* **deps:** bump ngx-markdown from 11.0.1 to 11.1.0 in /frontend ([589fe38](https://github.com/softrams/bulwark/commit/589fe38acb5facc458c579f75fdada71ca62c0b0))
* **deps:** bump nodemailer from 6.4.17 to 6.4.18 ([81f845c](https://github.com/softrams/bulwark/commit/81f845ce080047191a3e61c55a6b6b9311ef1f55))
* **deps:** bump primeng from 11.2.0 to 11.2.1 in /frontend ([ae7815f](https://github.com/softrams/bulwark/commit/ae7815fa8ffe9ac76e581c0e1a696a537a3d07dc))
* **deps:** bump primeng from 11.2.1 to 11.2.2 in /frontend ([22bc78e](https://github.com/softrams/bulwark/commit/22bc78e64ec67d731c3daccb1509ca561b5a8ce7))
* **deps:** bump primeng from 11.2.2 to 11.2.3 in /frontend ([0cef0b7](https://github.com/softrams/bulwark/commit/0cef0b7cdda0d0986319823a0c8dfa6069cece78))
* **deps:** bump typeorm from 0.2.30 to 0.2.31 ([07baf54](https://github.com/softrams/bulwark/commit/07baf546f05187b28d5e03142487ca17ab9a7f88))
* **deps:** bump typescript from 4.0.5 to 4.0.7 in /frontend ([3d72b16](https://github.com/softrams/bulwark/commit/3d72b16035e92adbe219b0e48a7694c26a8d2ddf))
* **deps-dev:** bump @angular/language-service in /frontend ([b7c03b0](https://github.com/softrams/bulwark/commit/b7c03b03ec2b769afe5fbc68d5552f7b475ca6f0))
* **deps-dev:** bump @angular/language-service in /frontend ([b914a9d](https://github.com/softrams/bulwark/commit/b914a9d1f4178f1e37a10a66efe08829e3c8c4e4))
* **deps-dev:** bump @babel/core from 7.12.13 to 7.12.16 ([0c682df](https://github.com/softrams/bulwark/commit/0c682df0f1ae8b73645f41b18ad5b8dce29014e3))
* **deps-dev:** bump @babel/core from 7.12.16 to 7.12.17 ([49dd4d4](https://github.com/softrams/bulwark/commit/49dd4d4d41a6b869fda026b8422a8febafaf7f1b))
* **deps-dev:** bump @babel/preset-env from 7.12.13 to 7.12.16 ([eb6f370](https://github.com/softrams/bulwark/commit/eb6f37013bf27789dd989ae25899345076515c1e))
* **deps-dev:** bump @babel/preset-env from 7.12.16 to 7.12.17 ([a1ddf66](https://github.com/softrams/bulwark/commit/a1ddf66ea5c72b8db3df7385ca35f4026d88829e))
* **deps-dev:** bump @babel/preset-typescript from 7.12.13 to 7.12.16 ([0875b9c](https://github.com/softrams/bulwark/commit/0875b9cc5f293bf13542195043d1a826239d6a1a))
* **deps-dev:** bump @babel/preset-typescript from 7.12.16 to 7.12.17 ([5096b4f](https://github.com/softrams/bulwark/commit/5096b4f2314a3382d0afeb0bcbfd4453bda6e65a))
* **deps-dev:** bump @types/jasmine from 3.6.3 to 3.6.4 in /frontend ([7b4fb70](https://github.com/softrams/bulwark/commit/7b4fb70051bd7af9cfb91bf58bfe422819bd48d3))
* **deps-dev:** bump @types/node from 14.14.25 to 14.14.28 in /frontend ([5219d46](https://github.com/softrams/bulwark/commit/5219d46e6f9f0777c9695d968bac298539ee8b8b))
* **deps-dev:** bump @types/node from 14.14.28 to 14.14.31 in /frontend ([e1ffb08](https://github.com/softrams/bulwark/commit/e1ffb08ac0887bb3c947f71edcbc815bda3a7fb3))
* **deps-dev:** bump husky from 4.3.8 to 5.0.9 ([760fc1f](https://github.com/softrams/bulwark/commit/760fc1f6e5e8dc05392c54715c7d1e99e51a5a72))
* **deps-dev:** bump husky from 5.0.9 to 5.1.0 ([b0f7733](https://github.com/softrams/bulwark/commit/b0f7733bfecf5056290129d413d206e06066bd09))
* **deps-dev:** bump karma from 6.1.0 to 6.1.1 in /frontend ([dab7567](https://github.com/softrams/bulwark/commit/dab75670900e43c74286b084189c942b7bcdbc50))
* **deps-dev:** bump sqlite3 from 5.0.1 to 5.0.2 ([269859e](https://github.com/softrams/bulwark/commit/269859edef5dca35beb9c9b5c07b6b300cb73ecb))
* **deps-dev:** bump standard-version from 9.1.0 to 9.1.1 ([4a546fa](https://github.com/softrams/bulwark/commit/4a546fad84f7eabecee3fcb070f95211a4acb25d))
* **deps-dev:** bump ts-jest from 26.5.0 to 26.5.1 ([f7fc6d3](https://github.com/softrams/bulwark/commit/f7fc6d30c1bd87595b8b1119df83e8b9b3e20118))
* **deps-dev:** bump typescript from 4.1.3 to 4.1.5 ([979eddb](https://github.com/softrams/bulwark/commit/979eddba0e897528ba7b9ebeeb9ea7fbe35d3253))
* **package.json:** update master with main ([29bc8b8](https://github.com/softrams/bulwark/commit/29bc8b8a75d9889ace85566dcd8b68070369f5c4))


### Build System

* **dependabot.yml:** removing Bill from dependabot config ([c8b2f9d](https://github.com/softrams/bulwark/commit/c8b2f9de379ae554c9ce21366f118e8ef3b8a3b6))


### Docs

* **readme.md:** update README.md ([3b778d2](https://github.com/softrams/bulwark/commit/3b778d29424bcbe6f40f8d4d37d3e9a9ff137821))

### [7.0.4](https://github.com/softrams/bulwark/compare/v7.0.3...v7.0.4) (2021-02-10)


### Bug Fixes

* **assessment.controller.ts:** fixed authz issue ([7436e41](https://github.com/softrams/bulwark/commit/7436e41cc38fce6e34031aa43d7de81eb82cd1e2))

### [7.0.3](https://github.com/softrams/bulwark/compare/v7.0.2...v7.0.3) (2021-02-10)


### Bug Fixes

* **assessment/vulnerability.controller.ts:** fixed authz tester roles issue with vulnerabilities ([a2febf7](https://github.com/softrams/bulwark/commit/a2febf7314b7bc349cc97ba696d106472e5f25da))

### [7.0.2](https://github.com/softrams/bulwark/compare/v7.0.1...v7.0.2) (2021-02-10)


### Bug Fixes

* **vulnerability.controller.ts:** fixed tester access error ([ddc7c02](https://github.com/softrams/bulwark/commit/ddc7c02c6419cc63c8182b486bee0152c6b786eb))

### [7.0.1](https://github.com/softrams/bulwark/compare/v7.0.0...v7.0.1) (2021-02-10)


### Bug Fixes

* **src:** fixed tester authz. Fixed no organization in system with admin. fixed the config script ([ff4696e](https://github.com/softrams/bulwark/commit/ff4696e88fcb7dcf892f9639dfc7d63d96500595))

## [7.0.0](https://github.com/softrams/bulwark/compare/v6.4.8...v7.0.0) (2021-02-10)


### ⚠ BREAKING CHANGES

* **api-key.controller:** New `API_KEY` column for secret key
* **api-key.controller:** New API_KEY table with many-to-one relation with the User table
* **package.json:** Added additional process env variables.  Puppeteer functionality has been updated
to use these new process env variables.
* **authentication/authorization for admins:** Updated many-to-many relationship between Team and User entities
* **team.ts, roles-enum.ts, config.controller:** Added Team entity to database
* **reportaudit.ts:** Added new database table

### Features

* **api-key.controller:** added `SecretKey` column to API_KEY table ([6bdfaca](https://github.com/softrams/bulwark/commit/6bdfaca609d71ea6c64bb844411747e1160d8092)), closes [#483](https://github.com/softrams/bulwark/issues/483)
* **api-key.controller:** implement API key integration ([bb34a64](https://github.com/softrams/bulwark/commit/bb34a6463b11d6122fefcf19d71b3186e7c3c8e1)), closes [#483](https://github.com/softrams/bulwark/issues/483)
* **assessment.controller:** wire roles into assessment controller and component ([0660050](https://github.com/softrams/bulwark/commit/06600501d7e9a93acd6d1817ec2d820bd0f657e6)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **asset team entities:** add many-to-many relationship between Team and Asset ([5d27d5c](https://github.com/softrams/bulwark/commit/5d27d5cc972380a4d1825f4341df67e3d4850593)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **authentication/authorization for admins:** update many-to-many relationship user and teams ([f22e7de](https://github.com/softrams/bulwark/commit/f22e7dee01f667345e558ea96c84ad917b2fb63a)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **dashboard.component org-form:** add role checks to org controller api's and angular components ([64de7a0](https://github.com/softrams/bulwark/commit/64de7a0dffd8136af05c254ed7d2941c47851994)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **jwt.middleware.ts:** integrate roles into jwt middleware ([54e4647](https://github.com/softrams/bulwark/commit/54e46476441ce6c0cde3e89b80606026694f484a)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **organization team entity:** add many-to-one relation ship between Team and Organization Entities ([1dfc435](https://github.com/softrams/bulwark/commit/1dfc43514c37e284b182714b98365325bfc1300a)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **report-audit.controller:** implement report auditing function ([7a86b96](https://github.com/softrams/bulwark/commit/7a86b96ca6f68502a795e7623628d0735d2206b3)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **reportaudit.ts:** create ReportAudit table.  Implement insert function ([a0e766d](https://github.com/softrams/bulwark/commit/a0e766d1e26b56647ed6b01d3f52ba01cb8a1fe6)), closes [#497](https://github.com/softrams/bulwark/issues/497)
* **role.utility.ts:** implement role checking for organization ([ff8b5b8](https://github.com/softrams/bulwark/commit/ff8b5b845bfb3f720c5b5b0aa89e7067bccc3d86)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **tea-form.component:** initial commit for team-form component ([67a4e6f](https://github.com/softrams/bulwark/commit/67a4e6fd623baa610e8f56512f24a116900c5f68)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **team.component:** implement team component ([ad4d045](https://github.com/softrams/bulwark/commit/ad4d045eb7d5d4c301447de06f1a156a48230891)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **team.component:** wire team form to api ([5a2fc4e](https://github.com/softrams/bulwark/commit/5a2fc4eb61c2772bb17e0301a42025935f741341)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **team.controller:** implement additional Team APIs ([71292f1](https://github.com/softrams/bulwark/commit/71292f132e432c984a5750a21651c36d1d5e1117)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **team.controller:** implement API routes for getMyTeams and deleteTeam ([842ca1e](https://github.com/softrams/bulwark/commit/842ca1efa23980ef27d997a36f67960e85aa3db2)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **team.controller:** implement route functions for Add/Remove team assets ([6e68127](https://github.com/softrams/bulwark/commit/6e68127aee505d45a523f3ef585d6b31ced75956)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **team.controller:** implment updateTeamInfo function ([c7761ea](https://github.com/softrams/bulwark/commit/c7761ea57d83a9e98cbdf9fc479371f729a697a5)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **team.controller.ts:** added helper functions to team controller ([13a2cca](https://github.com/softrams/bulwark/commit/13a2ccaa9153e0e45c505efa4cddf7bb919397e1)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **team.ts:** remove single asset column ([89e1e84](https://github.com/softrams/bulwark/commit/89e1e840461921486a3984412260d322c9a8a89d)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **team.ts, roles-enum.ts, config.controller:** add Team entity to database ([71469cc](https://github.com/softrams/bulwark/commit/71469ccaae2620e0f7b686828579a813d26431f2)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **user-management:** update user management component.  Update team component ([4fa4425](https://github.com/softrams/bulwark/commit/4fa4425444f4ca423f7e5abe3867513a2046ffd5)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **user-management.component:** initial commit for user-management.component ([7ca32e2](https://github.com/softrams/bulwark/commit/7ca32e2d68a7e4ba5899dde974e5e5b7f26446f5)), closes [#553](https://github.com/softrams/bulwark/issues/553)
* **user-management.component:** initial commit of user-management template ([b373629](https://github.com/softrams/bulwark/commit/b37362934ddbf9a6a5015fc263715e4da768cac1)), closes [#554](https://github.com/softrams/bulwark/issues/554)
* **user-management.component:** updated user-management.component template and component ([44bd8ff](https://github.com/softrams/bulwark/commit/44bd8ffb8d41645f5014e7bf86b573f8656625b5)), closes [#553](https://github.com/softrams/bulwark/issues/553)
* **user-profile.component:** add teams to user profile ([aba66fc](https://github.com/softrams/bulwark/commit/aba66fc231ea1e3f0cbade7a4228bce3e1159294)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **user.controller.ts:** implement API to create a user ([37aea71](https://github.com/softrams/bulwark/commit/37aea71654a8245f1e82aa78f8bb601e2de71a6d)), closes [#553](https://github.com/softrams/bulwark/issues/553)
* **vuln.controller:** wire roles into vuln controller and component ([d4db2fc](https://github.com/softrams/bulwark/commit/d4db2fccea945b9269bb4d3147dd0cf0125f248a)), closes [#484](https://github.com/softrams/bulwark/issues/484)


### Bug Fixes

* no Vulns Blank page ([6a4247a](https://github.com/softrams/bulwark/commit/6a4247a7eef8fe7cb5e667720bf6b25da6173067))
* **app.ts:** cSP error fix ([b6a02f8](https://github.com/softrams/bulwark/commit/b6a02f8c5e6943cbae4735c43d0f6fb3fd96ff13)), closes [#566](https://github.com/softrams/bulwark/issues/566)
* **app.ts:** fix CSP errors ([594628c](https://github.com/softrams/bulwark/commit/594628c0672cfbe647be21a2fbefe7b7120ef0ff)), closes [#566](https://github.com/softrams/bulwark/issues/566)
* **docker-compose.yml:** fix docker-compose bug ([58a549f](https://github.com/softrams/bulwark/commit/58a549f397d54fab63352b20b426fdbb4439c090))
* **fix csp errors:** cSP errors were generated in console ([801c9a3](https://github.com/softrams/bulwark/commit/801c9a3742ffb515a90880147d2d1ab97c67774f))
* **frontend/package.json:** update script to use different angular envv ([8c2481e](https://github.com/softrams/bulwark/commit/8c2481ec7297033ea27a85690c80e89bed89ebfe)), closes [#567](https://github.com/softrams/bulwark/issues/567)
* **package.json:** updated package.json script ([3e201eb](https://github.com/softrams/bulwark/commit/3e201eb9b14facd7808874d69604c4beee9c909e)), closes [#567](https://github.com/softrams/bulwark/issues/567)
* **role.utility.ts:** fixed role bug ([24db31a](https://github.com/softrams/bulwark/commit/24db31af83bf687c74ba10ebef0c7dcbad6f6cc5))
* **setenv.ts:** implement dynamic port and IP address based on env var ([f52e696](https://github.com/softrams/bulwark/commit/f52e69673cdbf0df0a533437d62f198d8afb69b9)), closes [#567](https://github.com/softrams/bulwark/issues/567)
* **team-form.component:** fix undefined bug if team does not have org ([64e15f1](https://github.com/softrams/bulwark/commit/64e15f1e168327c900f70e24d7a08ddebc2559be))


### Tests

* **api-key.controller.spec.ts:** implement unit tests for API key controller ([48df0ef](https://github.com/softrams/bulwark/commit/48df0efa8561be549e88e4306692f58f5c44a0da)), closes [#483](https://github.com/softrams/bulwark/issues/483)
* **asset.controller:** implemented roles into asset controller ([a63b8dd](https://github.com/softrams/bulwark/commit/a63b8dd53c4d36483ceed188c717af6d06561c5e)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **config.controller.spec.ts:** implement unit tests for Teams ([b95e398](https://github.com/softrams/bulwark/commit/b95e39804f7be517262e4fc6a7961ce1d54b184f)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **team.controller:** fix broken unit tests ([ad9c3c9](https://github.com/softrams/bulwark/commit/ad9c3c911456b36b65ed486bd044df7465230d99)), closes [#484](https://github.com/softrams/bulwark/issues/484)


### Others

* **.prettierignore:** fix merge conflict ([953def8](https://github.com/softrams/bulwark/commit/953def8b4eb56227d4e486e3357c7193256249b9))
* **.prettierignore:** fix merge conflicts. fix prettier config error ([baf5767](https://github.com/softrams/bulwark/commit/baf57670053079ddfd52435a2a5e19297ab9efde)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **deps:** bump @angular-devkit/build-angular in /frontend ([c2c2184](https://github.com/softrams/bulwark/commit/c2c2184b007eb7b85b33af24db0aba2c938a1be0))
* **deps:** bump @angular-devkit/build-angular in /frontend ([7ec05d3](https://github.com/softrams/bulwark/commit/7ec05d34b112779549bd41506eb6de17dc8510f4))
* **deps:** bump @angular-devkit/build-angular in /frontend ([c100c14](https://github.com/softrams/bulwark/commit/c100c147ca781676382a82e86eb3e70112f350f2))
* **deps:** bump @angular/cdk from 11.0.3 to 11.0.4 in /frontend ([4e2db70](https://github.com/softrams/bulwark/commit/4e2db700078e161eb0a80189801b49bfc765264d))
* **deps:** bump @angular/cdk from 11.0.4 to 11.1.0 in /frontend ([d4829cc](https://github.com/softrams/bulwark/commit/d4829ccf8c5b4303427696fa4b369793326e7b6b))
* **deps:** bump @angular/cdk from 11.1.0 to 11.1.2 in /frontend ([63ee378](https://github.com/softrams/bulwark/commit/63ee378b8c750210053cde47a4ac765156a14a05))
* **deps:** bump @angular/cli from 11.0.6 to 11.0.7 in /frontend ([22fd855](https://github.com/softrams/bulwark/commit/22fd85561ef8d1147f977e63fdd44f85f838861e))
* **deps:** bump @angular/cli from 11.0.7 to 11.1.1 in /frontend ([df3c6c5](https://github.com/softrams/bulwark/commit/df3c6c561e57fd5eceee1d455e82b44619dd17ab))
* **deps:** bump @angular/cli from 11.1.1 to 11.1.4 in /frontend ([a3ecf96](https://github.com/softrams/bulwark/commit/a3ecf9652a037a8ed7bb30c5a9b6b6c9c6f258f9))
* **deps:** bump @ng-select/ng-select from 5.0.15 to 5.1.0 in /frontend ([0d1c7a7](https://github.com/softrams/bulwark/commit/0d1c7a79e2e504e0aa77cc88741f2b31cc29ab3b))
* **deps:** bump @ng-select/ng-select from 5.1.0 to 6.0.0 in /frontend ([d4fa635](https://github.com/softrams/bulwark/commit/d4fa635cf360959565a62b45d676d3b5c3875cce))
* **deps:** bump @types/express from 4.17.9 to 4.17.11 ([fcfd3ee](https://github.com/softrams/bulwark/commit/fcfd3eef5ce03f04bc1ca4495308e867f476275a))
* **deps:** bump class-validator from 0.12.2 to 0.13.1 ([404493a](https://github.com/softrams/bulwark/commit/404493abb16837298ac8f5863d53e22a68e808d9))
* **deps:** bump core-js from 3.8.2 to 3.8.3 in /frontend ([1aff860](https://github.com/softrams/bulwark/commit/1aff860c3dacbe905bea8bc44e6aede86af343d9))
* **deps:** bump helmet from 4.3.1 to 4.4.0 ([349d1b6](https://github.com/softrams/bulwark/commit/349d1b68976d36232f3f0be86474dc818b78df5e))
* **deps:** bump helmet from 4.4.0 to 4.4.1 ([92b5ae9](https://github.com/softrams/bulwark/commit/92b5ae98ba0bdee4a218805a8042a61c2d14538e))
* **deps:** bump jira2md from 2.0.4 to 2.0.5 ([2e0fd53](https://github.com/softrams/bulwark/commit/2e0fd532ad67c33f545bc225ac5103ecfe0fa3e9))
* **deps:** bump primeng from 11.0.0 to 11.1.0 in /frontend ([474f4aa](https://github.com/softrams/bulwark/commit/474f4aafec9e3b4c75a5e8621fa8d9fc047bf622))
* **deps:** bump primeng from 11.1.0 to 11.2.0 in /frontend ([697aa33](https://github.com/softrams/bulwark/commit/697aa33ad9f8eed67f1a2bc09d3e9ba562a131ae))
* **deps:** bump typeorm from 0.2.29 to 0.2.30 ([a3c091c](https://github.com/softrams/bulwark/commit/a3c091c54ad044980eed8c1e8d7434960a77618e))
* **deps-dev:** bump @angular/language-service in /frontend ([b104657](https://github.com/softrams/bulwark/commit/b104657d512caaaa0ed3c77f09d78774e534e0b7))
* **deps-dev:** bump @angular/language-service in /frontend ([5dc85dd](https://github.com/softrams/bulwark/commit/5dc85dd16c9ac7765960e21a8b1b738367be7fd7))
* **deps-dev:** bump @angular/language-service in /frontend ([f418dd1](https://github.com/softrams/bulwark/commit/f418dd1e0c4d79a2d8651832b099b2b5d18990cf))
* **deps-dev:** bump @babel/core from 7.12.10 to 7.12.13 ([6d7cf75](https://github.com/softrams/bulwark/commit/6d7cf7516b591881a5b9f3e65e776bc8c5acfd22))
* **deps-dev:** bump @babel/preset-env from 7.12.11 to 7.12.13 ([042cbb2](https://github.com/softrams/bulwark/commit/042cbb25c6f9b976ec7caff7a3dc52c6c359c39d))
* **deps-dev:** bump @babel/preset-typescript from 7.12.7 to 7.12.13 ([acaa0e7](https://github.com/softrams/bulwark/commit/acaa0e73b1c28ae2ad30b34d7c14e0ad42d59137))
* **deps-dev:** bump @types/jasmine from 3.6.2 to 3.6.3 in /frontend ([3eb9afa](https://github.com/softrams/bulwark/commit/3eb9afa34b92a973d875f6d4638f327accf4c5b2))
* **deps-dev:** bump @types/node from 14.14.20 to 14.14.21 in /frontend ([6d5d746](https://github.com/softrams/bulwark/commit/6d5d7462e132f847a7b13515d263bde71085a061))
* **deps-dev:** bump @types/node from 14.14.21 to 14.14.22 in /frontend ([8810309](https://github.com/softrams/bulwark/commit/8810309ee41068fcdb5ffbf0346ab72d6204b290))
* **deps-dev:** bump @types/node from 14.14.22 to 14.14.25 in /frontend ([90f8f93](https://github.com/softrams/bulwark/commit/90f8f937247ea4490909bc444f6fa18a23cf98ad))
* **deps-dev:** bump highlight.js from 10.5.0 to 10.6.0 ([a0c45be](https://github.com/softrams/bulwark/commit/a0c45be652e787029694d4055f63ce7019d2608d))
* **deps-dev:** bump husky from 4.3.7 to 4.3.8 ([c2ea443](https://github.com/softrams/bulwark/commit/c2ea443fbbdcea71836db4a32e97add1e4f4f160))
* **deps-dev:** bump karma from 5.2.3 to 6.0.0 in /frontend ([4e6b2b5](https://github.com/softrams/bulwark/commit/4e6b2b5524a3637798344ce2ddda2caa64d5cc75))
* **deps-dev:** bump karma from 6.0.0 to 6.0.1 in /frontend ([6c5f2ce](https://github.com/softrams/bulwark/commit/6c5f2ce9aea265d7ddddbe7402eb2dfbcf9444d3))
* **deps-dev:** bump karma from 6.0.1 to 6.1.0 in /frontend ([48c7b74](https://github.com/softrams/bulwark/commit/48c7b74f473478995251a6854f28b4ee482ffe53))
* **deps-dev:** bump lint-staged from 10.5.3 to 10.5.4 ([2e8aa42](https://github.com/softrams/bulwark/commit/2e8aa4249744a846e79c286b887ef6651181b87b))
* **deps-dev:** bump ts-jest from 26.4.4 to 26.5.0 ([9232d26](https://github.com/softrams/bulwark/commit/9232d2657c228f71839baed49915994344d4d910))
* **fixing merge conflicts:** fix merge conflicts ([a2c2148](https://github.com/softrams/bulwark/commit/a2c21483fd61227a8afa8dac10f9d197d2cfbd97)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **global:** merge [#553](https://github.com/softrams/bulwark/issues/553) branch into roles ([28414e1](https://github.com/softrams/bulwark/commit/28414e11348056d7c46ad35ae6c899e95b27b29e)), closes [#484](https://github.com/softrams/bulwark/issues/484)
* **merge conflicts:** fix merge conflicts ([a431af0](https://github.com/softrams/bulwark/commit/a431af0e9efc8a1d0425c690c615ab4d0c1ab30e)), closes [#567](https://github.com/softrams/bulwark/issues/567)
* **setenv.ts:** update console.info and documentation ([3aa0e94](https://github.com/softrams/bulwark/commit/3aa0e94b526932fdf70fde6901e5a2ffa33a4a55)), closes [#567](https://github.com/softrams/bulwark/issues/567)


### Docs

* **readme.md:** update README.md ([ba3a77d](https://github.com/softrams/bulwark/commit/ba3a77d138bc43e81b119ef0c781c121b3d580fb)), closes [#484](https://github.com/softrams/bulwark/issues/484)


### Code Refactoring

* **config.controller:** remove global teams ([ab8bd9b](https://github.com/softrams/bulwark/commit/ab8bd9b8be68aa951c628eda651a5ca446a5edfe)), closes [#484](https://github.com/softrams/bulwark/issues/484)


### Build System

* **.gitignore:** delete generated angular env files ([3be81a2](https://github.com/softrams/bulwark/commit/3be81a2395c933efd71e1b6b8453b84ad34fc050)), closes [#567](https://github.com/softrams/bulwark/issues/567)

### [6.4.8](https://github.com/softrams/bulwark/compare/v6.4.7...v6.4.8) (2021-01-14)


### Build System

* **dockerfile:** remove unneeded packages ([b6c9de1](https://github.com/softrams/bulwark/commit/b6c9de185359cf3c7028492d780f670484a83f53))

### [6.4.7](https://github.com/softrams/bulwark/compare/v6.4.6...v6.4.7) (2021-01-14)


### Build System

* **dockerfile:** add python to container ([6224469](https://github.com/softrams/bulwark/commit/62244692a50beb155073192656f2a03456dc61ff))

### [6.4.6](https://github.com/softrams/bulwark/compare/v6.4.5...v6.4.6) (2021-01-14)


### Build System

* **dockerfile:** add rimraf library ([70e63ba](https://github.com/softrams/bulwark/commit/70e63bab5787d5d40f81c402ea2a6653311e2e52))

### [6.4.5](https://github.com/softrams/bulwark/compare/v6.4.4...v6.4.5) (2021-01-14)


### Build System

* **dockerfile:** install typescript globally ([eac63c8](https://github.com/softrams/bulwark/commit/eac63c8d4a19668f2c3f6e70445a2f43360bd51f))

### [6.4.4](https://github.com/softrams/bulwark/compare/v6.4.3...v6.4.4) (2021-01-14)


### Build System

* **dockerfile:** root !== ROOT ([2f22d20](https://github.com/softrams/bulwark/commit/2f22d20fbc027e01427339fa068c3ab18ffe7f7b))

### [6.4.3](https://github.com/softrams/bulwark/compare/v6.4.2...v6.4.3) (2021-01-14)

### Build System

- **dockerfile:** add USER ROOT ([3bf6e0e](https://github.com/softrams/bulwark/commit/3bf6e0e240db62090fb1adf4b8aa2f4f3fb78284))
- **dockerfile:** update npm install ([ca447d3](https://github.com/softrams/bulwark/commit/ca447d35d1fc9cae2efe6b8876faa34df9ed1540))

### [6.4.2](https://github.com/softrams/bulwark/compare/v6.4.1...v6.4.2) (2021-01-12)

### Bug Fixes

- **vulnerability.component.html:** fixed Risk and Status undefined error ([bbc407f](https://github.com/softrams/bulwark/commit/bbc407fa03d3294744595dc26af0421f168c5589)), closes [#539](https://github.com/softrams/bulwark/issues/539)

### Others

- **package-lock.json:** commit package-lock.json ([22caf95](https://github.com/softrams/bulwark/commit/22caf95efd36ee10a477b5f5cf756f4697c776fc))

### [6.4.1](https://github.com/softrams/bulwark/compare/v6.4.0...v6.4.1) (2021-01-11)

### Others

- **deps:** bump @angular-devkit/build-angular in /frontend ([b388648](https://github.com/softrams/bulwark/commit/b388648a4314e9efba338c39ccbe0516319f5675))
- **deps:** bump @angular/cli from 11.0.5 to 11.0.6 in /frontend ([ca9ef69](https://github.com/softrams/bulwark/commit/ca9ef69a6e84607e8c8a47a6ff9ac1ca63e6d803))
- **deps:** bump @ng-select/ng-select in /frontend ([ade5b50](https://github.com/softrams/bulwark/commit/ade5b508303e8b13b174c918208125cb6c3bcd40))
- **deps:** bump tslib from 2.0.3 to 2.1.0 in /frontend ([45b481e](https://github.com/softrams/bulwark/commit/45b481eef0f7012f71c2f20da045251201ce75b8))
- **deps-dev:** bump @angular/language-service in /frontend ([0597a7f](https://github.com/softrams/bulwark/commit/0597a7fea71bdd31c0873630fa52a6f3959601cc))
- **deps-dev:** bump @types/jest from 26.0.19 to 26.0.20 ([eab0403](https://github.com/softrams/bulwark/commit/eab040333f752b96b970bf7fbb67781f3061dbb0))
- **deps-dev:** bump @types/node from 14.14.19 to 14.14.20 in /frontend ([6c95f9c](https://github.com/softrams/bulwark/commit/6c95f9c8994fb5d04881846f8465d7b4dcb45383))
- **deps-dev:** bump husky from 4.3.6 to 4.3.7 ([db63af4](https://github.com/softrams/bulwark/commit/db63af4c13f76386a6a7ad331aa62045ba4edfad))
- **deps-dev:** bump sqlite3 from 5.0.0 to 5.0.1 ([45e0a8c](https://github.com/softrams/bulwark/commit/45e0a8c4452e994728295e8f0ee4479c1d077b23))

## [6.4.0](https://github.com/softrams/bulwark/compare/v6.3.1...v6.4.0) (2021-01-04)

### Features

- **adminsitration area:** adding Administration Area ([e5d91b2](https://github.com/softrams/bulwark/commit/e5d91b21459a5460ea848d3530085596a15b7cbf)), closes [#491](https://github.com/softrams/bulwark/issues/491)
- **invite-user.component:** update look and feel of invite-user and settings component ([cdcf572](https://github.com/softrams/bulwark/commit/cdcf572ed6022ba5acd0e477f0580f8013e46349))
- **package.json:** add prettier pre-commit hook ([7602dfb](https://github.com/softrams/bulwark/commit/7602dfb39f95d0e4349ee8dde8da885508c17b7e)), closes [#509](https://github.com/softrams/bulwark/issues/509)
- **prettier:** adding prettier ([eb44eb1](https://github.com/softrams/bulwark/commit/eb44eb111f7d028a9282071ac67fe9b2a67b0b5d)), closes [#508](https://github.com/softrams/bulwark/issues/508)
- **prettier:** update prettier config ([ba2c5f1](https://github.com/softrams/bulwark/commit/ba2c5f188f0248d05231c4b5abe8c68ccf154219)), closes [#509](https://github.com/softrams/bulwark/issues/509)
- **report component:** color changes to pie chart ([7269d62](https://github.com/softrams/bulwark/commit/7269d6282c46a4284ad58dd008ca73f982c3deae)), closes [#487](https://github.com/softrams/bulwark/issues/487)
- **report component:** color changes to the pie chart ([707271e](https://github.com/softrams/bulwark/commit/707271e409b3be5a28731fedd6b88fac1a7f860d)), closes [#487](https://github.com/softrams/bulwark/issues/487)
- **report.component:** implement overall risk sort ([e31c76c](https://github.com/softrams/bulwark/commit/e31c76ce26f8ce22b3af616650414555cf1a1b1b)), closes [#482](https://github.com/softrams/bulwark/issues/482)

### Bug Fixes

- **assessments.component.ts:** fixed build break due to deprecated FilterUtils ([d7c2ae3](https://github.com/softrams/bulwark/commit/d7c2ae32cf274c27e1c55284e4765543d5449dbf))

### Others

- **assessments.component.ts:** remove library and console.log ([0cab4ea](https://github.com/softrams/bulwark/commit/0cab4ea553e6241a89df73d0c04e6c5154b45815))
- **deps:** bump @angular-devkit/build-angular in /frontend ([b33ce85](https://github.com/softrams/bulwark/commit/b33ce85f8b2e9199c3a12a3c7a8de5cd6f7d0d15))
- **deps:** bump @angular/cdk from 11.0.1 to 11.0.2 in /frontend ([49da433](https://github.com/softrams/bulwark/commit/49da433b38adb03d86aa0680e85019f01bfae331))
- **deps:** bump @angular/cdk from 11.0.2 to 11.0.3 in /frontend ([786c8f0](https://github.com/softrams/bulwark/commit/786c8f09d801cd8cd0a0a3758d65a23b121b334b))
- **deps:** bump @angular/cli from 11.0.3 to 11.0.5 in /frontend ([d9033e4](https://github.com/softrams/bulwark/commit/d9033e4306de09eff073cec9355c097b779c00e5))
- **deps:** bump @ng-select/ng-select from 5.0.9 to 5.0.11 in /frontend ([b1428ab](https://github.com/softrams/bulwark/commit/b1428ab991b37c18a3805caa237354be2239bf86))
- **deps:** bump @ng-select/ng-select in /frontend ([1cdc8ab](https://github.com/softrams/bulwark/commit/1cdc8ab676bbc2320eafe04d746d3bb2bce4382f))
- **deps:** bump core-js from 3.8.1 to 3.8.2 in /frontend ([6c05e06](https://github.com/softrams/bulwark/commit/6c05e06b90ef53ad168bbb7d638d23e62b38515b))
- **deps:** bump helmet from 4.2.0 to 4.3.1 ([2f0e7fb](https://github.com/softrams/bulwark/commit/2f0e7fbf405dcf4bf758f248fbc6e313a0279d72))
- **deps:** bump mime-types from 2.1.27 to 2.1.28 ([0c85c5f](https://github.com/softrams/bulwark/commit/0c85c5f9904219fb4dbf89eb935fe4a2208e05e3))
- **deps:** bump nodemailer from 6.4.16 to 6.4.17 ([3c7456d](https://github.com/softrams/bulwark/commit/3c7456df86e7dcc5c29ab8b6da3034ddaf04f07c))
- **deps:** bump primeng from 10.0.3 to 11.0.0 in /frontend ([992dc1a](https://github.com/softrams/bulwark/commit/992dc1a6c6d5d12c406f1cfd1fa1ba6eba65a6a4))
- **deps:** bump ts-node from 9.1.0 to 9.1.1 ([24f3afa](https://github.com/softrams/bulwark/commit/24f3afaec8a4e010e4382ce48243b37a7c3c3ad7))
- **deps:** bump uuid from 8.3.1 to 8.3.2 ([a9d5a1b](https://github.com/softrams/bulwark/commit/a9d5a1b3854043b2e4c2852a9056103de2f692a0))
- **deps-dev:** bump @angular/language-service in /frontend ([6b9bb89](https://github.com/softrams/bulwark/commit/6b9bb89cc1ece2f94bd3b1b186ea09159d524314))
- **deps-dev:** bump @angular/language-service in /frontend ([65f5818](https://github.com/softrams/bulwark/commit/65f5818de0ebe716348a99877e68b7fc8a676387))
- **deps-dev:** bump @babel/core from 7.12.9 to 7.12.10 ([ba5a326](https://github.com/softrams/bulwark/commit/ba5a32667b6b8c6a7b8a7c54bf2e8cedc3045b91))
- **deps-dev:** bump @babel/preset-env from 7.12.7 to 7.12.11 ([dde25dd](https://github.com/softrams/bulwark/commit/dde25dde0fd497552ca931c6dbd43c53eab95790))
- **deps-dev:** bump @types/jest from 26.0.16 to 26.0.19 ([463675c](https://github.com/softrams/bulwark/commit/463675cf2f763b534d16a070a780155c34742373))
- **deps-dev:** bump @types/node from 14.14.10 to 14.14.13 in /frontend ([424df1c](https://github.com/softrams/bulwark/commit/424df1c5566ac300c8237e90f56794ef06aad476))
- **deps-dev:** bump @types/node from 14.14.13 to 14.14.14 in /frontend ([5b61ed8](https://github.com/softrams/bulwark/commit/5b61ed8774a1130d954513d3fa788ca4d5ed588e))
- **deps-dev:** bump @types/node from 14.14.14 to 14.14.16 in /frontend ([d322e2d](https://github.com/softrams/bulwark/commit/d322e2d6316ec92dcdfcef1cf988468f618256f1))
- **deps-dev:** bump @types/node from 14.14.16 to 14.14.19 in /frontend ([9b41c20](https://github.com/softrams/bulwark/commit/9b41c20204699310a1b65a09a31b6052d5a68765))
- **deps-dev:** bump highlight.js from 10.4.1 to 10.5.0 ([2fbf9c6](https://github.com/softrams/bulwark/commit/2fbf9c69aace53f3abb55af007c70a6aacf71a46))
- **deps-dev:** bump husky from 4.3.0 to 4.3.6 ([7266035](https://github.com/softrams/bulwark/commit/7266035a5ecf43389c3d9f2f8b79c39866695cf3))
- **deps-dev:** bump karma from 5.1.1 to 5.2.3 in /frontend ([a58dbf9](https://github.com/softrams/bulwark/commit/a58dbf9af33270f5d8d9d153ce73cc9e1c74c9dd))
- **deps-dev:** bump mock-express-response from 0.2.2 to 0.3.0 ([e9588b8](https://github.com/softrams/bulwark/commit/e9588b884b6656aa59058c5de58bd539da61c6f0))
- **deps-dev:** bump standard-version from 9.0.0 to 9.1.0 ([a497d0e](https://github.com/softrams/bulwark/commit/a497d0e14d1fb8a9adebde6d2da836efde70e48f))
- **deps-dev:** bump ts-node from 9.0.0 to 9.1.1 in /frontend ([f18666b](https://github.com/softrams/bulwark/commit/f18666b4ccf5c8550ba6e94146673bed50a0d855))
- **deps-dev:** bump typescript from 4.1.2 to 4.1.3 ([29c5db5](https://github.com/softrams/bulwark/commit/29c5db53093cc51615eacc5ce2c3999987987aac))
- **report.component:** fix lint issue ([aca3ea9](https://github.com/softrams/bulwark/commit/aca3ea918f1c772d9907e10b8c476595ecfc1976)), closes [#482](https://github.com/softrams/bulwark/issues/482)

### Docs

- **testing.md:** minor changes to testing.md file ([a9c04c0](https://github.com/softrams/bulwark/commit/a9c04c0a3f5e8501dc77c7e20854c3536767f639)), closes [#509](https://github.com/softrams/bulwark/issues/509)
- **testing.md:** uopdating documentation ([840f4e2](https://github.com/softrams/bulwark/commit/840f4e2f1394b096c57885611e696f7de993afac)), closes [#509](https://github.com/softrams/bulwark/issues/509)
- **testing.md:** update prettier documentation ([48fbef4](https://github.com/softrams/bulwark/commit/48fbef44c60a7de22fca694ac3a2f0f85651031b)), closes [#509](https://github.com/softrams/bulwark/issues/509)

### [6.3.1](https://github.com/softrams/bulwark/compare/v6.3.0...v6.3.1) (2020-12-12)

### Others

- **deps:** bump ini from 1.3.5 to 1.3.8 ([88ab044](https://github.com/softrams/bulwark/commit/88ab044a4a7a8ace0c8da6b7d7486cd4652e836c))

## [6.3.0](https://github.com/softrams/bulwark/compare/v6.2.6...v6.3.0) (2020-12-10)

### Features

- **report component:** add numbering for list ([e6d3877](https://github.com/softrams/bulwark/commit/e6d3877547c1e2287f1fa4169034994566643a9b)), closes [#478](https://github.com/softrams/bulwark/issues/478) [#478](https://github.com/softrams/bulwark/issues/478)
- **report component:** add numbers to pie chart ([4b12bfb](https://github.com/softrams/bulwark/commit/4b12bfbc56d48c05ef13ddb12861a180a06a8c12)), closes [#485](https://github.com/softrams/bulwark/issues/485)
- **report component:** numbered list for reports ([75f6793](https://github.com/softrams/bulwark/commit/75f67934d66c67c1cd6cf38ab048373f11b432ad)), closes [#478](https://github.com/softrams/bulwark/issues/478) [#478](https://github.com/softrams/bulwark/issues/478)

### Others

- **deps:** bump @angular-devkit/build-angular in /frontend ([0df647a](https://github.com/softrams/bulwark/commit/0df647ab9bdb33ad004c96eb613c6a6e9765a495))
- **deps:** bump @angular/cli from 11.0.2 to 11.0.3 in /frontend ([9f38774](https://github.com/softrams/bulwark/commit/9f38774412d2e383cd0539aca7ce13802fe8d1c6))
- **deps:** bump core-js from 3.7.0 to 3.8.1 in /frontend ([64bafae](https://github.com/softrams/bulwark/commit/64bafae6afbc50da8eaa9cb4e33c79de2e19ec0c))
- **deps:** bump ngx-markdown from 11.0.0 to 11.0.1 in /frontend ([72f0e0e](https://github.com/softrams/bulwark/commit/72f0e0e235f710998a55e5a9ddf30429780cb183))
- **deps:** bump ts-node from 9.0.0 to 9.1.0 ([8b4064c](https://github.com/softrams/bulwark/commit/8b4064c31a53501dcb13597617b7a46212674af8))
- **deps-dev:** bump @angular/language-service in /frontend ([655443d](https://github.com/softrams/bulwark/commit/655443db8fa41db52cbbcded63faef9f89f9e1e7))
- **deps-dev:** bump @types/jest from 26.0.15 to 26.0.16 ([56374f8](https://github.com/softrams/bulwark/commit/56374f82f24b82e9237ce06d09e4c3c5faeba3a9))
- **package.json:** add highlight.js v 10 to dev dependencies ([6db8153](https://github.com/softrams/bulwark/commit/6db815387426aa26a9fa5b49001c9f2f6d6f4973))
- **package.json:** remove yargs package ([b17ec21](https://github.com/softrams/bulwark/commit/b17ec21f3637364c0d474e63204ab5cf89ccb076))

### [6.2.6](https://github.com/softrams/bulwark/compare/v6.2.5...v6.2.6) (2020-12-02)

### Bug Fixes

- **vuln form component:** fixing the markdown icon ([a7eee64](https://github.com/softrams/bulwark/commit/a7eee640297fbd76ad98aae37b66afd9c8bf5a86)), closes [#468](https://github.com/softrams/bulwark/issues/468)

### Code Refactoring

- **file.utility.ts:** update max file size to 5m ([d3d1a44](https://github.com/softrams/bulwark/commit/d3d1a4408ef127317ac9daf95db1a91415a34f5d))

### [6.2.5](https://github.com/softrams/bulwark/compare/v6.2.4...v6.2.5) (2020-12-01)

### CI

- **docker updates:** docker updates ([1bd423d](https://github.com/softrams/bulwark/commit/1bd423d9700dc0ec9b5c819351ac5b54379855cd))

### Build System

- **@angular/cli migrate:** update @angular/cli to version 10 ([93cd1e2](https://github.com/softrams/bulwark/commit/93cd1e2b8bd589a09df6db52d304e8b1c97de6e1))
- **angular 11:** upgrade to Angular 11 ([d5e4ea9](https://github.com/softrams/bulwark/commit/d5e4ea9582d01e5d88827ede0d73a2558853e0e5))
- **dockerfile:** cleanup docker tech debt and refactor for quicker builds ([cc7dcf6](https://github.com/softrams/bulwark/commit/cc7dcf642a92f4e7d0785b356d779c39ec9f80d7))

### Others

- **deps:** bump @angular-devkit/build-angular in /frontend ([d8e134e](https://github.com/softrams/bulwark/commit/d8e134ef70b18dae29d356be0a01449ece788c4c))
- **deps:** bump @angular/cdk from 10.2.7 to 11.0.1 in /frontend ([6161aa8](https://github.com/softrams/bulwark/commit/6161aa881b3a160a7cf775a470d05f8bff9585ce))
- **deps:** bump @angular/cli from 11.0.1 to 11.0.2 in /frontend ([32434b9](https://github.com/softrams/bulwark/commit/32434b9ac7128cca0a08380052a241d2b6bc1141))
- **deps:** bump @ng-select/ng-select from 5.0.8 to 5.0.9 in /frontend ([500c86d](https://github.com/softrams/bulwark/commit/500c86d680f586538635cb4258cbb15733afa130))
- **deps:** bump @types/express from 4.17.8 to 4.17.9 ([9cb8fef](https://github.com/softrams/bulwark/commit/9cb8fefbe69c4282cd63d8a98fb6681132291847))
- **deps:** bump ngx-markdown from 10.1.1 to 11.0.0 in /frontend ([47ac561](https://github.com/softrams/bulwark/commit/47ac56140eebff27ba37d6089247304f68d4e68c))
- **deps:** bump nodemailer from 6.4.15 to 6.4.16 ([d871df5](https://github.com/softrams/bulwark/commit/d871df5af925a136fe52728be754426777c5f504))
- **deps:** bump primeicons from 4.0.0 to 4.1.0 in /frontend ([1db7906](https://github.com/softrams/bulwark/commit/1db7906a1b2217266bbd76c92d60374733f74132))
- **deps:** bump puppeteer from 5.4.1 to 5.5.0 ([2205441](https://github.com/softrams/bulwark/commit/2205441f6de1038252a8321b3e86d87604643adb))
- **deps:** bump yargs from 16.1.0 to 16.1.1 ([63bacea](https://github.com/softrams/bulwark/commit/63baceac6270d593a6e02aad44b064060d54bfae))
- **deps-dev:** bump @angular/language-service in /frontend ([c20f6b1](https://github.com/softrams/bulwark/commit/c20f6b12d3c1a3c3b1cc43cb993b6d06595f3a3d))
- **deps-dev:** bump @babel/core from 7.12.3 to 7.12.7 ([f9f61d4](https://github.com/softrams/bulwark/commit/f9f61d4373e71a0e706e37279ac823d35547cec7))
- **deps-dev:** bump @babel/core from 7.12.7 to 7.12.9 ([2e314f1](https://github.com/softrams/bulwark/commit/2e314f12b61a07a326413f1d6f2beabeea97a7e2))
- **deps-dev:** bump @babel/preset-env from 7.12.1 to 7.12.7 ([7cfeb91](https://github.com/softrams/bulwark/commit/7cfeb916419d56c1ac0b4b97cfedb4f5eb4aba73))
- **deps-dev:** bump @babel/preset-typescript from 7.12.1 to 7.12.7 ([3090314](https://github.com/softrams/bulwark/commit/3090314675942148fb1d2332e1ea58051b6d412d))
- **deps-dev:** bump @types/jasmine from 3.6.1 to 3.6.2 in /frontend ([920851f](https://github.com/softrams/bulwark/commit/920851f62269ee5acd4392b8027c6210236df95a))
- **deps-dev:** bump @types/node from 14.14.6 to 14.14.8 in /frontend ([51e8005](https://github.com/softrams/bulwark/commit/51e8005fe67e94ac4847b2f9b153df22ba1e42c0))
- **deps-dev:** bump @types/node from 14.14.8 to 14.14.9 in /frontend ([f0d7650](https://github.com/softrams/bulwark/commit/f0d7650421bd9acc40a91a088307cc0d4cf71f5c))
- **deps-dev:** bump @types/node from 14.14.9 to 14.14.10 in /frontend ([7a835f7](https://github.com/softrams/bulwark/commit/7a835f7b0beff8612f07d2a0b71e34df72dabee0))
- **deps-dev:** bump jasmine-spec-reporter in /frontend ([ed06f8e](https://github.com/softrams/bulwark/commit/ed06f8e14cfe0c9599a52545cdb0768501a3d11f))
- **deps-dev:** bump typescript from 4.0.5 to 4.1.2 ([a5588f4](https://github.com/softrams/bulwark/commit/a5588f490a24b547146ccfd06b3fc95b30625532))
- **package.json:** fix package.json conflict ([d3ace4e](https://github.com/softrams/bulwark/commit/d3ace4e50c0c4c5299753dc833790550fc4e894d))
- **package.json:** update `npm run commit` script ([cdf1948](https://github.com/softrams/bulwark/commit/cdf1948dbb2b0df00dd02b050962809bd32f04a6))
- **stale.yml:** add stale bot configuration ([8c86b2a](https://github.com/softrams/bulwark/commit/8c86b2ae2361b5e46c44f049e9c4403cac8687bb))

### Code Refactoring

- **report component:** fix plurality of day vs days ([861469b](https://github.com/softrams/bulwark/commit/861469b318feb59f5cdc28ce2c1efeb8ed31c665))
- **report component:** grammar Changes ([f99ab88](https://github.com/softrams/bulwark/commit/f99ab887e5de54fffe1a54e5250e390ad9cb96d0))

### Docs

- **readme.md:** update README ([6441177](https://github.com/softrams/bulwark/commit/6441177020b0f866391ed77e8401420761c7bcac))

### [6.2.4](https://github.com/softrams/bulwark/compare/v6.2.3...v6.2.4) (2020-11-11)

### Bug Fixes

- **docker-run-exec.ts:** update docker-compose.yml with new npm script ([cd81ba7](https://github.com/softrams/bulwark/commit/cd81ba74f5687f168dd25cce9a4147b9ed5b3214)), closes [#434](https://github.com/softrams/bulwark/issues/434)
- **update docker tag to latest:** no longer using a pinned version in docker-compse.yml ([6505c1c](https://github.com/softrams/bulwark/commit/6505c1cff2e548fa47e4b51ab06f69d5240f9439)), closes [#434](https://github.com/softrams/bulwark/issues/434)

### Others

- **deps:** bump core-js from 3.6.5 to 3.7.0 in /frontend ([2ed9be8](https://github.com/softrams/bulwark/commit/2ed9be8ace1cd606525cceb18c204fd67fafd390))
- **deps:** bump nodemailer from 6.4.14 to 6.4.15 ([c476958](https://github.com/softrams/bulwark/commit/c476958b1d749c8a26b1b595ae856e2bba084cd9))
- **deps:** bump password-validator from 5.1.0 to 5.1.1 ([c97982c](https://github.com/softrams/bulwark/commit/c97982c1637961ff15c3b22775614ab858d6954d))
- **deps-dev:** bump ts-jest from 26.4.3 to 26.4.4 ([efe384b](https://github.com/softrams/bulwark/commit/efe384bf12c611a07cc41fa7d10bf45324a0761e))

### [6.2.3](https://github.com/softrams/bulwark/compare/v6.2.2...v6.2.3) (2020-11-05)

### Docs

- **docker-compose.yml:** update image version to 6.2.3 ([a90bddf](https://github.com/softrams/bulwark/commit/a90bddf2992e68f3317283cda77c5416b7c88120))
- **testing.md contributing.md:** update testing and contribution documentation ([9b84c2b](https://github.com/softrams/bulwark/commit/9b84c2b6996c31ef7130f26afd8dc4814194b077))

### Others

- **deps:** bump @angular/animations from 10.2.0 to 10.2.1 in /frontend ([52e5888](https://github.com/softrams/bulwark/commit/52e588822b139ef3e536a01a167779bb4f7b53dc))
- **deps:** bump @angular/animations from 10.2.1 to 10.2.2 in /frontend ([b0e69b8](https://github.com/softrams/bulwark/commit/b0e69b8921fbc4ec34593c9c3d7b48298f065fc0))
- **deps:** bump @angular/cdk from 10.2.6 to 10.2.7 in /frontend ([59dd1f2](https://github.com/softrams/bulwark/commit/59dd1f28584577d744ef7c36086d772c97dfee5e))
- **deps:** bump helmet from 4.1.1 to 4.2.0 ([ce2be8b](https://github.com/softrams/bulwark/commit/ce2be8bfd77ababcb800e0f91b49076f18cf1abe))
- **deps:** bump typeorm from 0.2.28 to 0.2.29 ([191c98e](https://github.com/softrams/bulwark/commit/191c98e01d0cc34ff5deccb1ca8e29dc4f46fa05))
- **deps-dev:** bump @angular/language-service in /frontend ([7c2854b](https://github.com/softrams/bulwark/commit/7c2854b34aaeb8ab40e22380e68a2f343bf80802))
- **deps-dev:** bump @angular/language-service in /frontend ([771a992](https://github.com/softrams/bulwark/commit/771a992a413c50174c4ee094eddf1191007029a0))
- **deps-dev:** bump @types/jasmine from 3.6.0 to 3.6.1 in /frontend ([d050ff0](https://github.com/softrams/bulwark/commit/d050ff0f1040061f229c8ea813bafaec261c6a95))
- **deps-dev:** bump @types/node from 14.14.5 to 14.14.6 in /frontend ([cb4e421](https://github.com/softrams/bulwark/commit/cb4e42145217270a9d8b76809998ba6f0948a90f))
- **deps-dev:** bump babel-jest from 26.6.1 to 26.6.2 ([684a36e](https://github.com/softrams/bulwark/commit/684a36edb9167027e5db8f0042a9dc43992154b9))
- **deps-dev:** bump babel-jest from 26.6.2 to 26.6.3 ([05ff020](https://github.com/softrams/bulwark/commit/05ff020a0b0dcb4b8c2f28ab466a84f66c630272))
- **deps-dev:** bump jest from 26.6.1 to 26.6.2 ([beed374](https://github.com/softrams/bulwark/commit/beed374f1510bd000b8c2366ac2606357a2ba82c))
- **deps-dev:** bump jest from 26.6.2 to 26.6.3 ([d6be217](https://github.com/softrams/bulwark/commit/d6be2173339386df7db1d6009e291da66e976558))

### CI

- **codeql-analysis.yml:** update codeql-analysis.yml ([c46b22a](https://github.com/softrams/bulwark/commit/c46b22a14973226b872adeec4a3059b427ee19ee))
- **dependabot.yml:** update dependabot.yml configuration ([3f2c01b](https://github.com/softrams/bulwark/commit/3f2c01b476141c80d4eb75d010447c007dcb6f10))

### [6.2.2](https://github.com/softrams/bulwark/compare/v6.2.1...v6.2.2) (2020-11-02)

### Docs

- **security.md:** update security policy supported version statement. Update docker-compose.yml ver ([14f6b92](https://github.com/softrams/bulwark/commit/14f6b920af6d72841df273aca6c35e5a94ced819))

### [6.2.1](https://github.com/softrams/bulwark/compare/v6.2.0...v6.2.1) (2020-10-28)

### CI

- **docker-compose.yml:** update docker container version to run Bulwark 6.2.0 ([8618557](https://github.com/softrams/bulwark/commit/86185571bce6adf51db362f2a74960cd531acc44))

## [6.2.0](https://github.com/softrams/bulwark/compare/v6.1.0...v6.2.0) (2020-10-28)

### Features

- **asset-form:** use Prime NG for inputs, buttons and password form components ([e8f8e46](https://github.com/softrams/bulwark/commit/e8f8e46439b505e2f6a0a6656f98331dff20470a)), closes [#369](https://github.com/softrams/bulwark/issues/369)
- **report component:** added pie chart and radar chart to report ([d955720](https://github.com/softrams/bulwark/commit/d955720db93482dd3f12f34a37a77f4f04005776)), closes [#410](https://github.com/softrams/bulwark/issues/410)
- **report component:** update report structure ([ec5d06c](https://github.com/softrams/bulwark/commit/ec5d06cc67b8471d829bc64022243bbf2fd13413))
- **user-profile:** use Prime NG for inputs and cards ([5623cb5](https://github.com/softrams/bulwark/commit/5623cb5f5b65c50037d5b8aeb0e963ff51bd4bca)), closes [#377](https://github.com/softrams/bulwark/issues/377)

### Others

- **deps:** bump @angular/cdk from 10.2.5 to 10.2.6 in /frontend ([3a00265](https://github.com/softrams/bulwark/commit/3a00265dcbf215591949d9ee404e6635141ff4fd))
- **deps:** bump puppeteer from 5.3.1 to 5.4.0 ([a92cdc5](https://github.com/softrams/bulwark/commit/a92cdc52f35e87a6a788374b59a99af871eb3078))
- **deps:** bump puppeteer from 5.4.0 to 5.4.1 ([4f83bc8](https://github.com/softrams/bulwark/commit/4f83bc81fbaec0563768c8f0008b3cb50ff5f694))
- **deps-dev:** bump @types/jasmine from 3.5.14 to 3.6.0 in /frontend ([f596d72](https://github.com/softrams/bulwark/commit/f596d72f615f80e1c146798372d40da9664a9bd3))
- **deps-dev:** bump @types/node from 14.14.2 to 14.14.3 in /frontend ([1c95507](https://github.com/softrams/bulwark/commit/1c95507b506bfe423cbec697dde0231c1971f9ec))
- **deps-dev:** bump @types/node from 14.14.3 to 14.14.5 in /frontend ([3c9d0d7](https://github.com/softrams/bulwark/commit/3c9d0d732a2f4f02814efff709888d6c5a1bc95f))
- **deps-dev:** bump babel-jest from 26.6.0 to 26.6.1 ([f5325f8](https://github.com/softrams/bulwark/commit/f5325f81f03070e5ffb0f5531fabfb66c106b8af))
- **deps-dev:** bump jest from 26.6.0 to 26.6.1 ([53f64ab](https://github.com/softrams/bulwark/commit/53f64ab91e7db177afb8126471b33ca684b0033d))
- **deps-dev:** bump ts-jest from 26.4.1 to 26.4.2 ([a2be373](https://github.com/softrams/bulwark/commit/a2be37332696f9c112a7b97821f4e2f93836cc8d))
- **deps-dev:** bump ts-jest from 26.4.2 to 26.4.3 ([29d1404](https://github.com/softrams/bulwark/commit/29d14044d7ac0bf888f97f06edd1b00d567afd6b))
- **deps-dev:** bump typescript from 4.0.3 to 4.0.5 ([b16b187](https://github.com/softrams/bulwark/commit/b16b187e53d346b8917de8addae9c02ad01243af))
- **merge dev into branch:** merge develop into this branch ([9f7b32d](https://github.com/softrams/bulwark/commit/9f7b32dd635f47ed6f3834ebd8bea43bbdcbbe25))
- **package.json:** updated package.json with additional contributor name ([20d8b47](https://github.com/softrams/bulwark/commit/20d8b478bc780786c8dfb6252422337f6123d737))

## [6.1.0](https://github.com/softrams/bulwark/compare/v6.0.6...v6.1.0) (2020-10-23)

### Features

- email validate with prime ng ([b40f588](https://github.com/softrams/bulwark/commit/b40f588f36435f4a0828c55c76cd042623dd867e))
- forgot password with prime ng ([36e1d10](https://github.com/softrams/bulwark/commit/36e1d10ce841748e66cbc61e79e0daf2f173e61c))
- login with prime ng ([eca4924](https://github.com/softrams/bulwark/commit/eca49249a8d933671f6afd6d67276cc53cd34b30))
- register with prime ng ([2688138](https://github.com/softrams/bulwark/commit/2688138634dd64d5282c22e24ea1c0819a082546))
- reset password with prime ng ([b1f082c](https://github.com/softrams/bulwark/commit/b1f082cc41012d8a52736689e4401c28e78cbfbe))
- settings with prime ng ([a830258](https://github.com/softrams/bulwark/commit/a830258a79621b7ec70ab30c908ec9c8646c3e00))

### Bug Fixes

- button scss side effect ([4e0cf29](https://github.com/softrams/bulwark/commit/4e0cf298f3bc6ff43bbb72d884d21f1e0206f25e))

### Others

- **deps:** bump @angular-devkit/build-angular in /frontend ([535777d](https://github.com/softrams/bulwark/commit/535777de4f6c40c17a1e321a7f580130803f69f1))
- **deps:** bump @angular/animations from 10.1.6 to 10.2.0 in /frontend ([002a996](https://github.com/softrams/bulwark/commit/002a996996f7ca00f0cf50f63fce6c6e768006b7))
- **deps:** bump @angular/cli from 10.1.7 to 10.2.0 in /frontend ([dc5a468](https://github.com/softrams/bulwark/commit/dc5a4688a3951d7d68fc350c0f51de54fa794634))
- **deps-dev:** bump @angular/language-service in /frontend ([22879fb](https://github.com/softrams/bulwark/commit/22879fb82a811b539ca6be26bee879de673fba5f))
- **deps-dev:** bump @babel/core from 7.12.1 to 7.12.3 ([9adb353](https://github.com/softrams/bulwark/commit/9adb3536fbd74dcf36b79683f0f13b1376ce6607))
- **deps-dev:** bump @types/jest from 26.0.14 to 26.0.15 ([0e3e7f0](https://github.com/softrams/bulwark/commit/0e3e7f006c4ef845ee2b252458a4cf106210653f))
- **deps-dev:** bump @types/node from 14.11.10 to 14.14.0 in /frontend ([86f9969](https://github.com/softrams/bulwark/commit/86f99697d9e72506162a9567976d2a1d91a8c1c6))
- **deps-dev:** bump @types/node from 14.11.8 to 14.11.10 in /frontend ([cb2f61c](https://github.com/softrams/bulwark/commit/cb2f61cd2e1e7ba2914c661596583182e923db3c))
- **deps-dev:** bump @types/node from 14.14.0 to 14.14.2 in /frontend ([84ae92c](https://github.com/softrams/bulwark/commit/84ae92c28921d417b2fddb735a830b6bb5d0c33f))
- **deps-dev:** bump babel-jest from 26.5.2 to 26.6.0 ([022c89d](https://github.com/softrams/bulwark/commit/022c89de15c2d526e33cf60b4fc1ee14789aa094))
- **deps-dev:** bump jest from 26.5.3 to 26.6.0 ([81aea5a](https://github.com/softrams/bulwark/commit/81aea5a5334f77e46a533ab3a7777a51450bdc2c))

### [6.0.6](https://github.com/softrams/bulwark/compare/v6.0.5...v6.0.6) (2020-10-21)

### Bug Fixes

- **vuln-form component:** fixed missing delete screenshot icon ([60be8a9](https://github.com/softrams/bulwark/commit/60be8a9f58fa79885384f17d459121dd41c058fa))

### [6.0.5](https://github.com/softrams/bulwark/compare/v6.0.4...v6.0.5) (2020-10-16)

### Others

- **deps:** bump @angular-devkit/build-angular in /frontend ([3ce0d49](https://github.com/softrams/bulwark/commit/3ce0d49bc84ceaee825b22e917e7328e3c8bb8f0))
- **deps:** bump @angular/animations from 10.1.5 to 10.1.6 in /frontend ([1eea3d3](https://github.com/softrams/bulwark/commit/1eea3d375b816d6bcc69f3a8285124758af2fd47))
- **deps:** bump @angular/cdk from 10.2.4 to 10.2.5 in /frontend ([ffeacb9](https://github.com/softrams/bulwark/commit/ffeacb910c2fd7fb281cd9798221c923177eca93))
- **deps:** bump @angular/cli from 10.1.6 to 10.1.7 in /frontend ([8af8735](https://github.com/softrams/bulwark/commit/8af87353f97799dfbe91aeec013375212e5953f7))
- **deps:** bump nodemailer from 6.4.13 to 6.4.14 ([0f0201f](https://github.com/softrams/bulwark/commit/0f0201f491ca69fddad912b492e3a727911ec41a))
- **deps:** bump yargs from 16.0.3 to 16.1.0 ([541bbf3](https://github.com/softrams/bulwark/commit/541bbf32b3a02df6655901857d1502070fe40585))
- **deps-dev:** bump @angular/language-service in /frontend ([94914f5](https://github.com/softrams/bulwark/commit/94914f52c55d69dc48144c0ce5105687e08788b6))
- **deps-dev:** bump @babel/core from 7.11.6 to 7.12.0 ([0538836](https://github.com/softrams/bulwark/commit/0538836658c07c5854f9d87fe77de61eaac273c8))
- **deps-dev:** bump @babel/core from 7.12.0 to 7.12.1 ([55c6f86](https://github.com/softrams/bulwark/commit/55c6f86613aec80204ce1f2b1d01b1bef4943503))
- **deps-dev:** bump @babel/preset-env from 7.11.5 to 7.12.0 ([4a3c1c6](https://github.com/softrams/bulwark/commit/4a3c1c61ff6cca5118d289994196b0519a09d07f))
- **deps-dev:** bump @babel/preset-env from 7.12.0 to 7.12.1 ([def2233](https://github.com/softrams/bulwark/commit/def2233f2c8c76e7174f68cebc9a1a0c1e621b91))
- **deps-dev:** bump @babel/preset-typescript from 7.10.4 to 7.12.0 ([2a2861b](https://github.com/softrams/bulwark/commit/2a2861b6407b5df398481eead368578ee5edf3b0))
- **deps-dev:** bump @babel/preset-typescript from 7.12.0 to 7.12.1 ([a3ed773](https://github.com/softrams/bulwark/commit/a3ed7738028ff4ea26b52a1762291c649ec24a57))

### [6.0.4](https://github.com/softrams/bulwark/compare/v6.0.3...v6.0.4) (2020-10-14)

### Docs

- **readme.md:** updated README.md ([0966f9f](https://github.com/softrams/bulwark/commit/0966f9f6b0a35fb6397b083dda8ed222802136ed))

### [6.0.3](https://github.com/softrams/bulwark/compare/v6.0.2...v6.0.3) (2020-10-13)

### Others

- **release:** 6.0.1 ([0fbf5c2](https://github.com/softrams/bulwark/commit/0fbf5c2b77e3cb045350d9eca757e26fbbc48377))
- **release:** 6.0.3 ([4a186ba](https://github.com/softrams/bulwark/commit/4a186ba061cdf00480d0cb9c7e6bb51b977ed47e))
- **release:** 6.0.3 ([b296c2b](https://github.com/softrams/bulwark/commit/b296c2b7529b8047cda3a5bbe14a74ceca996986))
- **release:** 6.0.5 ([6f50575](https://github.com/softrams/bulwark/commit/6f505752302ed7a539fc7b8cabe4807e4f21e662))

### Docs

- **updated readme:** updated readme ([d9b19b5](https://github.com/softrams/bulwark/commit/d9b19b508fa705e94a5cd6cd26625ae7673c8cee))

### [6.0.1](https://github.com/softrams/bulwark/compare/v6.0.2...v6.0.1) (2020-10-13)

### Others

- **release:** 6.0.3 ([b296c2b](https://github.com/softrams/bulwark/commit/b296c2b7529b8047cda3a5bbe14a74ceca996986))

## [6.0.0](https://github.com/softrams/bulwark/compare/v5.0.0...v6.0.0) (2020-10-13)

### ⚠ BREAKING CHANGES

- **add user entity column for newemail:** added new newEmail column to the user entity
- **organization and file table:** Updates to the schema. Removed relationship between Organization and File.

### Features

- **add user entity column for newemail:** update user entity with newEmail column ([4aef2fe](https://github.com/softrams/bulwark/commit/4aef2febad142a514529071772c35b7f8fd8c1e2)), closes [#49](https://github.com/softrams/bulwark/issues/49)
- **assessments:** add custom table filter matchMode to filter Testers array ([0e555b4](https://github.com/softrams/bulwark/commit/0e555b4041657c1abf1d919298cb3beef8259ca2))
- **create initial seed user:** update initial startup to create default user ([61ddc2a](https://github.com/softrams/bulwark/commit/61ddc2a07b002e5dc53bcf812c126dbe874e707d)), closes [#322](https://github.com/softrams/bulwark/issues/322)
- **dashboard, organization, vulnerability summary tables:** updated column name and headers ([bd4feac](https://github.com/softrams/bulwark/commit/bd4feacd596bdd78c61eeef0d2968a140e5c7d5f)), closes [#321](https://github.com/softrams/bulwark/issues/321)
- **docker:** updating Bulwark to run from docker ([b983c52](https://github.com/softrams/bulwark/commit/b983c52db76031eacbcd452b58467d1947fd5935)), closes [#245](https://github.com/softrams/bulwark/issues/245)
- **dockerfile:** dockerize Bulwark ([fe07262](https://github.com/softrams/bulwark/commit/fe07262fc9f1a33d3f05ec0b801c8b83e0abf4f8))
- **dockerfile:** dockerize Bulwark ([8ac6fdd](https://github.com/softrams/bulwark/commit/8ac6fdd3baa86cbb35425c193eb40c5861079ea7))
- **email-validate component:** created the email-validate.component.ts file ([5c1dd87](https://github.com/softrams/bulwark/commit/5c1dd87b602de9f3fd3a97ecd1db8cbf75cd6378)), closes [#49](https://github.com/softrams/bulwark/issues/49)
- **new api for revoke and validate email request:** new api's with unit tests ([152cbf1](https://github.com/softrams/bulwark/commit/152cbf15961733ee131a36f20e361588561a723c)), closes [#49](https://github.com/softrams/bulwark/issues/49)
- **organization and file table:** removed relation between Org and File ([05d42a0](https://github.com/softrams/bulwark/commit/05d42a0efb2cdf899e94d11b576450a282af35f1)), closes [#321](https://github.com/softrams/bulwark/issues/321)
- **user controller:** created API for email update ([bcbab8f](https://github.com/softrams/bulwark/commit/bcbab8f36ddde18cfc0024ad571a5dad2dffcb40)), closes [#49](https://github.com/softrams/bulwark/issues/49)
- docker ([62ee1ad](https://github.com/softrams/bulwark/commit/62ee1ad858dbb0f202976b6a4b37fc00f5ec141d))
- docker ([afd7274](https://github.com/softrams/bulwark/commit/afd72741f4e4e3024d2ed750027e30ce68b8c0e3))
- docker ([a590ecf](https://github.com/softrams/bulwark/commit/a590ecfefddeacbeb894f7c4b7524ab52191a094))
- dockerize Bulwark ([607db0b](https://github.com/softrams/bulwark/commit/607db0b722bf7597a139cb187f1f96bf32ef6b54))

### Bug Fixes

- **removed migration directory files:** removed migrations ([783ce03](https://github.com/softrams/bulwark/commit/783ce03aa30163fa8828e7b17a36151621c2b3e7))

### Others

- **deps:** bump @angular-devkit/build-angular in /frontend ([5b2edba](https://github.com/softrams/bulwark/commit/5b2edba0de6ac9d6082e759b0e5057790ac9c17f))
- **deps:** bump @angular-devkit/build-angular in /frontend ([af92bac](https://github.com/softrams/bulwark/commit/af92bac398fcd8e68f109b1c360cd0442cc3ce3f))
- **deps:** bump @angular/animations from 10.1.4 to 10.1.5 in /frontend ([6f57b2e](https://github.com/softrams/bulwark/commit/6f57b2e9a2871b76f50278c34cfa633b12442740))
- **deps:** bump @angular/cdk from 10.2.3 to 10.2.4 in /frontend ([40e75d9](https://github.com/softrams/bulwark/commit/40e75d9d2efd88e9acc0f6ff43eba290cd671d2c))
- **deps:** bump @angular/cli from 10.1.4 to 10.1.5 in /frontend ([58ff160](https://github.com/softrams/bulwark/commit/58ff160bb3fe70e3a7a68567fd5d6655872b9ef6))
- **deps:** bump @angular/cli from 10.1.5 to 10.1.6 in /frontend ([e573f3d](https://github.com/softrams/bulwark/commit/e573f3de8b22b4fcb9eecfd69e3466d03a009035))
- **deps:** bump @ng-select/ng-select from 5.0.3 to 5.0.4 in /frontend ([dbcc884](https://github.com/softrams/bulwark/commit/dbcc884a8886591955f992153cd1edee8e8b92b3))
- **deps:** bump @ng-select/ng-select from 5.0.4 to 5.0.5 in /frontend ([05c1a8f](https://github.com/softrams/bulwark/commit/05c1a8f66a02878944410b8bc44f630d2f664a15))
- **deps:** bump @ng-select/ng-select from 5.0.5 to 5.0.6 in /frontend ([c73d17f](https://github.com/softrams/bulwark/commit/c73d17f609f5c202e56b5de81ce689115374a40f))
- **deps:** bump @ng-select/ng-select from 5.0.6 to 5.0.7 in /frontend ([9731080](https://github.com/softrams/bulwark/commit/9731080df713b0867c2da9689442a0b57156b486))
- **deps:** bump @ng-select/ng-select from 5.0.7 to 5.0.8 in /frontend ([47cb485](https://github.com/softrams/bulwark/commit/47cb485743cc77845a91cd934f61b25c0a53dd30))
- **deps:** bump jira-client from 6.21.0 to 6.21.1 ([25a5e8b](https://github.com/softrams/bulwark/commit/25a5e8b038dca63957e06ad8c50bbb0a360ac73e))
- **deps:** bump nodemailer from 6.4.12 to 6.4.13 ([6b389bd](https://github.com/softrams/bulwark/commit/6b389bd4d260c6f10e555957b73b262ac4447fc6))
- **deps:** bump primeng from 10.0.2 to 10.0.3 in /frontend ([015f652](https://github.com/softrams/bulwark/commit/015f652c6a4fa8d41bcf37517c1448e6f6f9d853))
- **deps:** bump tslib from 2.0.1 to 2.0.2 in /frontend ([17a8e32](https://github.com/softrams/bulwark/commit/17a8e32676bfc9167742bf058b02912af0d6d43b))
- **deps:** bump tslib from 2.0.2 to 2.0.3 in /frontend ([9ef5373](https://github.com/softrams/bulwark/commit/9ef53738e894395f5d13ff63b7589242c3f1cde7))
- **deps:** bump uuid from 8.3.0 to 8.3.1 ([9bbdd11](https://github.com/softrams/bulwark/commit/9bbdd11005095e4b43e2eda174461348089b54d2))
- **deps-dev:** bump @angular/language-service in /frontend ([9c3a1be](https://github.com/softrams/bulwark/commit/9c3a1be35226761e7472daa7e20f06bd5595da32))
- **deps-dev:** bump @types/node from 14.11.2 to 14.11.5 in /frontend ([ba63886](https://github.com/softrams/bulwark/commit/ba638868ce66ee1e7fb9e603dd54e6a497bf78f2))
- **deps-dev:** bump @types/node from 14.11.5 to 14.11.7 in /frontend ([0034d3f](https://github.com/softrams/bulwark/commit/0034d3ffd5ce95bf5d28eef68972220fe4ccd6f6))
- **deps-dev:** bump @types/node from 14.11.7 to 14.11.8 in /frontend ([534b6c8](https://github.com/softrams/bulwark/commit/534b6c8e54792b56d7f0c3182fd84b4460ac204f))
- **deps-dev:** bump babel-jest from 26.3.0 to 26.5.2 ([2c0e335](https://github.com/softrams/bulwark/commit/2c0e335612b21dba273d71c0d8251ab33a9298f7))
- **deps-dev:** bump jest from 26.4.2 to 26.5.0 ([fab2537](https://github.com/softrams/bulwark/commit/fab2537628b3ff3a2d0e4743b7db010aef14f99c))
- **deps-dev:** bump jest from 26.5.0 to 26.5.2 ([d44551b](https://github.com/softrams/bulwark/commit/d44551bc329d9f500525fa5b101b0ebe98d37ff3))
- **deps-dev:** bump jest from 26.5.2 to 26.5.3 ([4e31812](https://github.com/softrams/bulwark/commit/4e31812201e88ea8c4a11528d628f3756bc5b1eb))

### Code Refactoring

- **user.ts:** updated user column uuid to always be nullable ([79cd34e](https://github.com/softrams/bulwark/commit/79cd34efa7c15045f6e6f70a212919da1f19d082))

## [5.0.0](https://github.com/softrams/bulwark/compare/v4.0.7...v5.0.0) (2020-10-02)

### ⚠ BREAKING CHANGES

- **settings component:** Added new table for app configurations. updated API's referencing the email
  service to check for email configuration from database. Removed env vars for email configuration
  and company name.

### Features

- **assessment/asset summary table:** added filtering to tables ([66b2420](https://github.com/softrams/bulwark/commit/66b242008725c826d094a78a67ea9dae270935e7)), closes [#302](https://github.com/softrams/bulwark/issues/302)
- **initial commit for primeng:** initial commit for PrimeNG ([988dc2a](https://github.com/softrams/bulwark/commit/988dc2a856a1851b138aadb59d5aaaf6e8d8e6e8)), closes [#302](https://github.com/softrams/bulwark/issues/302)
- **initial commit of asset and assessment primeng refactor:** initial commit of asset and assessent ([493a3d2](https://github.com/softrams/bulwark/commit/493a3d2c660363bbda6a28650b4e6766d57e6fd1)), closes [#302](https://github.com/softrams/bulwark/issues/302)
- **primeng refactor:** refactored existing tables to use primeng ([0adc220](https://github.com/softrams/bulwark/commit/0adc220196e06c93b052f327a2163085caa5c8f3)), closes [#302](https://github.com/softrams/bulwark/issues/302)
- **removed tester multiselect:** temporarily replaced Tester multiselect with sort ([aa332da](https://github.com/softrams/bulwark/commit/aa332dad1d258370b48e03c8a280b7eafc555afd)), closes [#302](https://github.com/softrams/bulwark/issues/302)
- **settings component:** moved email configuration from env var to application ([778670e](https://github.com/softrams/bulwark/commit/778670e45a75a7c11bdacfd8674a3fa8feb60183)), closes [#260](https://github.com/softrams/bulwark/issues/260)
- **update primeng table and loading spinner:** updated primeng tables. Refactored loading spinner ([c169e99](https://github.com/softrams/bulwark/commit/c169e999708f49687fa0e9fca6d457f8b790fc00)), closes [#302](https://github.com/softrams/bulwark/issues/302)

### Others

- **ci:** added support for issues ([dadee4e](https://github.com/softrams/bulwark/commit/dadee4e66d5957ac3c8d7e6fe92841ac6ae49eae))
- **deps:** bump @angular-devkit/build-angular in /frontend ([3189224](https://github.com/softrams/bulwark/commit/3189224a5b21f2c26e1d97ab075379179d0465dd))
- **deps:** bump @angular-devkit/build-angular in /frontend ([ec14201](https://github.com/softrams/bulwark/commit/ec1420139a6d4d60dec10a2282697dd2ac710e68))
- **deps:** bump @angular-devkit/build-angular in /frontend ([77ac88c](https://github.com/softrams/bulwark/commit/77ac88c599ccdb630ea4f85c9f9402510754f867))
- **deps:** bump @angular/animations in /frontend ([b74a9c9](https://github.com/softrams/bulwark/commit/b74a9c9a20cf9b9c82efbea8d509534b09a30a13))
- **deps:** bump @angular/cdk from 10.2.2 to 10.2.3 in /frontend ([3d0e38d](https://github.com/softrams/bulwark/commit/3d0e38d1f2b572834427e411e2eaecd1fdcc0eac))
- **deps:** bump @angular/cli from 10.1.1 to 10.1.2 in /frontend ([45cfe34](https://github.com/softrams/bulwark/commit/45cfe34935379f7011829f85bf2eb622b978a6ea))
- **deps:** bump @angular/cli from 10.1.2 to 10.1.3 in /frontend ([1369d3c](https://github.com/softrams/bulwark/commit/1369d3c8e10ce474f3fa302e434d72663456c438))
- **deps:** bump @angular/cli from 10.1.3 to 10.1.4 in /frontend ([5a0536e](https://github.com/softrams/bulwark/commit/5a0536e1fa2f7df2da94ee66ae3b5faa2a38465c))
- **deps:** bump @fortawesome/fontawesome-svg-core in /frontend ([1a54c95](https://github.com/softrams/bulwark/commit/1a54c95e1c0ccc157441e831bf00f9bbc541a253))
- **deps:** bump @fortawesome/free-brands-svg-icons in /frontend ([830a15c](https://github.com/softrams/bulwark/commit/830a15c0b1a38dfd43198d61475aa558f6e35608))
- **deps:** bump @fortawesome/free-solid-svg-icons in /frontend ([39bd027](https://github.com/softrams/bulwark/commit/39bd027aff2457bbd3ef695151a14ffe9ca63d04))
- **deps:** bump @ng-select/ng-select from 5.0.1 to 5.0.3 in /frontend ([797caab](https://github.com/softrams/bulwark/commit/797caab204417f23519b3b4826f4405fe74b9358))
- **deps:** bump nodemailer from 6.4.11 to 6.4.12 ([a690271](https://github.com/softrams/bulwark/commit/a690271d38061c1d5b2826e10a2c3b5c59b7d96f))
- **deps:** bump primeng from 10.0.0 to 10.0.2 in /frontend ([a9e5b30](https://github.com/softrams/bulwark/commit/a9e5b30b391602a7ab3a2d044881c20c6e59f8e0))
- **deps:** bump puppeteer from 5.3.0 to 5.3.1 ([6e77d99](https://github.com/softrams/bulwark/commit/6e77d9948489da1fa7a8a16b24025f6945655d34))
- **deps:** bump typeorm from 0.2.26 to 0.2.28 ([e723343](https://github.com/softrams/bulwark/commit/e7233435811adbc5fc82ea351c10e22c8fa69e75))
- **deps-dev:** bump @angular/language-service in /frontend ([7502ade](https://github.com/softrams/bulwark/commit/7502ade9c6e5d1da72a40842236a8c48fd5a4b65))
- **deps-dev:** bump @angular/language-service in /frontend ([f20a01b](https://github.com/softrams/bulwark/commit/f20a01b67d0b6bc1323c2af3a7a20455afb1e4f8))
- **deps-dev:** bump @angular/language-service in /frontend ([856bd1c](https://github.com/softrams/bulwark/commit/856bd1c0dca011ca58c69d0e9682da83532a483e))
- **deps-dev:** bump @types/jest from 26.0.13 to 26.0.14 ([bcd296a](https://github.com/softrams/bulwark/commit/bcd296afb3ae320cbbfb7fdf5ebb9950844d03f5))
- **deps-dev:** bump @types/node from 14.10.1 to 14.10.2 in /frontend ([0384b4e](https://github.com/softrams/bulwark/commit/0384b4efd1a735b6595997742ff90c4bb026eefb))
- **deps-dev:** bump @types/node from 14.10.2 to 14.10.3 in /frontend ([d2bbdea](https://github.com/softrams/bulwark/commit/d2bbdea6d567a1d4da2f6f4572f791f829f1d356))
- **deps-dev:** bump @types/node from 14.10.3 to 14.11.1 in /frontend ([1f00fbf](https://github.com/softrams/bulwark/commit/1f00fbfd82e4205f76458f89e3c73e2876d824ad))
- **deps-dev:** bump @types/node from 14.11.1 to 14.11.2 in /frontend ([eadd88c](https://github.com/softrams/bulwark/commit/eadd88c66bd3a1842aa25b9f1a393faa295d47a6))
- **deps-dev:** bump codelyzer from 6.0.0 to 6.0.1 in /frontend ([ee12133](https://github.com/softrams/bulwark/commit/ee121334659fd3ef46db880df9581ad22affafb3))
- **deps-dev:** bump jasmine-spec-reporter in /frontend ([002fb85](https://github.com/softrams/bulwark/commit/002fb85f7670b166df47418d4ed2db25152dd64e))
- **deps-dev:** bump karma from 5.2.2 to 5.2.3 in /frontend ([9380ed0](https://github.com/softrams/bulwark/commit/9380ed0e4b6b6bf78b7c6cd16866ab5c743c3793))
- **deps-dev:** bump ts-jest from 26.3.0 to 26.4.0 ([1da83db](https://github.com/softrams/bulwark/commit/1da83db85b49bf251351019383c39f1e8fda3449))
- **deps-dev:** bump ts-jest from 26.4.0 to 26.4.1 ([6304980](https://github.com/softrams/bulwark/commit/6304980cf4390b09ee4d88c4d2c0551ac4b8f7fe))
- **deps-dev:** bump typescript from 4.0.2 to 4.0.3 ([e76deae](https://github.com/softrams/bulwark/commit/e76deaeead62bfd4d3441fbc2c66f8c33cb80c7e))
- **fixing merge conflicts:** fixed merge conflicts ([ff7e2af](https://github.com/softrams/bulwark/commit/ff7e2af483ab1a6872e002d0aa3b8f98f4f3066f)), closes [#302](https://github.com/softrams/bulwark/issues/302)

### CI

- **node:** added ability to create env file before running tests ([0dc9757](https://github.com/softrams/bulwark/commit/0dc9757c66ff1a9dc2fec8101da1bd5ae4fe8b2b))
- **node:** added support for backend tests to run on ci ([e31c488](https://github.com/softrams/bulwark/commit/e31c488ee23b21399792d0f0b81a7bb4187433ed))
- **node:** added support to ci to only run if the backend files have changed ([8071cb3](https://github.com/softrams/bulwark/commit/8071cb3016c80f31ba0f14aece10093c891d8622))
- **node:** removed double qutoes ([20d1586](https://github.com/softrams/bulwark/commit/20d15866de030cef7c93c6ebffb51ebbb4c09c3e))
- **node:** removed path filter and set tests to run each time ([76d01f3](https://github.com/softrams/bulwark/commit/76d01f332fc02266ae3954f954fca40588e5f2e0))
- **user.controller:** updated user import for failed tested ([b56a7fa](https://github.com/softrams/bulwark/commit/b56a7fae4b080da1ff7528c2235d7a829ea9e9f6))

### [4.0.7](https://github.com/softrams/bulwark/compare/v4.0.6...v4.0.7) (2020-10-01)

### [4.0.6](https://github.com/softrams/bulwark/compare/v4.0.5...v4.0.6) (2020-09-14)

### Others

- **deps:** bump @angular-devkit/build-angular in /frontend ([0fa83d3](https://github.com/softrams/bulwark/commit/0fa83d3ca411e2537fcca9de3445a8b35db942dd))
- **deps:** bump @angular/cli from 10.1.0 to 10.1.1 in /frontend ([edde37f](https://github.com/softrams/bulwark/commit/edde37f79999ea0c35b51629321edd214e109241))
- **deps:** bump helmet from 4.1.0 to 4.1.1 ([8d641e0](https://github.com/softrams/bulwark/commit/8d641e05c080051186cd23ac28d0a1b08039b675))
- **deps:** bump jira-client from 6.20.0 to 6.21.0 ([1b22837](https://github.com/softrams/bulwark/commit/1b22837983852429040029ceb9f98c14e5794e02))
- **deps:** bump node-fetch from 2.6.0 to 2.6.1 ([0875c69](https://github.com/softrams/bulwark/commit/0875c69e2ab4173766642086dd44e5df0cfc2634))
- **deps:** bump puppeteer from 5.2.1 to 5.3.0 ([52431ad](https://github.com/softrams/bulwark/commit/52431ad6b33bcd434e424d67f1473c47600a7765))
- **deps:** bump rxjs from 6.6.2 to 6.6.3 in /frontend ([faf866d](https://github.com/softrams/bulwark/commit/faf866dd8d481c8e47bdf4355ceccba8475afcc8))
- **deps:** bump typeorm from 0.2.25 to 0.2.26 ([0a445e1](https://github.com/softrams/bulwark/commit/0a445e1655015c723df253c5f77841a962beb366))
- **deps:** bump yargs from 15.4.1 to 16.0.0 ([6b53359](https://github.com/softrams/bulwark/commit/6b53359ba3072d8f804296bfa5f1ea651048ee99))
- **deps:** bump yargs from 16.0.0 to 16.0.3 ([9a3ed79](https://github.com/softrams/bulwark/commit/9a3ed79ed8df3a6c971c6f5e2e890cebc7f95c31))
- **deps-dev:** bump @angular/language-service in /frontend ([b2a2943](https://github.com/softrams/bulwark/commit/b2a2943533ce033392a244f1d63c15b316c059a4))
- **deps-dev:** bump @babel/core from 7.11.5 to 7.11.6 ([c79fd88](https://github.com/softrams/bulwark/commit/c79fd8866710f5a5643d80ba2caf170e327d100a))
- **deps-dev:** bump @commitlint/cli from 9.1.2 to 11.0.0 ([1abe52f](https://github.com/softrams/bulwark/commit/1abe52f9a59484885e50a273f84398a5df9e830e))
- **deps-dev:** bump @commitlint/config-conventional ([6806a6d](https://github.com/softrams/bulwark/commit/6806a6d2248dd81c42752763895eefd94d921190))
- **deps-dev:** bump @types/node from 14.10.0 to 14.10.1 in /frontend ([60e52fe](https://github.com/softrams/bulwark/commit/60e52feabab1fb8a0fc93f0c931a3e18f7f6f2c9))
- **deps-dev:** bump @types/node from 14.6.3 to 14.6.4 in /frontend ([2f86132](https://github.com/softrams/bulwark/commit/2f861320b4a92a80b7869a4db75e8d0cfc9795ba))
- **deps-dev:** bump @types/node from 14.6.4 to 14.10.0 in /frontend ([250777c](https://github.com/softrams/bulwark/commit/250777c9f126061edf24e3f315754d2e26051a3f))
- **deps-dev:** bump husky from 4.2.5 to 4.3.0 ([ddaf553](https://github.com/softrams/bulwark/commit/ddaf553bd0883c4bc06cc0d8eb76e250affd8110))
- **deps-dev:** bump karma from 5.2.1 to 5.2.2 in /frontend ([ab6e48b](https://github.com/softrams/bulwark/commit/ab6e48b4756964b971b8d609cdb6e25f16a3db33))

### [4.0.5](https://github.com/softrams/bulwark/compare/v4.0.4...v4.0.5) (2020-09-03)

### Bug Fixes

- **ormconfig.js:** updated ormconfig so that it allows to safely run migrations ([cd52a9c](https://github.com/softrams/bulwark/commit/cd52a9cf8a8b06549f0e2e05f6e5931be10127a3)), closes [#262](https://github.com/softrams/bulwark/issues/262)
- **report generation:** updated puppeteer report generation so that it outputs to the `temp` folder ([38f7bcf](https://github.com/softrams/bulwark/commit/38f7bcf4e2bb4d390a5df65de119af92d577de7a)), closes [#259](https://github.com/softrams/bulwark/issues/259)

### Others

- **deps:** bump @angular/cli from 10.0.8 to 10.1.0 in /frontend ([cc699f3](https://github.com/softrams/bulwark/commit/cc699f3b68e69bfc8249cb86609bd50c758529c0))
- **deps:** bump @types/express from 4.17.7 to 4.17.8 ([8a5726b](https://github.com/softrams/bulwark/commit/8a5726ba6a2142e44a5a732dc7e9ff04424da595))
- **deps-dev:** bump @angular/language-service in /frontend ([d3d9580](https://github.com/softrams/bulwark/commit/d3d9580267e46f9b897d1a52c4548ef37ce8b7fd))
- **deps-dev:** bump @babel/core from 7.11.4 to 7.11.5 ([719c25c](https://github.com/softrams/bulwark/commit/719c25ced2d4361ece72bad730c27077e6531b23))
- **deps-dev:** bump @babel/preset-env from 7.11.0 to 7.11.5 ([ce52573](https://github.com/softrams/bulwark/commit/ce525733276515de64e73994d3ff2bdf2d73d503))
- **deps-dev:** bump @types/jest from 26.0.10 to 26.0.12 ([0fc4012](https://github.com/softrams/bulwark/commit/0fc401251a422d729af393a5df97a36cf24d8932))
- **deps-dev:** bump @types/jest from 26.0.12 to 26.0.13 ([5d7e519](https://github.com/softrams/bulwark/commit/5d7e5193e2188ca7741a6d72c09d491c0f6b1171))
- **deps-dev:** bump @types/node from 14.6.2 to 14.6.3 in /frontend ([c62143a](https://github.com/softrams/bulwark/commit/c62143a020afb9c9811aa8ec5dde05c49c48f0a2))
- **deps-dev:** bump karma from 5.1.1 to 5.2.0 in /frontend ([f372b0f](https://github.com/softrams/bulwark/commit/f372b0f7eb5735268fa2f944fe7be55efb227554))
- **deps-dev:** bump karma from 5.2.0 to 5.2.1 in /frontend ([6524c98](https://github.com/softrams/bulwark/commit/6524c98445c142f20fe04fc31d348d30d7ef85cf))

### [4.0.4](https://github.com/softrams/bulwark/compare/v4.0.3...v4.0.4) (2020-08-31)

### Bug Fixes

- **add temp folder to src:** add `temp` folder to fix Jira screenshot attachments ([746336f](https://github.com/softrams/bulwark/commit/746336fda2d5fc9dfeee3e4ab4d569f251aec8ab)), closes [#248](https://github.com/softrams/bulwark/issues/248)

### [4.0.3](https://github.com/softrams/bulwark/compare/v4.0.2...v4.0.3) (2020-08-31)

### Bug Fixes

- **column-mapper.utility.ts:** fixed typescript build break. made column mapper a string for In ([d2ef14c](https://github.com/softrams/bulwark/commit/d2ef14cb333e89807c8fa92dc1f89303f65b19ad))

### Others

- **deps:** bump @fortawesome/free-solid-svg-icons in /frontend ([10ee5fd](https://github.com/softrams/bulwark/commit/10ee5fdb0480463ac101d75c4045d784b1b90387))
- **deps-dev:** bump @types/node from 14.6.0 to 14.6.1 in /frontend ([e31dfa0](https://github.com/softrams/bulwark/commit/e31dfa0458d349bc97e6822def324e568094cbb6))
- **deps-dev:** bump @types/node from 14.6.1 to 14.6.2 in /frontend ([b428221](https://github.com/softrams/bulwark/commit/b42822197284d97455825a3d0af2b9489529987d))
- **deps-dev:** bump typescript from 3.9.7 to 4.0.2 ([10a17a6](https://github.com/softrams/bulwark/commit/10a17a665f60c314bcd21732b18b6c2278c319b8))

### [4.0.2](https://github.com/softrams/bulwark/compare/v4.0.1...v4.0.2) (2020-08-27)

### Others

- **deps:** bump @angular-devkit/build-angular in /frontend ([bae4ca9](https://github.com/softrams/bulwark/commit/bae4ca9dc29a26aee767519b0d2eda17a356a89b))
- **deps:** bump @angular/cli from 10.0.7 to 10.0.8 in /frontend ([52dd36b](https://github.com/softrams/bulwark/commit/52dd36ba2c83056cdd6b4b936792ca2ce147ba4b))
- **deps:** bump jira-client from 6.19.0 to 6.20.0 ([014bd86](https://github.com/softrams/bulwark/commit/014bd868c0a25bd2be62a21f8fd9ba98a344eea3))
- **deps-dev:** bump @angular/language-service in /frontend ([09938ab](https://github.com/softrams/bulwark/commit/09938abfa8087936cc7b08abae8802020bde8453))
- **deps-dev:** bump @angular/language-service in /frontend ([94fc0c9](https://github.com/softrams/bulwark/commit/94fc0c95183067e7ca7dd90e5ec8073050b1b186))
- **deps-dev:** bump @types/jasmine from 3.5.13 to 3.5.14 in /frontend ([5b9aa1d](https://github.com/softrams/bulwark/commit/5b9aa1d9f7a455b3d5d4fe6e7a97dfccf5a08565))
- **deps-dev:** bump cz-conventional-changelog from 3.2.0 to 3.2.1 ([492dc6b](https://github.com/softrams/bulwark/commit/492dc6b73c432ea2c6204e37a2611f20a1c6de3f))
- **deps-dev:** bump cz-conventional-changelog from 3.2.1 to 3.3.0 ([7f22e05](https://github.com/softrams/bulwark/commit/7f22e05fc2e001f2250bd938db6c2f244ff8067f))
- **deps-dev:** bump ts-jest from 26.2.0 to 26.3.0 ([5d9e103](https://github.com/softrams/bulwark/commit/5d9e1037896ac023a016be8ff2b7e5b073100a52))
- **deps-dev:** bump ts-node from 8.10.2 to 9.0.0 in /frontend ([9a31591](https://github.com/softrams/bulwark/commit/9a31591afa9e47390c3a1e5b6c63535f6596ddf7))

### [4.0.1](https://github.com/softrams/bulwark/compare/v4.0.0...v4.0.1) (2020-08-24)

### Bug Fixes

- **asset and vuln:** fixed update Asset and fixed get Vulnerability by id ([ea4d4f1](https://github.com/softrams/bulwark/commit/ea4d4f1cdb17e52e617acaa1642eeae581b15e17))

## [4.0.0](https://github.com/softrams/bulwark/compare/v3.2.3...v4.0.0) (2020-08-24)

### ⚠ BREAKING CHANGES

- **create jira table:** Added JIRA table
- **jira utilities:** Breaking changes include updates to the create and update Asset APIs to include new
  JIRA properties
- **asset controller:** Updated asset model with jira properties: username, host, api key. Validation
  broken. Tests broken.
- **column mapper:** Updated column options
- **asset archive:** Additional asset column breaks current model validations.

### Features

- **assessment controller:** assessment deletion feature ([b96b977](https://github.com/softrams/bulwark/commit/b96b9771d6df91b4c5cc78bec5cd1c6ad2281472)), closes [#177](https://github.com/softrams/bulwark/issues/177)
- **assessment tester column:** updated API to get assessments by ID to include testers ([a5e4968](https://github.com/softrams/bulwark/commit/a5e4968aef8a57245b9990499e13ff0dc095ffc1)), closes [#205](https://github.com/softrams/bulwark/issues/205)
- **asset archive:** implement ability to archive assets ([6e56a43](https://github.com/softrams/bulwark/commit/6e56a43d593a7062096e4895d0a8a98c53066b3e)), closes [#167](https://github.com/softrams/bulwark/issues/167)
- **asset controller:** updated Asset model with jira properties ([8d4fa08](https://github.com/softrams/bulwark/commit/8d4fa08cdacd400acba47266e13b9f0cbf940fca)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **column mapper:** create dynamic column options ([05fdac1](https://github.com/softrams/bulwark/commit/05fdac12ee01e1ce1b0e7b6eaa204a6bc1976f39)), closes [#167](https://github.com/softrams/bulwark/issues/167)
- **create jira table:** broke apart Asset table and moved JIRA information to JIRA table ([7d31d45](https://github.com/softrams/bulwark/commit/7d31d4576cce96c5e99d8cf7b5e8e9712c3458d0)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **jira:** initial commit for JIRA src ([acc78ab](https://github.com/softrams/bulwark/commit/acc78ab6c9fca139aa9b5ffe3b57d68d8d18dfff)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **jira issue save update with refactored code:** updated current Jira functions for new table ([3b13445](https://github.com/softrams/bulwark/commit/3b134455c991a05a9daa66d970e4824d56aac6be)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **jira update/save:** implement the ability to update/save update ([1d586cf](https://github.com/softrams/bulwark/commit/1d586cf7c0ca12de8a040f4ca65664e8464d3843)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **jira utilities:** save/Update Jira Issue from vulnerabilities ([d2e1c81](https://github.com/softrams/bulwark/commit/d2e1c8135941b84d0e3f700e94bfedcc49da494c)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **jira utility:** implemented JIRA utility POC ([e2aa328](https://github.com/softrams/bulwark/commit/e2aa328d71ca792ad5034cefe433706982b73acd)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **testers column added to assessments summary table:** testers column added to assessment table ([67d5188](https://github.com/softrams/bulwark/commit/67d5188eb7b24b9dec6ef60789b736a15734f8b8)), closes [#205](https://github.com/softrams/bulwark/issues/205)
- **vulnerability form:** updated confirmation message for jira export ([8012a9a](https://github.com/softrams/bulwark/commit/8012a9a17630d253c257ce0f0c645fb123580317)), closes [#179](https://github.com/softrams/bulwark/issues/179)

### Bug Fixes

- **assessment/vulnerability/report table component:** fixed Jira URL table formatting ([5e053bc](https://github.com/softrams/bulwark/commit/5e053bc73ac3eb3a62e0a9f7e62c1665bc740101)), closes [#225](https://github.com/softrams/bulwark/issues/225)
- **dashboard component, organization component, and global styles:** moved card style to global scss ([d9e6154](https://github.com/softrams/bulwark/commit/d9e6154c188091b02a0bf12eeb757dae3fbca0b5)), closes [#165](https://github.com/softrams/bulwark/issues/165)
- **jira screenshots and readme:** fixed jira screenshot attachments. Updated README with new gifs ([c13e9b0](https://github.com/softrams/bulwark/commit/c13e9b0f4c2cd723a08f40f47e75330ff5354ff5))
- **update csp:** updated CSP ([6ae8c42](https://github.com/softrams/bulwark/commit/6ae8c4220920f147e0f2149cbe8ecd0b2545db40)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **update undefined message:** updated jiraId URL to use the jira info from database ([6a864d0](https://github.com/softrams/bulwark/commit/6a864d0bf524e5932648436e2d65891ad458cc83)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **user profile component:** fixed user profile form value binding ([1c87039](https://github.com/softrams/bulwark/commit/1c870397518dfe95852a1c9c63911be056c9a45c)), closes [#218](https://github.com/softrams/bulwark/issues/218)

### Tests

- **aet controller spec:** add unit tests for new asset controller methods ([0e2213f](https://github.com/softrams/bulwark/commit/0e2213f9e2350289868456b645e294f5a77951aa)), closes [#167](https://github.com/softrams/bulwark/issues/167)
- **assessment controller test:** unit test for deleteAssessmentById ([116c0fc](https://github.com/softrams/bulwark/commit/116c0fce41b4b9a3f1cdf11528f5d6e06bfa6350)), closes [#177](https://github.com/softrams/bulwark/issues/177)
- **jira utility:** unit tests for the jira utility ([2b0e5d7](https://github.com/softrams/bulwark/commit/2b0e5d7fd46135a6ca33ccaa219ed0e4baf1cd5e)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **tests: asset, assessment, crypto:** added unit tests for the crypto utility and asset controller ([9f63021](https://github.com/softrams/bulwark/commit/9f63021cf2801f99f9b674b9e13efab6636c2f0d)), closes [#179](https://github.com/softrams/bulwark/issues/179)

### Docs

- **readme:** updated README ([7ca3343](https://github.com/softrams/bulwark/commit/7ca33432dbd6a3cb8ede463da82b9f600f8666c3)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **readme/contributing:** updated documentation for the README and CONTRIBUTING ([bef6d47](https://github.com/softrams/bulwark/commit/bef6d47bb810c1e58e5579b26bc95f601c203d92)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **security policy:** updated security policy ([c307265](https://github.com/softrams/bulwark/commit/c307265157a3bf2ec03a6eaa9c31280e0dcc4bf8))

### Others

- **deps:** bump @angular-devkit/build-angular in /frontend ([1e83309](https://github.com/softrams/bulwark/commit/1e8330973b3de1b50cd01a3db102726d46db9b77))
- **deps:** bump @angular-devkit/build-angular in /frontend ([533abf2](https://github.com/softrams/bulwark/commit/533abf27a4f7b86f683254ee618480d5c5064573))
- **deps:** bump @angular-devkit/build-angular in /frontend ([d2a9b04](https://github.com/softrams/bulwark/commit/d2a9b046a7c346ffc35dc1021170f6981dcc1c2b))
- **deps:** bump @angular/cli from 10.0.4 to 10.0.5 in /frontend ([2a7ddc4](https://github.com/softrams/bulwark/commit/2a7ddc4aa2ef15fb41eb55078722a94b1a6d3952))
- **deps:** bump @angular/cli from 10.0.5 to 10.0.6 in /frontend ([1f41210](https://github.com/softrams/bulwark/commit/1f412106b18ed47287a76448ff753e6e7d0d9ffc))
- **deps:** bump @angular/cli from 10.0.6 to 10.0.7 in /frontend ([e093c72](https://github.com/softrams/bulwark/commit/e093c72fd0c8e80aa58b34c91857d6b0aac5bc99))
- **deps:** bump @ng-select/ng-select from 4.0.4 to 5.0.0 in /frontend ([2ea1db8](https://github.com/softrams/bulwark/commit/2ea1db8c23e94bf6b05b79195dc93d26761a4a02))
- **deps:** bump @ng-select/ng-select from 5.0.0 to 5.0.1 in /frontend ([8e04728](https://github.com/softrams/bulwark/commit/8e04728cf09a87878c8b5f2853a0e029176486f6))
- **deps:** bump concurrently from 5.2.0 to 5.3.0 ([55a0601](https://github.com/softrams/bulwark/commit/55a06012daeead903ec88f683ec7a27626f73fd8))
- **deps:** bump helmet from 3.23.3 to 4.0.0 ([2f682de](https://github.com/softrams/bulwark/commit/2f682de0fae94e085c4e92b2cef2a24498b28677))
- **deps:** bump helmet from 4.0.0 to 4.1.0 ([f46bb06](https://github.com/softrams/bulwark/commit/f46bb068c5ad27450584e6573f6f1d6f4e41753c))
- **deps:** bump jira-client from 6.18.0 to 6.19.0 ([369732f](https://github.com/softrams/bulwark/commit/369732fd6c8288db3125597694afdf3c1f14e6df))
- **deps:** bump ngx-markdown from 10.1.0 to 10.1.1 in /frontend ([9a83ce2](https://github.com/softrams/bulwark/commit/9a83ce2e7708a4bc7145aed2a27e5df449b794fd))
- **deps:** bump nodemailer from 6.4.10 to 6.4.11 ([99087f5](https://github.com/softrams/bulwark/commit/99087f5b382499bbbceaeed4b71e42d8e57bf892))
- **deps:** bump password-validator from 5.0.3 to 5.1.0 ([f47a663](https://github.com/softrams/bulwark/commit/f47a663b9bda58a267ddeda3197a100bc4e31f93))
- **deps:** bump rxjs from 6.6.0 to 6.6.2 in /frontend ([2c28258](https://github.com/softrams/bulwark/commit/2c28258b8026eaf59c2a0444bf9d6b62fd693098))
- **deps:** bump ts-node from 8.10.2 to 9.0.0 ([df9971e](https://github.com/softrams/bulwark/commit/df9971e37a7b3c67e35200b2ff91b25f6a4a10c6))
- **deps:** bump tslib from 2.0.0 to 2.0.1 in /frontend ([f320cf9](https://github.com/softrams/bulwark/commit/f320cf9e4819ece06bf3ddf30b62df9eeefbd610))
- **deps:** bump uuid from 8.2.0 to 8.3.0 ([70c2ee1](https://github.com/softrams/bulwark/commit/70c2ee16156d3699c795ba3af91312b33c80de36))
- **deps-dev:** bump @angular/language-service in /frontend ([a5ec3e1](https://github.com/softrams/bulwark/commit/a5ec3e1cb3e22323858c3218d588ed99d6cb514f))
- **deps-dev:** bump @angular/language-service in /frontend ([5ca9ea8](https://github.com/softrams/bulwark/commit/5ca9ea8ed16a653475e2395bd1461792937dfa4d))
- **deps-dev:** bump @angular/language-service in /frontend ([ccebf16](https://github.com/softrams/bulwark/commit/ccebf16a604e94b3a0a1ea4dc7155b35347ac42b))
- **deps-dev:** bump @angular/language-service in /frontend ([9b0fa48](https://github.com/softrams/bulwark/commit/9b0fa48082b5b7285a60388c6d680b3fbfa26dc0))
- **deps-dev:** bump @angular/language-service in /frontend ([8411cd5](https://github.com/softrams/bulwark/commit/8411cd51860464d7be971c16cd6d22a10a73a8aa))
- **deps-dev:** bump @angular/language-service in /frontend ([bf6a329](https://github.com/softrams/bulwark/commit/bf6a3290d3dd785da068ec9500d23b52840c1776))
- **deps-dev:** bump @babel/core from 7.10.5 to 7.11.0 ([296e46a](https://github.com/softrams/bulwark/commit/296e46af651661861900dfd397b09e7ef11fbf40))
- **deps-dev:** bump @babel/core from 7.11.0 to 7.11.1 ([89d900e](https://github.com/softrams/bulwark/commit/89d900eba373dd1b10589d4555f1e810281e9de8))
- **deps-dev:** bump @babel/core from 7.11.1 to 7.11.4 ([daa6fef](https://github.com/softrams/bulwark/commit/daa6fef3d295cea1f72292a0cd29ec3a42404efc))
- **deps-dev:** bump @babel/preset-env from 7.10.4 to 7.11.0 ([598c653](https://github.com/softrams/bulwark/commit/598c653fee8a5d0eac68c924ab4440573d8b2b0c))
- **deps-dev:** bump @commitlint/config-conventional ([2cc4edd](https://github.com/softrams/bulwark/commit/2cc4edd65bf9b519c2a4d20430797ed7b8a21c94))
- **deps-dev:** bump @types/jasmine from 3.5.11 to 3.5.12 in /frontend ([6b0a119](https://github.com/softrams/bulwark/commit/6b0a119264d6fcc9c161a5634a21a6b28902b529))
- **deps-dev:** bump @types/jasmine from 3.5.12 to 3.5.13 in /frontend ([39fd17d](https://github.com/softrams/bulwark/commit/39fd17d21cb2c66f846deacab3cad94428fa8a8e))
- **deps-dev:** bump @types/jest from 26.0.7 to 26.0.8 ([0e8ca5d](https://github.com/softrams/bulwark/commit/0e8ca5dc95c1fab5ff97f8eabe8e08c049e1d9a5))
- **deps-dev:** bump @types/jest from 26.0.8 to 26.0.9 ([3aa5c98](https://github.com/softrams/bulwark/commit/3aa5c98f6e459b79d4d4832696853df4b29b2c75))
- **deps-dev:** bump @types/jest from 26.0.9 to 26.0.10 ([3803bbe](https://github.com/softrams/bulwark/commit/3803bbe0377de9faacb22343e0722772ba01318e))
- **deps-dev:** bump @types/node from 14.0.25 to 14.0.26 in /frontend ([5252e7f](https://github.com/softrams/bulwark/commit/5252e7f80b4c78154bd2850f0b70200d3af259e0))
- **deps-dev:** bump @types/node from 14.0.26 to 14.0.27 in /frontend ([a362060](https://github.com/softrams/bulwark/commit/a36206048d1216aa8b7bb88586eef704dd74af10))
- **deps-dev:** bump @types/node from 14.0.27 to 14.6.0 in /frontend ([a3ba2b6](https://github.com/softrams/bulwark/commit/a3ba2b6c22f059c83490c9c7692836e4c213f5b7))
- **deps-dev:** bump babel-jest from 26.1.0 to 26.2.1 ([a71be6c](https://github.com/softrams/bulwark/commit/a71be6c6e5f8496a95ae9a258733a14dbc6d3c48))
- **deps-dev:** bump babel-jest from 26.2.1 to 26.2.2 ([e376fd1](https://github.com/softrams/bulwark/commit/e376fd1d0353c134000857279232b122b65488a3))
- **deps-dev:** bump babel-jest from 26.2.2 to 26.3.0 ([4e4f147](https://github.com/softrams/bulwark/commit/4e4f147870d4c48a8ae77a71bd70674a41c3dfb8))
- **deps-dev:** bump jest from 26.1.0 to 26.2.2 ([0e2c2a4](https://github.com/softrams/bulwark/commit/0e2c2a4926907bda1041e7f753b4a01e176e72ce))
- **deps-dev:** bump jest from 26.2.2 to 26.3.0 ([a58ad02](https://github.com/softrams/bulwark/commit/a58ad02393078692cf707ed07d4a258a8c6d83fb))
- **deps-dev:** bump jest from 26.3.0 to 26.4.0 ([59f2090](https://github.com/softrams/bulwark/commit/59f2090f62906721d069279fe6e4a34fdeb24f94))
- **deps-dev:** bump jest from 26.4.0 to 26.4.1 ([f50109e](https://github.com/softrams/bulwark/commit/f50109e977dcb06df39c127210bc166b9bd7406b))
- **deps-dev:** bump jest from 26.4.1 to 26.4.2 ([bd3a6f6](https://github.com/softrams/bulwark/commit/bd3a6f65e0f381627d69214ca0dc881f40ecf808))
- **deps-dev:** bump karma from 5.1.0 to 5.1.1 in /frontend ([f96145d](https://github.com/softrams/bulwark/commit/f96145d9dc1ba93892eac309ea903c07df46aaef))
- **deps-dev:** bump karma-jasmine from 3.3.1 to 4.0.0 in /frontend ([1c7a2bd](https://github.com/softrams/bulwark/commit/1c7a2bd3560df20d2ef60ef5f1d34bf45bdb4783))
- **deps-dev:** bump karma-jasmine from 4.0.0 to 4.0.1 in /frontend ([94a8c1c](https://github.com/softrams/bulwark/commit/94a8c1c590dac10f99752e839f7c9bd991328481))
- **deps-dev:** bump standard-version from 8.0.2 to 9.0.0 ([6687d1c](https://github.com/softrams/bulwark/commit/6687d1c537b81af2f8c85e9fb48770137a2938b6))
- **deps-dev:** bump ts-jest from 26.1.3 to 26.1.4 ([cf8231c](https://github.com/softrams/bulwark/commit/cf8231ced3db1c12b5a658993c0abc53d4a7a1b2))
- **deps-dev:** bump ts-jest from 26.1.4 to 26.2.0 ([b0794a1](https://github.com/softrams/bulwark/commit/b0794a1e2774dc4548c4fc7dd78d3c7761ca8f46))
- **deps-dev:** bump tslint from 6.1.2 to 6.1.3 ([010a286](https://github.com/softrams/bulwark/commit/010a286d377393f6157c6db915b5b68c6782517b))
- **deps-dev:** bump tslint from 6.1.2 to 6.1.3 in /frontend ([97e37f1](https://github.com/softrams/bulwark/commit/97e37f1b390d8e75d1ac4367213425676dcfcd1f))
- **documentation updates:** updated documentation and added seed file ([7796d1e](https://github.com/softrams/bulwark/commit/7796d1e2fa75115e523f77c3bf409f68b5b110f7)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **fix merge conflicts:** fixed merge conflicts ([a433792](https://github.com/softrams/bulwark/commit/a43379292ccc42f26af52b5713ac72f88e548ad1)), closes [#167](https://github.com/softrams/bulwark/issues/167)
- **fix merge conflicts:** fixed merge conflicts from master ([06da9af](https://github.com/softrams/bulwark/commit/06da9affbf73f3a2c3613ea83955fb73aaa764fb))
- **package.json:** fixing merge conflicts ([4f1c2b3](https://github.com/softrams/bulwark/commit/4f1c2b373d0392ef17b6c07d9d6676b6c3165eff)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **package.jsons:** update jira with develop ([cdb9dfa](https://github.com/softrams/bulwark/commit/cdb9dfac0fc0f12703fbda943a436c21e72e4151)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **remove unneeded files:** removed unused and unneeded interfaces ([d6dbd51](https://github.com/softrams/bulwark/commit/d6dbd51b357a7178097b7a3317f61c4e44657552)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **update dependencies from develop:** updated dependencies from the Develop branch ([94c7bcc](https://github.com/softrams/bulwark/commit/94c7bccf59d52e93369158de5b5e705ad29f4725)), closes [#179](https://github.com/softrams/bulwark/issues/179)
- **updated readme:** updated readme and revert workflow name ([614f642](https://github.com/softrams/bulwark/commit/614f64231e45dcf72b8c5a8b81f3d9e52decf142)), closes [#179](https://github.com/softrams/bulwark/issues/179)

### [3.2.3](https://github.com/softrams/bulwark/compare/v3.2.2...v3.2.3) (2020-08-17)

### Bug Fixes

- **ormconfig:** updated ormconfig migrations array ([afba021](https://github.com/softrams/bulwark/commit/afba021856cabfde61d7f833998b9be138dcabb2)), closes [#208](https://github.com/softrams/bulwark/issues/208)
- **seed initial user fix:** update seed user script so that it uses CLI arguments ([14d0e38](https://github.com/softrams/bulwark/commit/14d0e384228075cb064d794251bcb0d8fff796b1)), closes [#208](https://github.com/softrams/bulwark/issues/208)
- **updated readme. added initial migration script:** updated the README with updated initial steps ([c954694](https://github.com/softrams/bulwark/commit/c954694a59e1483c61e7302684d53a57f44e55fa)), closes [#208](https://github.com/softrams/bulwark/issues/208)

### [3.2.2](https://github.com/softrams/bulwark/compare/v3.2.1...v3.2.2) (2020-07-24)

### Others

- **deps:** bump @angular-devkit/build-angular in /frontend ([0e7ed13](https://github.com/softrams/bulwark/commit/0e7ed135e28e9529a823a615d1170732bb972ad0))
- **deps:** bump @angular/cli from 10.0.3 to 10.0.4 in /frontend ([9f28641](https://github.com/softrams/bulwark/commit/9f286413a4ea59a5a0d2319a5cfdaf7874f3189b))
- **deps:** bump ngx-markdown from 10.0.0 to 10.1.0 in /frontend ([124ade3](https://github.com/softrams/bulwark/commit/124ade35bcdc635ba8b6a7556e2b91be792c1801))
- **deps:** bump puppeteer from 5.2.0 to 5.2.1 ([21512c8](https://github.com/softrams/bulwark/commit/21512c891e9a719293498f20f0e38314f9bf206f))
- **deps-dev:** bump @angular/language-service in /frontend ([0a5ea43](https://github.com/softrams/bulwark/commit/0a5ea4390fb120edd73a4282431ab4e17153bba7))
- **deps-dev:** bump @types/jest from 26.0.5 to 26.0.7 ([efb36ae](https://github.com/softrams/bulwark/commit/efb36ae6f9d6063f30f1f0a6511cd1f3c5add224))
- **deps-dev:** bump @types/node from 14.0.23 to 14.0.24 in /frontend ([ec93f25](https://github.com/softrams/bulwark/commit/ec93f2539362cc2cf707f3ced68b6a21352bb9ab))
- **deps-dev:** bump @types/node from 14.0.24 to 14.0.25 in /frontend ([49dbb50](https://github.com/softrams/bulwark/commit/49dbb507e7629d7560af0839f2e321083e4c2abf))
- **deps-dev:** bump jasmine-core from 3.5.0 to 3.6.0 in /frontend ([84f70ae](https://github.com/softrams/bulwark/commit/84f70ae75044f8ed1da2635900d47b1521136e95))

### [3.2.1](https://github.com/softrams/bulwark/compare/v3.2.0...v3.2.1) (2020-07-20)

### Build System

- **lru-cache:** added lru-cache to remove angular error ([adaa65b](https://github.com/softrams/bulwark/commit/adaa65ba4c4c1451e0dd7100036e293abb1db824)), closes [#111](https://github.com/softrams/bulwark/issues/111)

### Tests

- **assessment controller:** assessment controller unit tests ([c3d7fa8](https://github.com/softrams/bulwark/commit/c3d7fa8f92170657fd4729fa6935af6ed32a6d8c)), closes [#64](https://github.com/softrams/bulwark/issues/64)
- **email.service.ts:** unit tests for email service ([799132f](https://github.com/softrams/bulwark/commit/799132fa94466abf9ab137920e5d2382cb6124b9)), closes [#136](https://github.com/softrams/bulwark/issues/136)
- **package.json:** update test node script ([6e32fcc](https://github.com/softrams/bulwark/commit/6e32fccea777d9c6aa670a13457767c0ba5169cd)), closes [#137](https://github.com/softrams/bulwark/issues/137)
- **password.utility.spec.ts:** unit tests for password utility ([e76fcee](https://github.com/softrams/bulwark/commit/e76fceec53a3d1ee4dd9bb223693c4f1befa7b66)), closes [#64](https://github.com/softrams/bulwark/issues/64)
- **seed-user.ts:** initial seed user test ([b8ac8b8](https://github.com/softrams/bulwark/commit/b8ac8b8c2eb34b72efe433111e2291c1dc90ceae)), closes [#137](https://github.com/softrams/bulwark/issues/137)
- **user controller:** user controller unit test ([aa53b54](https://github.com/softrams/bulwark/commit/aa53b5469814ed3158cbb3f2436369dadb5a4e07)), closes [#122](https://github.com/softrams/bulwark/issues/122)
- **user.controller.spec.ts:** complete unit tests for user controller ([b96af41](https://github.com/softrams/bulwark/commit/b96af417d6b2f49dd95704ead526139c975cffe6)), closes [#122](https://github.com/softrams/bulwark/issues/122)

### Others

- **angular 10:** upgrade to Angular 10 ([3fe70f5](https://github.com/softrams/bulwark/commit/3fe70f5498f6367446bed15dedbf92a725de3e00)), closes [#111](https://github.com/softrams/bulwark/issues/111)
- **deps:** bump @angular-devkit/build-angular in /frontend ([9aa1a9d](https://github.com/softrams/bulwark/commit/9aa1a9de50bfe870012b3cd0a07870d123f8fc6b))
- **deps:** bump @angular/cli from 10.0.2 to 10.0.3 in /frontend ([cdf5e50](https://github.com/softrams/bulwark/commit/cdf5e50a63d0a97b192afcee6e64098ea6ff3aec))
- **deps:** bump @fortawesome/angular-fontawesome in /frontend ([e7b7aa1](https://github.com/softrams/bulwark/commit/e7b7aa1fc8c0f1e35b27fcad222cabb711ea03b2))
- **deps:** bump @fortawesome/fontawesome-svg-core in /frontend ([a982d4f](https://github.com/softrams/bulwark/commit/a982d4fc8af1d5029a9da26a3b67fc6050e16d6b))
- **deps:** bump @fortawesome/free-brands-svg-icons in /frontend ([7367d70](https://github.com/softrams/bulwark/commit/7367d708a7f08b334e4dedc6a819423e573ddc32))
- **deps:** bump ngx-markdown from 9.1.1 to 10.0.0 in /frontend ([de9eae4](https://github.com/softrams/bulwark/commit/de9eae48f4da2f234d26911c4e118be5930920b4))
- **deps:** bump puppeteer from 5.0.0 to 5.1.0 ([b024375](https://github.com/softrams/bulwark/commit/b0243757789f0341e83eaa1983f782346426f7fd))
- **deps:** bump puppeteer from 5.1.0 to 5.2.0 ([094b493](https://github.com/softrams/bulwark/commit/094b493ec72e1a5003d5691a2f16d69dd69a096f))
- **deps:** bump tslib from 1.10.0 to 1.13.0 in /frontend ([7b031cb](https://github.com/softrams/bulwark/commit/7b031cb6bd5268857f0381b9316c87deb371966a))
- **deps:** bump typescript from 3.9.6 to 3.9.7 in /frontend ([d2fc168](https://github.com/softrams/bulwark/commit/d2fc168e33af7b9c2d24e916c53338a95904093d))
- **deps-dev:** bump @angular/language-service in /frontend ([a1cafaa](https://github.com/softrams/bulwark/commit/a1cafaa370db2ca41f4ae4d05c9a96b23d367f9c))
- **deps-dev:** bump @babel/core from 7.10.4 to 7.10.5 ([cff5ac3](https://github.com/softrams/bulwark/commit/cff5ac3365bb67e4907341d2e1cda3e4a39a5304))
- **deps-dev:** bump @commitlint/cli from 9.0.1 to 9.1.1 ([9670c1a](https://github.com/softrams/bulwark/commit/9670c1a9545c090711639ade18011dae3bfe42b6))
- **deps-dev:** bump @commitlint/config-conventional ([9f987bf](https://github.com/softrams/bulwark/commit/9f987bfd4ee17e9c2dfdd8e2f67bd192374ca634))
- **deps-dev:** bump @types/jasmine from 2.8.16 to 3.5.11 in /frontend ([d529063](https://github.com/softrams/bulwark/commit/d5290638d3ca493428664149591e4829bcff6cef))
- **deps-dev:** bump @types/jest from 26.0.4 to 26.0.5 ([2d442c5](https://github.com/softrams/bulwark/commit/2d442c5629399b815b322ef2c85eb097698ce967))
- **deps-dev:** bump @types/node from 12.12.34 to 14.0.23 in /frontend ([de699d6](https://github.com/softrams/bulwark/commit/de699d6e9ad978ec4613012a7e260977719ccc84))
- **deps-dev:** bump codelyzer from 5.2.2 to 6.0.0 in /frontend ([0cbedf9](https://github.com/softrams/bulwark/commit/0cbedf98485b155c6a459b79a70f9e5ad9817771))
- **deps-dev:** bump karma-coverage-istanbul-reporter in /frontend ([da3906d](https://github.com/softrams/bulwark/commit/da3906d320540c816536c7b77312be6907537992))
- **deps-dev:** bump protractor from 5.4.2 to 7.0.0 in /frontend ([943642e](https://github.com/softrams/bulwark/commit/943642eb31bebe326d6ea55ac757500192a9a704))
- **deps-dev:** bump standard-version from 8.0.0 to 8.0.1 ([c1dc9c2](https://github.com/softrams/bulwark/commit/c1dc9c21d351d7220bba87ef660b2565360edfcc))
- **deps-dev:** bump standard-version from 8.0.0 to 8.0.1 ([5f213bd](https://github.com/softrams/bulwark/commit/5f213bd3532a1857a6425efb48dcf0ad1c8caedf))
- **deps-dev:** bump standard-version from 8.0.1 to 8.0.2 ([7d9979a](https://github.com/softrams/bulwark/commit/7d9979a45300c976d0ecf12d35f5339f6cc111a3))
- **deps-dev:** bump ts-jest from 26.1.1 to 26.1.2 ([13563c8](https://github.com/softrams/bulwark/commit/13563c8036df275f3abd665327df3811c98d14f8))
- **deps-dev:** bump ts-jest from 26.1.2 to 26.1.3 ([aac7b80](https://github.com/softrams/bulwark/commit/aac7b8088eac3cbd1cd1e15c91994b5b1fc1e993))
- **deps-dev:** bump typescript from 3.9.6 to 3.9.7 ([6ba20aa](https://github.com/softrams/bulwark/commit/6ba20aa27d413b209cabd21d5f62111fdc8f1eb2))
- **lodash:** update lodash to mitigate low severity vulnerability ([9fa5682](https://github.com/softrams/bulwark/commit/9fa568233c342224c6042b90b7a5f0db7d454c64))
- **package.json:** move pre-commit hook to hooks ([e2062d6](https://github.com/softrams/bulwark/commit/e2062d639b0a009fca1deb541445f4aada885036))
- **package.json frontend/package.json:** fix merge conflcits ([620e320](https://github.com/softrams/bulwark/commit/620e32043ac680b9b4edc75abd6dec8ba84e881e)), closes [#111](https://github.com/softrams/bulwark/issues/111)
- **package.json frontend/package.json:** fix merge conflicts ([244d123](https://github.com/softrams/bulwark/commit/244d1238305041510b570081022d32469ab17877)), closes [#111](https://github.com/softrams/bulwark/issues/111)
- **package.json frontend/package.json:** merge from develop. Remove sinon and sqlite3 ([8021985](https://github.com/softrams/bulwark/commit/8021985bfdd45e860a3db54e4643f2d3a92815a7)), closes [#64](https://github.com/softrams/bulwark/issues/64)
- **tslint revert:** revert tslint version ([d3f3d97](https://github.com/softrams/bulwark/commit/d3f3d97da8676039262f6355480d79228fe7d0c7)), closes [#111](https://github.com/softrams/bulwark/issues/111)

## [3.2.0](https://github.com/softrams/bulwark/compare/v3.1.3...v3.2.0) (2020-07-13)

### Features

- **report.component.html:** implemented dynamic report properties ([8a1300e](https://github.com/softrams/bulwark/commit/8a1300eb51f3ed3971c63cf3e3f0aca9ce37b4d4)), closes [#37](https://github.com/softrams/bulwark/issues/37)

### Bug Fixes

- **uuid:** update import statement for uuid ([1e1143f](https://github.com/softrams/bulwark/commit/1e1143f445061f95bab551a55e310fa5862ec737))

### CI

- **node.js.yml:** added linting to CI process ([53f600c](https://github.com/softrams/bulwark/commit/53f600c22ef0127a6702475139e660b20b5b2b2b)), closes [#90](https://github.com/softrams/bulwark/issues/90)
- **node.js.yml:** initial commit for github action ([7a87e2b](https://github.com/softrams/bulwark/commit/7a87e2b4ee5dcf7fb09e9d2ca66051a61c4a09a6)), closes [#6](https://github.com/softrams/bulwark/issues/6)
- **removing tslint:** removing tslint to fix build error ([02f3c08](https://github.com/softrams/bulwark/commit/02f3c080c4fc487461e27d146e59ed04f00da14c))

### Others

- **deps:** bump @fortawesome/fontawesome-svg-core in /frontend ([4675399](https://github.com/softrams/bulwark/commit/4675399427ab02caab1b79498169fa42bb3e2765))
- **deps:** bump @fortawesome/free-brands-svg-icons in /frontend ([17fb885](https://github.com/softrams/bulwark/commit/17fb885eb8361aedd859c9022084414160826815))
- **deps:** bump @ng-select/ng-select from 4.0.0 to 4.0.4 in /frontend ([be713d0](https://github.com/softrams/bulwark/commit/be713d01a50ca36270948e7e1773968d31579605))
- **deps:** bump @types/body-parser from 1.17.1 to 1.19.0 ([3a4a706](https://github.com/softrams/bulwark/commit/3a4a70613f56896677d490fa504a95cd338b0999))
- **deps:** bump @types/express from 4.17.1 to 4.17.7 ([c41a065](https://github.com/softrams/bulwark/commit/c41a0654ad011afffbac43cf1e3d2a4e4dceab48))
- **deps:** bump bcrypt from 3.0.7 to 5.0.0 ([39f0eeb](https://github.com/softrams/bulwark/commit/39f0eeb7b55d9e98c1252959e3b09cd31869368b))
- **deps:** bump class-validator from 0.10.2 to 0.12.2 ([c5402ca](https://github.com/softrams/bulwark/commit/c5402ca4a77cc09bbd819183606353fec646ed88))
- **deps:** bump concurrently from 5.0.0 to 5.2.0 ([7d63245](https://github.com/softrams/bulwark/commit/7d632452c8146c8e2e97ae6b348378feac9b350a))
- **deps:** bump core-js from 2.6.10 to 3.6.5 in /frontend ([ff968bc](https://github.com/softrams/bulwark/commit/ff968bc39584897fe166869d26f809633cc0b64b))
- **deps:** bump helmet from 3.21.1 to 3.23.3 ([6af23eb](https://github.com/softrams/bulwark/commit/6af23eb373d5fc5b8c6230db6e4f20680fbec932))
- **deps:** bump mysql from 2.17.1 to 2.18.1 ([cf1a858](https://github.com/softrams/bulwark/commit/cf1a858263250f63dbc83fb7323613c5cab42598))
- **deps:** bump ngx-markdown from 8.2.1 to 9.1.1 in /frontend ([2d5574b](https://github.com/softrams/bulwark/commit/2d5574b71f55e5671b96cb78e04f519c253f9ba3))
- **deps:** bump nodemailer from 6.4.2 to 6.4.10 ([9ba41f3](https://github.com/softrams/bulwark/commit/9ba41f31278bd48fe0def48f8d07fc27f30280ec))
- **deps:** bump puppeteer from 1.20.0 to 5.0.0 ([ba72380](https://github.com/softrams/bulwark/commit/ba723801dd54a121a33bdf7dbfba4db4c8245e0a))
- **deps:** bump rxjs from 6.5.4 to 6.6.0 in /frontend ([e28f1ed](https://github.com/softrams/bulwark/commit/e28f1ede03893fe2f12896250c0633c386caeed2))
- **deps:** bump ts-node from 8.4.1 to 8.10.2 ([12dc1fc](https://github.com/softrams/bulwark/commit/12dc1fc8abe24842869f4aa19f574f59be63e921))
- **deps:** bump typeorm from 0.2.24 to 0.2.25 ([dd663d9](https://github.com/softrams/bulwark/commit/dd663d98e0444f40d07e08b7fc92086167f3a3f6))
- **deps:** bump uuid from 3.4.0 to 8.2.0 ([395ae16](https://github.com/softrams/bulwark/commit/395ae16f32cdad745e10ab595e48071b67a3b63f))
- **deps-dev:** bump @angular/language-service in /frontend ([2b48498](https://github.com/softrams/bulwark/commit/2b48498a81444b9ea851e0b1200a998925886b3c))
- **deps-dev:** bump @commitlint/cli from 8.3.5 to 9.0.1 ([cfe0308](https://github.com/softrams/bulwark/commit/cfe030877f9607d896852c905dde2c46b2ad8dc4))
- **deps-dev:** bump @commitlint/config-conventional ([0be3d9b](https://github.com/softrams/bulwark/commit/0be3d9bda8154c9e4a26a332287e6412c4bd983f))
- **deps-dev:** bump karma from 4.0.1 to 5.1.0 in /frontend ([6e63c60](https://github.com/softrams/bulwark/commit/6e63c606da20e29d802bd344dc0110bdd6cbbcac))
- **deps-dev:** bump karma-jasmine from 1.1.2 to 3.3.1 in /frontend ([3a25383](https://github.com/softrams/bulwark/commit/3a2538313299bdb7dfecdd8f0bb087908c47ffcb))
- **deps-dev:** bump nodemon from 1.19.3 to 2.0.4 ([b5ce69b](https://github.com/softrams/bulwark/commit/b5ce69b31822ef59bc9825c8ca4a032385bf182e))
- **deps-dev:** bump ts-node from 7.0.1 to 8.10.2 in /frontend ([2120370](https://github.com/softrams/bulwark/commit/21203709e9bf19d310887c072db185b935c69982))
- **deps-dev:** bump tslint from 5.11.0 to 6.1.2 in /frontend ([14e7ab5](https://github.com/softrams/bulwark/commit/14e7ab56a245c533698d0fb5d17dacddcdb8892f))
- **deps-dev:** bump tslint from 6.1.0 to 6.1.2 ([24b1ed8](https://github.com/softrams/bulwark/commit/24b1ed8db6c8fbf8159b48b2324f583b3ec9e071))
- **deps-dev:** bump typescript from 3.8.3 to 3.9.6 ([b5cd69e](https://github.com/softrams/bulwark/commit/b5cd69ee478ec9d962c68c3eb998636180f60eef))
- **release:** 3.1.4 ([69ce27f](https://github.com/softrams/bulwark/commit/69ce27f54795707ead852816050a4f8c35d3a789))
- **release:** 3.1.5 ([0c3d25a](https://github.com/softrams/bulwark/commit/0c3d25aa2c6a5892b10b43dc985f5b42b4771e6f))
- **release:** 3.1.6 ([db6137b](https://github.com/softrams/bulwark/commit/db6137b8e0a212f3b900dc5760ef2fdcd2e49ac1))

### [3.1.6](https://github.com/softrams/bulwark/compare/v3.1.5...v3.1.6) (2020-07-11)

### CI

- **node.js.yml:** initial commit for github action ([7a87e2b](https://github.com/softrams/bulwark/commit/7a87e2b4ee5dcf7fb09e9d2ca66051a61c4a09a6)), closes [#6](https://github.com/softrams/bulwark/issues/6)

### [3.1.5](https://github.com/softrams/bulwark/compare/v3.1.4...v3.1.5) (2020-07-11)

### Others

- **deps:** bump @ng-select/ng-select from 4.0.0 to 4.0.4 in /frontend ([be713d0](https://github.com/softrams/bulwark/commit/be713d01a50ca36270948e7e1773968d31579605))
- **deps:** bump bcrypt from 3.0.7 to 5.0.0 ([39f0eeb](https://github.com/softrams/bulwark/commit/39f0eeb7b55d9e98c1252959e3b09cd31869368b))
- **deps:** bump class-validator from 0.10.2 to 0.12.2 ([c5402ca](https://github.com/softrams/bulwark/commit/c5402ca4a77cc09bbd819183606353fec646ed88))
- **deps:** bump core-js from 2.6.10 to 3.6.5 in /frontend ([ff968bc](https://github.com/softrams/bulwark/commit/ff968bc39584897fe166869d26f809633cc0b64b))
- **deps:** bump ngx-markdown from 8.2.1 to 9.1.1 in /frontend ([2d5574b](https://github.com/softrams/bulwark/commit/2d5574b71f55e5671b96cb78e04f519c253f9ba3))
- **deps:** bump puppeteer from 1.20.0 to 5.0.0 ([ba72380](https://github.com/softrams/bulwark/commit/ba723801dd54a121a33bdf7dbfba4db4c8245e0a))
- **deps:** bump rxjs from 6.5.4 to 6.6.0 in /frontend ([e28f1ed](https://github.com/softrams/bulwark/commit/e28f1ede03893fe2f12896250c0633c386caeed2))
- **deps:** bump ts-node from 8.4.1 to 8.10.2 ([12dc1fc](https://github.com/softrams/bulwark/commit/12dc1fc8abe24842869f4aa19f574f59be63e921))
- **deps:** bump typeorm from 0.2.24 to 0.2.25 ([dd663d9](https://github.com/softrams/bulwark/commit/dd663d98e0444f40d07e08b7fc92086167f3a3f6))
- **deps-dev:** bump @commitlint/cli from 8.3.5 to 9.0.1 ([cfe0308](https://github.com/softrams/bulwark/commit/cfe030877f9607d896852c905dde2c46b2ad8dc4))
- **deps-dev:** bump @commitlint/config-conventional ([0be3d9b](https://github.com/softrams/bulwark/commit/0be3d9bda8154c9e4a26a332287e6412c4bd983f))
- **deps-dev:** bump karma from 4.0.1 to 5.1.0 in /frontend ([6e63c60](https://github.com/softrams/bulwark/commit/6e63c606da20e29d802bd344dc0110bdd6cbbcac))
- **deps-dev:** bump karma-jasmine from 1.1.2 to 3.3.1 in /frontend ([3a25383](https://github.com/softrams/bulwark/commit/3a2538313299bdb7dfecdd8f0bb087908c47ffcb))
- **deps-dev:** bump nodemon from 1.19.3 to 2.0.4 ([b5ce69b](https://github.com/softrams/bulwark/commit/b5ce69b31822ef59bc9825c8ca4a032385bf182e))
- **deps-dev:** bump tslint from 5.11.0 to 6.1.2 in /frontend ([14e7ab5](https://github.com/softrams/bulwark/commit/14e7ab56a245c533698d0fb5d17dacddcdb8892f))
- **deps-dev:** bump tslint from 6.1.0 to 6.1.2 ([24b1ed8](https://github.com/softrams/bulwark/commit/24b1ed8db6c8fbf8159b48b2324f583b3ec9e071))

### [3.1.4](https://github.com/softrams/bulwark/compare/v3.1.3...v3.1.4) (2020-07-11)

### [3.1.3](https://github.com/softrams/bulwark/compare/v3.1.2...v3.1.3) (2020-07-10)

### Others

- **fix dependabot config:** fix dependabot config errors ([f4acc17](https://github.com/softrams/bulwark/commit/f4acc17bb797a16214f761239391477795d5ba9d))

### [3.1.2](https://github.com/softrams/bulwark/compare/v3.1.1...v3.1.2) (2020-07-10)

### Others

- **add target branch:** add target branch to dependabot ([8a5732b](https://github.com/softrams/bulwark/commit/8a5732bceb32b6ee44f4b83837112090643b5a59))

### [3.1.1](https://github.com/softrams/bulwark/compare/v3.1.0...v3.1.1) (2020-07-10)

### Others

- **add dependabot config:** add dependabot configuration ([bcf46b1](https://github.com/softrams/bulwark/commit/bcf46b146b2240c4d7269caf3df2ee413771d431)), closes [#65](https://github.com/softrams/bulwark/issues/65)

## [3.1.0](https://github.com/softrams/bulwark/compare/v3.0.2...v3.1.0) (2020-07-09)

### Features

- **user-profile component:** ability to update user password ([9855987](https://github.com/softrams/bulwark/commit/985598765c7e7a4002bc5dd679a2096a1833dbc6)), closes [#50](https://github.com/softrams/bulwark/issues/50)
- **user-profile.component.ts:** wired API to auth service and user prof ([6b6eb36](https://github.com/softrams/bulwark/commit/6b6eb36b1a361d2c3601e6cb7d4bac24a80b5c0c)), closes [#50](https://github.com/softrams/bulwark/issues/50)

### Bug Fixes

- **babel.config.js:** added new line ([e0617dd](https://github.com/softrams/bulwark/commit/e0617dd8e0d7c5c3b71ec88cc903e22632f5c418))
- **jest.config.js:** removed tsx and jsx ([a269233](https://github.com/softrams/bulwark/commit/a26923324c0fbff7a32617fb5cc9298ef53df816))
- **jwt.spec.ts:** added comments ([3b1505b](https://github.com/softrams/bulwark/commit/3b1505bbe7a449a32188f97f1fdbee4f6f1de63e))
- **jwt.spec.ts:** added process.env to beforeAll to fix the issue ([51ab6e8](https://github.com/softrams/bulwark/commit/51ab6e805df007f3dbc41c9864670b2716ed9afd))
- **jwt.spec.ts:** readded dotenv.config per PR ([e6ff159](https://github.com/softrams/bulwark/commit/e6ff1590f177c0460976360682e84935a8cc848b))
- **jwt.spec.ts:** removed need for process.env ([c8ab992](https://github.com/softrams/bulwark/commit/c8ab99274859d9287ff21f9e82416dd2ef1d73db))
- **package.json:** added needed packages to package.json ([15708b7](https://github.com/softrams/bulwark/commit/15708b7a19eed9a65be054876e4b231d2cee02ca))
- **testing.md:** fixed a typo issue ([5441e7b](https://github.com/softrams/bulwark/commit/5441e7b43bba629bff0eaef374355e2f45163938))
- **tsconfig.json:** added spec.ts to the exclude list ([66321e1](https://github.com/softrams/bulwark/commit/66321e1284adc186fdc645a4cdc65f6b74b992f5))

### Code Refactoring

- **user-profile.component.html .spec.ts:** updated element ID ([e91f40c](https://github.com/softrams/bulwark/commit/e91f40c820bd340f0b8f8f1472be7ecf737ba342)), closes [#50](https://github.com/softrams/bulwark/issues/50)

### Docs

- **contributing.md:** added a testing section under the linting section ([332e174](https://github.com/softrams/bulwark/commit/332e174f34a3b1bb996c7af567478b9a33dcfe9f))
- **contributing.md:** removed testing information and added testing.md ([f3bdc44](https://github.com/softrams/bulwark/commit/f3bdc443cea498a8ce1fcf6f6687475b2c4c3c61))
- **testing.md:** added a line to open the test coverage ([95d4862](https://github.com/softrams/bulwark/commit/95d48623d0a929bc667b92e0ee6b93484bdb1b54))
- **testing.md:** removed comment of early stages ([f4ccdb9](https://github.com/softrams/bulwark/commit/f4ccdb92c1ac9dfe30f9a8241f15f7162c058a3e))
- **testings.md:** added testing doc to run down requirements ([4dc0672](https://github.com/softrams/bulwark/commit/4dc0672e7cd267201ff3126a9363b8758e3fe037))

### [3.0.2](https://github.com/softrams/bulwark/compare/v3.0.1...v3.0.2) (2020-05-28)

### Docs

- **seed-user.ts:** updated documentation ([1797f44](https://github.com/softrams/bulwark/commit/1797f4412cd1cfca0c8fa3ce54709a9aa81b8d34))

### [3.0.1](https://github.com/softrams/bulwark/compare/v3.0.0...v3.0.1) (2020-05-28)

### Bug Fixes

- **seed-user.ts:** update seed user with new fields ([a7881b8](https://github.com/softrams/bulwark/commit/a7881b80d2baf4a017d1cb70661002dce65f20b8)), closes [#57](https://github.com/softrams/bulwark/issues/57)

## [3.0.0](https://github.com/softrams/bulwark/compare/v2.0.1...v3.0.0) (2020-05-28)

### ⚠ BREAKING CHANGES

- **assessment form and report:** ManyToMany relationship has been created between the User and Assessment models.
  API's have been updated for this change. New API's created to retrieve users.

### Features

- **assessment form and report:** dynamic tester association to asssment ([3bbfc9c](https://github.com/softrams/bulwark/commit/3bbfc9c4d3d3a8f801ef3691298de223cea10dcc)), closes [#52](https://github.com/softrams/bulwark/issues/52)

### Bug Fixes

- **angular datepipe:** added UTC property to datepipe ([701611f](https://github.com/softrams/bulwark/commit/701611f94970502b327bd29f22cd99c090892359)), closes [#3](https://github.com/softrams/bulwark/issues/3)

### Code Refactoring

- **assessment controller:** updated response message. Removed usrId ([c2d2555](https://github.com/softrams/bulwark/commit/c2d2555e48aa86be0e13f1778297d1cdb73efb75)), closes [#52](https://github.com/softrams/bulwark/issues/52)

### [2.0.1](https://github.com/softrams/bulwark/compare/v2.0.0...v2.0.1) (2020-05-20)

### Docs

- **readme.md:** added new env var and fixed typo ([5ccf6ac](https://github.com/softrams/bulwark/commit/5ccf6ac022ee1012141b2518848443de04b5f19c))

## 2.0.0 (2020-05-20)

### ⚠ BREAKING CHANGES

- **register component and api:** The register API was updated to include the missing fields. User validation was
  also added to the Register API.
- Update to the login API and jwt middleware
- **patch and retrieve user:** Added three new columns for the User table: firstName, lastName, title

### Features

- **app interceptor:** original request now is sent after refresh ([5072fce](https://github.com/softrams/bulwark/commit/5072fce3a11dd8a8e51cfa46f6adc4d51ed843f3)), closes [#5](https://github.com/softrams/bulwark/issues/5)
- implemented Refresh Token ([21522ac](https://github.com/softrams/bulwark/commit/21522ac7373b310629d80b584687dac3d09a646e)), closes [#5](https://github.com/softrams/bulwark/issues/5)
- **patch and retrieve user:** implemented APIs for user patch and get ([fefd70b](https://github.com/softrams/bulwark/commit/fefd70b64c4fe38136ea3b741cb435aa637c118c)), closes [#4](https://github.com/softrams/bulwark/issues/4)
- **user profile component:** created user profile template ([d2431af](https://github.com/softrams/bulwark/commit/d2431afcbd67f5adc7612ee100997d4d79a48fce)), closes [#4](https://github.com/softrams/bulwark/issues/4)

### Bug Fixes

- **register component and api:** added missing user fields to registeAPI ([6f73ef3](https://github.com/softrams/bulwark/commit/6f73ef34fa8f34f787dfa265a293301d12673dae))

### Docs

- **contributing.md:** modified pull request process ([8f4adce](https://github.com/softrams/bulwark/commit/8f4adce1993d873e77593b9063997a5134be3d59))

### Tests

- **user-profile component:** added unit tests to the user-profile comp ([91ee0c7](https://github.com/softrams/bulwark/commit/91ee0c7173e48af10ba8451000b8b0b456620b4e)), closes [#4](https://github.com/softrams/bulwark/issues/4)

### Code Refactoring

- **login.component:** remove console.log. Used auth service func ([30eae04](https://github.com/softrams/bulwark/commit/30eae049a9b912de729e13b8a5a93c67baa7bfc3)), closes [#5](https://github.com/softrams/bulwark/issues/5)

### Others

- **angular.json:** turned off google analytics ([1a849c5](https://github.com/softrams/bulwark/commit/1a849c5b0127f01805eb7444aa3668f171281d53))
- **implemented commitizen and husky:** implented commit mgs standards ([16c3e43](https://github.com/softrams/bulwark/commit/16c3e432e20ad7f7c94a5a857631a9d4b12c8cdc))
- **implemented husky, commitizen, and pull request template:** commit ([f14b5b2](https://github.com/softrams/bulwark/commit/f14b5b25ef2dcdc3d07c5fb899ea883cc9b51f65)), closes [#43](https://github.com/softrams/bulwark/issues/43)
- **package.json:** installed standard version ([4390b61](https://github.com/softrams/bulwark/commit/4390b616c3176a77acd98ef2ad9d3d76c900a034)), closes [#42](https://github.com/softrams/bulwark/issues/42)
- **package.json:** updated contributors and set version to 1 ([0910ebe](https://github.com/softrams/bulwark/commit/0910ebe1bd57bf5f3c5cb4b8b3cd066c7d864c3c))


================================================
FILE: CODEOWNERS
================================================
* @softrams/bulwark-core-team


================================================
FILE: CODE_OF_CONDUCT.md
================================================
# Contributor Covenant Code of Conduct

## Our Pledge

In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, sex characteristics, gender identity and expression,
level of experience, education, socio-economic status, nationality, personal
appearance, race, religion, or sexual identity and orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment
include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or
 advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
 address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
 professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.

## Scope

This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at opensource@softrams.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Further details of specific enforcement policies may be posted separately.

Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html

[homepage]: https://www.contributor-covenant.org

For answers to common questions about this code of conduct, see
https://www.contributor-covenant.org/faq


================================================
FILE: CONTRIBUTING.md
================================================
# Contributing

When contributing to this repository, please first discuss the change you wish to make via issue with the owners of this repository before making a change.

## Contributing to Development

Issues will be labelled with `help wanted` or `good first issue`

- `Help wanted` label indicates tasks where the project team would appreciate community help
- `Good first issue` label indicates a task that introduce developers to the project, have low complexity, and are isolated

## Version Control

The project uses git as its version control system and GitHub as the central server and collaboration platform.

### Branching model

Bulwark is maintained in a simplified [Gitflow](https://jeffkreeftmeijer.com/git-flow/) fashion, where all active development happens on the develop branch while master is used to maintain stable versions. Tasks with higher complexity, prototypes, and experiments will occur in feature branches.

### Versioning

Any release from master will have a unique version automated by [standard-version](https://github.com/conventional-changelog/standard-version)

`MAJOR.MINOR.PATCH` will be incremented by:

1. `MAJOR` version when breaking changes occur
2. `MINOR` version with new functionality that is backwards-compatible
3. `PATCH` version with backwards-compatible bug fixes

## Pull-Request Process

1. All work must be done in a fork off the dev branch
2. Ensure any install or build dependencies are removed
3. All Git commits within a PR must be conventional commits using [commitizen](https://github.com/commitizen/cz-cli) and enforced by [husky](https://github.com/typicode/husky)
   1. Run `$ npm run commit` when committing changes
4. The code must comply to the [testing requirements](TESTING.md)
5. Open a Pull-Request against the `develop` branch


================================================
FILE: Dockerfile
================================================
FROM softramsdocker/bulwark-base:latest

USER root

# Environment Arguments for Bulwark
ARG MYSQL_USER
ARG MYSQL_ROOT_PASSWORD
ARG MYSQL_DB_CHECK
ARG DB_PASSWORD
ARG DB_URL
ARG DB_USERNAME
ARG DB_PORT
ARG DB_NAME
ARG DB_TYPE
ARG NODE_ENV
ARG DEV_URL
ARG SERVER_ADDRESS
ARG PORT
ARG JWT_KEY
ARG JWT_REFRESH_KEY
ARG CRYPTO_SECRET
ARG CRYPTO_SALT

# Stage the setup to launch Bulwark
RUN mkdir -p /bulwark
COPY . /bulwark
WORKDIR "bulwark"

# Permissions for Bulwark
RUN chown -R bulwark:bulwark /bulwark

# DB Wait MySQL Status Up, requires mysql-client and python
RUN apk add --no-cache --update mysql-client \
    python2 

# Runas User
USER bulwark

# Bulwark Specific Startup
# Cleanup NPM to save some space
RUN npm install \
    && rm -rf /bulwark/.npm 

# Swap to root and delete python
USER root
# Clean up apk
RUN apk del python2

# Runas User
USER bulwark

# Running Port
EXPOSE 5000

# Launch Bulwark
CMD ["npm", "run", "start"]


================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2020 Softrams LLC

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

================================================
FILE: README.md
================================================
<p align="center">
  <img width="350" src="frontend/src/assets/logo.png">
</p>

<p style="text-align: center;">An organizational asset and vulnerability management tool, with Jira integration, designed for generating application security reports.</p>

<p align="center">
<img src='https://img.shields.io/badge/License-MIT-yellow.svg'>
<img src='https://github.com/softrams/bulwark/workflows/build/badge.svg'>
<img src='https://github.com/softrams/bulwark/workflows/CodeQL/badge.svg'>
<img src='https://img.shields.io/docker/cloud/build/softramsdocker/bulwark'>
<img src='https://img.shields.io/docker/pulls/softramsdocker/bulwark'>
</p>

## Features

- Multi-client Vulnerability Management
- Security Report Generation
- Jira Integration
- Team-based Roles Authorization
- API Key & Management
- Email Integration
- Markdown Support
- User Activation/Deactivation (Admin)

## Note

Please keep in mind, this project is in early development.

## Demo

![Bulwark Walkthrough Demo](https://github.com/softrams/media/blob/main/bulwark_report_demo.gif)

## Jira Integration

![Bulwark Jira Demo](https://github.com/softrams/media/blob/main/bulwark_jira_demo.gif)

## Launch with Docker

1. Install [Docker](https://www.docker.com/)
2. Create a `.env` file and supply the following properties:

```
MYSQL_DATABASE="bulwark"
MYSQL_PASSWORD="bulwark"
MYSQL_ROOT_PASSWORD="bulwark"
MYSQL_USER="root"
MYSQL_DB_CHECK="mysql"
DB_PASSWORD="bulwark"
DB_URL="172.16.16.3"
DB_ROOT="root"
DB_USERNAME="bulwark"
DB_PORT=3306
DB_NAME="bulwark"
DB_TYPE="mysql"
NODE_ENV="production"
DEV_URL="http://localhost:4200"
SERVER_ADDRESS="http://localhost"
PORT=4500
JWT_KEY="changeme"
JWT_REFRESH_KEY="changeme"
CRYPTO_SECRET="changeme"
CRYPTO_SALT="changeme"
```

Build and start Bulwark containers:

```
docker-compose up
```

Start/Stop Bulwark containers:

```
docker-compose start
docker-compose stop
```

Remove Bulwark containers:

```
docker-compose down
```

Bulwark will be available at [localhost:4500](http://localhost:4500)

## Local Installation

```
$ git clone (url)
$ cd bulwark
$ npm install
```

Running `npm install` will install both server-side and client-side modules. Furthermore, it will run the script `npm run config` which will dynamically set the environment variables in addition to updating the [Angular environment](https://angular.io/guide/build).

### Development Mode

Set `NODE_ENV="development"`

```
$ npm run config
$ npm run start:dev
```

### Production Mode

Set `NODE_ENV="production"`
_Please note: `npm install` will automatically build in production mode_

```
$ npm run config
$ npm run build:prod
$ npm start
```

### Environment variables

Create a `.env` file on the root directory. This will be parsed with [dotenv](https://www.npmjs.com/package/dotenv) by the application.

#### `DB_PASSWORD`

`DB_PASSWORD="somePassword"`

Set this variable to database password

#### `DB_USERNAME`

`DB_USERNAME="foobar"`

Set this variable to database user name

#### `DB_URL`

`DB_URL=something-foo-bar.dbnet`

Set this variable to database URL

#### `DB_PORT`

`DB_PORT=3306`

Set this variable to database port

#### `DB_NAME`

`DB_NAME="foobar"`

Set this variable to database connection name

#### `DB_TYPE`

`DB_TYPE="mysql"`

The application was developed using a MySQL database. See the [typeorm](https://github.com/typeorm/typeorm/blob/master/docs/connection-options.md#common-connection-options) documentation for more database options.

#### `NODE_ENV`

`NODE_ENV=production`

Set this variable to determine node environment

#### `DEV_URL="http://localhost:4200"`

Used by Angular to build and serve the application

#### `SERVER_ADDRESS="http://localhost"`

Update if a different server address is required

#### `PORT=4500`

Update if a different server port is required

#### `JWT_KEY`

`JWT_KEY="changeMe"`

Set this variable to the JWT secret

#### `JWT_REFRESH_KEY`

`JWT_REFRESH_KEY="changeMe"`

Set this variable to the refresh JWT secret

#### `CRYPTO_SECRET`

`CRYPTO_SECRET="randomValue"`

Set this variable to the [Scrypt](https://nodejs.org/api/crypto.html#crypto_crypto_scryptsync_password_salt_keylen_options) password.

#### `CRYPTO_SALT`

`CRYPTO_SECRET="randomValue"`

Set this variable to the [Scrypt](https://nodejs.org/api/crypto.html#crypto_crypto_scryptsync_password_salt_keylen_options) salt.

### Empty `.env` file template

```
DB_PASSWORD=""
DB_URL=""
DB_USERNAME=""
DB_PORT=3306
DB_NAME=""
DB_TYPE=""
NODE_ENV=""
DEV_URL="http://localhost:4200"
SERVER_ADDRESS="http://localhost"
PORT=4500
JWT_KEY=""
JWT_REFRESH_KEY=""
CRYPTO_SECRET=""
CRYPTO_SALT=""
```

### Note on M1/M2 Macs
```
Install sqlite3: 
brew install sqlite3

Export compiler related env variables: 
export LDFLAGS="-L/opt/homebrew/opt/sqlite/lib"
export CPPFLAGS="-I/opt/homebrew/opt/sqlite/include"
export PKG_CONFIG_PATH="/opt/homebrew/opt/sqlite/lib/pkgconfig"
export NODE_OPTIONS=--openssl-legacy-provider

Prepare for a fresh install:
rm -rf node_modules
npm cache verify
npm i --force
```

### Create Initial Database Migration

1. Create the initial database migration

```
$ npm run migration:init
```

2. Run the initial database migration

```
$ npm run migration:run
```

## Default credentials

A user account is created on initial startup with the following credentials:

- email: `admin@example.com`
- password: `changeMe`

Upon first login, update the default user password under the profile section.

## Roles

The application utilizes least privilege access with team-based authorization. Teams are assigned a role which determines the features available to that specific team. A user will inherit roles from team membership. Administrators have team management access and must assign users to teams. Initially, users are created with no team association and will not have access to any features in the application.

The three roles include:

1. Admin
2. Tester
3. Read-Only

A team can only be associated to a single organization. However, a team can be associated to multiple assets within the same organization. A user can be a member of multiple teams. If a user is assigned to multiple teams of the same organization, the system will choose the highest authorized team.

_Please note: The default user is automatically assigned to the `Administrators` team on initial startup_

### Role Matrix

<table>
  <tr>
    <td></td>
    <th scope="col">Admin</th>
    <th scope="col">Tester</th>
    <th scope="col">Read-Only</th>
  </tr>
  <tr>
    <th scope="row">User-Profile Management</th>
    <td>x</td>
    <td>x</td>
    <td>x</td>
  </tr>
  <tr>
    <th scope="row">Team Management</th>
    <td>x</td>
    <td></td>
    <td></td>
  </tr> 
  <tr>
    <th scope="row">User Management</th>
    <td>x</td>
    <td></td>
    <td></td>
  </tr> 
  <tr>
    <th scope="row">Invite User</th>
    <td>x</td>
    <td></td>
    <td></td>
  </tr> 
  <tr>
    <th scope="row">Create User</th>
    <td>x</td>
    <td></td>
    <td></td>
  </tr> 
  <tr>
    <th scope="row">Email Settings Management</th>
    <td>x</td>
    <td></td>
    <td></td>
  </tr> 
  <tr>
    <th scope="row">Jira Integration</th>
    <td>x</td>
    <td></td>
    <td></td>
  </tr> 
  <tr>
    <th scope="row">Organization: Read</th>
    <td>x</td>
    <td>x</td>
    <td>x</td>
  </tr> 
  <tr>
    <th scope="row">Organization: Full Write</th>
    <td>x</td>
    <td></td>
    <td></td>
  </tr> 
  <tr>
    <th scope="row">Asset: Read</th>
    <td>x</td>
    <td>x</td>
    <td>x</td>
  </tr> 
  <tr>
    <th scope="row">Asset: Full Write</th>
    <td>x</td>
    <td></td>
    <td></td>
  </tr> 
  <tr>
    <th scope="row">Assessment: Read</th>
    <td>x</td>
    <td>x</td>
    <td>x</td>
  </tr> 
  <tr>
    <th scope="row">Assessment: Full Write</th>
    <td>x</td>
    <td>x</td>
    <td></td>
  </tr> 
  <tr>
    <th scope="row">Vulnerability: Read</th>
    <td>x</td>
    <td>x</td>
    <td>x</td>
  </tr> 
  <tr>
    <th scope="row">Vulnerability: Full Write</th>
    <td>x</td>
    <td>x</td>
    <td></td>
  </tr> 
  <tr>
    <th scope="row">Export Vulnerability to Jira</th>
    <td>x</td>
    <td>x</td>
    <td></td>
  </tr> 
  <tr>
    <th scope="row">Report Generation</th>
    <td>x</td>
    <td>x</td>
    <td>x</td>
  </tr> 
</table>

<br>

## API Key & Management

A user may generate a single API key which can be used in place of their authorization token. This API key allows for all actions against the application that the user is authorized for.

### Generating an API key pair

1. Login to the application
2. Navigate to the `User Profile` section
3. Select `Generate API Key`

This action will generate a pair of keys:

1. `Bulwark-Api-Key`
   1. This is a generated plaintext value to identify the user.
2. `Bulwark-Secret-Key`
   1. This is a generated plaintext value to verify the user by comparing a [Bcrypt](https://www.npmjs.com/package/bcrypt) hash stored in the database.

<strong>Write down the generated keys in a safe place. You will not be able to retrieve the keys at a later time.</strong>

### How to use API keys

The API key pair values must be matched and appended to the following HTTP request headers:

- `Bulwark-Api-Key`
- `Bulwark-Secret-Key`

Example:

```
GET /api/assessment/1 HTTP/1.1
Host: localhost:4500
Accept: application/json, text/plain, */*
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Bulwark-Api-Key: {{changeMe}}
Bulwark-Secret-Key: {{changeMe}}
Origin: http://localhost:4200
Connection: close
Referer: http://localhost:4200/
Pragma: no-cache
Cache-Control: no-cache
```

## Built With

- [Typeorm](https://typeorm.io/#/) - The ORM used
- [Angular](https://angular.io/) - The Angular Framework
- [Express](https://expressjs.com/) - A minimal and flexible Node.js web application framework

## Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Read the [contribution guidelines](CONTRIBUTING.md) for more information.

## License

[MIT](https://choosealicense.com/licenses/mit/)


================================================
FILE: SECURITY.md
================================================
# Security Policy

## Supported Versions

Security patches will be included in the latest released version.

## Reporting a Vulnerability

For any vulnerabilities found within Bulwark, please contact <a href="mailto:oss-security-reports@softrams.com">oss-security-reports@softrams.com</a>

### Description

Describe the nature of the vulnerability.

### Problem Locations

Describe where the in the application the vulnerability occurs. If possible, add the affected code. For ex:

| Problem Location            | Target             |
| --------------------------- | ------------------ |
| foo/bar/admin.js            | Line 101, 106, 200 |
| localhost:5000/#/admin/{id} | id                 |

### Remediation (optional)

Describe any suggestions on how to fix the vulnerability.


================================================
FILE: TESTING.md
================================================
# Testing Requirements

1. All new and updated **back-end** code should have a corresponding unit tests
2. All new and existing unit tests should pass locally before opening a Pull-Request
3. Linting should pass locally before opening a Pull-Request

## Running Front-End Unit Tests (Not Currently Required)

- The Angular unit tests have **not** been implemented so please skip this section
- Run `npm run test:front` to execute the unit tests via [Karma](https://karma-runner.github.io)
- Follow the recommended guidelines for Front-End [Testing](https://angular.io/guide/testing)

## Running Back-End Unit Tests

- Run `npm run test:node` to execute the unit tests via [Jest](https://jestjs.io/)
- Test coverage report can be opened in browser located in: `coverage/lcov-report/index.html`
- Follow the recommended guidelines for Back-End [Testing](https://jestjs.io/)

## Running All Tests

- Run `npm run test` to execute the unit tests.

## Linting

```
npm run lint
```

In case your PR is failing from style guide issues try running `npm run lint:fix` - this will fix all syntax or code style issues automatically without breaking your code.

### Prettier

Bulwark uses [Prettier](https://prettier.io/) for opinionating code formatting. It is recommended to run it from your editor. Use the following [steps](https://prettier.io/docs/en/editors.html) to integrate Prettier into your editor.


================================================
FILE: babel.config.js
================================================
module.exports = {
    presets: [
        ['@babel/preset-env', {targets: {node: 'current'}}],
        '@babel/preset-typescript',
    ],
};


================================================
FILE: buildspec.yaml
================================================
version: 0.2
phases:
  pre_build:
    on-failure: ABORT
    commands:
      - echo Logging in to Docker Hub...
      - docker login --username ${DOCKERHUB_USER} --password ${DOCKERHUB_TOKEN}
      - |
        if [ -z $CODEBUILD_WEBHOOK_TRIGGER ]
        then
         TAG="latest"
        else
          if [ "${CODEBUILD_WEBHOOK_TRIGGER}" = "branch/master" ]
          then
            TAG="latest"
          else
            echo "in else ${CODEBUILD_WEBHOOK_TRIGGER}"
            TAG=${CODEBUILD_WEBHOOK_TRIGGER/branch\//}
          fi
        fi
      - echo $TAG
  build:
    on-failure: ABORT
    commands:
      - echo Build started on `date`
      - echo Building the Docker image...
      - echo "docker build -t softramsdocker/bulwark:${TAG} ."
      - docker build -t softramsdocker/bulwark:${TAG} .
  post_build:
    commands:
      - echo Build completed on `date`
      - echo Pushing the Docker image...
      - docker push softramsdocker/bulwark:${TAG}

================================================
FILE: bulwark_base/Dockerfile
================================================
# Softrams - Bulwark Reporting Application Dockerized Configuration
# Maintained by Bill Jones

# Start from Alpine Linux for smaller footprint
FROM alpine:latest

# Environmental Items
ENV NODE_VERSION=20.14.0 \
    TYPESCRIPT_VERSION=10.9.2 \
    PUPPETEER_VERSION=23.2.0 \
    PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true \
    PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser

# View template at https://github.com/nodejs/docker-node/blob/master/Dockerfile-alpine.template
# Setup Bulwark Container User
RUN addgroup -S bulwark && adduser -S bulwark -G bulwark -s /bin/sh -D bulwark

# Update Image
RUN apk upgrade --no-cache -U

# Install Required Packages to Build NodeJS and Puppeter Items
RUN apk add --no-cache --virtual .build-deps-full curl make gcc g++ python3 linux-headers binutils-gold gnupg libstdc++ chromium \
 fontconfig udev ttf-freefont fontconfig pango-dev libxcursor libxdamage cups-libs dbus-libs libxrandr \
 libxscrnsaver libc6-compat nss freetype freetype-dev harfbuzz ca-certificates libgcc py-setuptools

# Ingest the GPG Keys from https://github.com/nodejs/node#release-keys
RUN for server in keys.openpgp.org pool.sks-keyservers.net keyserver.pgp.com ha.pool.sks-keyservers.net; do \
    gpg --keyserver $server --recv-keys \
      4ED778F539E3634C779C87C6D7062848A1AB005C \
      141F07595B7B3FFE74309A937405533BE57C7D57 \
      74F12602B6F1C4E913FAA37AD3A89613643B6201 \
      DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 \
      CC68F5A3106FF448322E48ED27F5E38D5B0A215F \
      8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 \
      890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 \
      C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C \
      108F52B48DB57BB0CC439B2997B01419BD92F80A \
      A363A499291CBBC940DD62E41F10027AF002F8B0 && break; \
  done

# Perform nodejs installation
# https://nodejs.org/dist/v14.9.0/node-v14.9.0.tar.gz - URL for Nodejs Source Code
RUN curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.gz" \
 && curl -fsSLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt" \
 && curl -fsSLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.sig" \
 #&& gpg --verify SHASUMS256.txt.sig SHASUMS256.txt \
 && grep " node-v$NODE_VERSION.tar.gz\$" SHASUMS256.txt | sha256sum -c - \
 && tar -xf "node-v$NODE_VERSION.tar.gz" \
 && cd "node-v$NODE_VERSION" \
 && ./configure \
 && make -j$(getconf _NPROCESSORS_ONLN) V= \
 && make install \
 && apk del .build-deps-full \
 && cd .. \
 && rm -Rf "node-v$NODE_VERSION" \
 && rm "node-v$NODE_VERSION.tar.gz" SHASUMS256.txt.sig SHASUMS256.txt \
# Cleanup
RUN rm -f "node-v$NODE_VERSION" \
  # smoke tests
  && node --version \
  && npm --version \
# Setup for launch control of Bulwark
WORKDIR /
COPY bulwark-entrypoint /usr/local/bin/

ENTRYPOINT ["bulwark-entrypoint"]


================================================
FILE: bulwark_base/buildspec.yaml
================================================
version: 0.2
phases:
  pre_build:
    commands:
      - echo Logging in to Docker Hub...
      - docker login --username ${DOCKERHUB_USER} --password ${DOCKERHUB_TOKEN}
  build:
    on-failure: ABORT
    commands:
      - echo Build started on `date`
      - echo Building the Docker image...
      - cd bulwark_base
      - docker build -t softramsdocker/bulwark-base:latest .
  post_build:
    commands:
      - echo Build completed on `date`
      - echo Pushing the Docker images...
      - docker push softramsdocker/bulwark-base:latest

================================================
FILE: bulwark_base/bulwark-entrypoint
================================================
#!/bin/sh

exec "$@"


================================================
FILE: commitlint.config.js
================================================
module.exports = {
  extends: ['@commitlint/config-conventional']
};


================================================
FILE: docker-compose.yml
================================================
version: '3.8'
services:
  bulwark:
    image: softramsdocker/bulwark:latest
    container_name: bulwark
    environment:
      MYSQL_USER: '${MYSQL_USER}'
      MYSQL_ROOT_PASSWORD: '${MYSQL_ROOT_PASSWORD}'
      MYSQL_DB_CHECK: '${MYSQL_DB_CHECK}'
      DB_PASSWORD: '${DB_PASSWORD}'
      DB_URL: '${DB_URL}'
      DB_USERNAME: '${DB_USERNAME}'
      DB_PORT: '${DB_PORT}'
      DB_NAME: '${DB_NAME}'
      DB_TYPE: '${DB_TYPE}'
      NODE_ENV: '${NODE_ENV}'
      DEV_URL: '${DEV_URL}'
      SERVER_ADDRESS: '${SERVER_ADDRESS}'
      PORT: '${PORT}'
      JWT_KEY: '${JWT_KEY}'
      JWT_REFRESH_KEY: '${JWT_REFRESH_KEY}'
      CRYPTO_SECRET: '${CRYPTO_SECRET}'
      CRYPTO_SALT: '${CRYPTO_SALT}'
    depends_on:
      - bulwark-db
    networks:
      static-network:
        ipv4_address: 172.16.16.2
    ports:
      - '5000:5000'
    expose:
      - '5000'
    stop_grace_period: 1m
    volumes:
      - bulwark-temp:/bulwark/src/temp:rw
    command: >
      sh -c "
      until mysql --host=$${DB_URL} --user=$${MYSQL_USER} --password=$${MYSQL_ROOT_PASSWORD} --database=$${MYSQL_DB_CHECK} -e 'SELECT user FROM user;'; do
        >&2 echo MySQL is unavailable - sleeping
        sleep 1
      done
      && echo MySQL should be up - starting up Bulwark.
      && npm run postinstall
      && echo Initial DB Creation
      && npm run docker:check
      && npm run start"

  bulwark-db:
    image: mysql:9.0.1  # 7.7.31
    container_name: bulwark_db
    environment:
      MYSQL_DATABASE: '${DB_NAME}'
      MYSQL_USER: '${DB_USERNAME}'
      MYSQL_PASSWORD: '${DB_PASSWORD}'
      MYSQL_ROOT_PASSWORD: '${DB_PASSWORD}'
    networks:
      static-network:
        ipv4_address: 172.16.16.3
    ports:
      - '3306:3306'
    expose:
      - '3306'
    volumes:
      - bulwark-db:/var/lib/mysql:rw
    restart: always

volumes:
  bulwark-db:
  bulwark-temp:

networks:
  static-network:
    ipam:
      config:
        - subnet: 172.16.16.0/29


================================================
FILE: frontend/.browserslistrc
================================================
# This file is currently used by autoprefixer to adjust CSS to support the below specified browsers
# For additional information regarding the format and rule options, please see:
# https://github.com/browserslist/browserslist#queries
#
# For IE 9-11 support, please remove 'not' from the last line of the file and adjust as needed

> 0.5%
last 2 versions
Firefox ESR
not dead
not IE 9-11

================================================
FILE: frontend/.editorconfig
================================================
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false


================================================
FILE: frontend/.gitignore
================================================
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out
/src/environments

# dependencies
/node_modules

# profiling files
chrome-profiler-events.json
speed-measure-plugin.json

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
.DS_Store
Thumbs.db



================================================
FILE: frontend/README.md
================================================
# Frontend

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.3.5.

## Development server

Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.

## Code scaffolding

Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.

## Build

Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.

## Running unit tests

Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).

## Running end-to-end tests

Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).

## Further help

To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).


================================================
FILE: frontend/angular.json
================================================
{
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  "version": 1,
  "newProjectRoot": "projects",
  "projects": {
    "frontend": {
      "root": "",
      "sourceRoot": "src",
      "pro
Download .txt
gitextract_flcbq_fg/

├── .dockerignore
├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report.md
│   │   └── feature_request.md
│   ├── agents/
│   │   └── my-agent.agent.md
│   ├── dependabot.yml
│   ├── pull_request_template.md
│   ├── stale.yml
│   └── workflows/
│       ├── codeql-analysis.yml
│       └── node.js.yml
├── .gitignore
├── .jest/
│   └── setEnvVars.js
├── .prettierignore
├── .prettierrc.json
├── .versionrc
├── CHANGELOG.md
├── CODEOWNERS
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── Dockerfile
├── LICENSE
├── README.md
├── SECURITY.md
├── TESTING.md
├── babel.config.js
├── buildspec.yaml
├── bulwark_base/
│   ├── Dockerfile
│   ├── buildspec.yaml
│   └── bulwark-entrypoint
├── commitlint.config.js
├── docker-compose.yml
├── frontend/
│   ├── .browserslistrc
│   ├── .editorconfig
│   ├── .gitignore
│   ├── README.md
│   ├── angular.json
│   ├── e2e/
│   │   ├── protractor.conf.js
│   │   ├── src/
│   │   │   ├── app.e2e-spec.ts
│   │   │   └── app.po.ts
│   │   └── tsconfig.e2e.json
│   ├── package.json
│   ├── src/
│   │   ├── app/
│   │   │   ├── admin.guard.spec.ts
│   │   │   ├── admin.guard.ts
│   │   │   ├── administration/
│   │   │   │   ├── administration.component.html
│   │   │   │   ├── administration.component.sass
│   │   │   │   ├── administration.component.spec.ts
│   │   │   │   ├── administration.component.ts
│   │   │   │   ├── invite-user/
│   │   │   │   │   ├── invite-user.component.html
│   │   │   │   │   ├── invite-user.component.sass
│   │   │   │   │   ├── invite-user.component.spec.ts
│   │   │   │   │   └── invite-user.component.ts
│   │   │   │   └── settings/
│   │   │   │       ├── settings.component.html
│   │   │   │       ├── settings.component.sass
│   │   │   │       ├── settings.component.spec.ts
│   │   │   │       └── settings.component.ts
│   │   │   ├── alert/
│   │   │   │   ├── alert/
│   │   │   │   │   ├── alert.component.html
│   │   │   │   │   ├── alert.component.sass
│   │   │   │   │   ├── alert.component.spec.ts
│   │   │   │   │   └── alert.component.ts
│   │   │   │   ├── alert.module.ts
│   │   │   │   ├── alert.service.spec.ts
│   │   │   │   └── alert.service.ts
│   │   │   ├── apikey-management/
│   │   │   │   ├── apikey-management.component.html
│   │   │   │   ├── apikey-management.component.sass
│   │   │   │   ├── apikey-management.component.spec.ts
│   │   │   │   └── apikey-management.component.ts
│   │   │   ├── app-routing.module.ts
│   │   │   ├── app.component.html
│   │   │   ├── app.component.scss
│   │   │   ├── app.component.spec.ts
│   │   │   ├── app.component.ts
│   │   │   ├── app.interceptor.ts
│   │   │   ├── app.module.ts
│   │   │   ├── app.service.spec.ts
│   │   │   ├── app.service.ts
│   │   │   ├── assessment-form/
│   │   │   │   ├── Assessment.ts
│   │   │   │   ├── assessment-form.component.html
│   │   │   │   ├── assessment-form.component.sass
│   │   │   │   ├── assessment-form.component.spec.ts
│   │   │   │   └── assessment-form.component.ts
│   │   │   ├── assessments/
│   │   │   │   ├── assessments.component.html
│   │   │   │   ├── assessments.component.sass
│   │   │   │   ├── assessments.component.spec.ts
│   │   │   │   └── assessments.component.ts
│   │   │   ├── asset-form/
│   │   │   │   ├── Asset.ts
│   │   │   │   ├── Jira.ts
│   │   │   │   ├── asset-form.component.html
│   │   │   │   ├── asset-form.component.sass
│   │   │   │   ├── asset-form.component.spec.ts
│   │   │   │   └── asset-form.component.ts
│   │   │   ├── auth.guard.spec.ts
│   │   │   ├── auth.guard.ts
│   │   │   ├── auth.service.spec.ts
│   │   │   ├── auth.service.ts
│   │   │   ├── classes/
│   │   │   │   ├── Alert.ts
│   │   │   │   ├── ProblemLocation.ts
│   │   │   │   └── Resource.ts
│   │   │   ├── dashboard/
│   │   │   │   ├── dashboard.component.html
│   │   │   │   ├── dashboard.component.sass
│   │   │   │   ├── dashboard.component.spec.ts
│   │   │   │   └── dashboard.component.ts
│   │   │   ├── email-validate/
│   │   │   │   ├── email-validate.component.html
│   │   │   │   ├── email-validate.component.sass
│   │   │   │   ├── email-validate.component.spec.ts
│   │   │   │   └── email-validate.component.ts
│   │   │   ├── enums/
│   │   │   │   └── roles.enum.ts
│   │   │   ├── footer/
│   │   │   │   ├── footer.component.html
│   │   │   │   ├── footer.component.sass
│   │   │   │   ├── footer.component.spec.ts
│   │   │   │   └── footer.component.ts
│   │   │   ├── forgot-password/
│   │   │   │   ├── forgot-password.component.html
│   │   │   │   ├── forgot-password.component.sass
│   │   │   │   ├── forgot-password.component.spec.ts
│   │   │   │   └── forgot-password.component.ts
│   │   │   ├── global-manager.service.spec.ts
│   │   │   ├── global-manager.service.ts
│   │   │   ├── interfaces/
│   │   │   │   ├── ApiKey.ts
│   │   │   │   ├── App_File.ts
│   │   │   │   ├── Organization.ts
│   │   │   │   ├── Screenshot.ts
│   │   │   │   ├── Settings.ts
│   │   │   │   ├── Team.ts
│   │   │   │   ├── Tokens.ts
│   │   │   │   └── User.ts
│   │   │   ├── loader.service.spec.ts
│   │   │   ├── loader.service.ts
│   │   │   ├── login/
│   │   │   │   ├── login.component.html
│   │   │   │   ├── login.component.sass
│   │   │   │   ├── login.component.spec.ts
│   │   │   │   └── login.component.ts
│   │   │   ├── navbar/
│   │   │   │   ├── navbar.component.html
│   │   │   │   ├── navbar.component.sass
│   │   │   │   ├── navbar.component.spec.ts
│   │   │   │   └── navbar.component.ts
│   │   │   ├── org-form/
│   │   │   │   ├── Organization.ts
│   │   │   │   ├── org-form.component.html
│   │   │   │   ├── org-form.component.sass
│   │   │   │   ├── org-form.component.spec.ts
│   │   │   │   └── org-form.component.ts
│   │   │   ├── organization/
│   │   │   │   ├── organization.component.html
│   │   │   │   ├── organization.component.sass
│   │   │   │   ├── organization.component.spec.ts
│   │   │   │   └── organization.component.ts
│   │   │   ├── page-not-found/
│   │   │   │   ├── page-not-found.component.html
│   │   │   │   ├── page-not-found.component.sass
│   │   │   │   ├── page-not-found.component.spec.ts
│   │   │   │   └── page-not-found.component.ts
│   │   │   ├── password-reset/
│   │   │   │   ├── password-reset.component.html
│   │   │   │   ├── password-reset.component.sass
│   │   │   │   ├── password-reset.component.spec.ts
│   │   │   │   └── password-reset.component.ts
│   │   │   ├── register/
│   │   │   │   ├── register.component.html
│   │   │   │   ├── register.component.sass
│   │   │   │   ├── register.component.spec.ts
│   │   │   │   └── register.component.ts
│   │   │   ├── report/
│   │   │   │   ├── report.component.html
│   │   │   │   ├── report.component.sass
│   │   │   │   ├── report.component.spec.ts
│   │   │   │   └── report.component.ts
│   │   │   ├── team/
│   │   │   │   ├── team.component.html
│   │   │   │   ├── team.component.sass
│   │   │   │   ├── team.component.spec.ts
│   │   │   │   └── team.component.ts
│   │   │   ├── team-form/
│   │   │   │   ├── team-form.component.html
│   │   │   │   ├── team-form.component.sass
│   │   │   │   ├── team-form.component.spec.ts
│   │   │   │   └── team-form.component.ts
│   │   │   ├── team.service.spec.ts
│   │   │   ├── team.service.ts
│   │   │   ├── user-form/
│   │   │   │   ├── user-form.component.html
│   │   │   │   ├── user-form.component.sass
│   │   │   │   ├── user-form.component.spec.ts
│   │   │   │   └── user-form.component.ts
│   │   │   ├── user-management/
│   │   │   │   ├── user-management.component.html
│   │   │   │   ├── user-management.component.sass
│   │   │   │   ├── user-management.component.spec.ts
│   │   │   │   └── user-management.component.ts
│   │   │   ├── user-profile/
│   │   │   │   ├── user-profile.component.html
│   │   │   │   ├── user-profile.component.sass
│   │   │   │   ├── user-profile.component.spec.ts
│   │   │   │   └── user-profile.component.ts
│   │   │   ├── user.service.spec.ts
│   │   │   ├── user.service.ts
│   │   │   ├── vuln-form/
│   │   │   │   ├── Vulnerability.ts
│   │   │   │   ├── vuln-form.component.html
│   │   │   │   ├── vuln-form.component.sass
│   │   │   │   ├── vuln-form.component.spec.ts
│   │   │   │   └── vuln-form.component.ts
│   │   │   └── vulnerability/
│   │   │       ├── vulnerability.component.html
│   │   │       ├── vulnerability.component.sass
│   │   │       ├── vulnerability.component.spec.ts
│   │   │       └── vulnerability.component.ts
│   │   ├── assets/
│   │   │   ├── .gitkeep
│   │   │   └── theme/
│   │   │       └── button.scss
│   │   ├── environments/
│   │   │   ├── environment.prod.ts
│   │   │   └── environment.ts
│   │   ├── index.html
│   │   ├── karma.conf.js
│   │   ├── main.ts
│   │   ├── polyfills.ts
│   │   ├── styles.scss
│   │   ├── test.ts
│   │   ├── tsconfig.app.json
│   │   ├── tsconfig.spec.json
│   │   └── tslint.json
│   ├── tsconfig.json
│   └── tslint.json
├── jest.config.js
├── ormconfig.js
├── package.json
├── src/
│   ├── app.ts
│   ├── classes/
│   │   └── Report.ts
│   ├── data-source.ts
│   ├── entity/
│   │   ├── ApiKey.ts
│   │   ├── Assessment.ts
│   │   ├── Asset.ts
│   │   ├── Config.ts
│   │   ├── File.ts
│   │   ├── Jira.ts
│   │   ├── Organization.ts
│   │   ├── ProblemLocation.ts
│   │   ├── ReportAudit.ts
│   │   ├── Resource.ts
│   │   ├── Team.ts
│   │   ├── User.ts
│   │   ├── VulnDictionary.ts
│   │   └── Vulnerability.ts
│   ├── enums/
│   │   ├── message-enum.ts
│   │   ├── roles-enum.ts
│   │   └── status-enum.ts
│   ├── init/
│   │   ├── docker-run-exec.ts
│   │   └── setEnv.ts
│   ├── interfaces/
│   │   ├── jira/
│   │   │   ├── jira-init.interface.ts
│   │   │   ├── jira-issue-link.interface.ts
│   │   │   ├── jira-issue-priority.interface.ts
│   │   │   ├── jira-issue-status.interface.ts
│   │   │   ├── jira-issue-type.interface.ts
│   │   │   ├── jira-issue.interface.ts
│   │   │   ├── jira-project.interface.ts
│   │   │   └── jira-result.interface.ts
│   │   ├── team-info.interface.ts
│   │   └── user-request.interface.ts
│   ├── middleware/
│   │   ├── jwt.middleware.ts
│   │   └── jwt.spec.ts
│   ├── routes/
│   │   ├── api-key.controller.spec.ts
│   │   ├── api-key.controller.ts
│   │   ├── assessment.controller.spec.ts
│   │   ├── assessment.controller.ts
│   │   ├── asset.controller.spec.ts
│   │   ├── asset.controller.ts
│   │   ├── authentication.controller.ts
│   │   ├── config.controller.spec.ts
│   │   ├── config.controller.ts
│   │   ├── file-upload.controller.ts
│   │   ├── organization.controller.ts
│   │   ├── report-audit.controller.spec.ts
│   │   ├── report-audit.controller.ts
│   │   ├── team.controller.spec.ts
│   │   ├── team.controller.ts
│   │   ├── user.controller.spec.ts
│   │   ├── user.controller.ts
│   │   └── vulnerability.controller.ts
│   ├── services/
│   │   ├── email.service.spec.ts
│   │   └── email.service.ts
│   ├── temp/
│   │   └── empty.ts
│   └── utilities/
│       ├── column-mapper.utility.ts
│       ├── crypto.utility.spec.ts
│       ├── crypto.utility.ts
│       ├── file.utility.ts
│       ├── jira.utility.spec.ts
│       ├── jira.utility.ts
│       ├── password.utility.spec.ts
│       ├── password.utility.ts
│       ├── puppeteer.utility.ts
│       └── role.utility.ts
├── tsconfig.json
└── tslint.json
Download .txt
SYMBOL INDEX (420 symbols across 87 files)

FILE: frontend/e2e/protractor.conf.js
  method onPrepare (line 22) | onPrepare() {

FILE: frontend/e2e/src/app.po.ts
  class AppPage (line 3) | class AppPage {
    method navigateTo (line 4) | navigateTo() {
    method getTitleText (line 8) | getTitleText() {

FILE: frontend/src/app/admin.guard.ts
  class AdminGuard (line 16) | class AdminGuard implements CanActivate {
    method constructor (line 17) | constructor(
    method canActivate (line 22) | canActivate(
    method checkLogin (line 33) | checkLogin(): boolean {

FILE: frontend/src/app/administration/administration.component.ts
  class AdministrationComponent (line 11) | class AdministrationComponent implements OnInit {
    method constructor (line 13) | constructor() { }
    method ngOnInit (line 15) | ngOnInit() {

FILE: frontend/src/app/administration/invite-user/invite-user.component.ts
  class InviteUserComponent (line 12) | class InviteUserComponent implements OnInit {
    method constructor (line 14) | constructor(
    method ngOnInit (line 23) | ngOnInit(): void {}
    method createForm (line 25) | createForm() {
    method onSubmit (line 31) | onSubmit(form) {

FILE: frontend/src/app/administration/settings/settings.component.ts
  class SettingsComponent (line 15) | class SettingsComponent implements OnInit {
    method constructor (line 20) | constructor(
    method ngOnInit (line 30) | ngOnInit(): void {
    method createForm (line 38) | createForm() {
    method rebuildForm (line 46) | rebuildForm() {
    method onSubmit (line 54) | onSubmit(form: FormGroup) {

FILE: frontend/src/app/alert/alert.module.ts
  class AlertModule (line 12) | class AlertModule {}

FILE: frontend/src/app/alert/alert.service.ts
  class AlertService (line 10) | class AlertService {
    method constructor (line 14) | constructor(private router: Router) {
    method onAlert (line 29) | onAlert(alertId?: string): Observable<Alert> {
    method success (line 34) | success(message: string, alertId?: string) {
    method error (line 38) | error(message: string, alertId?: string) {
    method info (line 42) | info(message: string, alertId?: string) {
    method warn (line 46) | warn(message: string, alertId?: string) {
    method clear (line 50) | clear(alertId?: string) {
    method alert (line 55) | alert(alert: Alert) {

FILE: frontend/src/app/alert/alert/alert.component.ts
  class AlertComponent (line 11) | class AlertComponent implements OnInit, OnDestroy {
    method constructor (line 16) | constructor(private alertService: AlertService) {}
    method ngOnInit (line 18) | ngOnInit() {
    method ngOnDestroy (line 29) | ngOnDestroy() {
    method removeAlert (line 34) | removeAlert(alert: Alert) {
    method cssClass (line 39) | cssClass(alert: Alert) {

FILE: frontend/src/app/apikey-management/apikey-management.component.ts
  class ApikeyManagementComponent (line 11) | class ApikeyManagementComponent implements OnInit {
    method constructor (line 13) | constructor(
    method ngOnInit (line 18) | ngOnInit(): void {
    method getActiveApiKeys (line 22) | getActiveApiKeys() {
    method deactivateApiKey (line 28) | deactivateApiKey(id: number) {

FILE: frontend/src/app/app-routing.module.ts
  class AssetsResolver (line 39) | class AssetsResolver implements Resolve<any> {
    method constructor (line 40) | constructor(private apiService: AppService) {}
    method resolve (line 42) | resolve(route: ActivatedRouteSnapshot) {
  class AssetResolver (line 47) | class AssetResolver implements Resolve<any> {
    method constructor (line 48) | constructor(private apiService: AppService) {}
    method resolve (line 49) | resolve(route: ActivatedRouteSnapshot) {
  class AssessmentResolver (line 54) | class AssessmentResolver implements Resolve<any> {
    method constructor (line 55) | constructor(
    method resolve (line 59) | resolve(route: ActivatedRouteSnapshot) {
  class AssessmentsResolver (line 85) | class AssessmentsResolver implements Resolve<any> {
    method constructor (line 86) | constructor(private apiService: AppService) {}
    method resolve (line 88) | resolve(route: ActivatedRouteSnapshot) {
  class VulnerabilitiesResolver (line 93) | class VulnerabilitiesResolver implements Resolve<any> {
    method constructor (line 94) | constructor(private apiService: AppService) {}
    method resolve (line 96) | resolve(route: ActivatedRouteSnapshot) {
  class VulnerabilityResolver (line 101) | class VulnerabilityResolver implements Resolve<any> {
    method constructor (line 102) | constructor(private apiService: AppService) {}
    method resolve (line 104) | resolve(route: ActivatedRouteSnapshot) {
  class TeamResolver (line 109) | class TeamResolver implements Resolve<any> {
    method constructor (line 110) | constructor(private teamService: TeamService) {}
    method resolve (line 112) | resolve(route: ActivatedRouteSnapshot) {
  class TeamFormResolver (line 117) | class TeamFormResolver implements Resolve<any> {
    method constructor (line 118) | constructor(
    method resolve (line 122) | resolve(route: ActivatedRouteSnapshot) {
  class OrganizationResolver (line 137) | class OrganizationResolver implements Resolve<any> {
    method constructor (line 138) | constructor(private apiService: AppService) {}
    method resolve (line 140) | resolve(route: ActivatedRouteSnapshot) {
  class ReportResolver (line 145) | class ReportResolver implements Resolve<any> {
    method constructor (line 146) | constructor(private apiService: AppService) {}
    method resolve (line 148) | resolve(route: ActivatedRouteSnapshot) {
  class UserResolver (line 153) | class UserResolver implements Resolve<any> {
    method constructor (line 154) | constructor(private userService: UserService) {}
    method resolve (line 156) | resolve() {
  class SettingsResolver (line 161) | class SettingsResolver implements Resolve<any> {
    method constructor (line 162) | constructor(private apiService: AppService) {}
    method resolve (line 164) | resolve(route: ActivatedRouteSnapshot) {
  class AppRoutingModule (line 352) | class AppRoutingModule {}

FILE: frontend/src/app/app.component.ts
  class AppComponent (line 8) | class AppComponent {}

FILE: frontend/src/app/app.interceptor.ts
  class AppInterceptor (line 17) | class AppInterceptor implements HttpInterceptor {
    method constructor (line 18) | constructor(
    method logout (line 25) | logout() {
    method intercept (line 29) | intercept(

FILE: frontend/src/app/app.module.ts
  class AppModule (line 116) | class AppModule {}

FILE: frontend/src/app/app.service.ts
  class AppService (line 14) | class AppService {
    method constructor (line 15) | constructor(private http: HttpClient, private sanitizer: DomSanitizer) {}
    method getOrganizations (line 21) | getOrganizations() {
    method getArchivedOrganizations (line 34) | getArchivedOrganizations() {
    method getImageById (line 51) | getImageById(file: any) {
    method getOrganizationById (line 68) | getOrganizationById(id: number) {
    method getOrganizationAssets (line 82) | getOrganizationAssets(id: number) {
    method getOpenVulnsByAssetId (line 96) | getOpenVulnsByAssetId(assetId: number) {
    method getOrganizationArchiveAssets (line 105) | getOrganizationArchiveAssets(id: number) {
    method archiveOrganization (line 114) | archiveOrganization(id: number) {
    method activateOrganization (line 123) | activateOrganization(id: number) {
    method getAssessments (line 132) | getAssessments(id: number) {
    method deleteAssessment (line 145) | deleteAssessment(assessmentId: number) {
    method getVulnerabilities (line 154) | getVulnerabilities(assessmentId: number) {
    method getVulnerability (line 165) | getVulnerability(id: number) {
    method exportVulnToJira (line 169) | exportVulnToJira(vulnId: number) {
    method exportAssessmentToJira (line 173) | exportAssessmentToJira(assessmentId: number) {
    method getConfig (line 177) | getConfig() {
    method updateConfig (line 181) | updateConfig(config: FormData) {
    method updateVulnerability (line 191) | updateVulnerability(id: number, vuln: FormData) {
    method createVuln (line 200) | createVuln(vuln: FormData) {
    method deleteVuln (line 209) | deleteVuln(vulnId: number) {
    method createOrg (line 218) | createOrg(org: Organization) {
    method updateOrg (line 228) | updateOrg(id: number, org: Organization) {
    method createAsset (line 237) | createAsset(asset: Asset) {
    method purgeJira (line 244) | purgeJira(assetId: number) {
    method getAsset (line 254) | getAsset(assetId: number, orgId: number) {
    method updateAsset (line 263) | updateAsset(asset: Asset) {
    method archiveAsset (line 275) | archiveAsset(asset: Asset) {
    method activateAsset (line 284) | activateAsset(asset: Asset) {
    method createAssessment (line 293) | createAssessment(assessment: Assessment) {
    method updateAssessment (line 304) | updateAssessment(
    method getAssessment (line 321) | getAssessment(assetId: number, assessmentId: number) {
    method upload (line 332) | upload(fileToUpload: File) {
    method uploadMultiple (line 343) | uploadMultiple(fileToUpload: FormData) {
    method getReport (line 352) | getReport(assessmentId: number) {
    method generateReport (line 363) | generateReport(orgId: number, assetId: number, assessmentId: number) {
    method createObjectUrl (line 386) | public createObjectUrl(file, mimetype?: string) {

FILE: frontend/src/app/assessment-form/Assessment.ts
  class Assessment (line 4) | class Assessment {
    method constructor (line 5) | constructor(

FILE: frontend/src/app/assessment-form/assessment-form.component.ts
  class AssessmentFormComponent (line 14) | class AssessmentFormComponent implements OnInit, OnChanges {
    method constructor (line 22) | constructor(
    method ngOnInit (line 32) | ngOnInit() {
    method ngOnChanges (line 63) | ngOnChanges() {
    method transformDate (line 73) | transformDate(date: string) {
    method rebuildForm (line 80) | rebuildForm() {
    method createForm (line 98) | createForm() {
    method onSubmit (line 117) | onSubmit(assessment: FormGroup) {
    method createOrUpdateAssessment (line 127) | createOrUpdateAssessment(assessment: Assessment) {
    method navigateToAssessments (line 149) | navigateToAssessments() {

FILE: frontend/src/app/assessments/assessments.component.ts
  type FormattedUser (line 12) | interface FormattedUser extends User {
  class AssessmentsComponent (line 21) | class AssessmentsComponent implements OnInit {
    method constructor (line 62) | constructor(
    method ngOnInit (line 71) | ngOnInit() {
    method addArrayCompareTableFilter (line 94) | private addArrayCompareTableFilter() {
    method navigateToVulnerability (line 111) | navigateToVulnerability(id: number) {
    method navigateToOrganization (line 121) | navigateToOrganization() {
    method navigateToAssessment (line 128) | navigateToAssessment() {
    method navigateToAssessmentById (line 139) | navigateToAssessmentById(assessmentId: number) {
    method deleteAssessment (line 150) | deleteAssessment(assessment: Assessment) {
    method onDateSelect (line 164) | onDateSelect(value, type) {
    method formatName (line 177) | private formatName(user) {

FILE: frontend/src/app/asset-form/Asset.ts
  type Asset (line 3) | interface Asset {

FILE: frontend/src/app/asset-form/Jira.ts
  type Jira (line 1) | interface Jira {

FILE: frontend/src/app/asset-form/asset-form.component.ts
  class AssetFormComponent (line 13) | class AssetFormComponent implements OnInit, OnChanges {
    method constructor (line 21) | constructor(
    method ngOnInit (line 32) | ngOnInit() {
    method ngOnChanges (line 57) | ngOnChanges() {
    method createForm (line 64) | createForm() {
    method rebuildForm (line 78) | rebuildForm() {
    method onSubmit (line 93) | onSubmit(asset: FormGroup) {
    method navigateToAssets (line 106) | navigateToAssets() {
    method purgeJiraInfo (line 110) | purgeJiraInfo() {
    method createOrUpdateAsset (line 131) | createOrUpdateAsset(asset: Asset) {

FILE: frontend/src/app/auth.guard.ts
  class AuthGuard (line 16) | class AuthGuard implements CanActivate {
    method constructor (line 17) | constructor(
    method canActivate (line 21) | canActivate(
    method checkLogin (line 32) | checkLogin(): boolean {

FILE: frontend/src/app/auth.service.ts
  class AuthService (line 9) | class AuthService {
    method constructor (line 10) | constructor(private http: HttpClient) {}
    method login (line 15) | login(creds) {
    method logout (line 19) | logout() {
    method setTokens (line 24) | setTokens(tokens: Tokens) {
    method getUserToken (line 29) | getUserToken() {
    method getUserFromToken (line 33) | getUserFromToken() {
    method isAdmin (line 37) | isAdmin() {
    method getRefreshToken (line 45) | getRefreshToken() {
    method forgotPassword (line 49) | forgotPassword(email) {
    method passwordReset (line 53) | passwordReset(creds) {
    method updatePassword (line 57) | updatePassword(
    method updateUserEmail (line 69) | updateUserEmail(email: string, newEmail: string) {
    method validateUserEmailRequest (line 76) | validateUserEmailRequest(password: string, uuid: string) {
    method revokeUserEmail (line 83) | revokeUserEmail() {
    method refreshSession (line 87) | refreshSession() {
    method generateApiKey (line 92) | generateApiKey() {
    method getApiKeyInfo (line 96) | getApiKeyInfo() {
    method getApiKeysInfo (line 100) | getApiKeysInfo() {
    method deactivateApiKey (line 104) | deactivateApiKey(id: number) {
    method adminDeactivateApiKey (line 108) | adminDeactivateApiKey(id: number) {

FILE: frontend/src/app/classes/Alert.ts
  class Alert (line 1) | class Alert {
    method constructor (line 7) | constructor(init?: Partial<Alert>) {
  type AlertType (line 12) | enum AlertType {

FILE: frontend/src/app/classes/ProblemLocation.ts
  class ProblemLocation (line 1) | class ProblemLocation {
    method constructor (line 2) | constructor(private id: number, public location: string, public target...

FILE: frontend/src/app/classes/Resource.ts
  class Resource (line 1) | class Resource {
    method constructor (line 2) | constructor(private id: number, public resURL: string) {}

FILE: frontend/src/app/dashboard/dashboard.component.ts
  class DashboardComponent (line 14) | class DashboardComponent implements OnInit {
    method constructor (line 21) | constructor(
    method ngOnInit (line 29) | ngOnInit() {
    method getOrganizations (line 36) | getOrganizations() {
    method getArchivedOrganizations (line 48) | getArchivedOrganizations() {
    method navigateToAsset (line 59) | navigateToAsset(id: number) {
    method navigateToCreate (line 67) | navigateToCreate() {
    method navigateToOrganization (line 75) | navigateToOrganization(id: number) {
    method archiveOrganization (line 84) | archiveOrganization(org: Organization) {
    method activateOrganization (line 99) | activateOrganization(org: Organization) {

FILE: frontend/src/app/email-validate/email-validate.component.ts
  class EmailValidateComponent (line 12) | class EmailValidateComponent implements OnInit {
    method constructor (line 15) | constructor(
    method ngOnInit (line 26) | ngOnInit(): void {}
    method createForm (line 28) | createForm() {
    method onSubmit (line 34) | onSubmit(form) {

FILE: frontend/src/app/enums/roles.enum.ts
  constant ROLE (line 1) | const ROLE = {

FILE: frontend/src/app/footer/footer.component.ts
  class FooterComponent (line 8) | class FooterComponent implements OnInit {
    method constructor (line 10) | constructor() { }
    method ngOnInit (line 12) | ngOnInit() {

FILE: frontend/src/app/forgot-password/forgot-password.component.ts
  class ForgotPasswordComponent (line 12) | class ForgotPasswordComponent implements OnInit {
    method constructor (line 14) | constructor(
    method ngOnInit (line 23) | ngOnInit(): void {}
    method createForm (line 25) | createForm() {
    method onSubmit (line 31) | onSubmit(form) {

FILE: frontend/src/app/global-manager.service.ts
  class GlobalManagerService (line 7) | class GlobalManagerService {
    method constructor (line 13) | constructor() {}
    method showLogin (line 15) | showLogin(ifShow: boolean) {

FILE: frontend/src/app/interfaces/ApiKey.ts
  type ApiKey (line 1) | interface ApiKey {

FILE: frontend/src/app/interfaces/App_File.ts
  type AppFile (line 3) | interface AppFile extends File {

FILE: frontend/src/app/interfaces/Organization.ts
  type Organization (line 1) | interface Organization {

FILE: frontend/src/app/interfaces/Screenshot.ts
  type Screenshot (line 3) | interface Screenshot {

FILE: frontend/src/app/interfaces/Settings.ts
  type Settings (line 1) | interface Settings {

FILE: frontend/src/app/interfaces/Team.ts
  type Role (line 3) | interface Role {
  type Team (line 6) | interface Team {

FILE: frontend/src/app/interfaces/Tokens.ts
  type Tokens (line 1) | interface Tokens {

FILE: frontend/src/app/interfaces/User.ts
  type User (line 3) | interface User {

FILE: frontend/src/app/loader.service.ts
  class LoaderService (line 8) | class LoaderService {
    method show (line 10) | show() {
    method hide (line 13) | hide() {
    method constructor (line 17) | constructor() {}

FILE: frontend/src/app/login/login.component.ts
  class LoginComponent (line 12) | class LoginComponent implements OnInit {
    method constructor (line 16) | constructor(
    method ngOnInit (line 24) | ngOnInit() {}
    method createForm (line 26) | createForm() {
    method onSubmit (line 33) | onSubmit(creds) {

FILE: frontend/src/app/navbar/navbar.component.ts
  class NavbarComponent (line 12) | class NavbarComponent implements OnInit {
    method constructor (line 15) | constructor(
    method ngOnInit (line 23) | ngOnInit() {}
    method logout (line 25) | logout() {

FILE: frontend/src/app/org-form/Organization.ts
  class Organization (line 1) | class Organization {
    method constructor (line 2) | constructor(public id: number, public name: string) {}

FILE: frontend/src/app/org-form/org-form.component.ts
  class OrgFormComponent (line 13) | class OrgFormComponent implements OnInit, OnChanges {
    method constructor (line 19) | constructor(
    method ngOnInit (line 30) | ngOnInit() {
    method ngOnChanges (line 46) | ngOnChanges() {
    method createForm (line 53) | createForm() {
    method rebuildForm (line 62) | rebuildForm() {
    method disableForm (line 68) | disableForm() {
    method handleFileInput (line 76) | handleFileInput(files: FileList) {
    method onSubmit (line 84) | onSubmit(contact: FormGroup) {
    method createOrUpdateOrg (line 100) | createOrUpdateOrg(org: Organization) {
    method navigateToDashboard (line 119) | navigateToDashboard() {

FILE: frontend/src/app/organization/organization.component.ts
  class OrganizationComponent (line 13) | class OrganizationComponent implements OnInit {
    method constructor (line 32) | constructor(
    method ngOnInit (line 40) | ngOnInit() {
    method onRepresentativeChange (line 53) | onRepresentativeChange(event) {
    method getActiveAssets (line 60) | getActiveAssets() {
    method getArchivedAssets (line 69) | getArchivedAssets() {
    method navigateToAssessment (line 81) | navigateToAssessment(id: number) {
    method navigateToDashboard (line 88) | navigateToDashboard() {
    method navigateToCreateAsset (line 96) | navigateToCreateAsset() {
    method navigateToAsset (line 104) | navigateToAsset(assetId: number) {
    method showOpenVulnsModal (line 112) | showOpenVulnsModal(assetId: number, assetName: string) {
    method archiveAsset (line 127) | archiveAsset(asset: Asset) {
    method activateAsset (line 139) | activateAsset(asset: Asset) {
    method onRiskChange (line 149) | onRiskChange(event) {
    method navigateToVulnDetail (line 154) | navigateToVulnDetail(vulnId: number, assessmentId: number) {

FILE: frontend/src/app/page-not-found/page-not-found.component.ts
  class PageNotFoundComponent (line 8) | class PageNotFoundComponent implements OnInit {
    method constructor (line 10) | constructor() { }
    method ngOnInit (line 12) | ngOnInit() {

FILE: frontend/src/app/password-reset/password-reset.component.ts
  class PasswordResetComponent (line 12) | class PasswordResetComponent implements OnInit {
    method constructor (line 15) | constructor(
    method ngOnInit (line 26) | ngOnInit(): void {}
    method createForm (line 28) | createForm() {
    method onSubmit (line 35) | onSubmit(form) {

FILE: frontend/src/app/register/register.component.ts
  class RegisterComponent (line 12) | class RegisterComponent implements OnInit {
    method constructor (line 15) | constructor(
    method ngOnInit (line 26) | ngOnInit(): void {}
    method createForm (line 28) | createForm() {
    method onSubmit (line 38) | onSubmit(form) {

FILE: frontend/src/app/report/report.component.ts
  class ReportComponent (line 11) | class ReportComponent implements OnInit {
    method constructor (line 23) | constructor(
    method ngOnInit (line 29) | ngOnInit() {
    method sortRisk (line 67) | sortRisk(vulns: Vulnerability[]) {
    method buildPieChart (line 81) | buildPieChart(vulns: Vulnerability[]) {
    method buildRadarChart (line 116) | buildRadarChart(vulns: Vulnerability[]) {
    method navigateToVulns (line 139) | navigateToVulns() {
    method generateReport (line 149) | generateReport() {

FILE: frontend/src/app/team-form/team-form.component.ts
  type Role (line 12) | interface Role {
  class TeamFormComponent (line 20) | class TeamFormComponent implements OnInit, OnChanges {
    method constructor (line 29) | constructor(
    method ngOnInit (line 40) | ngOnInit(): void {
    method ngOnChanges (line 87) | ngOnChanges() {
    method createForm (line 91) | createForm() {
    method rebuildForm (line 101) | rebuildForm() {
    method onSubmit (line 111) | onSubmit(form) {
    method navigateToAdministration (line 141) | navigateToAdministration() {
    method fetchOrgAssets (line 145) | fetchOrgAssets(event) {

FILE: frontend/src/app/team.service.ts
  class TeamService (line 8) | class TeamService {
    method constructor (line 10) | constructor(private http: HttpClient) {}
    method getTeams (line 12) | getTeams() {
    method getTeamById (line 16) | getTeamById(teamId: number) {
    method createTeam (line 20) | createTeam(team: Team) {
    method updateTeam (line 24) | updateTeam(team: Team) {
    method deleteTeam (line 28) | deleteTeam(teamId: number) {

FILE: frontend/src/app/team/team.component.ts
  class TeamComponent (line 14) | class TeamComponent implements OnInit {
    method constructor (line 17) | constructor(
    method ngOnInit (line 25) | ngOnInit(): void {
    method getTeams (line 29) | getTeams() {
    method navigateToTeamCreateForm (line 32) | navigateToTeamCreateForm() {
    method deleteTeam (line 36) | deleteTeam(team: Team) {
    method navigateToTeam (line 46) | navigateToTeam(team: Team) {

FILE: frontend/src/app/user-form/user-form.component.ts
  class UserFormComponent (line 15) | class UserFormComponent implements OnInit {
    method constructor (line 18) | constructor(
    method ngOnInit (line 25) | ngOnInit(): void {
    method createForm (line 29) | createForm() {
    method onSubmit (line 40) | onSubmit(form) {

FILE: frontend/src/app/user-management/user-management.component.ts
  class UserManagementComponent (line 13) | class UserManagementComponent implements OnInit {
    method constructor (line 16) | constructor(
    method ngOnInit (line 22) | ngOnInit(): void {
    method getUsers (line 26) | getUsers() {
    method navigateToTeamCreateUser (line 32) | navigateToTeamCreateUser() {
    method navigateToTeamInviteUser (line 36) | navigateToTeamInviteUser() {
    method activateUser (line 43) | activateUser(user: User) {
    method deactivateUser (line 58) | deactivateUser(user: User) {

FILE: frontend/src/app/user-profile/user-profile.component.ts
  class UserProfileComponent (line 15) | class UserProfileComponent implements OnInit {
    method constructor (line 24) | constructor(
    method ngOnInit (line 35) | ngOnInit(): void {
    method createForms (line 45) | createForms() {
    method rebuildForm (line 77) | rebuildForm() {
    method rebuildSecurityForm (line 85) | rebuildSecurityForm() {
    method rebuildEmailForm (line 93) | rebuildEmailForm() {
    method onSubmit (line 99) | onSubmit(form: FormGroup) {
    method onSecuritySubmit (line 117) | onSecuritySubmit(form: FormGroup) {
    method onEmailFormSubmit (line 137) | onEmailFormSubmit(form: FormGroup) {
    method revokeUpdateEmailRequest (line 154) | revokeUpdateEmailRequest() {
    method generateApiKey (line 164) | generateApiKey() {
    method getApiKey (line 178) | getApiKey() {
    method deactivateApiKey (line 184) | deactivateApiKey() {

FILE: frontend/src/app/user.service.ts
  class UserService (line 8) | class UserService {
    method constructor (line 10) | constructor(private http: HttpClient) {}
    method registerUser (line 12) | registerUser(creds) {
    method inviteUser (line 16) | inviteUser(email) {
    method getUser (line 20) | getUser() {
    method getUsers (line 24) | getUsers() {
    method getTesters (line 27) | getTesters(orgId: number) {
    method getAllUsers (line 30) | getAllUsers() {
    method patchUser (line 33) | patchUser(user: User) {
    method createUser (line 36) | createUser(user: User) {
    method activateUser (line 43) | activateUser(id: string | number) {
    method deactivateUser (line 50) | deactivateUser(id: string | number) {

FILE: frontend/src/app/vuln-form/Vulnerability.ts
  class Vulnerability (line 4) | class Vulnerability {
    method constructor (line 5) | constructor(

FILE: frontend/src/app/vuln-form/vuln-form.component.ts
  class VulnFormComponent (line 15) | class VulnFormComponent implements OnChanges, OnInit {
    method constructor (line 36) | constructor(
    method ngOnInit (line 50) | ngOnInit() {
    method ngOnChanges (line 141) | ngOnChanges() {
    method createForm (line 149) | createForm() {
    method rebuildForm (line 172) | rebuildForm() {
    method probLocArr (line 195) | get probLocArr() {
    method initProbLocRows (line 204) | initProbLocRows(): FormGroup {
    method addProbLoc (line 215) | addProbLoc() {
    method deleteProbLoc (line 224) | deleteProbLoc(index: number) {
    method resourceArr (line 233) | get resourceArr() {
    method initResourceRows (line 242) | initResourceRows(): FormGroup {
    method addResource (line 253) | addResource() {
    method deleteResource (line 261) | deleteResource(index: number) {
    method handleFileInput (line 269) | handleFileInput(files: FileList) {
    method previewScreenshot (line 280) | previewScreenshot(file: File, existFile: AppFile) {
    method deleteScreenshot (line 305) | deleteScreenshot(screenshot: Screenshot) {
    method finalizeScreenshots (line 319) | finalizeScreenshots(
    method navigateToVulnerabilities (line 340) | navigateToVulnerabilities() {
    method onSubmit (line 350) | onSubmit(vulnForm: FormGroup) {
    method createOrUpdateVuln (line 386) | createOrUpdateVuln(vuln: FormData) {
    method toggleDescPreview (line 407) | toggleDescPreview() {
    method toggleDetailedDescPreview (line 416) | toggleDetailedDescPreview() {
    method toggleRemediationPreview (line 425) | toggleRemediationPreview() {
    method updateRisk (line 433) | updateRisk() {
    method exportToJira (line 460) | exportToJira() {

FILE: frontend/src/app/vulnerability/vulnerability.component.ts
  class VulnerabilityComponent (line 13) | class VulnerabilityComponent implements OnInit {
    method constructor (line 29) | constructor(
    method ngOnInit (line 36) | ngOnInit() {
    method navigateToVulnerabilityForm (line 52) | navigateToVulnerabilityForm() {
    method navigateToVulnerabilityFormById (line 62) | navigateToVulnerabilityFormById(vulnId: number) {
    method navigateToAssessments (line 71) | navigateToAssessments() {
    method navigateToReport (line 78) | navigateToReport() {
    method getVulnerabilities (line 84) | getVulnerabilities() {
    method deleteVuln (line 96) | deleteVuln(vuln: Vulnerability) {
    method onRiskChange (line 106) | onRiskChange(event) {
    method onStatusChange (line 111) | onStatusChange(event) {

FILE: src/classes/Report.ts
  class Report (line 6) | class Report {

FILE: src/entity/ApiKey.ts
  class ApiKey (line 14) | class ApiKey {

FILE: src/entity/Assessment.ts
  class Assessment (line 8) | class Assessment {

FILE: src/entity/Asset.ts
  class Asset (line 17) | class Asset {

FILE: src/entity/Config.ts
  class Config (line 5) | class Config {

FILE: src/entity/File.ts
  class File (line 6) | class File {

FILE: src/entity/Jira.ts
  class Jira (line 6) | class Jira {

FILE: src/entity/Organization.ts
  class Organization (line 7) | class Organization {

FILE: src/entity/ProblemLocation.ts
  class ProblemLocation (line 5) | class ProblemLocation {

FILE: src/entity/ReportAudit.ts
  class ReportAudit (line 5) | class ReportAudit {

FILE: src/entity/Resource.ts
  class Resource (line 5) | class Resource {

FILE: src/entity/Team.ts
  class Team (line 15) | class Team {

FILE: src/entity/User.ts
  class User (line 14) | class User {

FILE: src/entity/VulnDictionary.ts
  class VulnDictionary (line 4) | class VulnDictionary {

FILE: src/entity/Vulnerability.ts
  class Vulnerability (line 9) | class Vulnerability {

FILE: src/enums/roles-enum.ts
  constant ROLE (line 1) | const ROLE = {

FILE: src/interfaces/jira/jira-init.interface.ts
  type JiraInit (line 1) | interface JiraInit {

FILE: src/interfaces/jira/jira-issue-link.interface.ts
  type IssueLink (line 1) | interface IssueLink {

FILE: src/interfaces/jira/jira-issue-priority.interface.ts
  type JiraPriority (line 1) | interface JiraPriority {

FILE: src/interfaces/jira/jira-issue-status.interface.ts
  type IssueStatus (line 1) | interface IssueStatus {

FILE: src/interfaces/jira/jira-issue-type.interface.ts
  type IssueType (line 1) | interface IssueType {

FILE: src/interfaces/jira/jira-issue.interface.ts
  type JiraIssue (line 7) | interface JiraIssue {

FILE: src/interfaces/jira/jira-project.interface.ts
  type JiraProject (line 1) | interface JiraProject {

FILE: src/interfaces/jira/jira-result.interface.ts
  type JiraResult (line 1) | interface JiraResult {

FILE: src/interfaces/team-info.interface.ts
  type TeamInfo (line 3) | interface TeamInfo {

FILE: src/interfaces/user-request.interface.ts
  type UserRequest (line 4) | interface UserRequest extends Request {

FILE: src/services/email.service.ts
  type MailOptions (line 7) | interface MailOptions {
  type EmailCallback (line 15) | interface EmailCallback {
Condensed preview — 276 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (777K chars).
[
  {
    "path": ".dockerignore",
    "chars": 145,
    "preview": ".git/\nmonitoring/\nnode_modules/\nscreenshots/\ntest/\nbuild/\ndist/\nvagrant/\ndocs/\nlogs/\nDockerfile\n.npmrc\nfrontend/node_mod"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "chars": 1032,
    "preview": "---\nname: Bug report\nabout: Report a bug in Bulwark\ntitle: ''\nlabels: bug\nassignees: ''\n\n---\n\n**Describe the bug**\nA cle"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "chars": 599,
    "preview": "---\nname: Feature request\nabout: Suggest an idea for Bulwark\ntitle: ''\nlabels: enhancement\nassignees: ''\n\n---\n\n**Is your"
  },
  {
    "path": ".github/agents/my-agent.agent.md",
    "chars": 513,
    "preview": "---\n# Fill in the fields below to create a basic custom agent for your repository.\n# The Copilot CLI can be used for loc"
  },
  {
    "path": ".github/dependabot.yml",
    "chars": 263,
    "preview": "version: 2\nupdates:\n  - package-ecosystem: 'npm'\n    directory: '/'\n    schedule:\n      interval: 'monthly'\n    target-b"
  },
  {
    "path": ".github/pull_request_template.md",
    "chars": 1405,
    "preview": "# Pull Request\n\nThank you for your contribution to the Bulwark. Please include a summary of the change and which issue i"
  },
  {
    "path": ".github/stale.yml",
    "chars": 290,
    "preview": "daysUntilStale: 60\ndaysUntilClose: 7\nexemptLabels:\n  - confirmed\n  - security\nstaleLabel: stale\nmarkComment: >\n  This is"
  },
  {
    "path": ".github/workflows/codeql-analysis.yml",
    "chars": 2652,
    "preview": "# For most projects, this workflow file will not need changing; you simply need\n# to commit it to your repository.\n#\n# Y"
  },
  {
    "path": ".github/workflows/node.js.yml",
    "chars": 916,
    "preview": "# This workflow will do a clean install of node dependencies, build the source code and run tests across different versi"
  },
  {
    "path": ".gitignore",
    "chars": 728,
    "preview": "# See http://help.github.com/ignore-files/ for more about ignoring files.\n\n#angular\n/frontend/.angular\n\n# compiled outpu"
  },
  {
    "path": ".jest/setEnvVars.js",
    "chars": 203,
    "preview": "process.env.NODE_ENV = 'test';\nprocess.env.CRYPTO_SECRET = 'test';\nprocess.env.CRYPTO_SALT = 'test';\nprocess.env.JWT_KEY"
  },
  {
    "path": ".prettierignore",
    "chars": 172,
    "preview": "coverage\ndist\nfrontend/dist\nnode_modules\nfrontend/node_modules\n.prettierignore\nDockerfile\nCHANGELOG.md\n# Ignore all HTML"
  },
  {
    "path": ".prettierrc.json",
    "chars": 457,
    "preview": "{\n  \"arrowParens\": \"always\",\n  \"bracketSpacing\": true,\n  \"embeddedLanguageFormatting\": \"auto\",\n  \"htmlWhitespaceSensitiv"
  },
  {
    "path": ".versionrc",
    "chars": 709,
    "preview": "{\n  \"types\": [\n    {\"type\": \"chore\", \"section\":\"Others\", \"hidden\": false},\n    {\"type\": \"revert\", \"section\":\"Reverts\", \""
  },
  {
    "path": "CHANGELOG.md",
    "chars": 157070,
    "preview": "# Changelog\n\nAll notable changes to this project will be documented in this file. See [standard-version](https://github."
  },
  {
    "path": "CODEOWNERS",
    "chars": 30,
    "preview": "* @softrams/bulwark-core-team\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "chars": 3355,
    "preview": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, w"
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 1801,
    "preview": "# Contributing\n\nWhen contributing to this repository, please first discuss the change you wish to make via issue with th"
  },
  {
    "path": "Dockerfile",
    "chars": 938,
    "preview": "FROM softramsdocker/bulwark-base:latest\n\nUSER root\n\n# Environment Arguments for Bulwark\nARG MYSQL_USER\nARG MYSQL_ROOT_PA"
  },
  {
    "path": "LICENSE",
    "chars": 1068,
    "preview": "MIT License\n\nCopyright (c) 2020 Softrams LLC\n\nPermission is hereby granted, free of charge, to any person\nobtaining a co"
  },
  {
    "path": "README.md",
    "chars": 10037,
    "preview": "<p align=\"center\">\n  <img width=\"350\" src=\"frontend/src/assets/logo.png\">\n</p>\n\n<p style=\"text-align: center;\">An organi"
  },
  {
    "path": "SECURITY.md",
    "chars": 781,
    "preview": "# Security Policy\n\n## Supported Versions\n\nSecurity patches will be included in the latest released version.\n\n## Reportin"
  },
  {
    "path": "TESTING.md",
    "chars": 1399,
    "preview": "# Testing Requirements\n\n1. All new and updated **back-end** code should have a corresponding unit tests\n2. All new and e"
  },
  {
    "path": "babel.config.js",
    "chars": 141,
    "preview": "module.exports = {\n    presets: [\n        ['@babel/preset-env', {targets: {node: 'current'}}],\n        '@babel/preset-ty"
  },
  {
    "path": "buildspec.yaml",
    "chars": 968,
    "preview": "version: 0.2\nphases:\n  pre_build:\n    on-failure: ABORT\n    commands:\n      - echo Logging in to Docker Hub...\n      - d"
  },
  {
    "path": "bulwark_base/Dockerfile",
    "chars": 2786,
    "preview": "# Softrams - Bulwark Reporting Application Dockerized Configuration\n# Maintained by Bill Jones\n\n# Start from Alpine Linu"
  },
  {
    "path": "bulwark_base/buildspec.yaml",
    "chars": 541,
    "preview": "version: 0.2\nphases:\n  pre_build:\n    commands:\n      - echo Logging in to Docker Hub...\n      - docker login --username"
  },
  {
    "path": "bulwark_base/bulwark-entrypoint",
    "chars": 21,
    "preview": "#!/bin/sh\n\nexec \"$@\"\n"
  },
  {
    "path": "commitlint.config.js",
    "chars": 69,
    "preview": "module.exports = {\n  extends: ['@commitlint/config-conventional']\n};\n"
  },
  {
    "path": "docker-compose.yml",
    "chars": 1952,
    "preview": "version: '3.8'\nservices:\n  bulwark:\n    image: softramsdocker/bulwark:latest\n    container_name: bulwark\n    environment"
  },
  {
    "path": "frontend/.browserslistrc",
    "chars": 388,
    "preview": "# This file is currently used by autoprefixer to adjust CSS to support the below specified browsers\n# For additional inf"
  },
  {
    "path": "frontend/.editorconfig",
    "chars": 266,
    "preview": "# Editor configuration, see https://editorconfig.org\nroot = true\n\n[*]\ncharset = utf-8\nindent_style = space\nindent_size ="
  },
  {
    "path": "frontend/.gitignore",
    "chars": 648,
    "preview": "# See http://help.github.com/ignore-files/ for more about ignoring files.\n\n# compiled output\n/dist\n/tmp\n/out-tsc\n# Only "
  },
  {
    "path": "frontend/README.md",
    "chars": 1025,
    "preview": "# Frontend\n\nThis project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.3.5.\n\n## Dev"
  },
  {
    "path": "frontend/angular.json",
    "chars": 4776,
    "preview": "{\n  \"$schema\": \"./node_modules/@angular/cli/lib/config/schema.json\",\n  \"version\": 1,\n  \"newProjectRoot\": \"projects\",\n  \""
  },
  {
    "path": "frontend/e2e/protractor.conf.js",
    "chars": 752,
    "preview": "// Protractor configuration file, see link for more information\n// https://github.com/angular/protractor/blob/master/lib"
  },
  {
    "path": "frontend/e2e/src/app.e2e-spec.ts",
    "chars": 637,
    "preview": "import { AppPage } from './app.po';\nimport { browser, logging } from 'protractor';\n\ndescribe('workspace-project App', ()"
  },
  {
    "path": "frontend/e2e/src/app.po.ts",
    "chars": 251,
    "preview": "import { browser, by, element } from 'protractor';\n\nexport class AppPage {\n  navigateTo() {\n    return browser.get(brows"
  },
  {
    "path": "frontend/e2e/tsconfig.e2e.json",
    "chars": 213,
    "preview": "{\n  \"extends\": \"../tsconfig.json\",\n  \"compilerOptions\": {\n    \"outDir\": \"../out-tsc/app\",\n    \"module\": \"commonjs\",\n    "
  },
  {
    "path": "frontend/package.json",
    "chars": 1757,
    "preview": "{\n  \"name\": \"frontend\",\n  \"version\": \"1.0.0\",\n  \"type\": \"module\",\n  \"scripts\": {\n    \"ng\": \"ng\",\n    \"start\": \"ng serve\""
  },
  {
    "path": "frontend/src/app/admin.guard.spec.ts",
    "chars": 336,
    "preview": "import { TestBed } from '@angular/core/testing';\n\nimport { AdminGuard } from './admin.guard';\n\ndescribe('AdminGuard', ()"
  },
  {
    "path": "frontend/src/app/admin.guard.ts",
    "chars": 1150,
    "preview": "import { Injectable } from '@angular/core';\nimport {\n  CanActivate,\n  ActivatedRouteSnapshot,\n  RouterStateSnapshot,\n  U"
  },
  {
    "path": "frontend/src/app/administration/administration.component.html",
    "chars": 252,
    "preview": "<h5>Administration</h5>\n<div class=\"container col-12 col-md-8 mx-auto\">\n  <app-settings></app-settings>\n  <br>\n  <app-us"
  },
  {
    "path": "frontend/src/app/administration/administration.component.sass",
    "chars": 23,
    "preview": "h5\n\ttext-align: center\n"
  },
  {
    "path": "frontend/src/app/administration/administration.component.spec.ts",
    "chars": 698,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { AdministrationComponent } fro"
  },
  {
    "path": "frontend/src/app/administration/administration.component.ts",
    "chars": 445,
    "preview": "import { Component, OnInit } from '@angular/core';\nimport { InviteUserComponent } from './invite-user/invite-user.compon"
  },
  {
    "path": "frontend/src/app/administration/invite-user/invite-user.component.html",
    "chars": 943,
    "preview": "<div class=\"container col-6 align-self-center\">\n  <p-card>\n    <div class=\"card-body\">\n      <h6>Invite a User</h6>\n    "
  },
  {
    "path": "frontend/src/app/administration/invite-user/invite-user.component.sass",
    "chars": 146,
    "preview": ".centerBtn\n\tdisplay: flex\n\tjustify-content: center\n\talign-items: center\n\theight: 40px\n\twidth: 75px\n\tborder: 3px solid gr"
  },
  {
    "path": "frontend/src/app/administration/invite-user/invite-user.component.spec.ts",
    "chars": 671,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { InviteUserComponent } from '."
  },
  {
    "path": "frontend/src/app/administration/invite-user/invite-user.component.ts",
    "chars": 1055,
    "preview": "import { Component, OnInit } from '@angular/core';\nimport { FormGroup, FormBuilder, Validators } from '@angular/forms';\n"
  },
  {
    "path": "frontend/src/app/administration/settings/settings.component.html",
    "chars": 2503,
    "preview": "<p-card>\n  <div class=\"card-body\">\n    <h4>Application Email Settings</h4>\n    <hr />\n    <div id=\"formContent\">\n      <"
  },
  {
    "path": "frontend/src/app/administration/settings/settings.component.sass",
    "chars": 124,
    "preview": ".centerBtn\n\tdisplay: flex\n\tjustify-content: center\n\talign-items: center\n\theight: 40px\n\twidth: 75px\n\tborder: 3px solid gr"
  },
  {
    "path": "frontend/src/app/administration/settings/settings.component.spec.ts",
    "chars": 640,
    "preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { SettingsComponent } from './settings.compon"
  },
  {
    "path": "frontend/src/app/administration/settings/settings.component.ts",
    "chars": 2024,
    "preview": "import { Component, OnInit } from '@angular/core';\nimport { FormGroup, FormBuilder, Validators } from '@angular/forms';\n"
  },
  {
    "path": "frontend/src/app/alert/alert/alert.component.html",
    "chars": 184,
    "preview": "<div *ngFor=\"let alert of alerts\" class=\"{{ cssClass(alert) }} alert-dismissable text-center\">\n  {{ alert.message }}\n  <"
  },
  {
    "path": "frontend/src/app/alert/alert/alert.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/alert/alert/alert.component.spec.ts",
    "chars": 635,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { AlertComponent } from './aler"
  },
  {
    "path": "frontend/src/app/alert/alert/alert.component.ts",
    "chars": 1447,
    "preview": "import { Component, OnInit, Input, OnDestroy } from '@angular/core';\nimport { Subscription } from 'rxjs';\nimport { Alert"
  },
  {
    "path": "frontend/src/app/alert/alert.module.ts",
    "chars": 358,
    "preview": "import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { AlertComponent } from"
  },
  {
    "path": "frontend/src/app/alert/alert.service.spec.ts",
    "chars": 331,
    "preview": "import { TestBed } from '@angular/core/testing';\n\nimport { AlertService } from './alert.service';\n\ndescribe('AlertServic"
  },
  {
    "path": "frontend/src/app/alert/alert.service.ts",
    "chars": 1690,
    "preview": "import { Injectable } from '@angular/core';\nimport { Router, NavigationStart } from '@angular/router';\nimport { Alert, A"
  },
  {
    "path": "frontend/src/app/apikey-management/apikey-management.component.html",
    "chars": 1288,
    "preview": "<p-card>\n  <div class=\"card-body\">\n    <h4>API Key Management</h4>\n    <hr />\n    <p-table [value]=\"apiKeys\" [paginator]"
  },
  {
    "path": "frontend/src/app/apikey-management/apikey-management.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/apikey-management/apikey-management.component.spec.ts",
    "chars": 691,
    "preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { ApikeyManagementComponent } from './apikey-"
  },
  {
    "path": "frontend/src/app/apikey-management/apikey-management.component.ts",
    "chars": 1072,
    "preview": "import { Component, OnInit } from '@angular/core';\nimport { AlertService } from '../alert/alert.service';\nimport { AuthS"
  },
  {
    "path": "frontend/src/app/app-routing.module.ts",
    "chars": 10052,
    "preview": "import { NgModule, Injectable } from '@angular/core';\nimport {\n  Routes,\n  RouterModule,\n  Resolve,\n  ActivatedRouteSnap"
  },
  {
    "path": "frontend/src/app/app.component.html",
    "chars": 149,
    "preview": "<app-navbar></app-navbar>\n<div class=\"container-fluid\">\n  <app-alert></app-alert>\n  <router-outlet></router-outlet>\n</di"
  },
  {
    "path": "frontend/src/app/app.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/app.component.spec.ts",
    "chars": 1115,
    "preview": "import { TestBed, waitForAsync } from '@angular/core/testing';\nimport { RouterTestingModule } from '@angular/router/test"
  },
  {
    "path": "frontend/src/app/app.component.ts",
    "chars": 190,
    "preview": "import { Component } from '@angular/core';\n\n@Component({\n  selector: 'app-root',\n  templateUrl: './app.component.html',\n"
  },
  {
    "path": "frontend/src/app/app.interceptor.ts",
    "chars": 3294,
    "preview": "import { Injectable } from '@angular/core';\nimport {\n  HttpEvent,\n  HttpHandler,\n  HttpInterceptor,\n  HttpRequest,\n} fro"
  },
  {
    "path": "frontend/src/app/app.module.ts",
    "chars": 4769,
    "preview": "import { BrowserModule } from '@angular/platform-browser';\nimport { BrowserAnimationsModule } from '@angular/platform-br"
  },
  {
    "path": "frontend/src/app/app.service.spec.ts",
    "chars": 321,
    "preview": "import { TestBed } from '@angular/core/testing';\n\nimport { AppService } from './app.service';\n\ndescribe('AppService', ()"
  },
  {
    "path": "frontend/src/app/app.service.ts",
    "chars": 12507,
    "preview": "import { Injectable } from '@angular/core';\nimport { HttpClient, HttpErrorResponse } from '@angular/common/http';\nimport"
  },
  {
    "path": "frontend/src/app/assessment-form/Assessment.ts",
    "chars": 439,
    "preview": "import { URL } from 'url';\nimport { User } from '../interfaces/User';\n\nexport class Assessment {\n  constructor(\n    publ"
  },
  {
    "path": "frontend/src/app/assessment-form/assessment-form.component.html",
    "chars": 2600,
    "preview": "<div class=\"container-fluid\">\n  <form [formGroup]=\"assessmentForm\" (ngSubmit)=\"onSubmit(assessmentForm)\">\n    <div class"
  },
  {
    "path": "frontend/src/app/assessment-form/assessment-form.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/assessment-form/assessment-form.component.spec.ts",
    "chars": 699,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { AssessmentFormComponent } fro"
  },
  {
    "path": "frontend/src/app/assessment-form/assessment-form.component.ts",
    "chars": 4741,
    "preview": "import { Component, OnInit, OnChanges } from '@angular/core';\nimport { Router, ActivatedRoute, RouterOutlet } from '@ang"
  },
  {
    "path": "frontend/src/app/assessments/assessments.component.html",
    "chars": 4200,
    "preview": "<div class=\"container-fluid\">\n  <p-table #assessmentTable [value]=\"assessmentAry\" [columns]=\"cols\" [paginator]=\"true\" [r"
  },
  {
    "path": "frontend/src/app/assessments/assessments.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/assessments/assessments.component.spec.ts",
    "chars": 677,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { AssessmentsComponent } from '"
  },
  {
    "path": "frontend/src/app/assessments/assessments.component.ts",
    "chars": 5086,
    "preview": "import { Component, OnInit, ViewChild } from '@angular/core';\nimport { FilterService, FilterMatchMode } from 'primeng/ap"
  },
  {
    "path": "frontend/src/app/asset-form/Asset.ts",
    "chars": 128,
    "preview": "import { Jira } from './Jira';\n\nexport interface Asset {\n  id: number;\n  name: string;\n  organization: number;\n  jira?: "
  },
  {
    "path": "frontend/src/app/asset-form/Jira.ts",
    "chars": 114,
    "preview": "export interface Jira {\n  id?: number;\n  username?: string;\n  host?: string;\n  url?: string;\n  apiKey?: string;\n}\n"
  },
  {
    "path": "frontend/src/app/asset-form/asset-form.component.html",
    "chars": 1885,
    "preview": "<div class=\"col-4 mx-auto\">\n  <form [formGroup]=\"assetForm\" (ngSubmit)=\"onSubmit(assetForm)\">\n    <div class=\"form-group"
  },
  {
    "path": "frontend/src/app/asset-form/asset-form.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/asset-form/asset-form.component.spec.ts",
    "chars": 664,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { AssetFormComponent } from './"
  },
  {
    "path": "frontend/src/app/asset-form/asset-form.component.ts",
    "chars": 3981,
    "preview": "import { Component, OnInit, OnChanges } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators } from '@angul"
  },
  {
    "path": "frontend/src/app/auth.guard.spec.ts",
    "chars": 353,
    "preview": "import { TestBed, inject, waitForAsync } from '@angular/core/testing';\n\nimport { AuthGuard } from './auth.guard';\n\ndescr"
  },
  {
    "path": "frontend/src/app/auth.guard.ts",
    "chars": 1022,
    "preview": "import { Injectable } from '@angular/core';\nimport {\n  CanActivate,\n  ActivatedRouteSnapshot,\n  RouterStateSnapshot,\n  U"
  },
  {
    "path": "frontend/src/app/auth.service.spec.ts",
    "chars": 326,
    "preview": "import { TestBed } from '@angular/core/testing';\n\nimport { AuthService } from './auth.service';\n\ndescribe('AuthService',"
  },
  {
    "path": "frontend/src/app/auth.service.ts",
    "chars": 2569,
    "preview": "import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\nimport { environment } fr"
  },
  {
    "path": "frontend/src/app/classes/Alert.ts",
    "chars": 253,
    "preview": "export class Alert {\n  type: AlertType;\n  message: string;\n  alertId: string;\n  keepAfterRouteChange: boolean;\n\n  constr"
  },
  {
    "path": "frontend/src/app/classes/ProblemLocation.ts",
    "chars": 118,
    "preview": "export class ProblemLocation {\n  constructor(private id: number, public location: string, public target: string) {}\n}\n"
  },
  {
    "path": "frontend/src/app/classes/Resource.ts",
    "chars": 86,
    "preview": "export class Resource {\n  constructor(private id: number, public resURL: string) {}\n}\n"
  },
  {
    "path": "frontend/src/app/dashboard/dashboard.component.html",
    "chars": 2949,
    "preview": "<div class=\"container-fluid\">\n  <p-table #orgTable [value]=\"orgAry\">\n    <ng-template pTemplate=\"header\">\n      <tr>\n   "
  },
  {
    "path": "frontend/src/app/dashboard/dashboard.component.sass",
    "chars": 31,
    "preview": ".card-img-top\n    padding: 20px"
  },
  {
    "path": "frontend/src/app/dashboard/dashboard.component.spec.ts",
    "chars": 663,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { DashboardComponent } from './"
  },
  {
    "path": "frontend/src/app/dashboard/dashboard.component.ts",
    "chars": 3141,
    "preview": "import { Component, OnInit, ViewChild } from '@angular/core';\nimport { AppService } from '../app.service';\nimport { Acti"
  },
  {
    "path": "frontend/src/app/email-validate/email-validate.component.html",
    "chars": 907,
    "preview": "<div class=\"container col-12 col-md-4\">\n  <p-card>\n          <h4>Email Update Validation</h4>\n          <hr />\n         "
  },
  {
    "path": "frontend/src/app/email-validate/email-validate.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/email-validate/email-validate.component.spec.ts",
    "chars": 676,
    "preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { EmailValidateComponent } from './email-vali"
  },
  {
    "path": "frontend/src/app/email-validate/email-validate.component.ts",
    "chars": 1200,
    "preview": "import { Component, OnInit } from '@angular/core';\nimport { FormGroup, FormBuilder, Validators } from '@angular/forms';\n"
  },
  {
    "path": "frontend/src/app/enums/roles.enum.ts",
    "chars": 88,
    "preview": "export const ROLE = {\n  ADMIN: 'Admin',\n  READONLY: 'Read-Only',\n  TESTER: 'Tester',\n};\n"
  },
  {
    "path": "frontend/src/app/footer/footer.component.html",
    "chars": 116,
    "preview": "<footer class=\"navbar-light bg-light fixed-bottom\">\n  <div class=\"container\">\n    <span> </span>\n  </div>\n</footer>\n"
  },
  {
    "path": "frontend/src/app/footer/footer.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/footer/footer.component.spec.ts",
    "chars": 642,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { FooterComponent } from './foo"
  },
  {
    "path": "frontend/src/app/footer/footer.component.ts",
    "chars": 270,
    "preview": "import { Component, OnInit } from '@angular/core';\n\n@Component({\n  selector: 'app-footer',\n  templateUrl: './footer.comp"
  },
  {
    "path": "frontend/src/app/forgot-password/forgot-password.component.html",
    "chars": 683,
    "preview": "<div class=\"container col-12 col-md-4\">\n  <p-card>\n    <form [formGroup]=\"pwdResetForm\" (ngSubmit)=\"onSubmit(pwdResetFor"
  },
  {
    "path": "frontend/src/app/forgot-password/forgot-password.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/forgot-password/forgot-password.component.spec.ts",
    "chars": 699,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { ForgotPasswordComponent } fro"
  },
  {
    "path": "frontend/src/app/forgot-password/forgot-password.component.ts",
    "chars": 1058,
    "preview": "import { Component, OnInit } from '@angular/core';\nimport { FormGroup, FormBuilder, Validators } from '@angular/forms';\n"
  },
  {
    "path": "frontend/src/app/global-manager.service.spec.ts",
    "chars": 372,
    "preview": "import { TestBed } from '@angular/core/testing';\n\nimport { GlobalManagerService } from './global-manager.service';\n\ndesc"
  },
  {
    "path": "frontend/src/app/global-manager.service.ts",
    "chars": 424,
    "preview": "import { Injectable } from '@angular/core';\nimport { BehaviorSubject, Observable } from 'rxjs';\n\n@Injectable({\n  provide"
  },
  {
    "path": "frontend/src/app/interfaces/ApiKey.ts",
    "chars": 127,
    "preview": "export interface ApiKey {\n  id: number;\n  createdDate: Date;\n  lastUpdatedDate: Date;\n  active?: boolean;\n  email?: bool"
  },
  {
    "path": "frontend/src/app/interfaces/App_File.ts",
    "chars": 245,
    "preview": "import { SafeUrl } from '@angular/platform-browser';\n\nexport interface AppFile extends File {\n  id: number;\n  buffer: an"
  },
  {
    "path": "frontend/src/app/interfaces/Organization.ts",
    "chars": 82,
    "preview": "export interface Organization {\n  id: number;\n  name: string;\n  status: string;\n}\n"
  },
  {
    "path": "frontend/src/app/interfaces/Screenshot.ts",
    "chars": 161,
    "preview": "import { SafeUrl } from '@angular/platform-browser';\n\nexport interface Screenshot {\n    url: SafeUrl;\n    file: any;\n   "
  },
  {
    "path": "frontend/src/app/interfaces/Settings.ts",
    "chars": 106,
    "preview": "export interface Settings {\n  fromEmail?: string;\n  fromEmailPassword?: string;\n  companyName?: string;\n}\n"
  },
  {
    "path": "frontend/src/app/interfaces/Team.ts",
    "chars": 299,
    "preview": "import { Organization } from '../org-form/Organization';\nimport { Asset } from '../asset-form/Asset';\ninterface Role {\n "
  },
  {
    "path": "frontend/src/app/interfaces/Tokens.ts",
    "chars": 69,
    "preview": "export interface Tokens {\n  token: string;\n  refreshToken: string;\n}\n"
  },
  {
    "path": "frontend/src/app/interfaces/User.ts",
    "chars": 257,
    "preview": "import { Team } from './Team';\n\nexport interface User {\n  firstName: string;\n  lastName: string;\n  title: string;\n  pass"
  },
  {
    "path": "frontend/src/app/loader.service.spec.ts",
    "chars": 336,
    "preview": "import { TestBed } from '@angular/core/testing';\n\nimport { LoaderService } from './loader.service';\n\ndescribe('LoaderSer"
  },
  {
    "path": "frontend/src/app/loader.service.ts",
    "chars": 379,
    "preview": "import { Injectable } from '@angular/core';\nimport { BehaviorSubject } from 'rxjs/internal/BehaviorSubject';\nimport { Su"
  },
  {
    "path": "frontend/src/app/login/login.component.html",
    "chars": 878,
    "preview": "<div class=\"container col-md-4 col-12\">\n  <p-card id=\"formContent\" class=\"card\">\n    <!-- Login Form -->\n    <form [form"
  },
  {
    "path": "frontend/src/app/login/login.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/login/login.component.spec.ts",
    "chars": 635,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { LoginComponent } from './logi"
  },
  {
    "path": "frontend/src/app/login/login.component.ts",
    "chars": 1067,
    "preview": "import { Component, OnInit } from '@angular/core';\nimport { FormGroup, FormBuilder, Validators } from '@angular/forms';\n"
  },
  {
    "path": "frontend/src/app/navbar/navbar.component.html",
    "chars": 1004,
    "preview": "<nav class=\"navbar navbar-light bg-light\" style=\"margin-bottom: 50px;\">\n  <a class=\"navbar-brand\" href=\"#\">\n    <img src"
  },
  {
    "path": "frontend/src/app/navbar/navbar.component.sass",
    "chars": 55,
    "preview": ".dropdown-menu\n  left: -50px\n  margin: .125rem -10px 0\n"
  },
  {
    "path": "frontend/src/app/navbar/navbar.component.spec.ts",
    "chars": 642,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { NavbarComponent } from './nav"
  },
  {
    "path": "frontend/src/app/navbar/navbar.component.ts",
    "chars": 750,
    "preview": "import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core';\nimport { LoaderService } from '../loader.ser"
  },
  {
    "path": "frontend/src/app/org-form/Organization.ts",
    "chars": 87,
    "preview": "export class Organization {\n  constructor(public id: number, public name: string) {}\n}\n"
  },
  {
    "path": "frontend/src/app/org-form/org-form.component.html",
    "chars": 784,
    "preview": "<div class=\"container col-md-6 col-12\">\n  <form [formGroup]=\"orgForm\" (ngSubmit)=\"onSubmit(orgForm)\">\n    <div class=\"fo"
  },
  {
    "path": "frontend/src/app/org-form/org-form.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/org-form/org-form.component.spec.ts",
    "chars": 650,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { OrgFormComponent } from './or"
  },
  {
    "path": "frontend/src/app/org-form/org-form.component.ts",
    "chars": 3236,
    "preview": "import { Component, OnInit, OnChanges } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators } from '@angul"
  },
  {
    "path": "frontend/src/app/organization/organization.component.html",
    "chars": 6348,
    "preview": "<div class=\"container-fluid\">\n  <p-table #dt [value]=\"assetAry\" [paginator]=\"true\" [rows]=\"10\" styleClass=\"p-datatable-s"
  },
  {
    "path": "frontend/src/app/organization/organization.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/organization/organization.component.spec.ts",
    "chars": 684,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { OrganizationComponent } from "
  },
  {
    "path": "frontend/src/app/organization/organization.component.ts",
    "chars": 4699,
    "preview": "import { Component, OnInit, ViewChild } from '@angular/core';\nimport { ActivatedRoute, Router } from '@angular/router';\n"
  },
  {
    "path": "frontend/src/app/page-not-found/page-not-found.component.html",
    "chars": 44,
    "preview": "<h2 class=\"text-center\">Page not found</h2>\n"
  },
  {
    "path": "frontend/src/app/page-not-found/page-not-found.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/page-not-found/page-not-found.component.spec.ts",
    "chars": 686,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { PageNotFoundComponent } from "
  },
  {
    "path": "frontend/src/app/page-not-found/page-not-found.component.ts",
    "chars": 300,
    "preview": "import { Component, OnInit } from '@angular/core';\n\n@Component({\n  selector: 'app-page-not-found',\n  templateUrl: './pag"
  },
  {
    "path": "frontend/src/app/password-reset/password-reset.component.html",
    "chars": 970,
    "preview": "<div class=\"container col-12 col-md-4\">\n  <p-card  id=\"formContent\">\n    <form [formGroup]=\"pwdResetForm\" (ngSubmit)=\"on"
  },
  {
    "path": "frontend/src/app/password-reset/password-reset.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/password-reset/password-reset.component.spec.ts",
    "chars": 692,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { PasswordResetComponent } from"
  },
  {
    "path": "frontend/src/app/password-reset/password-reset.component.ts",
    "chars": 1340,
    "preview": "import { Component, OnInit } from '@angular/core';\nimport { FormGroup, FormBuilder, Validators } from '@angular/forms';\n"
  },
  {
    "path": "frontend/src/app/register/register.component.html",
    "chars": 1436,
    "preview": "<div class=\"container col-12 col-md-4\">\n  <p-card>\n      <h4>Bulwark Registration</h4>\n      <hr/>\n      <form [formGrou"
  },
  {
    "path": "frontend/src/app/register/register.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/register/register.component.spec.ts",
    "chars": 656,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { RegisterComponent } from './r"
  },
  {
    "path": "frontend/src/app/register/register.component.ts",
    "chars": 1548,
    "preview": "import { Component, OnInit } from '@angular/core';\nimport { FormGroup, FormBuilder, Validators } from '@angular/forms';\n"
  },
  {
    "path": "frontend/src/app/report/report.component.html",
    "chars": 6165,
    "preview": "<div class=\"container-fluid\">\n  <div class=\"row\" id=\"buttons\" *ngIf=\"showButtons\">\n    <div class=\"col-12\">\n      <div c"
  },
  {
    "path": "frontend/src/app/report/report.component.sass",
    "chars": 273,
    "preview": "div\n  &.gallery\n    margin: 5px\n    border: 1px solid #ccc\n    width: 80%\n\n\n    &:hover\n      border: 1px solid #777\n\n  "
  },
  {
    "path": "frontend/src/app/report/report.component.spec.ts",
    "chars": 642,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { ReportComponent } from './rep"
  },
  {
    "path": "frontend/src/app/report/report.component.ts",
    "chars": 4989,
    "preview": "import { Component, OnInit } from '@angular/core';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { Ap"
  },
  {
    "path": "frontend/src/app/team/team.component.html",
    "chars": 2176,
    "preview": "<p-card>\n  <div class=\"card-body\">\n    <h4>Team Management</h4>\n    <hr />\n    <p-table [value]=\"teams\" dataKey=\"name\" ["
  },
  {
    "path": "frontend/src/app/team/team.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/team/team.component.spec.ts",
    "chars": 606,
    "preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { TeamComponent } from './team.component';\n\nd"
  },
  {
    "path": "frontend/src/app/team/team.component.ts",
    "chars": 1306,
    "preview": "import { Component, OnInit, ViewChild } from '@angular/core';\nimport { AlertService } from '../alert/alert.service';\nimp"
  },
  {
    "path": "frontend/src/app/team-form/team-form.component.html",
    "chars": 2542,
    "preview": "<div class=\"container col-6 align-self-center\">\n  <p-card>\n    <form [formGroup]=\"teamForm\" (ngSubmit)=\"onSubmit(teamFor"
  },
  {
    "path": "frontend/src/app/team-form/team-form.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/team-form/team-form.component.spec.ts",
    "chars": 635,
    "preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { TeamFormComponent } from './team-form.compo"
  },
  {
    "path": "frontend/src/app/team-form/team-form.component.ts",
    "chars": 4437,
    "preview": "import { Component, OnInit, OnChanges } from '@angular/core';\nimport { ROLE } from '../enums/roles.enum';\nimport { FormG"
  },
  {
    "path": "frontend/src/app/team.service.spec.ts",
    "chars": 347,
    "preview": "import { TestBed } from '@angular/core/testing';\n\nimport { TeamService } from './team.service';\n\ndescribe('TeamService',"
  },
  {
    "path": "frontend/src/app/team.service.ts",
    "chars": 774,
    "preview": "import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\nimport { environment } fr"
  },
  {
    "path": "frontend/src/app/user-form/user-form.component.html",
    "chars": 2948,
    "preview": "<div class=\"container col-6 align-self-center\">\n  <p-card>\n    <form [formGroup]=\"userForm\" (ngSubmit)=\"onSubmit(userFor"
  },
  {
    "path": "frontend/src/app/user-form/user-form.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/user-form/user-form.component.spec.ts",
    "chars": 635,
    "preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { UserFormComponent } from './user-form.compo"
  },
  {
    "path": "frontend/src/app/user-form/user-form.component.ts",
    "chars": 1623,
    "preview": "import { Component, OnInit } from '@angular/core';\nimport { FilterMatchMode } from 'primeng/api';\nimport { Table } from "
  },
  {
    "path": "frontend/src/app/user-management/user-management.component.html",
    "chars": 2072,
    "preview": "<p-card>\n  <div class=\"card-body\">\n    <h4>User Management</h4>\n    <hr />\n    <p-table [value]=\"users\" [paginator]=\"tru"
  },
  {
    "path": "frontend/src/app/user-management/user-management.component.sass",
    "chars": 119,
    "preview": "td.fitwidth \n    width: 1px\n    white-space: nowrap\n\n.hide \n  display: none\n\n    \n.name:hover + .hide \n  display: block"
  },
  {
    "path": "frontend/src/app/user-management/user-management.component.spec.ts",
    "chars": 677,
    "preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { UserManagementComponent } from './user-mana"
  },
  {
    "path": "frontend/src/app/user-management/user-management.component.ts",
    "chars": 1755,
    "preview": "import { Component, OnInit, ViewChild } from '@angular/core';\nimport { User } from '../interfaces/User';\nimport { UserSe"
  },
  {
    "path": "frontend/src/app/user-profile/user-profile.component.html",
    "chars": 8043,
    "preview": "<div class=\"container\">\n  <div class=\"col-md-9 mx-auto\">\n    <p-card>\n      <div class=\"card-body\">\n        <div class=\""
  },
  {
    "path": "frontend/src/app/user-profile/user-profile.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/user-profile/user-profile.component.spec.ts",
    "chars": 3555,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { UserProfileComponent } from '"
  },
  {
    "path": "frontend/src/app/user-profile/user-profile.component.ts",
    "chars": 5365,
    "preview": "import { Component, OnInit } from '@angular/core';\nimport { FormGroup, FormBuilder, Validators } from '@angular/forms';\n"
  },
  {
    "path": "frontend/src/app/user.service.spec.ts",
    "chars": 347,
    "preview": "import { TestBed } from '@angular/core/testing';\n\nimport { UserService } from './user.service';\n\ndescribe('UserService',"
  },
  {
    "path": "frontend/src/app/user.service.ts",
    "chars": 1362,
    "preview": "import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\nimport { environment } fr"
  },
  {
    "path": "frontend/src/app/vuln-form/Vulnerability.ts",
    "chars": 679,
    "preview": "import { ProblemLocation } from '../classes/ProblemLocation';\nimport { Resource } from '../classes/Resource';\n\nexport cl"
  },
  {
    "path": "frontend/src/app/vuln-form/vuln-form.component.html",
    "chars": 10176,
    "preview": "<div class=\"container-fluid col-6\">\n  <form [formGroup]=\"vulnForm\" name=\"vulnForm\" (ngSubmit)=\"onSubmit(vulnForm)\" class"
  },
  {
    "path": "frontend/src/app/vuln-form/vuln-form.component.sass",
    "chars": 89,
    "preview": ".previewBox\n  border: 1px solid #ced4da\n  padding: .375rem .75rem\n  border-radius: .25rem"
  },
  {
    "path": "frontend/src/app/vuln-form/vuln-form.component.spec.ts",
    "chars": 657,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { VulnFormComponent } from './v"
  },
  {
    "path": "frontend/src/app/vuln-form/vuln-form.component.ts",
    "chars": 15149,
    "preview": "import { Component, OnChanges, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormArray } f"
  },
  {
    "path": "frontend/src/app/vulnerability/vulnerability.component.html",
    "chars": 3671,
    "preview": "<div class=\"container-fluid\">\n  <p-table #vulnTable [value]=\"vulnAry\" [paginator]=\"true\" [rows]=\"10\" styleClass=\"p-datat"
  },
  {
    "path": "frontend/src/app/vulnerability/vulnerability.component.sass",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/app/vulnerability/vulnerability.component.spec.ts",
    "chars": 691,
    "preview": "import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';\n\nimport { VulnerabilityComponent } from"
  },
  {
    "path": "frontend/src/app/vulnerability/vulnerability.component.ts",
    "chars": 3538,
    "preview": "import { Component, OnInit, ViewChild } from '@angular/core';\nimport { ActivatedRoute, Router } from '@angular/router';\n"
  },
  {
    "path": "frontend/src/assets/.gitkeep",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "frontend/src/assets/theme/button.scss",
    "chars": 219,
    "preview": ".btn-success.p-inputtext {\n  background-color: #28a745;\n  border-color: #28a745;\n  color: white;\n}\n\n.btn-success.p-input"
  },
  {
    "path": "frontend/src/environments/environment.prod.ts",
    "chars": 144,
    "preview": "\n          export const environment = {\n             production: true,\n             apiUrl: \"http://localhost:4500/api\","
  },
  {
    "path": "frontend/src/environments/environment.ts",
    "chars": 680,
    "preview": "// This file can be replaced during build by using the `fileReplacements` array.\n// `ng build --prod` replaces `environm"
  },
  {
    "path": "frontend/src/index.html",
    "chars": 980,
    "preview": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <title>Bulwark</title>\n    <base href=\"/\" />\n"
  },
  {
    "path": "frontend/src/karma.conf.js",
    "chars": 1021,
    "preview": "// Karma configuration file, see link for more information\n// https://karma-runner.github.io/1.0/config/configuration-fi"
  },
  {
    "path": "frontend/src/main.ts",
    "chars": 372,
    "preview": "import { enableProdMode } from '@angular/core';\nimport { platformBrowserDynamic } from '@angular/platform-browser-dynami"
  },
  {
    "path": "frontend/src/polyfills.ts",
    "chars": 2828,
    "preview": "/**\n * This file includes polyfills needed by Angular and is loaded before the app.\n * You can add your own extra polyfi"
  },
  {
    "path": "frontend/src/styles.scss",
    "chars": 1134,
    "preview": "\n@import \"./assets/theme/button.scss\";\n\n.btn-primary.p-button,\n.btn-primary {\n  background-color: #ae0a0a;\n  border-colo"
  }
]

// ... and 76 more files (download for full content)

About this extraction

This page contains the full source code of the softrams/bulwark GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 276 files (715.9 KB), approximately 210.6k tokens, and a symbol index with 420 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!