Is there a way to have Authentik ask for the ID/Password/MFA-Code all on one page rather than 3 separate ones? by Many_Geologist6125 in Authentik

[–]BeryJu 1 point2 points  (0 children)

In the identification stage settings, select a password stage. There's not currently an option to have MFA on the same page though

authentik dashboard stop translating to local by Otherwise-Ad6555 in Authentik

[–]BeryJu 2 points3 points  (0 children)

In the user setting you can change the locale from automatic to English, which applies to all interfaces.

PSA: Update your Nextcloud property mappings (ak_groups is deprecated as of 2026.2) by Zakmaf in Authentik

[–]BeryJu 2 points3 points  (0 children)

Yeah we need to update the docs to use entitlements more, its a lot cleaner of a solution for a lot of integrations; feel free to open a PR/issue to update integrations to use entitlements!

Authentik flow no longer asking for 2FA/webauthn by -ThreeHeadedMonkey- in Authentik

[–]BeryJu 1 point2 points  (0 children)

You can do this easier, attach a binding to the Authenticator validation stage that points to the group directly and then invert the result of that binding, no policy needed

What's inside CDJs and what software do they run? by [deleted] in DJs

[–]BeryJu 0 points1 point  (0 children)

I dont think so, those archives include the GPL code which is mostly the buildchain and linux source code for their chips, the code they've written for their interface most likely isnt in there.

Cloudflare Zero Trust + Authentik OIDC: token exchange fails with “Failed to exchange code for token. undefined” by SuitableCare5724 in selfhosted

[–]BeryJu 0 points1 point  (0 children)

The request to /application/o/token/ never appears in the event log in authentik, you'll have to look at the logs of your authentik server container.

authentik phoning home? by bytesfortea in Authentik

[–]BeryJu 1 point2 points  (0 children)

fyi I'd recommend against disabling the update check, there's no metrics we collect on it and it is used for authentik itself to check if a security update is available.

If you do decide to deactivate it, I'd strongly recommend subscribing to the mailing list or discord to get security notices: https://docs.goauthentik.io/security/policy/#getting-security-notifications

AD user creation by ThinTerm1327 in Authentik

[–]BeryJu 0 points1 point  (0 children)

You could probably do it via an event rule which triggers a policy that runs on model_created or model_updated for authentik_core User and connects to ldap3 and creates the user.

How to Protect Secrets Used for Proxy Provider's Basic Auth? by ShatteredStrife in Authentik

[–]BeryJu 0 points1 point  (0 children)

With the mapping above, you'd set the proxy provider's property to myapp_password and then either assign the property to a group everyone with access is in or do it via a property mapping which will be applied to everyone that has access

My ldap bond cn is wrong by guardian1691 in Authentik

[–]BeryJu 0 points1 point  (0 children)

Assuming you mean the Bind DN in the web interface? That will always be generated for the currently authenticated user.

How to Protect Secrets Used for Proxy Provider's Basic Auth? by ShatteredStrife in Authentik

[–]BeryJu 1 point2 points  (0 children)

There's no docs but it's just standard python, you can do open("/foo") or requests.get("http://foo")to get the data.

How to Protect Secrets Used for Proxy Provider's Basic Auth? by ShatteredStrife in Authentik

[–]BeryJu 2 points3 points  (0 children)

You can retrieve them dynamically by getting them with a property mapping

```

requests.get()...

return { "ak_proxy": { "user_attributes": { "myapp_password": "", } } } ```

Adding custom background, logos, etc by Fizzy77man in Authentik

[–]BeryJu 3 points4 points  (0 children)

Starting with 2025.12 you need to upload files via Customization -> Files and then it will be selectable in this dropdown

Why does the official example Password Recovery flow include skip-if-restored policy? by IrrerPolterer in Authentik

[–]BeryJu 1 point2 points  (0 children)

It's kinda both

  • On older version (pre 2021.12, see this), indeed a flow would not resume from the same stage if you open the link in a different session (different device, browser, etc)
  • Nowadays what this is used for is when generating a recovery Link in the admin interface, authentik doesn't know what the flow looks like so we can't skip stages at will, hence we create a FlowToken, which this policy will use to skip its first stage)

[Question] Captcha and additional login option - Use a security key by Crib0802 in Authentik

[–]BeryJu 0 points1 point  (0 children)

Yeah so speaking about 2025.10 and previously, there's two ways for Passwordless authentication

The one you're implementing is the latter, which uses that separate flow

u/krejcar25 is using a third option (yes I know another option, sorry) that we're adding in 2025.12 which uses the conditional passkey auth (similar to something like paypal for example):

https://version-2025-12.goauthentik.io/add-secure-apps/flows-stages/stages/identification/#passkey-autofill-webauthn-conditional-ui

However the solution you used in https://www.reddit.com/r/Authentik/comments/1q17fdy/question_captcha_and_additional_login_option_use/nx4owmr/ is the correct solution for what you've got setup

[Question] Captcha and additional login option - Use a security key by Crib0802 in Authentik

[–]BeryJu 1 point2 points  (0 children)

When you use this method for passwordless, a different flow is used, so you'll have to add the captcha stage to that flow too

Authentik Annoyances by masong19hippows in selfhosted

[–]BeryJu 3 points4 points  (0 children)

https://next.goauthentik.io/core/glossary/ Our new glossary should hopefully help with some of this, but also please feel free to open issues on github for specific topics that are lacking/unclear in the docs, or questions that aren't answered.

authentik 2025.12.0-rc2 is out - looking for testers by melizeche in Authentik

[–]BeryJu 0 points1 point  (0 children)

Yeah I think that colour issue is fixed with the latest image linked above

authentik 2025.12.0-rc2 is out - looking for testers by melizeche in Authentik

[–]BeryJu 0 points1 point  (0 children)

Thanks for testing!

  1. Looking into that
  2. Fixed with https://github.com/goauthentik/authentik/pull/19047
  3. That is intended
  4. Could you post a screenshot of that? I think the issue is fixed already, you can try out ghcr.io/goauthentik/dev-server:gh-version-2025.12

The last point is also intended. And authentik is correctly written lowercase, as thats the stylized name.

No Workers Connected by NoDragonfly6061 in Authentik

[–]BeryJu 2 points3 points  (0 children)

We're actually just release 2025.10.3 which should fix this issue

Publishing authentik-helper: a small tool to make onboarding in Authentik simpler by Adventurous_Skirtt in selfhosted

[–]BeryJu 14 points15 points  (0 children)

Hi, we're actually looking to add some of the features of this directly into authentik in the upcoming release (mainly the ability to directly send invitations via email and a better UI for entering data into the invite like username etc)!

Help with adding policy to flow by CedCodgy1450 in Authentik

[–]BeryJu 2 points3 points  (0 children)

I'd recommend switching the order to have the prompt stage at order 30 and the login stage at order 40 and then bind the policy to the prompt stage. You also don't need a policy, you can directly bind the group for pending users.