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.

197 questions
0
votes
2 answers

Can I have oracle database service name without SID?

In general, Oracle Database SID included in Service name. For Ex: SID: orcl & Service Name: orcl.mycomp.com So, It is possible to define the service name without including SID Ex: mydb.mycomp.com for database SID is orcl.
Suresh Babu K
  • 18
  • 1
  • 3
0
votes
1 answer

How to copy SID for storage with C++

Say, if I get a user's SID with the following API: TOKEN_USER* pTU = (TOKEN_USER*)pbytes; DWORD dwSize; GetTokenInformation(hToken, TokenUser, pTU, dwSize, &dwSize); pTU->User.Sid; //Contains the SID I need I need to store this SID for later…
ahmd0
  • 14,832
  • 29
  • 117
  • 218
0
votes
1 answer

orphaned users after restore to new machine not on domain; understanding KB918992

Seeking clarification/confirmation: if I understand correctly, the following considerations about "orphaned users" apply only to those users that are associated with a Windows network security principal; a user associated with a "pure" SQL Server…
Tim
  • 8,256
  • 29
  • 96
  • 168
0
votes
1 answer

How do i get the SID-History value using c# from active directory

I have a problem i've been struggling with. I am trying to get the sidhistory property from an AD searchresult. Is there anyone that can shed some light, or point me in the right direction on how to get the sidhistory property value? This is an…
Roachmans
  • 41
  • 1
  • 7
0
votes
1 answer

Writing From HKEY_USERS

I am attempting to create an application that will allow me to input a username and switch that user's default printer by modifying the registry under HKEY_USERS\UserSID. I cannot seem write values to that section of the registry though. Perhaps…
0
votes
1 answer

Get Caption of SID from RSOP_Session SecurityGroups

From the WMI namespace root\rsop\user\ I can fetch an array of SecurityGroups using the WQL Select SecurityGroups from RSOP_Session. I end up with a list of SIDs similar to the…
pepoluan
  • 4,819
  • 3
  • 32
  • 60
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
  • 97
  • 1
  • 2
  • 17
0
votes
2 answers

Oracle SID INS-35075 - Keep the same SID

How I can maintain the same SID? http://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
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

Update SID in SQL Server

My user was deleted from the Active Directory and recreated. When running the select suser_sid, I notice that it shows the old SID. Is there a way to update it to my new SID? I am DBA Admin on SQL Server
Rick
  • 2,146
  • 18
  • 62
  • 92
-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
  • 57
  • 2
  • 11
-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;…
-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
1 2 3
13
14