Questions tagged [authentication]
Authentication is the process of determining whether someone or something is, in fact, who or what it is declared to be.
390 questions
3 votes
1 answer
134 views
Validate Microsoft Entra JWT
I am implementing SSO in my application via Microsoft Entra. It has a client application with Cloud APIs. The Client passes an Entra JWT to the server obtained from the MS Entra libraries. My database ...
3 votes
1 answer
73 views
Wordpress custom registration form with additional fields
I work on plugin for custom auth pages for WordPress and I try to create a custom registration form with additional fields. it has a shortcode in Beaver Builder. Is this the correct approach, and ...
3 votes
1 answer
133 views
.net api implementing oauth 2.0
I am trying to implement Oauth in my .net API with EntityFramework. I already completed the custom local authentication with JWT tokens and refresh tokens. I got a little bit confused as to how I ...
4 votes
1 answer
113 views
Abstraction Layers and Best Practices in Authentication with EF Core
Do you recommend adding a layer of abstraction on top of EF Core for example we have an API controller responsible for authentication do I just call EF Core methods directly in the controller or do I ...
9 votes
2 answers
974 views
JavaFX app with User Authentication and SQL Persistence
This JavaFX program is just supposed to allow a user to register a username and password and then have it stored in an SQL database. There's been some criticism that it's not clean, readable or ...
4 votes
2 answers
499 views
Springboot - Authentication Service
I am developing a Web application using Spring boot (I am a beginner). How can I make my code better? This code is from "AuthenticationService.java". I first made an interface for defining ...
3 votes
1 answer
133 views
Type-state pattern and state management for credentials struct used with Spotify web API
I am implementing authentication with the Spotify web API as part of a larger project. Yes I know there are already crates that can handle it for me but that is no fun. I am implementing the auth code ...
2 votes
1 answer
129 views
Kotlin Compose authentication with Google and Facebook using a CircularProgressIndicator for UI loading
I had this problem: https://stackoverflow.com/questions/78528358/how-to-prevent-circularprogressindicator-from-freezing-during-authentication-in Now after fixing it, I want to make sure that this is ...
3 votes
1 answer
130 views
Django Google Authentication App using OAuthLib and DRF
Context I've been working on a Django-based Google Authentication application, designed to manage OAuth authentication without relying on libraries such as ...
2 votes
2 answers
205 views
Simple authentication server
Here's a simple authentication server. It's pretty basic but has the core functionality of sign-up and log-in handling. Your best bet is to simply run the ...
4 votes
2 answers
330 views
A Python terminal
This is the code for Pylect, a Python terminal I worked on a while ago which also caused my Desktop to get destroyed because of bad code. I use it infrequently but I would like a review for the code ...
0 votes
1 answer
137 views
logging in using cookie authentication/authorization in asp.net C#
How safe is Cookie based Authentication/Authorization in ASP.NET C#? Take a look at the example below, don't worry about password hashing, All this code does is that it takes a username and a password ...
2 votes
1 answer
114 views
Session-based authentication using Express.js
I'm currently learning Express.js and I wrote this authentication code. I'm unsure if what i have is correct, how to improve it and if it's secure. For user and session data storage I'm using ...
2 votes
0 answers
163 views
MVVM signing in using firebase
I'm new to MVVM architecture. I want to have authentication with email + password, google and Facebook. I'm not sure if there should be separate view models for each authentication way: ...
3 votes
0 answers
267 views
System to automatically login to my university's Wi-Fi network using HTTP request
What is this? My university's Wi-Fi network requires students to visit a specific URL and login to the network before we can use the actual internet. This project replicates that same process by ...