Hello,
We are on DNN 9.13.3 for some time. Git Gaurdian secert token scan has reported critical issue in extensions-bundle.js & extensions-bundle.jsmap file which is available in this path /DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.Extensions/scripts/bundles/ for token values of this key - "editAuthenticationSystem". Any suggestion how we can fix the value of this token and remediate this issue.
Regards,
Alok
The key "editAuthenticationSystem" in the extensions-bundle.js and .js.map files is part of the DNN Persona Bar JavaScript code, and it is not a secret token or credential. It’s simply a client-side UI action key used for routing or permission checks in the DNN admin interface.
"editAuthenticationSystem"
extensions-bundle.js
.js.map
GitGuardian and similar tools can often return false positives when scanning minified JavaScript bundles because they look for patterns like "token" or keys that look like credentials (e.g., "editAuthenticationSystem") without understanding their context.
"token"
This is not an actual secret — it's just a UI permission key in a JavaScript file. You can safely mark it as a false positive in GitGuardian and ensure your CI process is configured to avoid flagging frontend bundle files incorrectly.
Also, please avoid modifying the DNN source code at all costs... It seems easy, fast and innocent now - but you'll be stuck not able to upgrade in the future (or it will become too expensive to upgrade).
These Forums are for the discussion of the open source CMS DNN platform and ecosystem.
For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:
Awesome! Simply post in the forums using the link below and we'll get you started.