SlideShare a Scribd company logo
1 of 51
Download to read offline
Security Beyond the Libraries
Eoin Woods

Endava

eoin.woods@endava.com / @eoinwoodz
Introduction
2
Introduction
• Security is a difficult thing to achieve

• becoming more important all the time

• Development teams often start with technologies

• “SSL” “Spring Security” “SSO” “Roles” “OAuth”

• “FindBugs” “FxCop” “Fortify” “Tripwire”

• This is completely the wrong way around

• need to understand your risks before finding solutions

• technology is only part of the solution

• In this talk we discuss how to base security on risks
3
Caveats	
• This talk is introductory in nature

• some things aren’t talked about at all

• some things are just introduced

• Talk is for system developers not security engineers

• there are many subtleties that are skipped over

• some things are simplified to their essentials

• you still probably need a security specialist

• Don’t talk much technologies or coding practice

• these fundamentals need to be in place first
4
Introducing Security
5
The Need for Security
• We need systems that are dependable in spite of

• Malice

• Error and

• Mischance

• People are sometimes bad, stupid or just unlucky

• System security attempts to mitigate these situations 

• Anything of value may attract unwelcome attention

• Theft, Fraud, Destruction, Disruption
6
The Need for Security
• Why do we care about these factors?

• Each of them implies a loss of some sort

• Time

• Money

• Privacy

• Reputation

• Advantage
7
What is Security?
• Security is the business of managing risks

• Security is a type of insurance 

• Balances cost and effort against risk of loss

• Some basic terminology

• resources - things of value that (may) need protection

• actors - people (“entities”) interacting with the system

• policies - the rules to control access to the resources

• threats - the reason that the rules may be broken
8
What is Security?
• Security is multi-dimensional

• People

• Users, administrators, security experts (and … attackers)

• Process

• Design, operation, control, monitoring, …

• Technology

• What to apply, how to use it, how to integrate it

Security is not a product -- it's a process
Bruce Schneier
You’re only as strong as your weakest link!
9
Risks, Threats and Attacks
• Vulnerability = a weakness in a security mechanism

• Threat = Vulnerability + Attacker + Motivation

• Attack = when the attacker puts a plan into action

• Risk = threat x likelihood x impact
10
Source: OWASP
Key Security Requirements
• Confidentiality (or Privacy)

• Prevent unauthorised access to information

• Integrity

• Prevent tampering or destruction

• Availability

• Prevent disruption to users of systems

• Accountability (or “non-repudiation”)

• Know who does what, when

11
Securing Systems
12
Validate
Securing a System
Understand
Analyse
Mitigate
Model the System
Investigate the
Environment
Resources &
Policy
Threat Modelling
Minimise Attack
Surface
Security
Countermeasures
Security Reviews Security Testing
Modelling the System and Environment
Understand
System Context
System Architecture
Resources - Identify Value
• What is valuable is often self-evident

• client information … damaging if lost

• what is of value for an external attacker?

• configuration files … reveal network topologies

• Operations as well as data

• viewing a payment might be fine

… releasing a payment is another question!

• May require fine-grained consideration

• HR data - work phone numbers vs home address
15
Analyse
Policy - Define the Required Controls
• Security policy is a security specification

• controls and guarantees needed in the system

• WHO will use the system? (principals)

• WHAT will they work on? (resource types)

• and WHAT may they do? (actions on resources)
16
Analyse
Security Policy
Clients Orders
Refunds

<= £100
Refunds

> £100
Onshore
Service Agents
Create, View,

Modify

(Un)Suspend
All
Create, View,
Authorise
View
Offshore
Service Agents
View,
(Un)Suspend
View, Cancel View View
Supervisors All All All
Create, View,
Cancel
Finance View View
View,
Authorise
All
Analyse
Threat Modelling
• Threat is a possible breach in security policy

• System/process/people may (will) have vulnerabilities

• Attackers have motivation and goals

• Threat is an attacker exploiting a vulnerability

• Identifying threats is a key part of security design

• threats are where you focus your security effort

• threat modelling is the key activity
18
Analyse
Threat Modelling
A procedure for optimizing security by identifying
objectives and vulnerabilities, and then defining
countermeasures to prevent, or mitigate the effects
of, threats to the system — OWASP

• Identify the real risks to focus security effort

• A technique all developers should be familiar with
19
Analyse
Threat Modelling
• Who might attack your system?

• What is their goal?

• Which vulnerabilities might they exploit?
20
Alice
Bob
Eve
Attacker: opportunist insider

Goal: secret document

Vulnerability: unprotected key
Analyse
Finding Threats - STRIDE
Spoofing Pretending to be someone that you’re not
Tampering Changing information you shouldn’t
Repudiation Being able to deny performing an action
Information Disclosure Getting access to information illicitly
Denial of Service Preventing a service being offered
Elevation of Privilege Gaining privileges you shouldn’t have
Analyse
Capture Threat Model
Analyse
ID 25 26
Threat Type Tampering Spoofing
Component WebUI WebUI
Threat
Javascript tampering in
browser, altering order data
WebUI user spoofing session
ID for other user account
Mitigation
OPR-5543 - Add validation
and unit tests for incoming
order
OPR-5547 - Regenerate
session ID and recheck on
every request
Exploring Attacks - The Attack Tree
Attacker: Professional hacker

Goal: Obtain customer credit card details

Attack: Extract details from the system database.

1. Access the database directly

1.1. Crack/guess database passwords

1.2. Crack/guess OS passwords to bypass db security

1.3. Exploit a known vulnerability in the database software

2. Access the details via a DBA

2.1. Bribe a database administrator (DBA)

2.2. Social engineering to trick DBA into revealing details

3. …
23
Analyse
Comparing Threats - DREAD Model
• Risk = Damage (1..10) + 

Reproducibility (1..10) + 

Exploitability (1..10) + 

Affected Users (1..10) + 

Discoverability (1..10)

• Sum values and divide by 5 for the DREAD rating

https://www.owasp.org/index.php/Threat_Risk_Modeling

• Can be criticised for lack of consistency

• Still a useful process - but sanity check results
24
Analyse
DREAD Model Example
• Suppose a threat where …

• damage limited to individual users 	 	 => 5/10

• is reproducible with a browser	 	 	 	 => 10/10

• needs malware for the exploit	 	 	 	 => 5/10

• affects many but not all users	 	 	 	 => 5/10

• and can be discovered easily	 	 	 	 => 10/10

• DREAD value = (5+10+5+5+10)/5 = 7/10

a useful process … but thinking is still required!
25
Analyse
Libraries for Known Problems
• OWASP Top 10 list

• https://www.owasp.org/index.php/ 

Category:OWASP_Top_Ten_Project

• WASC threat classification

• http://projects.webappsec.org/f/WASC-TC-v2_0.pdf

• Mitre’s CAPEC & CWE

• Common Attack Pattern Enumeration & Classification

• Common Weaknesses Enumeration
26
Analyse
Security Abuse Cases
User Logs In
Search Catalogue
Order Items
Customer Attacker
Steal Auth
Token
Spoof
Authorisation
«threatens»
«threatens»
«depends»
Analyse
Abuse Case Example
Abuse Case: Spoofing Authorisation via Valid Authentication
Threat:
The misuser steals an authorisation token and attempts to use it
via a valid (other) authenticated identity
Preconditions:
1) The misuser has a valid means of user authentication

(e.g. username/password).
2) The misuser has a stolen user authorisation token.
Actions:
1. The system shall request the user’s identity and authentication.
2. The misuser authenticates himself correctly.
3. The system shall identify and authenticate the user.
4. The misuser attempts to authorise using the stolen token.
5. The system rejects the authorisation attempt, audits the event,
terminates the session and locks the user account.
Postconditions:
1. The system shall have identified and authenticated the misuser
2. The system shall have prevented the misuser from stealing
another user’s means of authorisation.
Analyse
Minimise the Attack Surface
• The attack surface is the set of potentially
vulnerable ways into the system (“attack vectors”)

• smaller attack surface = less to attack and secure

• OWASP definition:

• all channels into and out of the system

• the code securing those channels

• data of value within the application (security & domain)

• the code securing this data

• Reduce interfaces, protocols, services, …

• conflict with other goals!
29
Mitigate
Security Countermeasures
• Once risks prioritised then implement mitigations

• Some are well known and relatively straightforward

• e.g. use of role based access control

• Some are more complex but well known

• e.g. XSS or SQL injection require input validation

• Some need custom solutions

• e.g. attacks based on organisation structure

• Remember people, process and technology!
30
Mitigate
Incident Response
• Despite security a system may breached

• Need a plan for what you do when it happens

• an incident response plan

• a standing incident response team

• Broader than technical mitigation

• technical, management, legal & communications

• A plan allowing a clear, logical, risk driven response

• analysis, mitigation, evidence, communication, lessons

• Practice your response
31
Mitigate
Secure Implementation
• Secure design is useless if implemented insecurely

• secure implementation outside the scope of this talk

• Secure implementation can be complicated

• requires knowledge and care

• relatively specialist today

• Static analysis and expert code review

• FxCop, FindBugs, CodeAnalysis, Coverity, Fortify, …

• OWASP code review guidelines

• Oracle Java security guidelines
32
Mitigate
Top Application Security Coding Errors
• Not thoroughly validating input

• Injection attack vulnerabilities

• Insecure randomness

• Using custom cryptography

• Insecure logging

• Careless exception handling

• Lack of security testing
33
… this topic needs another session
Mitigate
Testing and Verification
• As a software quality security needs to be tested

• security testing largely outside the scope of this talk

• Wide range of security validation activities:

• static analysis of code

• functional testing of security features

• penetration / known vulnerability / fuzz testing

• manual system security review

• threat mitigation tests

• Risk driven approach needed to maximise RoI

• Consider third party assistance
34
Validate
Summary
35
Summary
• We’ve looked how to improve system security

• we need to be risk and principle driven

• Security requires: People, Process and Technology

• the weakest of the three is your security level

• Security needs to be designed in

• its very difficult and expensive to add later

• Be guided by risks not security technologies

• threat risk models (STRIDE and DREAD); attack trees

• Get the experts involved for significant risks

• and never invent your own security technology!
36
Summary (ii)
Never stop asking “why?” and “what if?”

	 critically important info sec questions!
37
Resources
• OWASP - http://www.owasp.org

• Top 10, cookbooks, guides, sample apps, tutorials, …

• Microsoft SDL - http://www.microsoft.com/security/sdl

• complete security development lifecycle with resources

• Elevation of Privilege game- http://tinyurl.com/eopgame

• card game which helps to explain and drive threat modelling

• Trike - http://www.octotrike.org

• alternative threat modelling approach

• CAPEC, CWE - http://{capec,cwe}.mitre.org

• threat and vulnerability lists
38
Resources
• CPNI - http://www.cpni.gov.uk

• UK government support for cyber security

• US Government CERT - https://www.us-cert.gov

• CMU’s CERT - http://cert.org

• vulnerability monitoring and alerting

• WASC - http://www.webappsec.org

• similar organisation to OWASP

• SANS Institute - http://www.sans.org

• security research and education
39
Books
Eoin Woods

eoin.woods@endava.com

www.eoinwoods.info

@eoinwoodz
Questions?
Appendix: Overview of Security
Mechanisms
42
Security Mechanisms and Attacks
• This talk is for system designers, not security
specialists

• Understanding mechanisms and attacks is hard

• people who like this sort of thing are security
engineers!

• This section overviews key mechanisms and some
of the more important types of attack

• this isn’t a detailed explanation of any of this

• make sure you consult a security expert when needed

• this is useful to understand the basics and the
43
Partial Summary of Security Mechanisms
Authentication

(“Who are you?)
Usernames & passwords, 2FA,
biometrics, certificates, …
Authorisation
(“What can you do?”)
Roles, access control lists, OAuth,
permissions, …
Confidentiality

(“Keeping stuff secret”)
Encryption, access control lists, …
Integrity

(“Stop tampering”)
Cryptographic hashing, checksums, …
Non-Repudiation

(“You did that”)
Cryptographic signing, audit trails, …
Auditing

(“What happened, when?”)
Secure record of who did what, when
Cryptography and its Uses
• Cryptography: the process of keeping information
private (typically) using a cypher and a key

• Two broad subfields:

• Symmetric Key - the same key to encrypt and decrypt

• Public Key - a pair of keys one to encrypt one to
decrypt

• Often used together for real applications

• Applications of cryptography: privacy (encryption),
integrity (signing) and non-repudiation (signing)

• Difficulties with cryptography include designing
45
Basic Symmetric Key Cryptography
Alice Bob
Encrypt Decrypt
Basic Public Key Cryptography
Alice Bob
Bob’s public key
Encrypt
Bob’s

private 

key
Decrypt
Bob’s keypair
Comparing Symmetric and Public Key
48
Symmetric Key Public Key
Single shared key
A keypair needs to be generated with
public and private key
Single key needs to be shared
securely
Private key is kept secret, public key
can be freely shared
Efficient computationally Really slow (~100s times slower)
Classic attack is stealing keys
Classic attack is forging public keys,
so faking identity
Big challenge is passing keys around
Big challenge is chains of trust so
you know keys (certs) are valid
Example of Crypto in Practice: Key Exchange
Client Server
Client Hello

(“Hello - here are the options I know about ….”)
Server Hello

(“OK - here are the options we’ll use ….”)
Server Certificate

(“Here is my certificate (public key) ….”)
Client Key Exchange

(“Here is a symmetric key” encrypted with server public key)
Data Exchange

(encrypted with symmetric key)
Hashing and Signing
Alice
Bob
Hashing
private key
keypair
hash
Signing
Verification
public key
Summary of Common Attacks
Social Engineering

(Attack the people)
Bluffing, bribery, coercion, …
Network Attacks
(Protocol exploits)
SYN floods, DDoS, DNS attacks, …
Application Attacks

(Flaws and bugs)
XSS, SQL injection, corrupted input
(fuzz), DLL attacks, CGI/SSI attacks …
Programming Attacks

(Abuse of a language)
Stack overflows, buffer overflows,
known bugs in libraries, …
Crypto Attacks

(Algorithms or design)
Known plain/cipher text, randomness,
cert forgery, man in the middle, traffic
analysis…

More Related Content

What's hot

Webinar: Machine learning analytics for immediate resolution to the most chal...
Webinar: Machine learning analytics for immediate resolution to the most chal...Webinar: Machine learning analytics for immediate resolution to the most chal...
Webinar: Machine learning analytics for immediate resolution to the most chal...
Melina Black
 
Security in the News
Security in the NewsSecurity in the News
Security in the News
James Sutter
 
Qualys user group presentation - vulnerability management - November 2009 v1 3
Qualys user group presentation - vulnerability management - November 2009 v1 3Qualys user group presentation - vulnerability management - November 2009 v1 3
Qualys user group presentation - vulnerability management - November 2009 v1 3
Tom King
 
Bil Harmer - Myths of Cloud Security Debunked!
Bil Harmer - Myths of Cloud Security Debunked!Bil Harmer - Myths of Cloud Security Debunked!
Bil Harmer - Myths of Cloud Security Debunked!
centralohioissa
 

What's hot (20)

Security and DevOps Overview
Security and DevOps OverviewSecurity and DevOps Overview
Security and DevOps Overview
 
NTXISSACSC2 - Kid Proofing the Internet of Things by Monty McDougal
NTXISSACSC2 - Kid Proofing the Internet of Things by Monty McDougalNTXISSACSC2 - Kid Proofing the Internet of Things by Monty McDougal
NTXISSACSC2 - Kid Proofing the Internet of Things by Monty McDougal
 
Outpost24 webinar - Improve your organizations security with red teaming
Outpost24 webinar - Improve your organizations security with red teamingOutpost24 webinar - Improve your organizations security with red teaming
Outpost24 webinar - Improve your organizations security with red teaming
 
What your scanner isn't telling you
What your scanner isn't telling youWhat your scanner isn't telling you
What your scanner isn't telling you
 
Managing Next Generation Threats to Cyber Security
Managing Next Generation Threats to Cyber SecurityManaging Next Generation Threats to Cyber Security
Managing Next Generation Threats to Cyber Security
 
2016 virus bulletin
2016 virus bulletin2016 virus bulletin
2016 virus bulletin
 
NZISF Talk: Six essential security services
NZISF Talk: Six essential security servicesNZISF Talk: Six essential security services
NZISF Talk: Six essential security services
 
Webinar: Machine learning analytics for immediate resolution to the most chal...
Webinar: Machine learning analytics for immediate resolution to the most chal...Webinar: Machine learning analytics for immediate resolution to the most chal...
Webinar: Machine learning analytics for immediate resolution to the most chal...
 
Outpost24 webinar - A day in the life of an information security professional
Outpost24 webinar - A day in the life of an information security professional Outpost24 webinar - A day in the life of an information security professional
Outpost24 webinar - A day in the life of an information security professional
 
Cloud, DevOps and the New Security Practitioner
Cloud, DevOps and the New Security PractitionerCloud, DevOps and the New Security Practitioner
Cloud, DevOps and the New Security Practitioner
 
Privacies are Coming
Privacies are ComingPrivacies are Coming
Privacies are Coming
 
Security in the News
Security in the NewsSecurity in the News
Security in the News
 
Qualys user group presentation - vulnerability management - November 2009 v1 3
Qualys user group presentation - vulnerability management - November 2009 v1 3Qualys user group presentation - vulnerability management - November 2009 v1 3
Qualys user group presentation - vulnerability management - November 2009 v1 3
 
451 and Endgame - Zero breach Tolerance: Earliest protection across the attac...
451 and Endgame - Zero breach Tolerance: Earliest protection across the attac...451 and Endgame - Zero breach Tolerance: Earliest protection across the attac...
451 and Endgame - Zero breach Tolerance: Earliest protection across the attac...
 
State of DevSecOps - DevOpsDays Jakarta 2019
State of DevSecOps - DevOpsDays Jakarta 2019State of DevSecOps - DevOpsDays Jakarta 2019
State of DevSecOps - DevOpsDays Jakarta 2019
 
Colin Domoney -
Colin Domoney -  Colin Domoney -
Colin Domoney -
 
Technologies and Policies for a Defensible Cyberspace
Technologies and Policies for a Defensible CyberspaceTechnologies and Policies for a Defensible Cyberspace
Technologies and Policies for a Defensible Cyberspace
 
Equifax Breach Postmortem
Equifax Breach PostmortemEquifax Breach Postmortem
Equifax Breach Postmortem
 
Why Zero Trust Yields Maximum Security
Why Zero Trust Yields Maximum SecurityWhy Zero Trust Yields Maximum Security
Why Zero Trust Yields Maximum Security
 
Bil Harmer - Myths of Cloud Security Debunked!
Bil Harmer - Myths of Cloud Security Debunked!Bil Harmer - Myths of Cloud Security Debunked!
Bil Harmer - Myths of Cloud Security Debunked!
 

Viewers also liked

Challenges for Information Security Theory
Challenges for Information Security TheoryChallenges for Information Security Theory
Challenges for Information Security Theory
ICAC09
 

Viewers also liked (8)

25 Quotes That Will Make You a Better Freelancer
25 Quotes That Will Make You a Better Freelancer25 Quotes That Will Make You a Better Freelancer
25 Quotes That Will Make You a Better Freelancer
 
Information Security Governance: Concepts, Security Management & Metrics
Information Security Governance: Concepts, Security Management & MetricsInformation Security Governance: Concepts, Security Management & Metrics
Information Security Governance: Concepts, Security Management & Metrics
 
Information Security - Back to Basics - Own Your Vulnerabilities
Information Security - Back to Basics - Own Your VulnerabilitiesInformation Security - Back to Basics - Own Your Vulnerabilities
Information Security - Back to Basics - Own Your Vulnerabilities
 
Challenges for Information Security Theory
Challenges for Information Security TheoryChallenges for Information Security Theory
Challenges for Information Security Theory
 
Information Security Governance #2A
Information Security Governance #2A Information Security Governance #2A
Information Security Governance #2A
 
Information security
Information securityInformation security
Information security
 
INFORMATION SECURITY
INFORMATION SECURITYINFORMATION SECURITY
INFORMATION SECURITY
 
Infrastructure as code: running microservices on AWS using Docker, Terraform,...
Infrastructure as code: running microservices on AWS using Docker, Terraform,...Infrastructure as code: running microservices on AWS using Docker, Terraform,...
Infrastructure as code: running microservices on AWS using Docker, Terraform,...
 

Similar to System Security Beyond the Libraries

Networking 2016-06-14 - The Dirty Secrets of Enterprise Security by Kevin Dunn
Networking 2016-06-14 - The Dirty Secrets of Enterprise Security by Kevin DunnNetworking 2016-06-14 - The Dirty Secrets of Enterprise Security by Kevin Dunn
Networking 2016-06-14 - The Dirty Secrets of Enterprise Security by Kevin Dunn
North Texas Chapter of the ISSA
 

Similar to System Security Beyond the Libraries (20)

Threat Modeling to Reduce Software Security Risk
Threat Modeling to Reduce Software Security RiskThreat Modeling to Reduce Software Security Risk
Threat Modeling to Reduce Software Security Risk
 
For Business's Sake, Let's focus on AppSec
For Business's Sake, Let's focus on AppSecFor Business's Sake, Let's focus on AppSec
For Business's Sake, Let's focus on AppSec
 
chap-1 : Vulnerabilities in Information Systems
chap-1 : Vulnerabilities in Information Systemschap-1 : Vulnerabilities in Information Systems
chap-1 : Vulnerabilities in Information Systems
 
ISACA Ethical Hacking Presentation 10/2011
ISACA Ethical Hacking Presentation 10/2011ISACA Ethical Hacking Presentation 10/2011
ISACA Ethical Hacking Presentation 10/2011
 
Networking 2016-06-14 - The Dirty Secrets of Enterprise Security by Kevin Dunn
Networking 2016-06-14 - The Dirty Secrets of Enterprise Security by Kevin DunnNetworking 2016-06-14 - The Dirty Secrets of Enterprise Security by Kevin Dunn
Networking 2016-06-14 - The Dirty Secrets of Enterprise Security by Kevin Dunn
 
The Principles of Secure Development - BSides Las Vegas 2009
The Principles of Secure Development - BSides Las Vegas 2009The Principles of Secure Development - BSides Las Vegas 2009
The Principles of Secure Development - BSides Las Vegas 2009
 
Threat Modeling - Locking the Door to Vulnerabilities
Threat Modeling - Locking the Door to VulnerabilitiesThreat Modeling - Locking the Door to Vulnerabilities
Threat Modeling - Locking the Door to Vulnerabilities
 
02-overview.pptx
02-overview.pptx02-overview.pptx
02-overview.pptx
 
Cyber Security # Lec 3
Cyber Security # Lec 3 Cyber Security # Lec 3
Cyber Security # Lec 3
 
The 5 Layers of Security Testing by Alan Koch
The 5 Layers of Security Testing by Alan KochThe 5 Layers of Security Testing by Alan Koch
The 5 Layers of Security Testing by Alan Koch
 
The 5 Layers of Security Testing by Alan Koch
The 5 Layers of Security Testing by Alan KochThe 5 Layers of Security Testing by Alan Koch
The 5 Layers of Security Testing by Alan Koch
 
Application Threat Modeling
Application Threat ModelingApplication Threat Modeling
Application Threat Modeling
 
Web Security Overview
Web Security OverviewWeb Security Overview
Web Security Overview
 
Ch1 cse
Ch1 cseCh1 cse
Ch1 cse
 
Threat_Modelling.pdf
Threat_Modelling.pdfThreat_Modelling.pdf
Threat_Modelling.pdf
 
CNIT 160 4e Security Program Management (Part 5)
CNIT 160 4e Security Program Management (Part 5)CNIT 160 4e Security Program Management (Part 5)
CNIT 160 4e Security Program Management (Part 5)
 
Open Source Security for Newbies - Best Practices
Open Source Security for Newbies - Best PracticesOpen Source Security for Newbies - Best Practices
Open Source Security for Newbies - Best Practices
 
2023 NCIT: Introduction to Intrusion Detection
2023 NCIT: Introduction to Intrusion Detection2023 NCIT: Introduction to Intrusion Detection
2023 NCIT: Introduction to Intrusion Detection
 
Finding the Sweet Spot: Counter Honeypot Operations (CHOps) by Jonathan Creek...
Finding the Sweet Spot: Counter Honeypot Operations (CHOps) by Jonathan Creek...Finding the Sweet Spot: Counter Honeypot Operations (CHOps) by Jonathan Creek...
Finding the Sweet Spot: Counter Honeypot Operations (CHOps) by Jonathan Creek...
 
Assessing System Risk the Smart Way
Assessing System Risk the Smart WayAssessing System Risk the Smart Way
Assessing System Risk the Smart Way
 

More from Eoin Woods

Software Architecture as Systems Dissolve
Software Architecture as Systems DissolveSoftware Architecture as Systems Dissolve
Software Architecture as Systems Dissolve
Eoin Woods
 

More from Eoin Woods (10)

API Vulnerabilties and What to Do About Them
API Vulnerabilties and What to Do About ThemAPI Vulnerabilties and What to Do About Them
API Vulnerabilties and What to Do About Them
 
A Breathless Tour of Blockchain
A Breathless Tour of BlockchainA Breathless Tour of Blockchain
A Breathless Tour of Blockchain
 
Models, Sketches and Everything In Between
Models, Sketches and Everything In BetweenModels, Sketches and Everything In Between
Models, Sketches and Everything In Between
 
Capturing Design (When you really have to)
Capturing Design (When you really have to)Capturing Design (When you really have to)
Capturing Design (When you really have to)
 
Serverless Computing for the Inquiring Mind
Serverless Computing for the Inquiring MindServerless Computing for the Inquiring Mind
Serverless Computing for the Inquiring Mind
 
Using Software Architecture Principles in Practice
Using Software Architecture Principles in PracticeUsing Software Architecture Principles in Practice
Using Software Architecture Principles in Practice
 
Secure by Design - Security Design Principles for the Rest of Us
Secure by Design - Security Design Principles for the Rest of UsSecure by Design - Security Design Principles for the Rest of Us
Secure by Design - Security Design Principles for the Rest of Us
 
Software Architecture as Systems Dissolve
Software Architecture as Systems DissolveSoftware Architecture as Systems Dissolve
Software Architecture as Systems Dissolve
 
Software Architecture as Systems Dissolve (OOP2016)
Software Architecture as Systems Dissolve (OOP2016)Software Architecture as Systems Dissolve (OOP2016)
Software Architecture as Systems Dissolve (OOP2016)
 
Deferring the Last Responsible Moment
Deferring the Last Responsible MomentDeferring the Last Responsible Moment
Deferring the Last Responsible Moment
 

Recently uploaded

CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
VictorSzoltysek
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
mohitmore19
 

Recently uploaded (20)

Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 

System Security Beyond the Libraries

  • 1. Security Beyond the Libraries Eoin Woods
 Endava eoin.woods@endava.com / @eoinwoodz
  • 3. Introduction • Security is a difficult thing to achieve • becoming more important all the time • Development teams often start with technologies • “SSL” “Spring Security” “SSO” “Roles” “OAuth” • “FindBugs” “FxCop” “Fortify” “Tripwire” • This is completely the wrong way around • need to understand your risks before finding solutions • technology is only part of the solution • In this talk we discuss how to base security on risks 3
  • 4. Caveats • This talk is introductory in nature • some things aren’t talked about at all • some things are just introduced • Talk is for system developers not security engineers • there are many subtleties that are skipped over • some things are simplified to their essentials • you still probably need a security specialist • Don’t talk much technologies or coding practice • these fundamentals need to be in place first 4
  • 6. The Need for Security • We need systems that are dependable in spite of • Malice • Error and • Mischance • People are sometimes bad, stupid or just unlucky • System security attempts to mitigate these situations • Anything of value may attract unwelcome attention • Theft, Fraud, Destruction, Disruption 6
  • 7. The Need for Security • Why do we care about these factors? • Each of them implies a loss of some sort • Time • Money • Privacy • Reputation • Advantage 7
  • 8. What is Security? • Security is the business of managing risks • Security is a type of insurance • Balances cost and effort against risk of loss • Some basic terminology • resources - things of value that (may) need protection • actors - people (“entities”) interacting with the system • policies - the rules to control access to the resources • threats - the reason that the rules may be broken 8
  • 9. What is Security? • Security is multi-dimensional • People • Users, administrators, security experts (and … attackers) • Process • Design, operation, control, monitoring, … • Technology • What to apply, how to use it, how to integrate it Security is not a product -- it's a process Bruce Schneier You’re only as strong as your weakest link! 9
  • 10. Risks, Threats and Attacks • Vulnerability = a weakness in a security mechanism • Threat = Vulnerability + Attacker + Motivation • Attack = when the attacker puts a plan into action • Risk = threat x likelihood x impact 10 Source: OWASP
  • 11. Key Security Requirements • Confidentiality (or Privacy) • Prevent unauthorised access to information • Integrity • Prevent tampering or destruction • Availability • Prevent disruption to users of systems • Accountability (or “non-repudiation”) • Know who does what, when 11
  • 13. Validate Securing a System Understand Analyse Mitigate Model the System Investigate the Environment Resources & Policy Threat Modelling Minimise Attack Surface Security Countermeasures Security Reviews Security Testing
  • 14. Modelling the System and Environment Understand System Context System Architecture
  • 15. Resources - Identify Value • What is valuable is often self-evident • client information … damaging if lost • what is of value for an external attacker? • configuration files … reveal network topologies • Operations as well as data • viewing a payment might be fine
 … releasing a payment is another question! • May require fine-grained consideration • HR data - work phone numbers vs home address 15 Analyse
  • 16. Policy - Define the Required Controls • Security policy is a security specification • controls and guarantees needed in the system • WHO will use the system? (principals) • WHAT will they work on? (resource types) • and WHAT may they do? (actions on resources) 16 Analyse
  • 17. Security Policy Clients Orders Refunds
 <= £100 Refunds
 > £100 Onshore Service Agents Create, View,
 Modify
 (Un)Suspend All Create, View, Authorise View Offshore Service Agents View, (Un)Suspend View, Cancel View View Supervisors All All All Create, View, Cancel Finance View View View, Authorise All Analyse
  • 18. Threat Modelling • Threat is a possible breach in security policy • System/process/people may (will) have vulnerabilities • Attackers have motivation and goals • Threat is an attacker exploiting a vulnerability • Identifying threats is a key part of security design • threats are where you focus your security effort • threat modelling is the key activity 18 Analyse
  • 19. Threat Modelling A procedure for optimizing security by identifying objectives and vulnerabilities, and then defining countermeasures to prevent, or mitigate the effects of, threats to the system — OWASP • Identify the real risks to focus security effort • A technique all developers should be familiar with 19 Analyse
  • 20. Threat Modelling • Who might attack your system? • What is their goal? • Which vulnerabilities might they exploit? 20 Alice Bob Eve Attacker: opportunist insider
 Goal: secret document
 Vulnerability: unprotected key Analyse
  • 21. Finding Threats - STRIDE Spoofing Pretending to be someone that you’re not Tampering Changing information you shouldn’t Repudiation Being able to deny performing an action Information Disclosure Getting access to information illicitly Denial of Service Preventing a service being offered Elevation of Privilege Gaining privileges you shouldn’t have Analyse
  • 22. Capture Threat Model Analyse ID 25 26 Threat Type Tampering Spoofing Component WebUI WebUI Threat Javascript tampering in browser, altering order data WebUI user spoofing session ID for other user account Mitigation OPR-5543 - Add validation and unit tests for incoming order OPR-5547 - Regenerate session ID and recheck on every request
  • 23. Exploring Attacks - The Attack Tree Attacker: Professional hacker
 Goal: Obtain customer credit card details
 Attack: Extract details from the system database. 1. Access the database directly 1.1. Crack/guess database passwords 1.2. Crack/guess OS passwords to bypass db security 1.3. Exploit a known vulnerability in the database software 2. Access the details via a DBA 2.1. Bribe a database administrator (DBA) 2.2. Social engineering to trick DBA into revealing details 3. … 23 Analyse
  • 24. Comparing Threats - DREAD Model • Risk = Damage (1..10) + 
 Reproducibility (1..10) + 
 Exploitability (1..10) + 
 Affected Users (1..10) + 
 Discoverability (1..10) • Sum values and divide by 5 for the DREAD rating https://www.owasp.org/index.php/Threat_Risk_Modeling • Can be criticised for lack of consistency • Still a useful process - but sanity check results 24 Analyse
  • 25. DREAD Model Example • Suppose a threat where … • damage limited to individual users => 5/10 • is reproducible with a browser => 10/10 • needs malware for the exploit => 5/10 • affects many but not all users => 5/10 • and can be discovered easily => 10/10 • DREAD value = (5+10+5+5+10)/5 = 7/10 a useful process … but thinking is still required! 25 Analyse
  • 26. Libraries for Known Problems • OWASP Top 10 list • https://www.owasp.org/index.php/ 
 Category:OWASP_Top_Ten_Project • WASC threat classification • http://projects.webappsec.org/f/WASC-TC-v2_0.pdf • Mitre’s CAPEC & CWE • Common Attack Pattern Enumeration & Classification • Common Weaknesses Enumeration 26 Analyse
  • 27. Security Abuse Cases User Logs In Search Catalogue Order Items Customer Attacker Steal Auth Token Spoof Authorisation «threatens» «threatens» «depends» Analyse
  • 28. Abuse Case Example Abuse Case: Spoofing Authorisation via Valid Authentication Threat: The misuser steals an authorisation token and attempts to use it via a valid (other) authenticated identity Preconditions: 1) The misuser has a valid means of user authentication
 (e.g. username/password). 2) The misuser has a stolen user authorisation token. Actions: 1. The system shall request the user’s identity and authentication. 2. The misuser authenticates himself correctly. 3. The system shall identify and authenticate the user. 4. The misuser attempts to authorise using the stolen token. 5. The system rejects the authorisation attempt, audits the event, terminates the session and locks the user account. Postconditions: 1. The system shall have identified and authenticated the misuser 2. The system shall have prevented the misuser from stealing another user’s means of authorisation. Analyse
  • 29. Minimise the Attack Surface • The attack surface is the set of potentially vulnerable ways into the system (“attack vectors”) • smaller attack surface = less to attack and secure • OWASP definition: • all channels into and out of the system • the code securing those channels • data of value within the application (security & domain) • the code securing this data • Reduce interfaces, protocols, services, … • conflict with other goals! 29 Mitigate
  • 30. Security Countermeasures • Once risks prioritised then implement mitigations • Some are well known and relatively straightforward • e.g. use of role based access control • Some are more complex but well known • e.g. XSS or SQL injection require input validation • Some need custom solutions • e.g. attacks based on organisation structure • Remember people, process and technology! 30 Mitigate
  • 31. Incident Response • Despite security a system may breached • Need a plan for what you do when it happens • an incident response plan • a standing incident response team • Broader than technical mitigation • technical, management, legal & communications • A plan allowing a clear, logical, risk driven response • analysis, mitigation, evidence, communication, lessons • Practice your response 31 Mitigate
  • 32. Secure Implementation • Secure design is useless if implemented insecurely • secure implementation outside the scope of this talk • Secure implementation can be complicated • requires knowledge and care • relatively specialist today • Static analysis and expert code review • FxCop, FindBugs, CodeAnalysis, Coverity, Fortify, … • OWASP code review guidelines • Oracle Java security guidelines 32 Mitigate
  • 33. Top Application Security Coding Errors • Not thoroughly validating input • Injection attack vulnerabilities • Insecure randomness • Using custom cryptography • Insecure logging • Careless exception handling • Lack of security testing 33 … this topic needs another session Mitigate
  • 34. Testing and Verification • As a software quality security needs to be tested • security testing largely outside the scope of this talk • Wide range of security validation activities: • static analysis of code • functional testing of security features • penetration / known vulnerability / fuzz testing • manual system security review • threat mitigation tests • Risk driven approach needed to maximise RoI • Consider third party assistance 34 Validate
  • 36. Summary • We’ve looked how to improve system security • we need to be risk and principle driven • Security requires: People, Process and Technology • the weakest of the three is your security level • Security needs to be designed in • its very difficult and expensive to add later • Be guided by risks not security technologies • threat risk models (STRIDE and DREAD); attack trees • Get the experts involved for significant risks • and never invent your own security technology! 36
  • 37. Summary (ii) Never stop asking “why?” and “what if?” critically important info sec questions! 37
  • 38. Resources • OWASP - http://www.owasp.org • Top 10, cookbooks, guides, sample apps, tutorials, … • Microsoft SDL - http://www.microsoft.com/security/sdl • complete security development lifecycle with resources • Elevation of Privilege game- http://tinyurl.com/eopgame • card game which helps to explain and drive threat modelling • Trike - http://www.octotrike.org • alternative threat modelling approach • CAPEC, CWE - http://{capec,cwe}.mitre.org • threat and vulnerability lists 38
  • 39. Resources • CPNI - http://www.cpni.gov.uk • UK government support for cyber security • US Government CERT - https://www.us-cert.gov • CMU’s CERT - http://cert.org • vulnerability monitoring and alerting • WASC - http://www.webappsec.org • similar organisation to OWASP • SANS Institute - http://www.sans.org • security research and education 39
  • 40. Books
  • 42. Appendix: Overview of Security Mechanisms 42
  • 43. Security Mechanisms and Attacks • This talk is for system designers, not security specialists • Understanding mechanisms and attacks is hard • people who like this sort of thing are security engineers! • This section overviews key mechanisms and some of the more important types of attack • this isn’t a detailed explanation of any of this • make sure you consult a security expert when needed • this is useful to understand the basics and the 43
  • 44. Partial Summary of Security Mechanisms Authentication
 (“Who are you?) Usernames & passwords, 2FA, biometrics, certificates, … Authorisation (“What can you do?”) Roles, access control lists, OAuth, permissions, … Confidentiality
 (“Keeping stuff secret”) Encryption, access control lists, … Integrity
 (“Stop tampering”) Cryptographic hashing, checksums, … Non-Repudiation
 (“You did that”) Cryptographic signing, audit trails, … Auditing
 (“What happened, when?”) Secure record of who did what, when
  • 45. Cryptography and its Uses • Cryptography: the process of keeping information private (typically) using a cypher and a key • Two broad subfields: • Symmetric Key - the same key to encrypt and decrypt • Public Key - a pair of keys one to encrypt one to decrypt • Often used together for real applications • Applications of cryptography: privacy (encryption), integrity (signing) and non-repudiation (signing) • Difficulties with cryptography include designing 45
  • 46. Basic Symmetric Key Cryptography Alice Bob Encrypt Decrypt
  • 47. Basic Public Key Cryptography Alice Bob Bob’s public key Encrypt Bob’s
 private 
 key Decrypt Bob’s keypair
  • 48. Comparing Symmetric and Public Key 48 Symmetric Key Public Key Single shared key A keypair needs to be generated with public and private key Single key needs to be shared securely Private key is kept secret, public key can be freely shared Efficient computationally Really slow (~100s times slower) Classic attack is stealing keys Classic attack is forging public keys, so faking identity Big challenge is passing keys around Big challenge is chains of trust so you know keys (certs) are valid
  • 49. Example of Crypto in Practice: Key Exchange Client Server Client Hello
 (“Hello - here are the options I know about ….”) Server Hello
 (“OK - here are the options we’ll use ….”) Server Certificate
 (“Here is my certificate (public key) ….”) Client Key Exchange
 (“Here is a symmetric key” encrypted with server public key) Data Exchange
 (encrypted with symmetric key)
  • 50. Hashing and Signing Alice Bob Hashing private key keypair hash Signing Verification public key
  • 51. Summary of Common Attacks Social Engineering
 (Attack the people) Bluffing, bribery, coercion, … Network Attacks (Protocol exploits) SYN floods, DDoS, DNS attacks, … Application Attacks
 (Flaws and bugs) XSS, SQL injection, corrupted input (fuzz), DLL attacks, CGI/SSI attacks … Programming Attacks
 (Abuse of a language) Stack overflows, buffer overflows, known bugs in libraries, … Crypto Attacks
 (Algorithms or design) Known plain/cipher text, randomness, cert forgery, man in the middle, traffic analysis…