Questions tagged [role-based-access-control]

155 questions
0
votes
1 answer

Hide content from app for unauthorized user - Flutter Firebase

So i want to show a special button. The button should only work (or be seen) when the user is logged in with the right permissions. I saw that i can somehow do this with flutter firestore. How can i implement this to my code? If you need more code…
0
votes
1 answer

How can I integrate AWS-Congnito-Userpool-Group Logic into my React App?

I am working on a React Project and in there I want to use AWS Cognito for Role Based Authentication. My Project will be having multiple roles like Super User, User, Admin, Super Admin, etc. and to achieve this I have created multiple userpools. As…
0
votes
1 answer

How to convert CSV or XML to XACML based on Role Based Access Controll(RBAC)?

I have a problem with my thesis, my problem is as below, I hope you can help me. I have an xml, as shown below the meaning of the xml is: "role:siasn-instance:profilasn:viewprofile" (for your information "role:siasn-instance:profilasn:viewprofil"…
0
votes
0 answers

What is best practice to translate Role Base ASP.NET Core

I create role base access control and I want to translate this role for user like this "CanCreateUser" translate to اضافة مستخدم "CanUpdateUser" to تعديل مستخدم and so on How can I do that?
0
votes
0 answers

Spring Boot JWT Claims Content Loading

Summary: I am unable to get JWT to work with role based access. JWT by itself runs just fine. I have looked at several existing stack overflow responses but have yet to find the information I need. I am using postman to authenticate which returns…
0
votes
3 answers

Role based authorization in spring boot

I am new to Spring boot. I need to implement role based authorization in spring boot. I am having different roles and multiple users will be mapped to each role. I will be setting different access (read, add, delete, edit) Whenever an api gets…
Anjana
  • 11
  • 1
  • 1
  • 2
0
votes
1 answer

Role based authentication in React Native app using Firebase

Currently using Firebase in my react native app. I have to manage two roles for admin and user. I am not able to manage roles in firebase authentication here is the code in which i am simply registering a user. Any one please help regarding managing…
0
votes
2 answers

Ionic / Angular / Capacitor / Firebase Facebook Auth & role based authentification

I have a facebook authentification working under Android created with Ionic Angular Capacitor Firebase that is fully working. What I tried to do : Having a role based authentification. What I went with : registering my User's facebook ID into a…
0
votes
1 answer

Azure Synapse - Unable to create External table Error 401 Unauthorized

I have a service principal using which I am trying to create an external table for Azure Data lake gen1. The external table creation fails with the error: Error occurred while accessing HDFS: Java exception raised on call to HdfsBridge_IsDirExist.…
0
votes
0 answers

Role based Authentication: Bearer Token to Cookie using Microsoft .NetCore 3.1

I'm trying to transform.NetCore 3.1 Code from Bearer Token implementation to Cookie-based implementation Also trying to make Role-based authorization work with existing code. Can you please help me to change this code? The below code shows currently…
0
votes
1 answer

Allow everyone in RoleBinding for a namespace

I am trying to create a public namespace public-ns which should be accessible for all the users and groups. I have defined RoleBinding as following which allows 2 group and 2 users to access the namespace. apiVersion:…
0
votes
1 answer

Is there any REST API available to list owners of an azure resource group?

The REST API which is available to list role assignments of a resource group by MS results with few properties in which neither DisplayName nor RoleDefinitionName specified. But all the expected details could be fetched using PowerShell as stated in…
0
votes
0 answers

How to send parameters to authorization scheme based on different regions in oracle apex

My authorization scheme has plsql function call like access_control.region_no_display(:role, :region_static_id) has a parameter called region_static_id which is region static id. Now from every region I call this authorization scheme and want to set…
0
votes
1 answer

Group role based authorization

I've been trying to implement a group based authorization. I have gone ahead and implemented the user based authorization using the content…
0
votes
2 answers

How to make IIS authorize requests based on Windows user name or group membership?

I have a legacy web app hosted using PHP by IIS. Access to some of the directories of that app is restricted using the following configuration in web.config of the root directory. That makes the Windows username available as REMOTE_USER, so that the…