forked from archerysec/archerysec
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README (installation part) and adding systemd service files
- Loading branch information
Francois Aichelbaum
committed
Aug 21, 2018
1 parent
1139a23
commit b90fb43
Showing
4 changed files
with
88 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[Unit] | ||
Description=Archery Sec | ||
After=network.target owasp-zap.service burp-api.service openvas-manager.server | ||
|
||
[Service] | ||
ExecStart=/usr/bin/python2.7 manage.py runserver 0.0.0.0:8000 | ||
WorkingDirectory=/opt/archerysec | ||
StandardOutput=syslog | ||
StandardError=syslog | ||
SyslogIdentifier=archery | ||
Restart=on-failure | ||
RestartSec=10 | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
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,14 @@ | ||
[Unit] | ||
Description=Service for Burp REST API | ||
After=network.target | ||
|
||
[Service] | ||
Environment="BURP_VER=1.0.3" | ||
ExecStart=/usr/bin/java -jar /usr/local/lib/burp-rest-api-${BURP_VER}.jar --burp.edition=free | ||
TimeoutStopSec=10 | ||
StandardOutput=syslog | ||
StandardError=syslog | ||
SyslogIdentifier=burp-api | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
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,15 @@ | ||
[Unit] | ||
Description=Service for OWASP ZAP | ||
After=network.target | ||
|
||
[Service] | ||
Environment="DISPLAY=:99" | ||
Environment="API_KEY=XvkNnXKc5QlJiLryunWQdy1J9kbr1WPA" | ||
ExecStart=/usr/share/owasp-zap/zap.sh -daemon -host 0.0.0.0 -port 8081 -config api.key=${API_KEY} -config api.addrs.addr.name=.* -config api.addrs.addr.regex=true -config connection.timeoutInSecs=300 | ||
TimeoutStopSec=10 | ||
StandardOutput=syslog | ||
StandardError=syslog | ||
SyslogIdentifier=owasp-zap | ||
|
||
[Install] | ||
WantedBy=multi-user.target |