-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '366-update-documentation' into 'main'
Resolve "SysReptor Documentation" Closes #366 See merge request reportcreator/reportcreator!807
- Loading branch information
Showing
30 changed files
with
126 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
*.pyc | ||
site | ||
__pycache__ | ||
.cache | ||
.cache | ||
venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
| [__Easy Backups__](setup/backups.md){ target=_blank } | <span style="color:red;font-weight:bold;">X</span> | <span style="color:green;font-weight:bold;">✓</span> | | ||
| [__SSO (oAuth/OIDC)__](users/oidc-setup.md){ target=_blank } | <span style="color:red;font-weight:bold;">X</span> | <span style="color:green;font-weight:bold;">✓</span> | | ||
| [__Project Archiving (encrypted)__](insights/archiving.md){ target=_blank } | <span style="color:red;font-weight:bold;">X</span> | <span style="color:green;font-weight:bold;">✓</span> | | ||
| | [:fire: Get Started](setup/installation.md){ .md-button target="_blank" } | [:rocket: Buy](https://cloud.sysreptor.com/order/){ .md-button target="_blank"} | | ||
| | [:fire: Get Started](setup/installation.md){ .md-button target="_blank" } | [:rocket: Buy](https://portal.sysreptor.com/order/){ .md-button target="_blank"} | | ||
| | [:material-phone: Contact Us](contact-us.md){ .md-button style="align:center;" } | [:sauropod: Book a Demo](https://outlook.office365.com/book/[email protected]/s/gUjy2xF2GEeSc_6mDLvvkA2){ .md-button style="align:center;" target=_blank } | | ||
|
||
<br><br> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Use nginx as a web server | ||
|
||
Install nginx on your host system: | ||
|
||
```shell | ||
sudo apt-get update | ||
sudo apt-get install -y nginx | ||
``` | ||
|
||
Copy our nginx boilerplate configuration from the `deploy/nginx` directory to your nginx directory: | ||
|
||
```shell | ||
sudo cp deploy/nginx/sysreptor.nginx /etc/nginx/sites-available/ | ||
sudo ln -s /etc/nginx/sites-available/sysreptor.nginx /etc/nginx/sites-enabled/ | ||
sudo rm /etc/nginx/sites-enabled/default | ||
``` | ||
|
||
You can optionally generate self-signed certificates: | ||
```shell | ||
sudo apt-get update | ||
sudo apt-get install -y ssl-cert | ||
sudo make-ssl-cert generate-default-snakeoil | ||
``` | ||
|
||
Modify `sysreptor.nginx` and update the certificate paths in case you have trusted certificates (recommended). | ||
|
||
(Re)Start nginx: | ||
```shell | ||
sudo systemctl restart nginx | ||
# sudo /etc/init.d/nginx restart | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
title: Show and Tell | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
# Hash Identifier Plugin | ||
Identify hash possible hash types | ||
# Check the Hash | ||
Identify possible hash types of a string. | ||
|
||
Add `checkthehash` to the `ENABLED_PLUGINS` variable in your `app.env` and restart your containers using `docker compose up -d` from the `deploy` directory. | ||
|
||
``` | ||
ENABLED_PLUGINS="checkthehash" | ||
``` | ||
|
||
![Identify the hash type](docs/img/check_the_hash.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
# CyberChef Plugin | ||
Integrate CyberChef into SysReptor. | ||
Add CyberChef to SysReptor. | ||
|
||
Add cyberchef to the `ENABLED_PLUGINS` variable in your `app.env` and restart your containers using `docker compose up -d` from the `deploy` directory. | ||
|
||
``` | ||
ENABLED_PLUGINS="cyberchef" | ||
``` | ||
|
||
![CyberChef in SysReptor](docs/img/cyberchef.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
# GraphQL Voyager Plugin | ||
Integrate GraphQL Voyager into SysReptor. | ||
Add GraphQL Voyager to SysReptor. | ||
|
||
Add `graphqlvoyager` to the `ENABLED_PLUGINS` variable in your `app.env` and restart your containers using `docker compose up -d` from the `deploy` directory. | ||
|
||
``` | ||
ENABLED_PLUGINS="graphqlvoyager" | ||
``` | ||
|
||
![GraphQL Voyager in SysReptor](docs/img/gql_voyager.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.