Microsoft releases XSSDetect: A Cross Site Scripting detection plug-in for Visual Studio

1 min read
Table of Contents

The “Ace” team inside of Microsoft has kindly released a plug-in for Visual Studio called XSSDetect. XSSDetect is a “static code analysis plug-in that will identify Cross-Site Scripting security flaws in any managed Web Application” (Microsoft).

XSSDetect analyzes .NET Intermediate Language (IL) read directly from the compiled binaries. It takes apart all assemblies, modules, classes and methods down to each instruction. It then identifies statements where untrusted user data enters the application and where dangerous methods are called. These form the two sets of statements (sources and sinks) between which XSSDetect then finds dataflow paths. This is the same algorithm that is employed when an application is code reviewed manually by an experienced security analyst (Some technical details on how XSSDetect does Dataflow Analysis).

Source

XSSDetect Public Beta now Available!

Download

XSS Detect Beta Code Analysis Tool

Blake Niemyjski

Thanks for reading! Feel free to check out more posts or browse by category, and reach out via the social links below.


More Posts

Comments