Questions tagged [user-management]

Generally used for a component of the software system - which is responsible for creating, managing and controlling users. This includes classical "authentication and authorization" terms too.

537 questions
1
vote
1 answer

tomcat6 sqlite3 user authentication

I was wondering how one would go about using sqlite3 to validate users in tomcat6. I do not have permission to install any sql type services, so I have to depend on sqlite3. My hope was to add this as a wrapper to an already existing deployment to…
kevin948
  • 648
  • 1
  • 8
  • 21
1
vote
1 answer

Unable to add new User/Role in WSO2 EI 6.4.0 (Docker) via managemnt console

There is WSO2 EI 6.4.0 docker container running in which trying to do user management task such as adding new role,adding new user, assign role to newly created user etc When i try to add new role/listing role, it is not even shows default role such…
Justin
  • 855
  • 2
  • 11
  • 30
1
vote
2 answers

User Management in ASP.Net MVC 3

i have a project using ASP.Net MVC 3, and now i want to make user management. i want to make it like this one : http://mrgsp.md:8080/awesome/user how to make that user management ? thanks a lot
ntep vodka
  • 735
  • 3
  • 11
  • 27
1
vote
1 answer

Keycloak Rest Api Reset password via Postman

I am trying to leverage the Keycloak Rest Api functionality to reset passwords for the users configured in Keycloak via Postman. Steps performed: I got the access token from http://127.0.0.1:8080/realms/:realmname/protocol/openid-connect/token for…
hs27
  • 67
  • 1
  • 8
1
vote
1 answer

How to invite a new user to be co-administrator in Azure?

I'm pulling my hair out trying to do what I thought was a simple matter of adding an external co-administrator to my Azure subscription. Here's what I've done so far: From Azure AD, went through the "Invite External User" workflow to invite the…
1
vote
1 answer

supabase delete user through application

I have a supabase project where I want the users to be able to delete their account. Every user has a profile in public.profiles. I thought I could let the users delete their profile and then handle the deletion of the account using a trigger. So I…
Anton
  • 563
  • 4
  • 13
1
vote
1 answer

User authentication using MySQL and GRANT or custom software solution?

I'm a long time programmer but have done very little database design. So I'm seeking some feedback on a solution I'm developing. Description I will have several (10 to 20) customers storing sensitive data on my remote server. A customer is an…
ZaXa
  • 111
  • 8
1
vote
1 answer

Auth0 get profile of other user client side

To learn some new technologies, I am building a small chat application that allows users to send messages to each other. I have set up my app with auth0 for client authentication and user management. My chat messages include the sub of a user as the…
thijsfranck
  • 778
  • 1
  • 10
  • 24
1
vote
1 answer

Azure DevOps Basic Licensing billing when having Visual Studio subscription

If I force a basic license on a user in Azure DevOps that has a Visual Studio subscription. Do I still have to pay 5$ for the basic license even though the user actually has a Visual Studio subscription assigned. Or does the billing system, by…
JvH
  • 11
  • 1
1
vote
2 answers

What is the meaning of the site_ID field in the DocuSign Admin API

In the DocuSign Admin API updateUsers request (s. link), the site_ID field is a mandatory field. Unfortunately, I couldn't find any documentation on this field anywhere. Can someone answer the meaning of the field and what values it can…
Felix S.
  • 11
  • 2
1
vote
2 answers

Delete user profiles based on the date of the Appdata\Local folder

Thanks to Microsoft breaking the "Delete user profiles older than a specified number of days on system restart" GPO and not fixing it after all of these years, I need a script that deletes old user profiles. The thing is that instead of it looking…
John smith
  • 15
  • 5
1
vote
2 answers

Gathering a list of both Standard Attr. and Extended attr. for Azure

I am new to PowerShell and am looking to do something and am not able to figure it out, so naturally I turn to the experts over here. I don't know if it makes a difference, but I will be using Cloud Shell to run this operation. I am needing to…
1
vote
0 answers

Limiting EFS access on AWS Lambda for a user

Background I have an AWS Lambda (of Image type) configured through a Dockerfile. The Lambda function should execute an arbitrary python code (the code is sent from a user, and therefore can be malicious and should be restricted). There is important…
Martin
  • 107
  • 1
  • 6
1
vote
0 answers

Simple user management library for Spring Boot

I find myself implementing user management over and over again in almost the same way in each Spring Boot Project: user/login user/register user/reset user/activation (email verification) Is there a user library/plugin for user management in…
1
vote
0 answers

Azure devops pipelines - shared complex data between runs and different pipelines

I'm looking to execute some integration tests using CloudTestAgentTask@4, however these tests require a user. I do however want to avoid using the same user for every run because these runs can be done in parallel (multiple runs of the same…