Coder Social home page Coder Social logo

stunum / awesome-appsec Goto Github PK

View Code? Open in Web Editor NEW

This project forked from paragonie/awesome-appsec

0.0 1.0 0.0 145 KB

A curated list of resources for learning about application security

Home Page: https://paragonie.com/projects

License: MIT License

PHP 100.00%

awesome-appsec's Introduction

Awesome AppSec Awesome

A curated list of resources for learning about application security. Contains books, websites, blog posts, and self-assessment quizzes.

Maintained by Paragon Initiative Enterprises with contributions from the application security and developer communities. We also have other community projects which might be useful for tomorrow's application security experts.

If you are an absolute beginner to the topic of software security, you may benefit from reading A Gentle Introduction to Application Security.

Contributing

Please refer to the contributing guide for details.

Application Security Learning Resources

General

Articles

Released: February 25, 2014

Advice on cryptographically secure pseudo-random number generators.

Released: August 6, 2014

A post on Crackstation, a project by Defuse Security

Released: May 3, 2014

Mentions many ways to make /dev/urandom fail on Linux/BSD.

Released: June 21, 2015

Running a business requires being cost-conscious and minimizing unnecessary spending. The benefits of ensuring in the security of your application are invisible to most companies, so often times they neglect to invest in secure software development as a cost-saving measure. What these companies don't realize is the potential cost (both financial and to brand reputation) a preventable data compromise can incur.

The average data breach costs millions of dollars in damage.

Investing more time and personnel to develop secure software is, for most companies, worth it to minimize this unnecessary risk to their bottom line.

Released: March 25, 2015

A must-read for anyone looking to build their own cryptography features.

Books

Released: September 27, 2011

Great introduction to Web Application Security; though slightly dated.

Released: March 15, 2010

Develops a sense of professional paranoia while presenting crypto design techniques.

Released: May 3, 2009

Released: November 30, 2006

Released: August 30, 1996

Released: April 15, 2005

Released: May 1, 2008

Released: June 17, 2007

Released: March 3, 2009

Released: August 22, 2008

Released: June 25, 1998

Released: December 29, 2004

Released: December 13, 1989

Released: August 3, 2009

Released: March 1, 2015

Released: April 14, 2008

Released: August 1, 2014

Classes

A vulnerability research and exploit development class by Owen Redwood of Florida State University.

Be sure to check out the lectures!

Developed from the materials of NYU Poly's old Penetration Testing and Vulnerability Analysis course, Hack Night is a sobering introduction to offensive security. A lot of complex technical content is covered very quickly as students are introduced to a wide variety of complex and immersive topics over thirteen weeks.

Websites

Learn about application security by attempting to hack this website.

Where hackers and security experts come to train.

Self-assessment quiz for web application security

Secure passwords in several languages/frameworks.

A list of security news sources.

Video courses on low-level x86 programming, hacking, and forensics.

Capture The Flag - Learn Assembly and Embedded Device Security

A series of programming exercises for teaching oneself cryptography by Matasano Security. The introduction by Maciej Ceglowski explains it well.

PentesterLab provides free Hands-On exercises and a bootcamp to get started.

An intentionally insecure Javascript Web Application.

How to go on the offence before online attackers do.

Blogs

Showcasing bad cryptography

The blog of NCC Group, formerly Matasano, iSEC Partners, and NGS Secure.

Learn about security and performance.

Wiki pages

The top ten most common and critical security vulnerabilities found in web applications.

Tools

The infamous suite of SSL and TLS tools.

Quickly and easily assess the security of your HTTP response headers.

A free CSP and HPKP reporting service.

Android

Books and ebooks

Released: February 24, 2015

A community-maintained Wiki detailing secure coding standards for Android development.

C

Books and ebooks

Released: May 24, 2006

A community-maintained Wiki detailing secure coding standards for C programming.

Released: September 28, 2016

Provides guidelines for improving software security through secure coding. Covers common programming languages and libraries, and focuses on concrete recommendations.

C++

Books and ebooks

Released: July 18, 2006

A community-maintained Wiki detailing secure coding standards for C++ programming.

C Sharp

Books and ebooks

Released: July 14, 2015

An introduction to developing secure applications targeting version 4.5 of the .NET Framework, specifically covering cryptography and security engineering topics.

Java

Books and ebooks

Released: January 12, 2007

A community-maintained Wiki detailing secure coding standards for Java programming.

Released: April 2, 2014

Secure Java programming guidelines straight from Oracle.

Node.js

Articles

Released: October 13, 2015

Covers a lot of useful information for developing secure Node.js applications.

Training

Learn from the team that spearheaded the Node Security Project

PHP

Articles

Released: November 28, 2014

A gentle introduction to timing attacks in PHP applications

Released: April 21, 2015

Discusses password policies, password storage, "remember me" cookies, and account recovery.

Released: April 22, 2013

Padriac Brady's advice on building software that isn't vulnerable to XSS

Released: November 23, 2011

Though this article is a few years old, much of its advice is still relevant as we veer around the corner towards PHP 7.

Released: June 16, 2014

@timoh6 explains implementing data encryption in PHP

Released: May 26, 2014

TL;DR - don't escape, use prepared statements instead!

Released: August 7, 2015

A human-readable overview of commonly misused cryptography terms and fundamental concepts, with example code in PHP.

If you're confused about cryptography terms, start here.

Released: August 2, 2015

Discusses the importance of end-to-end network-layer encryption (HTTPS) as well as secure encryption for data at rest, then introduces the specific cryptography tools that developers should use for specific use cases, whether they use libsodium, Defuse Security's secure PHP encryption library, or OpenSSL.

Books and ebooks

Securing PHP: Core Concepts acts as a guide to some of the most common security terms and provides some examples of them in every day PHP.

You shouldn't need a Ph.D in Applied Cryptography to build a secure web application. Enter libsodium, which allows developers to develop fast, secure, and reliable applications without needing to know what a stream cipher even is.

Useful libraries

Symmetric-key encryption library for PHP applications. (Recommended over rolling your own!)

If you're using PHP 5.3.7+ or 5.4, use this to hash passwords

Useful for generating random strings or numbers

A secure OAuth2 server implementation

PHP 7 offers a new set of CSPRNG functions: random_bytes() and random_int(). This is a community effort to expose the same API in PHP 5 projects (forward compatibility layer). Permissively MIT licensed.

A secure authentication and authorization library that implements Role-Based Access Controls and Paragon Initiative Enterprises' recommendaitons for secure "remember me" checkboxes.

A portable public domain password hashing framework for use in PHP applications.

Websites

websec.io is dedicated to educating developers about security with topics relating to general security fundamentals, emerging technologies and PHP-specific information

Blogs

The blog of our technology and security consulting firm based in Orlando, FL

A blog about PHP, Security, Performance and general web application development.

Pádraic Brady is a Zend Framework security expert

Mailing lists

A weekly newsletter about PHP, security, and the community.

Perl

Books and ebooks

Released: January 10, 2011

A community-maintained Wiki detailing secure coding standards for Perl programming.

Python

Books and ebooks

Lists standard library features that should be avoided, and references sections of other chapters that are Python-specific.

Violent Python shows you how to move from a theoretical understanding of offensive computing concepts to a practical implementation.

Websites

Released: June 21, 2014

A wiki maintained by the OWASP Python Security project.

Ruby

Books and ebooks

Released: March 10, 2014

A guide to secure Ruby development by the Fedora Security Team. Also available on Github.

awesome-appsec's People

Contributors

paragonie-scott avatar scotthelme avatar binarymist avatar defuse avatar coldheat avatar radarhere avatar cbrowne avatar davisonio avatar david-a-wheeler avatar kontez avatar raajheshkannaa avatar ingben avatar

Watchers

stunum avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.