I have an Axis PTZ camera I want to command using CURL.
I know this command line works :
curl http://LOGIN:PASSWORD@IP/axis-cgi/com/ptz.cgi?rpan=10
But, as you can see, le login/password are clearly written in the URL.
So I tried in HTTPS with :
curl -k https://LOGIN:PASSWORD@IP/axis-cgi/com/ptz.cgi?rpan=10
... where the -k ignore certificate warnings.
It works too, but I want to be sure that my login/password are encrypted using this way.
Anyone can confirm ? (or give a way to command this camera safely)
Edit : well, I just edit my post to "bump"... :-°