Questions tagged [role-based-access-control]
155 questions
2
votes
1 answer
Role based access control for Kibana and Elastic Search
I am new to Elastic and Kibana. Using Version 6.2.4.
I have installed the ELK stack with the X-pack enabled on it.
Now I have Kibana working on port 5601 with authentication and elastic working on 9200 with authentication.
Here is what I want to…

Harshal Yeole
- 4,812
- 1
- 21
- 43
2
votes
0 answers
How to do an SQL query dependent on username and url in Apache with authz_dbd for require dbd_group, and set group as http header
I'm having trouble using mod_authz_dbd in Apache to do access control with :
require dbd_group
I have a Apache reverse proxy, that must do authentication and authorization to let users accessing their projects. Projects need a http header…

Keblo
- 21
- 3
2
votes
0 answers
Approach to implement Role based security with Angular and WebApi
I have been reading a bunch of different posts and questions all over. I am new to Angular and looking for an example on how to secure an angular application with roles.
The little I have seen on the internet involves using a service to…

JDBennett
- 1,323
- 17
- 45
2
votes
1 answer
How to do role based access control with SonarQube?
I am new to SonarQube and trying to setup up a proper access control, with requirements as follows:
We have a few project areas, each area should have someone able to
manage their area, such as creating new projects and manage the
boards, not sure…

Jirong Hu
- 2,315
- 8
- 40
- 63
2
votes
1 answer
Role based access control of Mean stack web app
I am working on a mean stack web application which contains differential access based upon the logged user's role. there are few different roles such as admin, govt, volunteer etc.
1. how to manage the front end based upon the role?
currently i am…

ashishkumar148
- 975
- 1
- 10
- 26
2
votes
3 answers
What is the proper way to handle access control using Angularjs and mvc5 (.net)?
I am currently learning Angularjs for an application that will need role-based access control logic. There are scenarios where the logic will be necessary to restrict access to certain pages based on your user role. There are other scenarios where…

user1790300
- 2,143
- 10
- 54
- 123
1
vote
2 answers
Does Azure AD B2C support "roles" claim in JWT tokens for authorization?
I'm working with Azure AD B2C and I have a requirement regarding the inclusion of "roles" claim in JWT tokens for authorization purposes. My goal is to assign different access levels and permissions based on user roles within my…

Bryon Gloden
- 316
- 1
- 12
1
vote
2 answers
JwtAuthenticationConverter not invoked post authentication [Spring WebFlux + Spring Security + Keycloak]
My JwtAuthenticationConverter is not invoked and I get a 403 Error post login.
2023-04-27 20:59:15.780 DEBUG 11448 --- [ parallel-1] athPatternParserServerWebExchangeMatcher : Checking match of request : '/users'; against '/users/**'
2023-04-27…

Saketh
- 35
- 7
1
vote
1 answer
How to use security policy packages on Databricks
I am trying to create data security policies on user tables on Databricks. However i have implemented this task on SQL server with below SQL Queries
CREATE FUNCTION [test].[mailfunction](@useremail AS nvarchar(100))
RETURNS TABLE WITH SCHEMABINDING…

poornachandran r
- 11
- 1
1
vote
1 answer
How to configure a Policy engine and calculate attributes based on risk score Algorithm?
How to configure a policy engine that is suitable to calculate risks based on attributes that have been collected from the user based on given access control. for instance Attribute based access control ?
is there a risk algorithm that can be…

Ace
- 11
- 1
1
vote
0 answers
Lambda not assuming role in AWS serverless framework from Cognito User Pool. What am I doing wrong?
I'm trying to create a admin API using api gateway, lambda and dynamoDB. I want only the logged in users in certain group be able to access lambda.
I see that the lambda would not assume role of the cognito user and access the dynamoDB. API only…

Amarbir
- 23
- 6
1
vote
2 answers
React.js Simple Role Based Routes
It's the first time I am working with role based routes. We have a fully working app for players. Now, we need to add Trainer page for that app. We store the users in Firebase all we need to add new key for users something like trainer: true|false…

Ruslan Bairamovi
- 378
- 3
- 22
1
vote
0 answers
Role Based Access Control on our react based Front End Library?
Currently, Role Based Access Control is on our APIs using pycasbin, and on one of our UI’s using CASL and CASL React. It works very smoothly for an individual UI repo.
Our overall goal is to have Role Based Access Control (RBAC) on all of our UI…

JamesSwoosh
- 11
- 1
1
vote
0 answers
How to Implement Role Based Data Restriction In Django?
I'm a newbie to Django. I am working on an Application where data are to be shown to users based on their roles. Example User A Should only see the data created by A. Similarly User B should See only his data. Finally, there is a superuser who can…

Manjunath
- 13
- 3
1
vote
2 answers
How to access component via ActivatedRouteSnapshot?
Use case
Guard components using CanActivate of Angular Guard.
Sample Route
{
path: "my-path",
component: MyComponent,
canActivate: [AuthGuard]
}
MyComponent as sample component
export class MyComponent {
// Dependency required by AuthGuard to…

rhetonik
- 1,818
- 1
- 15
- 21