-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 7c4ffdc
Showing
231 changed files
with
10,069 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.log | ||
*.exe |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2021 Marius Schmalz, Tim Philipp, Felix Klör, Christian Höfig, Lukas Hagmaier, Tobias Nöth | ||
|
||
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. |
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,38 @@ | ||
# Jungbusch-Auditorium | ||
|
||
Dieses Repository enthält den Quellcode für das Jungbusch-Auditorium. Das Jungbusch-Auditorium ist ein Framework zum Erstellen Modularer System-Audits. | ||
|
||
## Download der Binaries | ||
|
||
Siehe [Releases](https://github.com/Jungbusch-Softwareschmiede/jungbusch-auditorium/releases) | ||
|
||
## Übersicht der Jungbusch-Repositories | ||
|
||
Siehe [Jungbusch-Overview](https://github.com/Jungbusch-Softwareschmiede/jungbusch-overview) | ||
|
||
## Handbuch | ||
|
||
Siehe [Jungbusch-Manual](https://github.com/Jungbusch-Softwareschmiede/jungbusch-manual) | ||
|
||
## Dokumentation | ||
|
||
Siehe [Jungbusch-Documentation](https://github.com/Jungbusch-Softwareschmiede/jungbusch-documentation) | ||
|
||
## About | ||
|
||
Dieses Projekt wurde im Rahmen des Projektsemesters im Studiengang [Cybersecurity](https://www.hs-mannheim.de/studieninteressierte/unsere-studiengaenge/bachelorstudiengaenge/cyber-security.html) an der [Hochschule Mannheim](https://www.hs-mannheim.de/) im Zeitraum von 03/2021 - 07/2021 entwickelt. | ||
|
||
### Mitwirkende | ||
|
||
[Christian Höfig](https://github.com/cookieChrissi) | ||
|
||
[Tim Philipp](https://github.com/TimPhi) | ||
|
||
[Marius Schmalz](https://github.com/ByteSizedMarius) | ||
|
||
[Felix Klör](https://github.com/prefixFelix) | ||
|
||
[Tobias Nöth](https://github.com/Tobias01101110) | ||
|
||
[Lukas Hagmaier](https://github.com/Lucky-180) | ||
|
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,57 @@ | ||
package acutil | ||
|
||
import ( | ||
. "github.com/Jungbusch-Softwareschmiede/jungbusch-auditorium/models" | ||
) | ||
|
||
// Diese Methode enthält in statischen Objekten die allgemeingültigen Parameter der Auditkonfiguration und deren Syntax. | ||
func parameterSyntax() []ParameterSyntax { | ||
return []ParameterSyntax{ // | ||
{ | ||
ParamName: "stepid", | ||
ParamDescription: "Mit diesem Parameter muss für jeden Schritt eine einzigartige ID festgelegt werden.", | ||
ParamAlias: []string{"stepidentification", "id", "identifikation"}, | ||
}, | ||
{ | ||
ParamName: "module", | ||
ParamDescription: "Mit diesem Parameter wird festgelegt, welches Modul ausgeführt werden soll.", | ||
ParamAlias: []string{"mod", "modul"}, | ||
}, | ||
{ | ||
ParamName: "description", | ||
ParamDescription: "Mit diesem Parameter kann eine Beschreibung für den auszuführenden Schritt definiert werden.", | ||
ParamAlias: []string{"desc", "beschreibung", "definition"}, | ||
}, | ||
{ | ||
ParamName: "condition", | ||
ParamDescription: "Mit diesem Parameter kann eine Bedingung festgelegt werden. Der aktuelle Schritt wird nur ausgeführt, wenn diese zutrifft.", | ||
ParamAlias: []string{"cond", "bedingung"}, | ||
}, | ||
{ | ||
ParamName: "passed", | ||
ParamDescription: "Mit diesem Parameter kann eine Bedingung festgelegt werden. Der Schritt wird als Passed markiert, wenn diese zutrifft.", | ||
ParamAlias: []string{"bestanden", "erfolgreich"}, | ||
}, | ||
{ | ||
ParamName: "requireselevatedprivileges", | ||
ParamDescription: "Mit diesem Parameter kann festgelegt werden, dass ein Modul Administrator, bzw. Root-Rechte benötigt.", | ||
ParamAlias: []string{"requiresadmin", "requiresroot", "requiresprivileges", "rootonly", "adminonly"}, | ||
}, | ||
{ | ||
ParamName: "print", | ||
ParamDescription: "Mit diesem Parameter kann eine Konsolen-, sowie eine zusätzliche Ausgabe im Result gemacht werden.", | ||
ParamAlias: []string{"ausgeben"}, | ||
}, | ||
} | ||
} | ||
|
||
// Diese Methode enthält den Syntax einer Bedingung. | ||
func ifSyntax() []ParameterSyntax { | ||
return []ParameterSyntax{ // | ||
{ | ||
ParamName: "if", | ||
ParamDescription: "Markiert den Start einer Bedingung.", | ||
ParamAlias: []string{"wenn"}, | ||
}, | ||
} | ||
} |
Oops, something went wrong.