ZupIT / horusec

Horusec is an open source tool that improves identification of vulnerabilities in your project with just one command.
https://horusec.io/
Apache License 2.0
1.15k stars 189 forks source link

Fixed Windows install commands #1149

Open ajmeese7 opened 1 year ago

ajmeese7 commented 1 year ago

curl does not have a -k or -L flag on Windows, these slightly simplified commands work perfectly well and accomplish the same task.

Caslus commented 1 year ago

Windows PowerShell has a curl alias for Invoke-WebRequest that does in fact not have -k and -L flags, however that only applies for PowerShell. Using the curl command in the command prompt works just fine!

ajmeese7 commented 1 year ago

Windows PowerShell has a curl alias for Invoke-WebRequest that does in fact not have -k and -L flags, however that only applies for PowerShell. Using the curl command in the command prompt works just fine!

Interesting, good catch! Repo maintainers, would you rather the README reflect how to use in both PWSH and CMD instead of this change?