Kalpana Kalpana (Editor)

Software Development Security

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Security is part of software development process, is an ongoing process involving people and practices, and ensures application confidentiality, integrity, and availability. Secure software is the result of security aware software development processes where security is built in and thus software is developed with security in mind.[1]

Contents

Security is most effective if planned and managed throughout every stage of software development life cycle (SDLC), especially in critical applications or those that process sensitive information.

The solution to software development security is more than just the technology.

Software Development Challenges

As technology advances, application environments become more complex and application development security becomes more challenging. Applications, systems, and networks are constantly under various security attacks such as malicious code or denial of service. Some of the challenges from the application development security point of view include Viruses, Trojan horses, Logic bombs, Worms, Agents, and Applets.

Applications can contain security vulnerabilities that may be introduced by software engineers either intentionally or carelessly.

Software, environmental, and hardware controls are required although they cannot prevent problems created from poor programming practice. Using limit and sequence checks to validate users’ input will improve the quality of data. Even though programmers may follow best practices, an application can still fail due to unpredictable conditions and therefore should handle unexpected failures successfully by first logging all the information it can capture in preparation for auditing. As security increases, so does the relative cost and administrative overhead.

Applications are typically developed using high-level programming languages which in themselves can have security implications. The core activities essential to the software development process to produce secure applications and systems include: conceptual definition, functional requirements, control specification, design review, code review and walk-through, system test review, and maintenance and change management.

Building secure software is not only the responsibility of a software engineer but also the responsibility of the stakeholders which include: management, project managers, business analysts, quality assurance managers, technical architects, security specialists, application owners, and developers.

Basic Principles

There are a number of basic guiding principles to software security. Stakeholders’ knowledge of these and how they may be implemented in software is vital to software security. These include:

  • Protection from disclosure
  • Protection from alteration
  • Protection from destruction
  • Who is making the request
  • What rights and privileges does the requester have
  • Ability to build historical evidence
  • Management of configuration, sessions and errors/exceptions
  • Basic Practices

    The following lists some of the recommended web security practices that are more specific for software developers.

  • Sanitize inputs at the client side and server side
  • Encode request/response
  • User HTTPS for domain entries
  • Use only current encryption and hashing algorithms
  • Do not allow for directory listing
  • Do not store sensitive data inside cookies
  • Check the randomness of the session
  • Set secure and HttpOnly flags in cookies
  • Use TLS not SSL
  • Set strong password policy
  • Do not store sensitive information in a form’s hidden fields
  • Verify file upload functionality
  • Set secure response headers
  • Make sure third party libraries are secured
  • Hide web server information
  • Security Testing

    Common attributes of security testing include authentication, authorization, confidentiality, availability, integrity, non-repudiation, and resilience. Security testing is essential to ensure that the system prevents unauthorized users to access its resources and data. Some application data is sent over the internet which travels through a series of servers and network devices. This gives ample opportunities to unscrupulous hackers.

    Summary

    All secure systems implement security controls within the software, hardware, systems, and networks - each component or process has a layer of isolation to protect an organization's most valuable resource which is its data. There are various security controls that can be incorporated into an application's development process to ensure security and prevent unauthorized access.

    References

    Software Development Security Wikipedia