From 4ed4d9ed4a53c328f2429b40c3d6301c504e8c5c Mon Sep 17 00:00:00 2001 From: Chris Long Date: Sat, 15 Aug 2020 23:29:04 -0700 Subject: [PATCH] Update detectionlab.com endpoint --- Vagrant/bootstrap.sh | 2 +- Vagrant/scripts/provision.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrant/bootstrap.sh b/Vagrant/bootstrap.sh index 1039269..1535ecc 100644 --- a/Vagrant/bootstrap.sh +++ b/Vagrant/bootstrap.sh @@ -519,7 +519,7 @@ postinstall_tasks() { echo export PATH="$PATH:/opt/splunk/bin:/opt/zeek/bin" >>~/.bashrc echo "export SPLUNK_HOME=/opt/splunk" >>~/.bashrc # Ping DetectionLab server for usage statistics - curl -s -A "DetectionLab-logger" "https://detectionlab.network/logger" + curl -s -A "DetectionLab-logger" "https:/ping.detectionlab.network/logger" } main() { diff --git a/Vagrant/scripts/provision.ps1 b/Vagrant/scripts/provision.ps1 index db8a277..e70c2da 100644 --- a/Vagrant/scripts/provision.ps1 +++ b/Vagrant/scripts/provision.ps1 @@ -11,7 +11,7 @@ Write-Host "$('[{0:HH:mm}]' -f (Get-Date)) Checking if Windows evaluation is exp . c:\vagrant\scripts\fix-windows-expiration.ps1 # Ping DetectionLab server for usage statistics -curl -userAgent "DetectionLab-$box" "https://detectionlab.network/$box" -UseBasicParsing | out-null +curl -userAgent "DetectionLab-$box" "https://ping.detectionlab.network/$box" -UseBasicParsing | out-null Write-Host "$('[{0:HH:mm}]' -f (Get-Date)) Disabling IPv6 on all network adatpers..." Get-NetAdapterBinding -ComponentID ms_tcpip6 | ForEach-Object {Disable-NetAdapterBinding -Name $_.Name -ComponentID ms_tcpip6}