-
Notifications
You must be signed in to change notification settings - Fork 436
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1965 from kevoreilly/vnc_port_2_options
expose VNC port via options in task info
- Loading branch information
Showing
37 changed files
with
1,662 additions
and
1,137 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
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -23,3 +23,4 @@ urlextract==1.5.0 | |
pdfminer==20191125 | ||
pg_activity | ||
python-tlsh | ||
pyattck = "7.1.2" |
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 |
---|---|---|
|
@@ -959,6 +959,7 @@ function dependencies() { | |
|
||
|
||
sudo apt update 2>/dev/null | ||
sudo systemctl stop [email protected] && sudo systemctl disable [email protected] | ||
apt install tor deb.torproject.org-keyring libzstd1 -y | ||
|
||
sed -i 's/#RunAsDaemon 1/RunAsDaemon 1/g' /etc/tor/torrc | ||
|
@@ -1345,6 +1346,13 @@ function install_DIE() { | |
wget "https://github.com/horsicq/DIE-engine/releases/download/${DIE_VERSION}/die_${DIE_VERSION}_Ubuntu_${UBUNTU_VERSION}_amd64.deb" -O DIE.deb && dpkg -i DIE.deb | ||
} | ||
|
||
function install_fluentd() { | ||
curl -sSO https://dl.google.com/cloudagents/add-logging-agent-repo.sh && sudo bash add-logging-agent-repo.sh | ||
sudo apt-get update && sudo apt-get install google-fluentd | ||
sudo apt-get install -y google-fluentd-catch-all-config-structured | ||
sudo service google-fluentd start && sudo service google-fluentd status | ||
} | ||
|
||
# Doesn't work ${$1,,} | ||
COMMAND=$(echo "$1"|tr "{A-Z}" "{a-z}") | ||
|
||
|
@@ -1477,6 +1485,8 @@ case "$COMMAND" in | |
install_crowdsecurity;; | ||
'die') | ||
install_DIE;; | ||
'fluentd') | ||
install_fluentd;; | ||
*) | ||
usage;; | ||
esac |
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
Oops, something went wrong.