Rights granted to a user for a particular entity instance.
Questions tagged [access-rights]
266 questions
0
votes
1 answer
After creating a new user in a SQL Server database, the user is able to create and drop tables. Why?
I have a huge problem with rights of new users of my SQL Server database. The new user cannot see any tables but is still able to drop them or create new tables.
Code to create the user:
--Code Start
--This is how I instantiate the new user:
CREATE…

Cedric Jüssen
- 3
- 3
0
votes
2 answers
TYPO3 website migration issue - the TYPO3 backend works but the frontend doesn't work
I am trying to migrate a TYPO3 website from one web host to another. The site is using TYPO3 version 6.2.10.
I am following the steps provided here - https://blog.scwebs.in/how-to-transfer-typo3-site-to-a-new-host/
I can log into the backend of the…

Bashabi
- 696
- 1
- 12
- 40
0
votes
2 answers
How to elevate account on start / install with standard user?
Is it possible to enable /disable touchscreen trough hid (Human Interface Devices in "Control Panel\All Control Panel Items\Device Manager") with standard user right (without elevated-privileges / admin access-rights) ?
I'm programing an application…

Deathunt
- 3
- 1
- 4
0
votes
1 answer
DRY principle in check user rights, how to avoid repeat of code on every page?
I must develop website which have pages with different access levels. Already have users table in db and for first page which requre rigths check has made this code, work nice
$row = mysqli_fetch_assoc($res);
$bitmask = $row['Rights'];
…

NoviceCode
- 15
- 3
0
votes
1 answer
Sharing SSRS reports with my organization
We are currently trying to make use of SSRS within my organization and I want to know how other organizations share these reports with the broader organization without having to give every individual rights to the SQL databases on the SQL server.
We…

IamJOR
- 1
0
votes
1 answer
How ansible create dir without "T" right
When I create a dir with ansible, her rights is:
dr------wT"
Code:
- name: "Create Dir in opt"
become: yes
file:
path: "/opt/test"
state: directory
mode: 770
owner: test
group: test
How create dir with simple…

CH06
- 139
- 2
- 14
0
votes
1 answer
Sharepoint list and access rights
Hi I'm completely new to Sharepoint. I have a very simple application, basically a list of records. Now I need to show the records based on the user is visiting the page, I need a very simple access rights logic
Example now is
User
Data…

JDIBO
- 67
- 1
- 8
0
votes
1 answer
Named pipe between Rust and Java Ghidra Process Access Rights
I'm trying to create a named Pipe between a Rust program that executes a Ghidra process and the Java Program that is running as part of the Ghidra process. I've currently trouble to get the correct access rights (permission…

Melvin
- 407
- 5
- 16
0
votes
1 answer
How do I handle files on Android device that are created by a PC? API level 29
I would like to do the following:
Read and edit a file that is created on the device via USB cable connected to a PC.
Write files that are visible when the user opens the device's internal storage in the windows file explorer.
I target Android 10…

KalAnd
- 81
- 1
- 7
0
votes
2 answers
ReadProcessMemory crashes target application
My goal is to read large chunks of executable memory from a target app.
ReadProcessMemory() sometimes fails, but that is okay, I still can examine the rest of the read bytes that I'm interested in.
I don't modify anything in the target application…

Bence Polgár
- 41
- 5
0
votes
1 answer
WinAPI: Open Named Mutex in Shell Extension for Preview and Current User Application
I have a library that uses a named mutex to protect access to shared configuration data in the registry.
This library is now used both in a "normal" desktop application, and a Shell Preview extension handler. I observe the following behavior:
If…

peterchen
- 40,917
- 20
- 104
- 186
0
votes
1 answer
How to set group access rights to portal users
So, I'm in this situation on Odoo v13:
I have a bunch of portal user, and on some condition I want to add them to an internal group (this group is result of my code, not others). But on adding process, Odoo return an error of: User can have only one…

Nguyễn Minh Nhật
- 43
- 5
0
votes
1 answer
Is there a way to add/delete editors' access to protected cells dynamically by checkbox values on a Google sheet?
I am new to Google Apps Scripts and am puzzled with the problem of manipulating access of different editors. I have over 10 sheets and 20 editors, and I need to allocate their access rights according to their roles. I am thinking of using checkboxes…

Harris Morrison
- 5
- 1
0
votes
0 answers
Render a dynamic file content ( Image, PDF, etc) in PrimeFaces accessing the HttpSession. Usage and performance considerations
I use PrimeFaces and need to deliver a dynamic file content (image or PDF), which is read from the file system and is not cashed - neither on the server nor on the file system.
I also need to access the HttpSession, as it contains information on…

Alex Mi
- 1,409
- 2
- 21
- 35
0
votes
1 answer
Can I set a user which can read one database and read/write another database in clickhouse
Clickhouse offical document implies one user can only have one profile, and database is configured in user section, readonly is configured in profile section, so, readonly will effect on all user's database.
So, how can I set a user x which only can…

mkdym
- 101
- 2
- 6