You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which is (i think) the equivalent to the following CURL command that does work:
curl -X POST "https://127.0.0.1:8443/eir" \
-H "Content-type:application/json" \
-d '{[REQUEST BODY IN testVegeta]}' \
--cacert [PATHTOFILE]/api/api_ca.crt \
--cert [PATHTOFILE]/http_client.crt \
--key [PATHTOFILE]/http_client.key
I'm facing weird problems with Vegeta:
The testVegeta file throws "permission denied" when trying to open it unless I leave a space between the "=" and the route. example: '-body= [PATHTOFILE]/testVegeta `. When there isn't a space, it also throws another error that it can't detect the encoding for stdin.
Even though they are the exact same certificates, the vegeta requests (when working with the space mentioned in the previous point) throws a http: TLS handshake error from 127.0.0.1:36861: remote error: tls: bad certificate from the server.
I'm using Ubuntu 23.10.
Is this a bug, or is there a mistake in my configurations?
Is there a way to see if Vegeta is opening the files correctly, or a "verbose" option?
Any insight is appreciated.
The text was updated successfully, but these errors were encountered:
SVelizMquest
changed the title
Troubleshoot certificates
Troubleshoot mTLS certificates
Jul 25, 2024
Question
I'm trying to run a Vegeta attack using certificates for mTLS with the following structure:
Which is (i think) the equivalent to the following CURL command that does work:
I'm facing weird problems with Vegeta:
http: TLS handshake error from 127.0.0.1:36861: remote error: tls: bad certificate
from the server.I'm using Ubuntu 23.10.
Is this a bug, or is there a mistake in my configurations?
Is there a way to see if Vegeta is opening the files correctly, or a "verbose" option?
Any insight is appreciated.
The text was updated successfully, but these errors were encountered: