What is Threat Analysis and Modeling?

OK.  I'll revise what I said in an earlier post about this tool.  You shouldn't change your vocabulary to Secure Development Lifecycle--but you definitely need to add it to your development practices. Security should start at the envisioning phase and proceed all the way to deployment.  How many times has an application been created where the deployment had to be insecure because of the way the developers put it together?  As a consultant, I've seen developers use “SA“ for the SQL connection, just because it was easier.  I worked for a company that purchased a software package for $30,000 that required the “SA” password to be something specific--when we saw that it was because that password was coded 138 times in the app we knew why--and asked for our money back.

Face it, developers are sloppy when they consistently develop with “God-mode“ privileges.  I know “least-privilege“ is hard to work with in development environments sometimes, but that does mean you can get sloppy.  Do I use least privilege--depends on what the client gives me--it often depends on what they are already locked into because they do everything as “Administrator.“  It's no wonder XSS and SQL Injection are such critical problems when the amount to “God-like“ access.

Check out this video for a walkthrough of the new MS Tool for threat modeling.  Keep in mind that the threat analysis tool that Microsoft has created is technology agnostic. If you wanted to create rule-sets for Java applications--you can.  Additionally, a community effort is promote to creating rule files and relevancy mapping to the process.

This article is part of the GWB Archives. Original Author: Brian Sherwin

New on Geeks with Blogs

  • We Won The One Award I Actually Care About

    Full Scale made the Inc. 5000 for the fifth year straight, the 12th listing across my three companies. Here is why the one award you cannot buy is worth stopping for.

  • Your Customers Build the Features Now

    I let a tool I liked sit dead for a year rather than build the features I wanted. An MCP server meant I never had to, and your customers can do the same to your product.

  • Get the Size of a Directory in Linux the Easy Way

    du -sh for the quick answer, ncdu for the cleanup, df for the disk itself: every command for checking directory size in Linux, plus why du and df never agree.

  • Vim Search and Replace: The Ultimate Guide

    One :%s command replaces every match in a file before a find dialog would even open. The Vim substitute patterns worth the muscle memory: flags, ranges, capture groups, and multi-file edits.