Skip to content

Commit

Permalink
Add workaround for zeek/3534 on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
philrz committed Jan 15, 2024
1 parent c640478 commit f978db9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:

- name: Finish packaging artifact
run: ./release.sh
shell: sh
shell: bash

- name: Upload artifact
uses: actions/upload-artifact@v4
Expand Down
7 changes: 6 additions & 1 deletion release.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh -ex
#!/bin/bash -ex

case $(uname) in
Darwin|Linux)
Expand Down Expand Up @@ -75,6 +75,11 @@ install_zeek_package salesforce/hassh 76a47abe9382109ce9ba530e7f1d7014a4a95209
install_zeek_package salesforce/ja3 421dd4f3616b533e6971bb700289c6bb8355e707
echo "@load policy/protocols/conn/community-id-logging" | $sudo tee -a /usr/local/zeek/share/zeek/site/local.zeek

# Work around https://github.com/zeek/zeek/issues/3534 on Windows
[[ $(uname) =~ "NT" ]] &&
mv /usr/local/zeek/share/zeek/site/local.zeek /usr/local/zeek/share/zeek/site/local.zeek.orig &&
sed 's/^@load protocols\/ssh\/interesting-hostnames/#@load protocols\/ssh\/interesting-hostnames # https:\/\/github.com\/zeek\/zeek\/issues\/3534 workaround/; s/^@load frameworks\/files\/detect-MHR/#@load frameworks\/files\/detect-MHR # https:\/\/github.com\/zeek\/zeek\/issues\/3534 workaround/' /usr/local/zeek/share/zeek/site/local.zeek.orig > /usr/local/zeek/share/zeek/site/local.zeek

#
# Create zip file.
#
Expand Down

0 comments on commit f978db9

Please sign in to comment.