I've been trying to run the Vulnz 5.0.1 CLI to create a cache of the NVD data. I am running behind a corporate HTTP proxy, which uses basic authentication. I'm running this in Java 11 and I have configured the following _JAVA_OPTIONS (which I see are being picked up by the application):
-Dhttps.proxyHost=http-proxy -Dhttps.proxyPort=8080 -Dhttps.proxyUser=<user> -Dhttps.proxyPassword=<password> -Djdk.http.auth.tunneling.disabledSchemes="" -Djdk.http.auth.proxying.disabledSchemes=""
I am getting a 407 from the proxy, and when I point this at Fiddler I don't see a Proxy-Authorization: header coming through.
I'm wondering if more configuration is needed in the RateLimitedClient on line 114.
I hope I'm overlooking something, and someone can set me on the right path.
I've been trying to run the Vulnz 5.0.1 CLI to create a cache of the NVD data. I am running behind a corporate HTTP proxy, which uses basic authentication. I'm running this in Java 11 and I have configured the following _JAVA_OPTIONS (which I see are being picked up by the application):
-Dhttps.proxyHost=http-proxy -Dhttps.proxyPort=8080 -Dhttps.proxyUser=<user> -Dhttps.proxyPassword=<password> -Djdk.http.auth.tunneling.disabledSchemes="" -Djdk.http.auth.proxying.disabledSchemes=""I am getting a 407 from the proxy, and when I point this at Fiddler I don't see a
Proxy-Authorization:header coming through.I'm wondering if more configuration is needed in the RateLimitedClient on line 114.
I hope I'm overlooking something, and someone can set me on the right path.