Reduce Security Risk in Your Development

Slides:



Advertisements
Similar presentations
Approaches to meeting the PCI Vulnerability Management and Penetration Testing Requirements Clay Keller.
Advertisements

OWASP Secure Coding Practices Quick Reference Guide
Chapter 17: WEB COMPONENTS
Reduce Security Risk in Your Development
Copyright © The OWASP Foundation Permission is granted to copy, distribute and/or modify this document under the terms of the OWASP License. The OWASP.
Principles of Computer Security: CompTIA Security + ® and Beyond, Third Edition © 2012 Principles of Computer Security: CompTIA Security+ ® and Beyond,
Cross Platform Single Sign On using client certificates Emmanuel Ormancey, Alberto Pace Internet Services group CERN, Information Technology department.
Access Control Methodologies
Environmental Council of States Network Authentication and Authorization Services The Shared Security Component February 28, 2005.
DESIGNING A PUBLIC KEY INFRASTRUCTURE
Chapter 12 Network Security.
It’s always better live. MSDN Events Security Best Practices Part 2 of 2 Reducing Vulnerabilities using Visual Studio 2008.
Information Networking Security and Assurance Lab National Chung Cheng University The Ten Most Critical Web Application Security Vulnerabilities Ryan J.W.
Information Networking Security and Assurance Lab National Chung Cheng University 1 Top Vulnerabilities in Web Applications (I) Unvalidated Input:  Information.
Creating a Secured and Trusted Information Sphere in Different Markets Giuseppe Contino.
Testing - an Overview September 10, What is it, Why do it? Testing is a set of activities aimed at validating that an attribute or capability.
Brian Bradley.  Data is any type of stored digital information.  Security is about the protection of assets.  Prevention: measures taken to protect.
Network security policy: best practices
Chapter 6: Hostile Code Guide to Computer Network Security.
Designing Security In Web Applications Andrew Tomkowiak 10/8/2013 UW-Platteville Software Engineering Department
OWASP Mobile Top 10 Why They Matter and What We Can Do
D ATABASE S ECURITY Proposed by Abdulrahman Aldekhelallah University of Scranton – CS521 Spring2015.
Martin Kruliš by Martin Kruliš (v1.0)1.
Database Security and Auditing: Protecting Data Integrity and Accessibility Chapter 3 Administration of Users.
Introduction to RUP Spring Sharif Univ. of Tech.2 Outlines What is RUP? RUP Phases –Inception –Elaboration –Construction –Transition.
Chapter 2 The process Process, Methods, and Tools
-Nikhil Bhatia 28 th October What is RUP? Central Elements of RUP Project Lifecycle Phases Six Engineering Disciplines Three Supporting Disciplines.
Security Baseline. Definition A preliminary assessment of a newly implemented system Serves as a starting point to measure changes in configurations and.
A Security Review Process for Existing Software Applications
JavaScript, Fourth Edition
1 Debugging and Testing Overview Defensive Programming The goal is to prevent failures Debugging The goal is to find cause of failures and fix it Testing.
Security Planning and Administrative Delegation Lesson 6.
Microsoft Security Development Lifecycle
Feedback #2 (under assignments) Lecture Code:
Copyright © The OWASP Foundation Permission is granted to copy, distribute and/or modify this document under the terms of the OWASP License. The OWASP.
10 Important Criteria for Change Management Success Karen Korb TELUS Health Solutions November 23, 2009.
SEC835 Runtime authentication Secure session management Secure use of cryptomaterials.
Information Security What is Information Security?
® IBM Software Group © 2007 IBM Corporation Best Practices for Session Management
Linux Security. Authors:- Advanced Linux Programming by Mark Mitchell, Jeffrey Oldham, and Alex Samuel, of CodeSourcery LLC published by New Riders Publishing.
Copyright © The OWASP Foundation Permission is granted to copy, distribute and/or modify this document under the terms of the OWASP License. The OWASP.
Security Planning and Administrative Delegation Lesson 6.
Security Development Life Cycle Baking Security into Development September 2010.
Copyright © The OWASP Foundation Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation.
Chapter 2: Testing in Software Life Cycle MNN1063 System Testing and Evaluation.
Database Security Cmpe 226 Fall 2015 By Akanksha Jain Jerry Mengyuan Zheng.
Web2.0 Secure Development Practice Bruce Xia
Copyright © The OWASP Foundation Permission is granted to copy, distribute and/or modify this document under the terms of the OWASP License. The OWASP.
Copyright © The OWASP Foundation Permission is granted to copy, distribute and/or modify this document under the terms of the OWASP License. The OWASP.
Design Principles and Common Security Related Programming Problems
CIT 380: Securing Computer SystemsSlide #1 CIT 380: Securing Computer Systems Web Security.
By Ramesh Mannava.  Overview  Introduction  10 secure software engineering topics  Agile development with security development activities  Conclusion.
ASP.NET 2.0 Security Alex Mackman CM Group Ltd
PHP: Further Skills 02 By Trevor Adams. Topics covered Persistence What is it? Why do we need it? Basic Persistence Hidden form fields Query strings Cookies.
INFORMATION ASSURANCE POLICY. Information Assurance Information operations that protect and defend information and information systems by ensuring their.
Copyright © The OWASP Foundation Permission is granted to copy, distribute and/or modify this document under the terms of the OWASP License. The OWASP.
SQL Server Security & Intrusion Prevention
Web Application Vulnerabilities, Detection Mechanisms, and Defenses
Data and database administration
A Security Review Process for Existing Software Applications
OWASP Secure Coding Practices Quick Reference Guide
PHP: Security issues FdSc Module 109 Server side scripting and
An Introduction to Web Application Security
Introducing ISTQB Agile Foundation Extending the ISTQB Program’s Support Further Presented by Rex Black, CTAL Copyright © 2014 ASTQB 1.
Baisc Of Software Testing
Chapter 29: Program Security
WWW安全 國立暨南國際大學 資訊管理學系 陳彥錚.
Presentation transcript:

Reduce Security Risk in Your Development Part III: Secure Code Review Trent R. Hein, CCIE, CISSP, ISSMP, ISSAP, CSSA #SecureDev

What We’ll Cover Today Recap of Secure Agile Development key topics How does secure code review fit in an Agile workflow? Code review documentation Tips & Tricks #SecureDev

How is Secure Agile Development Different? Traditional / Waterfall Agile Security Timing Distinct security-focused project phases, often at beginning and end of project. Security skills brought in from outside project, often disconnected from dev/test resources. Specific security testing phase, often at end of project. Every iteration considers security, but is not limited by it. Every team member is responsible for security. Security skills are embedded in the team. Hybrid security and functionality testing, throughout project. Security Resources Security Validation

Secure Agile Development Guiding Principles Product value improves with security. Security is integral to the product, not an afterthought. Outside security resources (standards, threats, experts) provide background, not a cage.

Our Secure Code Review Motto It’s not done until it’s provably secure.

The Last Puzzle Piece: Code Review

Why do we perform code review? Detect potential issues early More effective than post-completion vulnerability testing One layer of defense-in-depth “Inside the barn” viewpoint

What code review is and isn’t A great opportunity for everyone to learn One component of a complete secure lifecycle strategy Difficult to do consistently and well Essential to modern-day development teams Code review isn’t.. Foolproof An opportunity to discredit your co-workers Personal A checkbox

Secure code review high-level steps Review Agile Threat Map for the product Review the code for the security tests relevant to the user story/task Ensure the code for the tests verify both the desired functionality, and the lack of undesired functionality (from a security standpoint) Execute test code against a known noop/broken module Execute test code against “good” module Review code repo diffs for possible areas of weakness

Why write/execute tests first? Provable security Builds a lifetime of security (and value!) into the product Ensures future changes don’t negate security controls Removes significant subjectivity from secure review process

Reviewers: Pair programming environment In pair programming environment, the pair members can review each other’s code Best practice is one writes the tests, one writes the module code Pairs should rotate frequently (not just for secure code review reasons!)

Reviewers: Non-Pair Programmers In non-paired programming, another qualified coder on the team should act as the reviewer This is a dedicated coder, not a dedicated security person If possible, qualified coder should be selected randomly For extremely small teams, consider trading review services with an external team

Tool-assisted review Lots of great tools out there! Keep in mind that automated tools catch only a small percentage of security vulnerabilities Even with a tool, you should be performing test-driven development, testing, and review by qualified coders

Code review pitfalls Don’t perform secure code review outside of iterations As tempting as this may be, this forms a habit that security can be deferred It’s not “done” until it’s secure Make sure reviewers are always “fresh” Frequent rotation of programming pairs Randomized selection of non-paired reviewers Make sure reviewers understand what they are looking at If it’s just a checkbox, you’re missing the point Perform reviews in context Review Agile Threat Map before each review session Don’t code/excuse security workarounds If another layer/module is the problem, schedule a defect to fix it rather than accept “yet another hack”

Documenting Code Review Every code review step/result should be visible to the team Transparency is key Code review documentation is important for training and retrospectives No documentation of review? Wasn’t reviewed.

Managing code review in Rally VIDEO HERE

But.. But.. How do we know what to look for when performing code review??

Issues to watch for.. Input Validation Conduct all data validation on a trusted system (e.g., The server) There should be a centralized input validation routine for the application Validate all client provided data before processing, including all parameters, URLs and HTTP header content (e.g. Cookie names and values). Be sure to include automated post backs from JavaScript, Flash or other embedded code Validate data type, range, and length Validate all input against a "white" list of allowed characters, whenever possible

Issues to watch for.. Authentication Require authentication for all pages/resources, except those specifically intended to be public All authentication controls must be enforced on a trusted system (e.g., The server) Establish and utilize standard, tested, authentication services whenever possible All administrative and account management functions must be at least as secure as the primary authentication mechanism If your application manages a credential store, it should ensure that only cryptographically strong one-way salted hashes of passwords are stored and that the table/file that stores the passwords and keys is write-able only by the application. (Do not use the MD5 algorithm if it can be avoided)

Issues to watch for.. Session Mgmt Use the server or framework’s session management controls. The application should only recognize these session identifiers as valid Session identifier creation must always be done on a trusted system (e.g., The server) Session management controls should use well vetted algorithms that ensure sufficiently random session identifiers Logout functionality should fully terminate the associated session or connection Disallow persistent logins and enforce periodic session terminations, even when the session is active. Especially for applications supporting rich network connections or connecting to critical systems. Termination times should support business requirements and the user should receive sufficient notification to mitigate negative impacts.

Issues to watch for.. Data Protection Implement least privilege, restrict users to only the functionality, data and system information that is required to perform their tasks. Protect all cached or temporary copies of sensitive data stored on the server from unauthorized access and purge those temporary working files a soon as they are no longer required. Encrypt highly sensitive stored information, like authentication verification data, even on the server side. Always use well vetted algorithms. Protect server-side source-code from being downloaded by a user. Do not store passwords, connection strings or other sensitive information in clear text or in any non-cryptographically secure manner on the client side.

Issues to watch for.. General Use tested and approved managed code rather than creating new unmanaged code for common tasks. Utilize task specific built-in APIs to conduct operating system tasks. Do not allow the application to issue commands directly to the Operating System, especially through the use of application initiated command shells. Protect shared variables and resources from inappropriate concurrent access. Explicitly initialize all your variables and other data stores, either during declaration or just before the first usage. Avoid calculation errors by understanding your programming language's underlying representation and how it interacts with numeric calculation.

Issues to watch for.. See these, and many more, great ideas of issues to watch for in the OWASP Secure Coding Practices Quick Reference Guide available at https://www.owasp.org/index.php/OWASP_Secure_Coding_Practices_-_Quick_Reference_Guide

Quick recap Secure code review should be grounded in: 1. Agile Threat Map 2. Test Driven Development Code reviewers always need to be FRESH and CAPABLE Results of code review should always be documented, even if “no issues” Need ideas what to look for? Use available resources such as OWASP for ideas.

Contact me: trent@appliedtrust.com Twitter: @trenthein Questions? Contact me: trent@appliedtrust.com Twitter: @trenthein #SecureDev

Sign-up: www.rallydev.com/agilewebinars

Go Agile. Go Rally. #SecureDev