Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .config/ci/windows/InstallNpcap.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down