-
I am developing a desktop application using vue+wails+go. I am using example code from the SDK to invoke Nuclei. When I compile and run the generated binary, a command-line window flashes briefly, and then automatically closes. I have tried not calling any Nuclei code, but just referencing the 'github.com/projectdiscovery/nuclei/v3/lib' package triggers the command-line window as described above. Please provide me with some insights. Thank you very much!! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The reason for the issue has been identified. It is caused by the BinaryPath, _ = exec.LookPath("openssl.exe") call in the init function within common.go of OpenSSL. An alternative implementation should be used. |
Beta Was this translation helpful? Give feedback.
The reason for the issue has been identified. It is caused by the BinaryPath, _ = exec.LookPath("openssl.exe") call in the init function within common.go of OpenSSL. An alternative implementation should be used.