Questions tagged [sid]

In the context of the Microsoft Windows NT line of operating systems, a SID (Security IDentifier) is a unique, immutable identifier of a user, user group, or other security principal.

Windows grants or denies access and privileges to resources based on access control lists (ACLs), which use SIDs to uniquely identify users and their group memberships.

When a user logs into a computer, an access token is generated that contains user and group SIDs and user privilege level. When a user requests access to a resource, the access token is checked against the ACL to permit or deny particular action on a particular object.

SIDs are useful for troubleshooting issues with security audits, Windows server and domain migrations.

221 questions
0
votes
1 answer

How to find user SID in objective-c

I am using objective-c for the first time. My requirement is to authenticate the logged in user and find their SID. In windows development we have a very few APIS, with the help of which we can find out the SID of the user. My assumption is: there…
Tausif
  • 117
  • 1
  • 3
  • 17
0
votes
2 answers

Oracle SID INS-35075 - Keep the same SID

How I can maintain the same SID? https://i.stack.imgur.com/hTahz.png Edit later: I buy a laptop and I install the 11g. I tested and it works fine. But the user in Windows 7 was Maria, so I deleted and copy all stuff to my user John, and here is the…
JohnSP
  • 1
  • 1
  • 1
  • 2
0
votes
1 answer

ExtJS 4.0 cannot read connect.sid from cookie

I try do develop a web application with ExtJs 4.0. On startup the application sends a request to a server. This server sends a response. The responses' header contains Set-Cookie:"connect.sid=foobar" When I look into the preferences of my browser, I…
-1
votes
1 answer

How to get process SID from its handle?

Consider I have the following handle for process: HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, entry.th32ProcessID); How can I get process's SID? It's necessary as I need to give permission for this process to some file. I thought that…
szefitoo
  • 99
  • 6
-1
votes
3 answers

How To Get The Active User's SID

The scope is running from the user's local computer. You can use this to get the active user's SID. Then you could use this with the HKU registry hive. @ECHO OFF SETLOCAL ENABLEDELAYEDEXPANSION ECHO GET THE NAME OF THE ACTIVELY LOGGED ON USER FOR /F…
-1
votes
1 answer

Extracting text from a txt

My problem is to extract text from lines in /etc/passwd matching a specific pattern Only text before the ":*" needs to be selected each line I want the output seperated by commas. Here's an example: dog:*dsfgfdh cat:*bsdfsdf To: dog, cat I have…
-1
votes
1 answer

Cannot remove SID from User Mapping of Login object

During some testing I applied SID value 0x01050000000000051500000085E77E2F11C35F7307E53B2B531D0200 of a system account received from SUSER_SIDfunction to User Mapping of a certain Login object in SSMS. Now based on that I cannot get rid of it as I…
Tomas Gryzbon
  • 97
  • 3
  • 13
-1
votes
1 answer

Can't install airvpn dependencies in Debian Sid

I downloaded Airvpn to my Debian sid OS. I've installed several dependencies already listed, but I keep getting the following print-out: dpkg: dependency problems prevent configuration of airvpn: airvpn depends on libmono-system-runtime2.0-cil;…
Cybertether
  • 21
  • 1
  • 4
-1
votes
1 answer

How to sync the Host name and Service Name on the tnsnames.ora file using Java and JComboBox and TextField boxes

I am having difficulty trying to get the tnsname.ora file to do the following: I managed to get the JComboBox populated with the data from the service_name My next question is the following: a. How does one populate the CORRECT/appropriate host…
NinjaLoop
  • 33
  • 8
-2
votes
1 answer

The link between php connection identifier and Oracle v$session

So i have a connection to Oracle database and it's identifier. What is the link between this connection and v$session view? SID seems to be different than connection identifier. Details
tibi
  • 1
  • 4
-2
votes
1 answer

What modification to my code is necessary to get SetSecurityDescriptorGroup to not fail?

Here's a link to the docs for the function: https://msdn.microsoft.com/en-us/library/windows/desktop/aa446654(v=vs.85).aspx I've written code that /should/ work, but instead when called, errors out with ERROR_INVALID_SECURITY_DESCR. My code is…
Mr. Man
  • 33
  • 8
1 2 3
14
15