20
1 Security in Application Security in Application & SDLC & SDLC Barkan Asaf Barkan Asaf Nov, 2006 Nov, 2006

1 Security in Application & SDLC Barkan Asaf Nov, 2006

  • View
    228

  • Download
    1

Embed Size (px)

Citation preview

Page 1: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

11

Security in ApplicationSecurity in Application& SDLC& SDLCBarkan AsafBarkan Asaf

Nov, 2006Nov, 2006

Page 2: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

22Confidential & Proprietary

Firew

all

Hardened OS

Web Server

App Server

Firew

all

Application

ApplicationClient

Net

wo

rk L

ayer

Firew

all

External Network Internal Segment

Proxy

Load Balancer

Databases

DMZ Internal Segment

Ap

pli

cati

on

Lay

er

Security PerimeterSecurity Perimeter

Page 3: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

33Confidential & Proprietary

Security RegulationsSecurity Regulations& Standards& Standards

Page 4: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

44Confidential & Proprietary

Vulnerability Stack & Security scannersVulnerability Stack & Security scanners

Page 5: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

55Confidential & Proprietary

Technical vs. LogicalTechnical vs. LogicalVulnerabilitiesVulnerabilities

Logical FlawsSecurity vulnerabilities that arise with some contextual logic in application.Example:

• Multi step procedure that can be bypassed with direct invocation

Technical VulnerabilitySecurity vulnerabilities that can be discovered without any contextual logicExamples:

• HTML Injection• SQL Injection

Technical vs. Logical Vulnerabilities at WhiteHat

Web Application scanners limitations/challenges• Session state management - • Script parsing• Logical flows• Custom URLs• Privilege escalation• False negative/positive

Page 6: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

66Confidential & Proprietary

Product Requirements

Functional Design

Technical Design

Implementation Testing Beta

Release Cycle

SecurityRequirements

Document

Architectural Risk Analysis

Security Tollgates

SecurityTesting

Secure Coding

Security Tollgates Security Tollgates inin Software Development Life Cycle Software Development Life Cycle (SDLC)(SDLC)

Page 7: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

77Confidential & Proprietary

Unvalidated Input Unvalidated Input (A1)(A1)

DescriptionHTTP inputs into the application are not validated. Include URL, Headers, query strings, cookies, form fields, hidden fields. Leads to almost all web application vulnerabilities.

ThreatsClient-side Attacks (3), Command Execution (4), Denial of Service (6.2)

Counter measuresUse Application level validation that includes:

• Strong data type• Length• Logical Boundaries• Legal characters• Correct Syntax

Demonstration

Page 8: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

88Confidential & Proprietary

Broken Access Control Broken Access Control (A2)(A2)

DescriptionAuthorization boundaries in code are broken or not properly enforced.

ThreatsCredential/Session prediction (2.1), Insufficient Authorization (2.3)Insufficient process validation (6.4)

Counter measures

• Robust authorization management

• Do not trust client side tokens for authorization

• Authorize all requests except anonymous objects

• Block resource enumeration and Forced Browsing in application

Page 9: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

99Confidential & Proprietary

Broken Authentication & Session Management Broken Authentication & Session Management (A3)(A3)

DescriptionA weak implementation of Authentication framework or unsecure Session management.

ThreatsBrute Force (1.1), Insufficient Authentication (1.2), Insufficient session expiration (2.3), Session fixation session (2.4), Session prediction (2.1)

Demonstration

Counter measures• Use Random GUID as session indication• Assign session id only after authentication• Assign new session id when change from HTTP<->HTTPS • Correlate session indication with valid session object in application• Use standard and robust Password policy enforcement• Use standard and robust Lockout policy enforcement• Do not trust client to send session state (session GUID only)

Page 10: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

1010Confidential & Proprietary

Cross Site Scripting Cross Site Scripting (A4)(A4)

DescriptionAttacker is using a vulnerable web application into sending unintentionally a user (Victim) a malicious active script that will be executed on its browser and breach his security framework.

ThreatsClient-side attacks (3)

Counter measures• Use Application level validation that will either negatively or positively validate all inputs coming from untrusted clients.

• Use HTML encoding centrally in presentation layer

DemonstrationDemonstration

Page 11: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

1111Confidential & Proprietary

Buffer Overflows Buffer Overflows (A5)(A5)

DescriptionThe attacker sends data to a program, which it stores in an undersized stack buffer. The result is that a either corrupted or malicious code is executed.

Buffer overflow vulnerabilities typically occur in code that: • Relies on external data to control its behavior• Depends upon external properties of the data • Is so complex that a programmer cannot accurately predict its behavior

ThreatsBuffer overflow (4.1)

Counter measures• Use interpreted languages as Java/Python • Validate your input boundaries and size before processing

Code Examplechar buf[BUFSIZE];gets(buf);

Page 12: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

1212Confidential & Proprietary

Injection Flaws Injection Flaws (A6)(A6)

DescriptionAttacker is using Injection flaws to relay malicious code through a web application to another System. The code is executed on behalf of the web application.

ThreatsCommand execution (4), Denial of Service (6.2)

Counter measures• Use Application level validation that will either negatively or positively validate all inputs coming from untrusted clients.• Use prepared statements and set each parameter before use in query

Example

Page 13: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

1313Confidential & Proprietary

Improper Error Handling Improper Error Handling (A7)(A7)

DescriptionImproper handling of errors in application can result with the application sending the attacker Error messages that reveal implementation/architecture/components information he should not know.

ThreatsInformation leakage (5.2)

Counter measures• Catch all exceptions in server side – never throw exception to client• Handle all errors in back end• Do not send the user excessive information that is not required as Platform architecture ports in use , components in use and more.

Example• throw SQL exceptions back to client• throw stack trace on Web service exceptions• throw Application server stack trace back to client

Page 14: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

1414Confidential & Proprietary

Insecure Storage Insecure Storage (A8)(A8)DescriptionImproper usage/implementation of cryptographic in code application.

ThreatsInformation leakage (5.2), Insufficient Authentication (1.2)

Counter measures• Use well known and proven cryptographic • Choose a suited algorithm according to security/performance trade-off • Make secrets in memory not serialized• Make keys replaceable and configurable by size if possible• Encrypt all private/confidential credentials

ExamplesSaving private key of SSL server on File system as clear textSaving DB connection object as clear text on file systemFailure to encrypt critical data Poor sources of randomness Poor choice of algorithm Attempting to invent a new encryption algorithm Failure to include support for encryption key changes

Page 15: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

1515Confidential & Proprietary

Denial Of Service Denial Of Service (A9)(A9)

DescriptionAll actions or procedures in application that will make it unusable. Network level attacks are not Included in here.

ThreatsDenial of Service (6.2)

Counter measures• Use well known and proven cryptographic • Choose a suited algorithm according to security/performance trade-off • Make secrets in memory not serialized• Make keys replaceable and configurable by size if possible• Encrypt all private/confidential credentials

Example• Resource starvation when all concurrent users are used by zombies• HTML persistence injection causes DoS to the application main page

Page 16: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

1616Confidential & Proprietary

Insecure Configuration Management Insecure Configuration Management (A10)(A10)

DescriptionInsecure usage of servers/components configuration. Mostly out of the box settings are not secure.

ThreatsInsufficient Authentication (1.2), Insufficient authorization (2.2), SSI Injection (4.6), Directory indexing (5.1), Information leakage (5.2), Path traversal (5.3), Predictable Recourse Location (5.4), Abuse of Functionality (6.1)

Counter measures• make hardening procedure to infrastructure before shipping

Examples • Unpatched security flaws in the server software • Web server Misconfigurations (directory listing/traversal enabled) • Unnecessary default, backup, or sample files• Improper file and directory permissions • Unnecessary services enabled• Default accounts with their default passwords • Administrative or debugging functions that are enabled or accessible • Overly informative error messages (more details in the error handling section) • Unsecre usage of certificates

Page 17: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

1717Confidential & Proprietary

• No Such thing as Security in client side

• Validate all inputs from untrusted clients *

• Use standard security solutions/configuration

• Make sure the client gets only the responses he needs *

• Loose the naïve approach regard client’s behavior *

• Remove legacy/unnecessary resources from production app

SummarySummary

Page 18: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

1818Confidential & Proprietary

The script, sent by the attacked client to the server was then received again by the client, now with the proper security context, and was able to send the cookie to the attacker

Cross Site Scripting Cross Site Scripting (XSS)(XSS)

Page 19: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

1919Confidential & Proprietary

SQL Injection – Code exampleSQL Injection – Code exampleBy passing Login logic using SQL Injection flawSQLQuery = "SELECT Username FROM Users WHERE Username = ‘" & strUsername & "‘ AND Password = ‘" & strPassword & "‘" strAuthCheck = GetQueryResult(SQLQuery) If strAuthCheck = "" boolAuthenticated = FalseElse boolAuthenticated = True End If

Explanation:

If Username=‘ or 1=1 this will be evaluated to true always and the SQLQuery will be resolved to true Returning the first recordin Users table and bypassing the login logic

Using UNION to concatenate data to flawed query SELECT FirstName, LastName, Title FROM Employees WHERE City = ‘‘ UNION ALL SELECT OtherField FROM OtherTable WHERE ‘‘=‘‘

Explanation:City = ‘’ will return null from DB and the only record sets returnedFrom DB will be from the new query

Page 20: 1 Security in Application & SDLC Barkan Asaf Nov, 2006

2020Confidential & Proprietary

Validation layers Validation layers (Secure in depth)(Secure in depth)

Persistence

Business logic

Presentation