Skip to content

Instantly share code, notes, and snippets.

@nstarke
Last active December 5, 2015 17:39
Show Gist options
  • Save nstarke/7ee0c1d357ae55caf09b to your computer and use it in GitHub Desktop.
Save nstarke/7ee0c1d357ae55caf09b to your computer and use it in GitHub Desktop.
Egrep commands to find security vulnerabilities and perform security audits on CSharp code. Useful for penetration testers operating in a Microsoft / CSharp environment.
# Returns instances where anti xss measures are deployed
egrep -r --include "*.cs" -e "(AntiXssEncoder|Server\.HtmlEncode|Html.Encode)" .
# Returns possible command injection areas
egrep -r --include "*.cs" -e "(Process|Process\.Start)\(" .
# Returns possible xss scenarios (string concatention in HTML/XML)
egrep -r --include "*.cs" -e "<.*>\"\s*\+.*\+\s*\"<.*>" .
# Returns places where anti csrf measure are deployed
egrep -r --include "*.cs" -e "ValidateAntiForgeryToken" .
# Returns places where raw sql statements are executed
egrep -r --include "*.cs" -e "(ExecuteNonQuery|SqlCommand)\(" .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment