projectdiscovery / katana

A next-generation crawling and spidering framework.
MIT License
12.28k stars 634 forks source link

Katana fails to run after update on MacBook pro m1. #1095

Closed davisbug closed 1 week ago

davisbug commented 1 week ago

katana version:

Current Behavior:

Expected Behavior:

Steps To Reproduce:

Anything else:

Ice3man543 commented 1 week ago

@davisbug you're probably facing https://github.com/golang/go/issues/68088 which is an issue with golang on latest versions of mac and is related to binary signing not working correctly.

As a temporary workaround, you can run the below command to sign the binary yourself

codesign --force --deep --sign - <path-to-katana>

The proper fix is to upgrade the version of golang to go1.22.6+ which solves this issue

davisbug commented 1 week ago

Thank you @Ice3man543 , updated my go version to 1.23.3 then updated katana with go install -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest command. Now works well!