I found that by using the authenticate API, it is possible to obtain the zt_session token, which can manage the entire OpenZiti network. So how can I protect it from external attacks? One common attack vector is brute force or weak password guessing.
I noticed that the API supports three authentication methods: "password", "cert", and "ext-jwt". Can I disable two of these methods and only use one? Specifically, can I disable the "password" method? Or should I simply disable the edge-management service and manage it entirely internally?
Besides disabling it, are there any other good ways to address its security risks, such as enabling MFA, etc.? But MFA may not be ideal for automation use of the API.
Phew - so many questions packed into such a small paragraph!!! Bear with me while I answer them all below
OpenZiti is expected to terminate TLS on its own. You would want to find something that can prevent the common TCP-type attacks, syn flood, ack flood etc. Something more akin to a firewall for those style attacks.
Most identities are not password protected, the simplest answer to this is to:
make a new admin identity after the initial default admin is created: ziti edge create identity new-admin -o new-admin.jwt --admin
enroll the admin: ziti edge enroll new-admin.jwt
use the new-admin identity to auth to the overlay (ensuring it works): ziti edge login --file new-admin.json
use the new-admin to delete any updb authenticators: ziti edge delete authenticators where 'method = "updb"'
Now you only can login with certificate-based auth.
You could do that. You could entirely turn off the edge-management service when not needed and only turn it back on when you want it but that means you can't change the network. A more common technique is to "separate" that API and surface it only on 127.0.0.1 (or some private network address). Then you would only be able to access the management API if on the same network as the binding. I will often bind to 127.0.0.1 (instead of 0.0.0.0) and use ziti itself to access the mgmt api.
MFA is without a doubt "the best way" imo. Yes but you should also explore auth-policies and posture checks.
After deleting everything in updb, ZAC is unable to log in, and I have to re-add the identity using the ziti edge create authenticator updb identityName username pass command Currently, it seems that updb is only used on the management side. For example, if ZAC supported CA or JWT login, updb could be removed. It also seems that the Ziti Edge client (ziti-edge-tunnel) does not support registration via updb at the moment.
ZAC is supposed to support cert-based authentication but it's really nascent and I've not used it. If you add the cert to your browser, when you login it should "just work" but to be honest I haven't done this yet. @qrkourier might have the exact steps to follow.
You sound like the kind of person that would want to split the management api away from the public internet anyway to harden the controller a bit more. Once you do that, you can use ziti to access the management API. There are videos and forum posts on this topic if interested.
As for our clients, they don't support updb, correct. I hope they never do :). We are actively working on adding OIDC support to the tunnelers anyway, so updb will hopefully never be needed on tunnelers.
Yes, the basic idea is to import the client cert in your web browser and tell your web browser to use it with the Ziti console URL the first time you visit. Thereafter, you can click the LOGIN button to proceed without a username or password.
How to Authenticate to Ziti Console with a Client Cert
Here's an overview of the procedure that assumes the OS is Linux and uses the ziti CLI as much as possible for API and file operations.
compose a keystore containing the client cert and private key
If copying the keystore to another device for import, set an encryption passphrase when prompted by openssl to ensure confidentiality of the private key.
In your web browser, import the keystore file, e.g. "admin2.p12", in the browser settings where it says something like "my certificates" or "client certificates."
Visit the Ziti console in your web browser and select the imported certificate when prompted by the web browser. Optionally, allow the web browser to remember your choice and always present the selected certificate when visiting a web site in the Ziti console's domain.
With empty username and password form fields, click the LOGIN button to finish authenticating with the certificate you presented in the prior step.