SlideShare une entreprise Scribd logo
1  sur  84
Télécharger pour lire hors ligne
Automating Enterprise Wireless
Deployments
Macsysadmin 2013
Zack Smith
@acidprime
Thursday, September 19, 13
Thanks to:
Andrew Seago
@andrewseago
Arek Sokol
@macbrained
Matt Johnson
@macitmatt
Jason Bush
@jhbush1973
(Some other people at Apple)
Thursday, September 19, 13
Why wireless security?
Thursday, September 19, 13
Why wireless security?
Thursday, September 19, 13
Wireless standards
•WEP (Why bother)
•WPA/WPA2 (Personal)
•WPA/WPA2 (Enterprise)
Thursday, September 19, 13
Manual Entry Sucks
Thursday, September 19, 13
networksetup differences
# Leopard Code
if osVersion['minor'] == LEOP:
leopardRemoveWireless(network)
# Snow Leopard Code
if osVersion['minor'] == SNOW:
snowLeopardRemoveWireless(network)
# Lion code
if osVersion['minor'] == LION:
lionRemoveWireless(network)
# Mountain Lion Code
if osVersion['minor'] == MLION:
lionRemoveWireless(network)
Thursday, September 19, 13
Remove or Add Networks
wifiutil --plist="settings.plist"
Thursday, September 19, 13
Remove or Add Networks
wifiutil --plist="settings.plist"
Thursday, September 19, 13
Remove or Add Networks
wifiutil --plist="settings.plist"
Thursday, September 19, 13
Passwords are a problem not a solution
Thursday, September 19, 13
Passwords are a problem not a solution
Thursday, September 19, 13
Three A’s
•Authentication
•Authorization
•Auditing
Thursday, September 19, 13
Usernames and Passwords
Thursday, September 19, 13
WPA2 Example
wifiutil --username=zsmith --password='d0gc4t' --plist=settings.plist
Thursday, September 19, 13
10.5 / 10.6 Plist Manipulation
/Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist
plist['KnownNetworks'][guid]['SSID_STR'] = networkDict['ssid']
plist['KnownNetworks'][guid]['SecurityType'] = networkDict['sect']
Thursday, September 19, 13
10.7 + Profiles
Thursday, September 19, 13
if networkDict['type'] == 'WPA2 Enterprise':
# Generate the profile
exportLionProfile = genLionProfile(networkDict)
arguments = [
profiles,
"-I",
"-v",
"-f",
'-F',
exportLionProfile
]
profilesExecute(arguments)
# Removing the temp profile
os.remove(exportLionProfile)
Thursday, September 19, 13
Demo: Self Service Portal
Thursday, September 19, 13
Demo: PasswordUtility
Thursday, September 19, 13
Issues with User authentication
Thursday, September 19, 13
Issues with User authentication
•Password rotation
Thursday, September 19, 13
Issues with User authentication
•Password rotation
•Help Desk password changes
Thursday, September 19, 13
Issues with User authentication
•Password rotation
•Help Desk password changes
•Mass password changes
Thursday, September 19, 13
Using Machine Password
dsconfigad -passinterval 0
Thursday, September 19, 13
Auto Enrollment
Thursday, September 19, 13
Auto Enrollment
Thursday, September 19, 13
Certificite Authority Web
Enrollment
Thursday, September 19, 13
Windows Integrated
Authentication
• SPNEGO
• Kerberos
• curl --negotiate
Thursday, September 19, 13
Windows Integrated
Authentication
• SPNEGO
• Kerberos
• curl --negotiate
Thursday, September 19, 13
SPNEGO Negotiation
•reverse DNS
•time
•Able to contact KDC
curl win-7po3b92m2fp.wallcity.org
Thursday, September 19, 13
ca.ad.com/certsrv
Thursday, September 19, 13
ca.ad.com/certsrv
Thursday, September 19, 13
Certificate templates
• http://technet.microsoft.com/en-us/library/cc730826(v=ws.10).aspx
Thursday, September 19, 13
Certificate templates
• http://technet.microsoft.com/en-us/library/cc730826(v=ws.10).aspx
Thursday, September 19, 13
RADIUS Testing
• radtest user password rad.ad.com 0 sharedscret
• radtest -t mschap user password rad.ad.com 0 sharedscret
Thursday, September 19, 13
Access Certificate Templates
• Replicated via Active Directory
• Access control lists for Certificate
Templates ( different then RADIUS)
Thursday, September 19, 13
Machine vs User template
curl -d
"CertAttrib=CertificateTemplate:
User%20Certificate"
...
Thursday, September 19, 13
Machine vs User template
curl -d
"CertAttrib=CertificateTemplate:
User%20Certificate"
...
Thursday, September 19, 13
Submit a CSR
curl -d "CertRequest=
${ENCODED_CSR}"
...
Thursday, September 19, 13
Submit a CSR
curl -d "CertRequest=
${ENCODED_CSR}"
...
Thursday, September 19, 13
Machine TGT
/usr/bin/kinit -k M-084737$
Thursday, September 19, 13
LDAP
TGTHTTP
Thursday, September 19, 13
LDAP
TGT HTTP
Thursday, September 19, 13
LDAP
TGT HTTP
Thursday, September 19, 13
LDAP
TGT
curl
HTTP
Thursday, September 19, 13
LDAP
TGT
curl
HTTP
Thursday, September 19, 13
LDAP
TGT
curl
HTTP
Thursday, September 19, 13
LDAP
TGT
curl
HTTP
Thursday, September 19, 13
LDAP
TGT
curl
HTTP
Thursday, September 19, 13
LDAP
TGT
curl
HTTP
Thursday, September 19, 13
LDAP
TGT
curl
HTTP
Thursday, September 19, 13
Request ID
• "${CA_URL}/certnew.cer?ReqID=${REQ_ID}&Enc=b64"
• curl --negotiate -u:
• reverse DNS required for Kerberos Service Ticket
• replication of Domain Contollers
Thursday, September 19, 13
LDAP
curl HTTP
Thursday, September 19, 13
LDAP
curl HTTP
Thursday, September 19, 13
LDAP
curl HTTP
Thursday, September 19, 13
LDAP
curl HTTP
Thursday, September 19, 13
LDAP
curl HTTP
Thursday, September 19, 13
userCertificate attribute
dscl localhost read /Search/Computers/M-938747$
userCertificate
Thursday, September 19, 13
Convert from DER to PEM
•openssl
•dscl
•xxd or just binascii in python
Thursday, September 19, 13
LDAP
dscl
Thursday, September 19, 13
LDAP
dscl
Thursday, September 19, 13
LDAPdscl
Thursday, September 19, 13
LDAP
dscl
Thursday, September 19, 13
security
Thursday, September 19, 13
LDAP
Thursday, September 19, 13
LDAP
Thursday, September 19, 13
LDAP
Thursday, September 19, 13
LDAP
Thursday, September 19, 13
LDAP
Thursday, September 19, 13
LDAP
Thursday, September 19, 13
LDAP
Thursday, September 19, 13
ADCertificatePayloadPlugin
• Introduces on 10.7
• Supports Machine TGT style authentication
• Limited scope of OS Support deprecated in favor of DCE/RPC
Thursday, September 19, 13
DCE/RPC
Distributed Computing Environment / Remote Procedure Call
Thursday, September 19, 13
To Do
•wifiutil --autoenroll curl
•wifiutil --autoenroll profile
Thursday, September 19, 13
Common Issues
• Machine joins with same Mac Address (join existing account)
• Certificate Expiration (set by template)
• eapolclient needs keychain ACL set in older operating systems
• security -k not honored in 10.7 or 10.8 ( Keys exportable )
Thursday, September 19, 13
Debugging
/System/Library/C/S/airport debug +AllUserland
LogLevel in com.apple.eap.profiles.plist
/var/log/eapolclient
http://pastie.org/pastes/265251
Thursday, September 19, 13
Open Source Solutions
• openssl command line ( or I guess the Certificate Assistant)
• IPA - (389 Directory Server, MIT Kerberos, NTP, DNS,
Dogtag certificate system, SSSD and others.)
• http://www.freeipa.org
Thursday, September 19, 13
Puppet as a Certificate Authority
• puppet agent -t (submits the certificate signing request)
•puppet cert --sign agent.puppetlabs.com
•puppet cert --generate ipad.puppetlabs.com
Thursday, September 19, 13
StrongSWAN
Thursday, September 19, 13
Network Device Enrollment
Thursday, September 19, 13
Thursday, September 19, 13
Thursday, September 19, 13
WirelessConfig
http://tinyurl.com/bananas13
Thursday, September 19, 13

Contenu connexe

Similaire à Automating Enterprise Wireless Deployments

Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at OoyalaCassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at OoyalaDataStax Academy
 
Continuous Delivery at Netflix
Continuous Delivery at NetflixContinuous Delivery at Netflix
Continuous Delivery at NetflixRob Spieldenner
 
Web Performance Optimization @Develer
Web Performance Optimization @DevelerWeb Performance Optimization @Develer
Web Performance Optimization @DevelerMassimo Iacolare
 
Building a platform with Django, Docker and Salt | Djangocon lightning talk
Building a platform with Django, Docker and Salt | Djangocon lightning talkBuilding a platform with Django, Docker and Salt | Djangocon lightning talk
Building a platform with Django, Docker and Salt | Djangocon lightning talkdotCloud
 
Building a Platform with Django, Docker and Salt
Building a Platform with Django, Docker and SaltBuilding a Platform with Django, Docker and Salt
Building a Platform with Django, Docker and SaltDocker, Inc.
 
Wi-Fi Denver OWASP Presentation Feb. 15, 2017
Wi-Fi Denver OWASP Presentation Feb. 15, 2017Wi-Fi Denver OWASP Presentation Feb. 15, 2017
Wi-Fi Denver OWASP Presentation Feb. 15, 2017keyalea
 
How automated cloud infrastructure setups can help with Continuous Delivery
How automated cloud infrastructure setups can help with Continuous DeliveryHow automated cloud infrastructure setups can help with Continuous Delivery
How automated cloud infrastructure setups can help with Continuous DeliveryEdmund Siegfried Haselwanter
 
CIW Lab with CoheisveFT: Get started in public cloud - Part 2 Hands On
CIW Lab with CoheisveFT: Get started in public cloud - Part 2 Hands OnCIW Lab with CoheisveFT: Get started in public cloud - Part 2 Hands On
CIW Lab with CoheisveFT: Get started in public cloud - Part 2 Hands OnCohesive Networks
 
Chef - Configuration Management for the Cloud
Chef - Configuration Management for the CloudChef - Configuration Management for the Cloud
Chef - Configuration Management for the CloudJames Casey
 
RIA security based on OWASP Top 10
RIA security based on OWASP Top 10RIA security based on OWASP Top 10
RIA security based on OWASP Top 10lastrand
 
Keeping your rack cool
Keeping your rack cool Keeping your rack cool
Keeping your rack cool Pavel Odintsov
 
Keeping your rack cool with one "/IP route rule"
Keeping your rack cool with one "/IP route rule"Keeping your rack cool with one "/IP route rule"
Keeping your rack cool with one "/IP route rule"Faelix Ltd
 
Installing postgres & postgis
Installing postgres & postgisInstalling postgres & postgis
Installing postgres & postgisJohn Ashmead
 
Pxosys Webinar Amplify your Security
Pxosys Webinar Amplify your SecurityPxosys Webinar Amplify your Security
Pxosys Webinar Amplify your Security🏆Ruben Cocheno💭
 
V2 d2013 saúl ibarra - sip2sip
V2 d2013   saúl ibarra - sip2sipV2 d2013   saúl ibarra - sip2sip
V2 d2013 saúl ibarra - sip2sipVOIP2DAY
 

Similaire à Automating Enterprise Wireless Deployments (20)

OpenSIPS Workshop
OpenSIPS WorkshopOpenSIPS Workshop
OpenSIPS Workshop
 
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at OoyalaCassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
 
Continuous Delivery at Netflix
Continuous Delivery at NetflixContinuous Delivery at Netflix
Continuous Delivery at Netflix
 
Web Performance Optimization @Develer
Web Performance Optimization @DevelerWeb Performance Optimization @Develer
Web Performance Optimization @Develer
 
Core Bluetooth on iOS
Core Bluetooth on iOSCore Bluetooth on iOS
Core Bluetooth on iOS
 
Building a platform with Django, Docker and Salt | Djangocon lightning talk
Building a platform with Django, Docker and Salt | Djangocon lightning talkBuilding a platform with Django, Docker and Salt | Djangocon lightning talk
Building a platform with Django, Docker and Salt | Djangocon lightning talk
 
Building a Platform with Django, Docker and Salt
Building a Platform with Django, Docker and SaltBuilding a Platform with Django, Docker and Salt
Building a Platform with Django, Docker and Salt
 
Wi-Fi Denver OWASP Presentation Feb. 15, 2017
Wi-Fi Denver OWASP Presentation Feb. 15, 2017Wi-Fi Denver OWASP Presentation Feb. 15, 2017
Wi-Fi Denver OWASP Presentation Feb. 15, 2017
 
How automated cloud infrastructure setups can help with Continuous Delivery
How automated cloud infrastructure setups can help with Continuous DeliveryHow automated cloud infrastructure setups can help with Continuous Delivery
How automated cloud infrastructure setups can help with Continuous Delivery
 
CIW Lab with CoheisveFT: Get started in public cloud - Part 2 Hands On
CIW Lab with CoheisveFT: Get started in public cloud - Part 2 Hands OnCIW Lab with CoheisveFT: Get started in public cloud - Part 2 Hands On
CIW Lab with CoheisveFT: Get started in public cloud - Part 2 Hands On
 
Chef - Configuration Management for the Cloud
Chef - Configuration Management for the CloudChef - Configuration Management for the Cloud
Chef - Configuration Management for the Cloud
 
RIA security based on OWASP Top 10
RIA security based on OWASP Top 10RIA security based on OWASP Top 10
RIA security based on OWASP Top 10
 
Keeping your rack cool
Keeping your rack cool Keeping your rack cool
Keeping your rack cool
 
Keeping your rack cool with one "/IP route rule"
Keeping your rack cool with one "/IP route rule"Keeping your rack cool with one "/IP route rule"
Keeping your rack cool with one "/IP route rule"
 
Installing postgres & postgis
Installing postgres & postgisInstalling postgres & postgis
Installing postgres & postgis
 
Pxosys Webinar Amplify your Security
Pxosys Webinar Amplify your SecurityPxosys Webinar Amplify your Security
Pxosys Webinar Amplify your Security
 
Kamailio on Docker
Kamailio on DockerKamailio on Docker
Kamailio on Docker
 
NATO IST Symposium 2013
NATO IST Symposium 2013NATO IST Symposium 2013
NATO IST Symposium 2013
 
V2 d2013 saúl ibarra - sip2sip
V2 d2013   saúl ibarra - sip2sipV2 d2013   saúl ibarra - sip2sip
V2 d2013 saúl ibarra - sip2sip
 
SIP2SIP: SIP gratis para las masas
SIP2SIP: SIP gratis para las masasSIP2SIP: SIP gratis para las masas
SIP2SIP: SIP gratis para las masas
 

Dernier

Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
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
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
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
 

Dernier (20)

Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
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
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
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
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 

Automating Enterprise Wireless Deployments