SlideShare a Scribd company logo
Landmines
in the API
Landscape
Matt Tesauro
matt.tesauro@owasp.org
TABLE OF CONTENTS
01 Intro
Quick background
and such
03 Finding Landmines
How to attack and what
those attacks look like
02
Why Attack APIs?
What makes APIs
interesting to attackers
04
Conclusion
Key takeaways and
your questions
Who is this guy?
● Reformed programmer & AppSec Engineer
● Noname Security -
Distinguished Engineer, Noname Labs
● 14 years in the OWASP community
○ OWASP DefectDojo (core maintainer)
○ OWASP AppSec Pipeline (co-leader)
○ OWASP WTE (leader)
● 22+ years using FLOSS and Linux
● Currently a Go language fanboy
● Ee Dan in Tang Soo Do Mi Guk Kwan
(2nd degree black belt)
● Founder 10Security
02
Why attack APIs?
APIs are Simple
Wikipedia:
An application programming interface (API) is a connection between
computers or between computer programs.
APIs aren’t Simple
Even if you have a solid AppSec program
App Sec Tooling API Sec Tooling
SAST
SCA
DAST
API Gateway
API Inventory
SDLC
API Management
API Specs
WAF
Threat Modeling
Rate Limiting
Anti-Bot Protection
Developer Training
App
Inventory
Service to Service Auth-n
Anomaly Detection
JWTs
OpenID Connect
OAuth2
Landmines in the API Landscape
It’s All About the Data
“Data is the new oil”
Clive Humby
British Mathematician
“APIs are data pipelines”
Matt Tesauro
Your presenter
As browsers and web apps get hardened…
B
r
o
w
s
e
r
I
m
p
r
o
v
e
m
e
n
t
s
M
F
A
,
C
A
P
T
C
H
A
APIs
Types of API attacks Testing
Blackbox
Simulate an attacker
with zero knowledge
Whitebox
Test with full knowledge,
some controls turned off
Greybox
Like blackbox but with
limited info on the target
Crystalbox
Full knowledge including
source code, only the
APIs controls in place
Pro Bono
Pen Testing
(attacks)
Defining the 3 Pillars of API Security
1. API Security Posture
a. Full inventory of all APIs
b. Who is calling the API? What data is sent/received? Where did the call originate?
2. API Runtime Security
a. Watching API traffic and understanding what is normal
b. Anomaly detection and alerting
3. API Security Testing
a. Assess the security state of APIs
b. DAST, not SAST ideally tested early and often
c. Feed results into the issue trackers used by dev teams
A better (security) definition of an API
An API consists of 3 parts:
(1) Hostname
e.g. example.com, uat.bigcorp.com
(2) Path
e.g. /api/v2/users/all , /v1/cart/addItem
(3) Method
e.g. POST, PUT, GET, PATCH, DELETE, …
GET to example.com/v2/users/all!= DELETE to example.com/v2/users/all
POST to uat.example.com/v2/user/admin!= POST to example.com/v2/user/admin
03
Finding Landmines
Recon
Finding APIs to attack
Passive Recon
Attacker
○ No interaction with the target
○ OSINT / Public information sources
○ Google Dorks
○ intitle: inurl: ext: site: filetype:
○ DNS / OWASP Amass
○ Shodan
○ Search engine of connected
devices
○ Search for APIs
○ www.programmableweb.com
○ apis.guru
○ Github issues/PRs (if FLOS)
○ Stack Overflow posts
Defender
○ Not much to do here - it’s public info
○ You may want to advertise your API
○ “Getting started” pages
○ curl examples, Postman collections
○ API docs behind a customer login
○ Support docs can help attackers too
○ Username format
○ Password complexity
○ Auth method (bearer token, …)
○ Posture & Runtime & Testing aren’t in
play since no traffic hits your infra
Gather all the public information you can on potential targets
Active Recon
Attacker
○ Interaction with the target is desired
○ Initially traffic looks harmless or clumsy
○ Start with basic nmap scans of target(s)
○ Listening ports esp http/https
○ Other clues to APIs
○ robots.txt - disallowed URLs
○ DevTools - network tab / XHR /
Memory / Performance
○ Local proxy (Burp/Zap) for API backed
websites / mobile apps
○ Bruteforce URLs (dirbuster, dirb,
Gobuster)
○ Kiterunner - API focused bruteforce
Defender
○ Pretty hard to filter from Internet
background radiation (noise)
○ For SPAs, DevTools are just a fact of life
○ Review items pointing to your API like
robots.txt
○ Nmap scans are detectable but VERY
common
○ Bruteforce activity stands out if real time
monitoring is sufficient
○ Kiterunner should trip API monitoring if
in place
○ Posture - focus efforts
Runtime - discover active recon
Testing - proactive, not much for Recon
Gather all the public information you can from a targets (play nice)
Discovery
Understanding your
API target
Discovery
Attacker
○ Learn how to make legitimate requests
○ Especially how to authenticate
○ Look for
○ API documentation
○ “Getting Started” guides
○ What the API does / why created
○ Spec files (Swagger, OpenAPI, RAML,
Postman collections, WADL, WSDL, …)
○ Clients (upstream proxy them)
○ Manually creating a list / Postman
collection based on:
○ Bruteforced URLs
○ SPA proxied traffic
○ Kiterunner
Defender
○ Traffic mostly looks like someone learning
your API
○ For SPAs & Mobile
○ Discovery may stand out
○ Your clients already know how to
make API calls
○ For undocumented APIs, there should be
many failed requests
○ Posture - focus efforts, define
internal-only APIs
Runtime - discover Discovery in
certain circumstances
Testing - proactive, not much for Discovery
You have target(s), now how to use them legitimately
Discovery
seems easy
but can be a
time sink
Active Attacks
Getting malicious
with your API target
Attacks are grouped into the API Top 10
API-1 Broken Object Level
Authorization (BOLA)
API-2 Broken User Authentication
API-3 Excessive Data Exposure
API-4 Lack of Resource &
Rate Limiting
API-5 Broken Function Level
Authorization
API-6 Mass Assignment
API-7 Security Misconfiguration
API-8 Injection
API-9 Improper Assets Management
API-10 Insufficient Logging &
Monitoring
Broken Object Level Authorization (BOLA)
Broken Object Level Authorization (BOLA)
Broken Object Level Authorization
Attacker
○ Look at how API resources are
structured
○ Change IDs within API calls
○ Can be names (non-numeric)
○ Make calls to other IDs/resources with
your Auth-N method / token
○ Create something as user 1
○ Try to access it as user 2
○ Response differences
○ HTTP Response code (404 vs 405)
○ Time to respond
○ Length of response (rare)
Defender
○ Detection requires fairly deep inspection
of the API calls
○ WAFs will generally fail
○ Shaped like legit request with IDs
swapped
○ Looking for BOLA can cause increased
Auth-Z errors
○ 2 similar requests from the same client
with different IDs can be found by ML
○ Posture - focus on most risky APIs
Runtime - detect BOLA attacks
Testing - Find BOLA early / pre-prod
One user can access another user’s data or take actions for them
Broken User Authentication
Attacker
○ Bruteforce credentials
○ No anti-automation on password resets
or MFA/CAPTCHA
○ Password Spraying
○ Base-64 “protections”
○ Low entropy tokens
○ JWT weaknesses
○ Captured JWTs
○ None algorithm, no signature
○ Key mismatch, blank password, …
○ Cracking JWT secrets
○ jwt_tool
Defender
○ Bruteforce attacks are noisy
○ Password spraying is very noisy
○ Ensure crypto is used correctly and
carefully
○ JWT Best Practices RFC
○ Consider removing Auth-N from the API
○ Only get tokens through web app
○ Posture - identify Auth-N APIs
Runtime -detect brute force, spraying,
JWT manipulation
Testing - identify poor practices early
Using poor practices in authentication to attack APIs
Excessive Data Exposure
Attacker
○ Look for API responses that provide
‘extra’ information
○ Mobile app APIs tend to trust
client to filter data
○ Look for ‘interesting’ responses
○ Profile pages
○ Linked users
○ Internal meta-data
○ Is the data expected part of a larger data
object or DB row?
○ Can be time consuming to check all
possible responses for excessive data
Defender
○ Single requests can’t be distinguished
from normal traffic
○ SAST can help here to avoid “to_json” or
similar
○ Don’t rely on clients filtering data
○ Separate data objects for app and API
○ Posture - Shows sensitive data, large
responses
Runtime - Detect multi-request data
scraping
Testing - Find verbose responses early
Sometimes developer productivity helps attackers too!
Lack of Resource & Rate Limiting
Attacker
○ Add thousands of items, ask for a list
○ Lack of pagination
○ Denial of API use (client)
○ Fuzzing and bruteforce attacks can
discover these
○ Modify requests, different client,
different IP to bypass limits
○ CPU / Memory intensive requests
○ robots.txt or documentation
○ Other games to play
○ Switch cAsE
○ Null and other terminators
○ Encoding data
○ Too high to make a difference
Defender
○ Some requests will look normal but with
large responses
○ Unusual requests
○ Headers, encoding, terminators, …
○ Observability can show usage spikes
○ Many bypass methods stand out from
normal traffic
○ Posture - Determine APIs needing limits
Runtime - Detect anomalous traffic and
respond
Testing - Fuzzing request data can find
some issues early
Failure to provide limits is a recipe for DOS or worse
Broken Function Level Authorization
Attacker
○ Focus on APIs with multiple roles/groups
○ Potential for expose backplane
○ Most things have an ‘admin’
○ Try undocumented HTTP methods
○ PATCH, PUT, POST, DELETE (!)
○ Create items with one group/role
○ Interact with those items as a
different role
○ Bruteforce / guess potential backplane
operations
○ Experiment with headers, request data
to access admin functions
Defender
○ Affects APIs with 2+ roles, groups,
privilege levels
○ Calls to unsupported methods that fail
○ Same client, different roles within a
short period of time
○ Failures for backplane/admin paths
○ Unusual requests - headers, body
○ Posture - Determine APIs with groups,
roles, privilege levels
Runtime - Detect unusual, failing
requests or changes in role
from a client
Testing - Conduct Auth-Z testing early
Failure to restrict access by group or role leading to compromise
Mass Assignment
Attacker
○ Look for requests that appear to be
partial data
○ Make guesses at unsent items
○ Look at request/response difference
between roles/groups/privilege levels
○ Guess / bruteforce multiple values at
once (hail mary)
○ Error messages or required field
messages can provide clues
○ Fuzzing can also find issues
○ Combine with Broken Function Level
Auth-Z to change data for other users
○ Change email/contact details
Defender
○ Requests stand out from normal
requests with deep inspection
○ Large number of failed/invalid requests
○ Increased request size
○ Increased severity for APIs with different
roles/groups/privileges
○ Posture - Focus on APIs with multi-roles
or sensitive data
Runtime - Requests with extra data,
multiple failed/invalid requests
Testing - Add additional, valid fields to
discover early
Why not accept more data, what could go wrong?
Security Misconfiguration
Attacker
○ Check the basics
○ TLS config
○ Info leaks via headers, etc
○ Default credentials, EICAR
○ Use Recon and Discovery
○ Verbose errors
○ Purposefully make bad requests
○ Misconfigured framework settings
○ Debug mode
○ Intermediate devices
○ Determine if WAF, API Gateway,
etc is in line
○ Call ‘internal’ functions with origin
headers e.g. X-Remote-Addr
Defender
○ Basic network vuln scanners can find the
basics
○ Passive traffic monitoring can show
header issues, API gateway bypass,
many others
○ Client with many erroring or malformed
requests
○ Posture - Show weak configuration e.g.
API gateway bypass
Runtime - Unexpected client traffic,
multiple errors, malformed
or anomalous requests
Testing - Good for the basics, better if
fuzzing is included in tests
A little misconfiguration can go a long way
Injection
Attacker
○ Place injection strings into
○ Tokens / API keys
○ Headers (esp API specific ones)
○ Query data
○ Data in request body
○ Recon/Discovery can help focus what
types of injection to try
○ Error messages can also help
○ Many good online resources for
injections
○ Fuzzing lists
○ OWASP Testing Guide
○ 2nd order injections
Defender
○ Input validation AND output encoding
○ Many failed or malformed requests
○ Large number of errors or validation
failures at API
○ Overly trusting of East/West API calls
○ Posture - Focus on APIs with sensitive
data, East/West APIs
Runtime - Surge in errors, failed, invalid
or malformed requests,
control characters in requests
Testing - Attempt injections early in dev
cycle
Treat data like code and bad things happen
Improper Assets Management
Attacker
○ You find many misconfiguration issues
○ Internal APIs are publicly accessible
○ API documentation is inaccurate
○ “Hidden”/undocumented APIs
○ Dev/New APIs in production
○ Legacy APIs are not decommissioned
○ API v minus 1 or more available
Basically,
your pen test was productive and easy
Defender
○ Need to know all APIs (host, path,
method)
○ Classify all data received and sent by
APIs
○ API Gateway enforced, East/West traffic
○ Public vs internal APIs
○ Posture - Solved with solid posture
management
Runtime - Updates posture as
environment changes
Testing - Not particularly useful here
Know what you have if you want to protect it adequately
Insufficient Logging & Monitoring
Attacker
○ Fuzzing does not cause a reaction /
blocking
○ Assumes control is in scope for
testing
○ Attacks, especially blatant injections go
unnoticed
○ Phone numbers never look like:
<script>alert(XSS)</script>
○ Mostly, external testers / attackers can
only infer the level of logging and
monitoring
Defender
○ No attacks are seen / noticed
○ Diagnosing API issues is difficult
○ Unplanned downtime or resource
consumption
○ Posture - Determine the appropriate
level of logging per API
Runtime - Monitoring is what this
provides, also can retain traffic
for analysis aka quasi-logging
Testing - Validate logging is working
(at best)
Change guesses to decisions with data
Bonus Material
Things that didn’t fit
nicely into the
OWASP API Top 10
Fuzzing
Attacker
○ Send requests altering
○ Values to the extreme
(large/small)
○ Negative numbers
○ Decimals for integers
○ Letters for numbers and vice
versa
○ Control characters
○ Unicode / non-native characters
○ Target fuzzing strings if possible
○ Look for changes in
○ Response code
○ Response size
○ Timing
○ Error messages
Defender
○ LOTS OF REQUESTS FROM A SINGLE
CLIENT OVER A SHORT PERIOD OF
TIME
○ Fuzzing is very noise on the network
○ Spikes in CPU, RAM, request traffic,
errors, validation failures
○ Posture - Not much for Fuzzing
Runtime - Easily detect fuzzing traffic
Testing - Fuzzing as a normal part of
testing to find issues early (pre-prod)
When crafted attacks don’t work, throw the kitchen sink at your target
Structural vs Data Attacks
Structural Attacks
○ Modifying the structure of a request
○ Repeating data structures
○ Adding non-printing characters
e.g. spaces, tabs, null characters
between data elements
○ Removing portions of the data
structure
○ Messing with the structure of the
request only - data provided is legit
○ QA / HTTP testing tools generally
normalize the structure so won’t work
○ Custom craft HTTP requests (Python
requests library) or use a local proxy like
Zap or Burpsuite
Data Attacks
○ Modifying the data in a request
○ Substituting fuzzing / injection data
for legit data values
○ Providing unexpected or overly large
/ small data values
○ Structure of the request is not modified
○ What most fuzzing and injections attacks
look like - changing data without changing
the structure
○ QA / HTTP testing tools can be leveraged to
automate these attacks
2 fundamental ways to be naughty with APIs
Special Notes on GraphQL
Same from GraphQL
○ Recon (Passive / Active)
○ Discovery
○ Bruteforcing API paths
○ Using a local proxy e.g. Burpsuite /
Zap
○ Install GraghQL plugins
○ Documentation / “Getting Started”
Different for GraphQL
○ Introspection to learn the APIs schema
○ Often disabled at the API
○ GraphQL is a query language
○ Clients define the data they want
○ Opposite of defined requests &
responses of REST APIs
○ Gaining popularity as clients aren’t
bound to fixed data structures
○ Client can change without need for
API changes
GraphQL is a special beast but many things are the same
https://github.com/dolevf/Damn-Vulnerable-GraphQL-Application
GraphQL - left as an exercise for the student
Googling
“GraphQL”
04
Conclusion
Key Takeaways for API testers
(1) Knowledge of how to test web apps prepares you for most of API testing
If you need some help, look at the OWASP Testing Guide
(2) Some special knowledge and tools are needed for parts of API testing
More on this later
(3) Gaps in AppSec controls coverage and framework shortfalls lead to security
shortfalls
API testing is likely to be “productive”
Key Takeaways for API testers
https://owasp.org/www-community/api_security_tools
Key Takeaways for API defenders
The existing AppSec program and controls have API Security gaps to fill
Risk Posture Runtime Testing
Broken Object Level Authorization
Broken User Authentication
Excessive Data Exposure
Lack of Resource & Rate Limiting
Broken Function Level Authorization
weak
weak
weak
Key Takeaways for API defenders
The existing AppSec program and controls have API Security gaps to fill
Risk Posture Runtime Testing
Mass Assignment
Security Misconfiguration
Injection
Improper Assets Management
Insufficient Logging & Monitoring
weak
Sorry about the firehose
API Landmines in 60 min
Audience
CREDITS: This presentation template was created by
Slidesgo, including icons by Flaticon, infographics &
images by Freepik
THANKS!
Do you have any questions?
matt.tesauro@owasp.org
www.defectdojo.org
https://owasp.org/www-community/api_security_tools

More Related Content

PDF
Hacking and Defending APIs - Red and Blue make Purple.pdf
PDF
Black and Blue APIs: Attacker's and Defender's View of API Vulnerabilities
PDF
Peeling the Onion: Making Sense of the Layers of API Security
PDF
OSINT for Attack and Defense
PDF
apidays New York 2023 - API First Paradigms That Help Secure Your APIs, Raj U...
PDF
apidays LIVE Australia 2021 - Levelling up database security by thinking in A...
PDF
technical-information-gathering-slides.pdf
PDF
DEF CON 23 - BRENT - white hacking web apps wp
Hacking and Defending APIs - Red and Blue make Purple.pdf
Black and Blue APIs: Attacker's and Defender's View of API Vulnerabilities
Peeling the Onion: Making Sense of the Layers of API Security
OSINT for Attack and Defense
apidays New York 2023 - API First Paradigms That Help Secure Your APIs, Raj U...
apidays LIVE Australia 2021 - Levelling up database security by thinking in A...
technical-information-gathering-slides.pdf
DEF CON 23 - BRENT - white hacking web apps wp

Similar to Landmines in the API Landscape (20)

PPTX
Pentesting Tips: Beyond Automated Testing
PDF
DEF CON 27 - JOSHUA MADDUX - api induced ssrf
PDF
[CB19] API-induced SSRF: How Apple Pay Scattered Vulnerabilities Across the W...
PDF
API Testing and Hacking.pdf
PDF
API Testing and Hacking.pdf
PDF
API Testing and Hacking (1).pdf
PDF
API Upload Test
PDF
API Upload Test
PDF
API Upload Test
PDF
API Upload Test
PDF
API Upload Test
PDF
API Upload Test
PDF
API Upload Test
PDF
API Upload Test
PDF
API Upload Test
PDF
API Upload Test
PDF
API Upload Test
PDF
API Upload Test
PDF
API Upload Test
PDF
API Upload Test
Pentesting Tips: Beyond Automated Testing
DEF CON 27 - JOSHUA MADDUX - api induced ssrf
[CB19] API-induced SSRF: How Apple Pay Scattered Vulnerabilities Across the W...
API Testing and Hacking.pdf
API Testing and Hacking.pdf
API Testing and Hacking (1).pdf
API Upload Test
API Upload Test
API Upload Test
API Upload Test
API Upload Test
API Upload Test
API Upload Test
API Upload Test
API Upload Test
API Upload Test
API Upload Test
API Upload Test
API Upload Test
API Upload Test
Ad

More from Matt Tesauro (20)

PDF
DefectDojo at Global AppSec San Fran 2024
PDF
Tenants for Going at DevSecOps Speed - LASCON 2023
PDF
Practical DevSecOps: Fundamentals of Successful Programs
PDF
The Final Frontier, Automating Dynamic Security Testing
PDF
Intro to DefectDojo at OWASP Switzerland
PDF
Taking the Best of Agile, DevOps and CI/CD into security
PDF
DevSecOps Fundamentals and the Scars to Prove it.
PDF
Continuous Security: Using Automation to Expand Security's Reach
PDF
OWASP DefectDojo - Open Source Security Sanity
PDF
Running FaaS with Scissors
PDF
Making Continuous Security a Reality with OWASP’s AppSec Pipeline - Matt Tesa...
PDF
Building a Secure DevOps Pipeline - for your AppSec Program
PDF
AppSec Pipelines and Event based Security
PPTX
AppSec++ Take the best of Agile, DevOps and CI/CD into your AppSec Program
PDF
Taking AppSec to 11 - BSides Austin 2016
PDF
Taking AppSec to 11: AppSec Pipeline, DevOps and Making Things Better
PPTX
AppSec Pipeline - Velcocity NY 2015
ODP
Building an Open Source AppSec Pipeline - 2015 Texas Linux Fest
ODP
Building an Open Source AppSec Pipeline
ODP
Matt tesauro Lessons from DevOps: Taking DevOps practices into your AppSec Li...
DefectDojo at Global AppSec San Fran 2024
Tenants for Going at DevSecOps Speed - LASCON 2023
Practical DevSecOps: Fundamentals of Successful Programs
The Final Frontier, Automating Dynamic Security Testing
Intro to DefectDojo at OWASP Switzerland
Taking the Best of Agile, DevOps and CI/CD into security
DevSecOps Fundamentals and the Scars to Prove it.
Continuous Security: Using Automation to Expand Security's Reach
OWASP DefectDojo - Open Source Security Sanity
Running FaaS with Scissors
Making Continuous Security a Reality with OWASP’s AppSec Pipeline - Matt Tesa...
Building a Secure DevOps Pipeline - for your AppSec Program
AppSec Pipelines and Event based Security
AppSec++ Take the best of Agile, DevOps and CI/CD into your AppSec Program
Taking AppSec to 11 - BSides Austin 2016
Taking AppSec to 11: AppSec Pipeline, DevOps and Making Things Better
AppSec Pipeline - Velcocity NY 2015
Building an Open Source AppSec Pipeline - 2015 Texas Linux Fest
Building an Open Source AppSec Pipeline
Matt tesauro Lessons from DevOps: Taking DevOps practices into your AppSec Li...
Ad

Recently uploaded (20)

PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Electronic commerce courselecture one. Pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Encapsulation theory and applications.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPT
Teaching material agriculture food technology
PPTX
A Presentation on Artificial Intelligence
PDF
Machine learning based COVID-19 study performance prediction
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
MYSQL Presentation for SQL database connectivity
PDF
KodekX | Application Modernization Development
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Approach and Philosophy of On baking technology
Chapter 3 Spatial Domain Image Processing.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Electronic commerce courselecture one. Pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Digital-Transformation-Roadmap-for-Companies.pptx
Encapsulation theory and applications.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
Reach Out and Touch Someone: Haptics and Empathic Computing
Teaching material agriculture food technology
A Presentation on Artificial Intelligence
Machine learning based COVID-19 study performance prediction
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
MYSQL Presentation for SQL database connectivity
KodekX | Application Modernization Development
Understanding_Digital_Forensics_Presentation.pptx
Approach and Philosophy of On baking technology

Landmines in the API Landscape

  • 1. Landmines in the API Landscape Matt Tesauro matt.tesauro@owasp.org
  • 2. TABLE OF CONTENTS 01 Intro Quick background and such 03 Finding Landmines How to attack and what those attacks look like 02 Why Attack APIs? What makes APIs interesting to attackers 04 Conclusion Key takeaways and your questions
  • 3. Who is this guy? ● Reformed programmer & AppSec Engineer ● Noname Security - Distinguished Engineer, Noname Labs ● 14 years in the OWASP community ○ OWASP DefectDojo (core maintainer) ○ OWASP AppSec Pipeline (co-leader) ○ OWASP WTE (leader) ● 22+ years using FLOSS and Linux ● Currently a Go language fanboy ● Ee Dan in Tang Soo Do Mi Guk Kwan (2nd degree black belt) ● Founder 10Security
  • 5. APIs are Simple Wikipedia: An application programming interface (API) is a connection between computers or between computer programs.
  • 7. Even if you have a solid AppSec program App Sec Tooling API Sec Tooling SAST SCA DAST API Gateway API Inventory SDLC API Management API Specs WAF Threat Modeling Rate Limiting Anti-Bot Protection Developer Training App Inventory Service to Service Auth-n Anomaly Detection JWTs OpenID Connect OAuth2
  • 9. It’s All About the Data “Data is the new oil” Clive Humby British Mathematician “APIs are data pipelines” Matt Tesauro Your presenter
  • 10. As browsers and web apps get hardened… B r o w s e r I m p r o v e m e n t s M F A , C A P T C H A APIs
  • 11. Types of API attacks Testing Blackbox Simulate an attacker with zero knowledge Whitebox Test with full knowledge, some controls turned off Greybox Like blackbox but with limited info on the target Crystalbox Full knowledge including source code, only the APIs controls in place
  • 13. Defining the 3 Pillars of API Security 1. API Security Posture a. Full inventory of all APIs b. Who is calling the API? What data is sent/received? Where did the call originate? 2. API Runtime Security a. Watching API traffic and understanding what is normal b. Anomaly detection and alerting 3. API Security Testing a. Assess the security state of APIs b. DAST, not SAST ideally tested early and often c. Feed results into the issue trackers used by dev teams
  • 14. A better (security) definition of an API An API consists of 3 parts: (1) Hostname e.g. example.com, uat.bigcorp.com (2) Path e.g. /api/v2/users/all , /v1/cart/addItem (3) Method e.g. POST, PUT, GET, PATCH, DELETE, … GET to example.com/v2/users/all!= DELETE to example.com/v2/users/all POST to uat.example.com/v2/user/admin!= POST to example.com/v2/user/admin
  • 17. Passive Recon Attacker ○ No interaction with the target ○ OSINT / Public information sources ○ Google Dorks ○ intitle: inurl: ext: site: filetype: ○ DNS / OWASP Amass ○ Shodan ○ Search engine of connected devices ○ Search for APIs ○ www.programmableweb.com ○ apis.guru ○ Github issues/PRs (if FLOS) ○ Stack Overflow posts Defender ○ Not much to do here - it’s public info ○ You may want to advertise your API ○ “Getting started” pages ○ curl examples, Postman collections ○ API docs behind a customer login ○ Support docs can help attackers too ○ Username format ○ Password complexity ○ Auth method (bearer token, …) ○ Posture & Runtime & Testing aren’t in play since no traffic hits your infra Gather all the public information you can on potential targets
  • 18. Active Recon Attacker ○ Interaction with the target is desired ○ Initially traffic looks harmless or clumsy ○ Start with basic nmap scans of target(s) ○ Listening ports esp http/https ○ Other clues to APIs ○ robots.txt - disallowed URLs ○ DevTools - network tab / XHR / Memory / Performance ○ Local proxy (Burp/Zap) for API backed websites / mobile apps ○ Bruteforce URLs (dirbuster, dirb, Gobuster) ○ Kiterunner - API focused bruteforce Defender ○ Pretty hard to filter from Internet background radiation (noise) ○ For SPAs, DevTools are just a fact of life ○ Review items pointing to your API like robots.txt ○ Nmap scans are detectable but VERY common ○ Bruteforce activity stands out if real time monitoring is sufficient ○ Kiterunner should trip API monitoring if in place ○ Posture - focus efforts Runtime - discover active recon Testing - proactive, not much for Recon Gather all the public information you can from a targets (play nice)
  • 20. Discovery Attacker ○ Learn how to make legitimate requests ○ Especially how to authenticate ○ Look for ○ API documentation ○ “Getting Started” guides ○ What the API does / why created ○ Spec files (Swagger, OpenAPI, RAML, Postman collections, WADL, WSDL, …) ○ Clients (upstream proxy them) ○ Manually creating a list / Postman collection based on: ○ Bruteforced URLs ○ SPA proxied traffic ○ Kiterunner Defender ○ Traffic mostly looks like someone learning your API ○ For SPAs & Mobile ○ Discovery may stand out ○ Your clients already know how to make API calls ○ For undocumented APIs, there should be many failed requests ○ Posture - focus efforts, define internal-only APIs Runtime - discover Discovery in certain circumstances Testing - proactive, not much for Discovery You have target(s), now how to use them legitimately
  • 23. Attacks are grouped into the API Top 10 API-1 Broken Object Level Authorization (BOLA) API-2 Broken User Authentication API-3 Excessive Data Exposure API-4 Lack of Resource & Rate Limiting API-5 Broken Function Level Authorization API-6 Mass Assignment API-7 Security Misconfiguration API-8 Injection API-9 Improper Assets Management API-10 Insufficient Logging & Monitoring
  • 24. Broken Object Level Authorization (BOLA)
  • 25. Broken Object Level Authorization (BOLA)
  • 26. Broken Object Level Authorization Attacker ○ Look at how API resources are structured ○ Change IDs within API calls ○ Can be names (non-numeric) ○ Make calls to other IDs/resources with your Auth-N method / token ○ Create something as user 1 ○ Try to access it as user 2 ○ Response differences ○ HTTP Response code (404 vs 405) ○ Time to respond ○ Length of response (rare) Defender ○ Detection requires fairly deep inspection of the API calls ○ WAFs will generally fail ○ Shaped like legit request with IDs swapped ○ Looking for BOLA can cause increased Auth-Z errors ○ 2 similar requests from the same client with different IDs can be found by ML ○ Posture - focus on most risky APIs Runtime - detect BOLA attacks Testing - Find BOLA early / pre-prod One user can access another user’s data or take actions for them
  • 27. Broken User Authentication Attacker ○ Bruteforce credentials ○ No anti-automation on password resets or MFA/CAPTCHA ○ Password Spraying ○ Base-64 “protections” ○ Low entropy tokens ○ JWT weaknesses ○ Captured JWTs ○ None algorithm, no signature ○ Key mismatch, blank password, … ○ Cracking JWT secrets ○ jwt_tool Defender ○ Bruteforce attacks are noisy ○ Password spraying is very noisy ○ Ensure crypto is used correctly and carefully ○ JWT Best Practices RFC ○ Consider removing Auth-N from the API ○ Only get tokens through web app ○ Posture - identify Auth-N APIs Runtime -detect brute force, spraying, JWT manipulation Testing - identify poor practices early Using poor practices in authentication to attack APIs
  • 28. Excessive Data Exposure Attacker ○ Look for API responses that provide ‘extra’ information ○ Mobile app APIs tend to trust client to filter data ○ Look for ‘interesting’ responses ○ Profile pages ○ Linked users ○ Internal meta-data ○ Is the data expected part of a larger data object or DB row? ○ Can be time consuming to check all possible responses for excessive data Defender ○ Single requests can’t be distinguished from normal traffic ○ SAST can help here to avoid “to_json” or similar ○ Don’t rely on clients filtering data ○ Separate data objects for app and API ○ Posture - Shows sensitive data, large responses Runtime - Detect multi-request data scraping Testing - Find verbose responses early Sometimes developer productivity helps attackers too!
  • 29. Lack of Resource & Rate Limiting Attacker ○ Add thousands of items, ask for a list ○ Lack of pagination ○ Denial of API use (client) ○ Fuzzing and bruteforce attacks can discover these ○ Modify requests, different client, different IP to bypass limits ○ CPU / Memory intensive requests ○ robots.txt or documentation ○ Other games to play ○ Switch cAsE ○ Null and other terminators ○ Encoding data ○ Too high to make a difference Defender ○ Some requests will look normal but with large responses ○ Unusual requests ○ Headers, encoding, terminators, … ○ Observability can show usage spikes ○ Many bypass methods stand out from normal traffic ○ Posture - Determine APIs needing limits Runtime - Detect anomalous traffic and respond Testing - Fuzzing request data can find some issues early Failure to provide limits is a recipe for DOS or worse
  • 30. Broken Function Level Authorization Attacker ○ Focus on APIs with multiple roles/groups ○ Potential for expose backplane ○ Most things have an ‘admin’ ○ Try undocumented HTTP methods ○ PATCH, PUT, POST, DELETE (!) ○ Create items with one group/role ○ Interact with those items as a different role ○ Bruteforce / guess potential backplane operations ○ Experiment with headers, request data to access admin functions Defender ○ Affects APIs with 2+ roles, groups, privilege levels ○ Calls to unsupported methods that fail ○ Same client, different roles within a short period of time ○ Failures for backplane/admin paths ○ Unusual requests - headers, body ○ Posture - Determine APIs with groups, roles, privilege levels Runtime - Detect unusual, failing requests or changes in role from a client Testing - Conduct Auth-Z testing early Failure to restrict access by group or role leading to compromise
  • 31. Mass Assignment Attacker ○ Look for requests that appear to be partial data ○ Make guesses at unsent items ○ Look at request/response difference between roles/groups/privilege levels ○ Guess / bruteforce multiple values at once (hail mary) ○ Error messages or required field messages can provide clues ○ Fuzzing can also find issues ○ Combine with Broken Function Level Auth-Z to change data for other users ○ Change email/contact details Defender ○ Requests stand out from normal requests with deep inspection ○ Large number of failed/invalid requests ○ Increased request size ○ Increased severity for APIs with different roles/groups/privileges ○ Posture - Focus on APIs with multi-roles or sensitive data Runtime - Requests with extra data, multiple failed/invalid requests Testing - Add additional, valid fields to discover early Why not accept more data, what could go wrong?
  • 32. Security Misconfiguration Attacker ○ Check the basics ○ TLS config ○ Info leaks via headers, etc ○ Default credentials, EICAR ○ Use Recon and Discovery ○ Verbose errors ○ Purposefully make bad requests ○ Misconfigured framework settings ○ Debug mode ○ Intermediate devices ○ Determine if WAF, API Gateway, etc is in line ○ Call ‘internal’ functions with origin headers e.g. X-Remote-Addr Defender ○ Basic network vuln scanners can find the basics ○ Passive traffic monitoring can show header issues, API gateway bypass, many others ○ Client with many erroring or malformed requests ○ Posture - Show weak configuration e.g. API gateway bypass Runtime - Unexpected client traffic, multiple errors, malformed or anomalous requests Testing - Good for the basics, better if fuzzing is included in tests A little misconfiguration can go a long way
  • 33. Injection Attacker ○ Place injection strings into ○ Tokens / API keys ○ Headers (esp API specific ones) ○ Query data ○ Data in request body ○ Recon/Discovery can help focus what types of injection to try ○ Error messages can also help ○ Many good online resources for injections ○ Fuzzing lists ○ OWASP Testing Guide ○ 2nd order injections Defender ○ Input validation AND output encoding ○ Many failed or malformed requests ○ Large number of errors or validation failures at API ○ Overly trusting of East/West API calls ○ Posture - Focus on APIs with sensitive data, East/West APIs Runtime - Surge in errors, failed, invalid or malformed requests, control characters in requests Testing - Attempt injections early in dev cycle Treat data like code and bad things happen
  • 34. Improper Assets Management Attacker ○ You find many misconfiguration issues ○ Internal APIs are publicly accessible ○ API documentation is inaccurate ○ “Hidden”/undocumented APIs ○ Dev/New APIs in production ○ Legacy APIs are not decommissioned ○ API v minus 1 or more available Basically, your pen test was productive and easy Defender ○ Need to know all APIs (host, path, method) ○ Classify all data received and sent by APIs ○ API Gateway enforced, East/West traffic ○ Public vs internal APIs ○ Posture - Solved with solid posture management Runtime - Updates posture as environment changes Testing - Not particularly useful here Know what you have if you want to protect it adequately
  • 35. Insufficient Logging & Monitoring Attacker ○ Fuzzing does not cause a reaction / blocking ○ Assumes control is in scope for testing ○ Attacks, especially blatant injections go unnoticed ○ Phone numbers never look like: <script>alert(XSS)</script> ○ Mostly, external testers / attackers can only infer the level of logging and monitoring Defender ○ No attacks are seen / noticed ○ Diagnosing API issues is difficult ○ Unplanned downtime or resource consumption ○ Posture - Determine the appropriate level of logging per API Runtime - Monitoring is what this provides, also can retain traffic for analysis aka quasi-logging Testing - Validate logging is working (at best) Change guesses to decisions with data
  • 36. Bonus Material Things that didn’t fit nicely into the OWASP API Top 10
  • 37. Fuzzing Attacker ○ Send requests altering ○ Values to the extreme (large/small) ○ Negative numbers ○ Decimals for integers ○ Letters for numbers and vice versa ○ Control characters ○ Unicode / non-native characters ○ Target fuzzing strings if possible ○ Look for changes in ○ Response code ○ Response size ○ Timing ○ Error messages Defender ○ LOTS OF REQUESTS FROM A SINGLE CLIENT OVER A SHORT PERIOD OF TIME ○ Fuzzing is very noise on the network ○ Spikes in CPU, RAM, request traffic, errors, validation failures ○ Posture - Not much for Fuzzing Runtime - Easily detect fuzzing traffic Testing - Fuzzing as a normal part of testing to find issues early (pre-prod) When crafted attacks don’t work, throw the kitchen sink at your target
  • 38. Structural vs Data Attacks Structural Attacks ○ Modifying the structure of a request ○ Repeating data structures ○ Adding non-printing characters e.g. spaces, tabs, null characters between data elements ○ Removing portions of the data structure ○ Messing with the structure of the request only - data provided is legit ○ QA / HTTP testing tools generally normalize the structure so won’t work ○ Custom craft HTTP requests (Python requests library) or use a local proxy like Zap or Burpsuite Data Attacks ○ Modifying the data in a request ○ Substituting fuzzing / injection data for legit data values ○ Providing unexpected or overly large / small data values ○ Structure of the request is not modified ○ What most fuzzing and injections attacks look like - changing data without changing the structure ○ QA / HTTP testing tools can be leveraged to automate these attacks 2 fundamental ways to be naughty with APIs
  • 39. Special Notes on GraphQL Same from GraphQL ○ Recon (Passive / Active) ○ Discovery ○ Bruteforcing API paths ○ Using a local proxy e.g. Burpsuite / Zap ○ Install GraghQL plugins ○ Documentation / “Getting Started” Different for GraphQL ○ Introspection to learn the APIs schema ○ Often disabled at the API ○ GraphQL is a query language ○ Clients define the data they want ○ Opposite of defined requests & responses of REST APIs ○ Gaining popularity as clients aren’t bound to fixed data structures ○ Client can change without need for API changes GraphQL is a special beast but many things are the same https://github.com/dolevf/Damn-Vulnerable-GraphQL-Application
  • 40. GraphQL - left as an exercise for the student Googling “GraphQL”
  • 42. Key Takeaways for API testers (1) Knowledge of how to test web apps prepares you for most of API testing If you need some help, look at the OWASP Testing Guide (2) Some special knowledge and tools are needed for parts of API testing More on this later (3) Gaps in AppSec controls coverage and framework shortfalls lead to security shortfalls API testing is likely to be “productive”
  • 43. Key Takeaways for API testers https://owasp.org/www-community/api_security_tools
  • 44. Key Takeaways for API defenders The existing AppSec program and controls have API Security gaps to fill Risk Posture Runtime Testing Broken Object Level Authorization Broken User Authentication Excessive Data Exposure Lack of Resource & Rate Limiting Broken Function Level Authorization weak weak weak
  • 45. Key Takeaways for API defenders The existing AppSec program and controls have API Security gaps to fill Risk Posture Runtime Testing Mass Assignment Security Misconfiguration Injection Improper Assets Management Insufficient Logging & Monitoring weak
  • 46. Sorry about the firehose API Landmines in 60 min Audience
  • 47. CREDITS: This presentation template was created by Slidesgo, including icons by Flaticon, infographics & images by Freepik THANKS! Do you have any questions? matt.tesauro@owasp.org www.defectdojo.org https://owasp.org/www-community/api_security_tools