diff --git a/.config/ci/windows/InstallNpcap.ps1 b/.config/ci/windows/InstallNpcap.ps1 index 70024095784..347b7eb2420 100644 --- a/.config/ci/windows/InstallNpcap.ps1 +++ b/.config/ci/windows/InstallNpcap.ps1 @@ -22,8 +22,8 @@ function checkTheSum($file, $hash) { function DownloadNPCAP_free { $file = $PSScriptRoot+"\npcap-0.96.exe" $hash = "83667e1306fdcf7f9967c10277b36b87e50ee8812e1ee2bb9443bdd065dc04a1" - # Download the 0.96 file from nmap servers - Invoke-WebRequest "https://npcap.com/dist/npcap-0.96.exe" -UseBasicParsing -OutFile $file + # Download the 0.96 file from a copy :/ It was taken down from official servers. + Invoke-WebRequest "https://github.com/secdev/secdev.github.io/raw/refs/heads/master/public/ci/npcap-0.96.exe" -UseBasicParsing -OutFile $file return checkTheSum $file $hash }