Click or drag to resize

AttackUsages Enumeration

Where will this attack be used

Namespace:  MSL.Core.Process.Patterns
Assembly:  MSL.Core (in MSL.Core.dll) Version: 5.4.2.25632
Members
  Member nameValueDescription
None0 Will not attack to anything.
QueryPost4 Use for attacking GET / POST parameters.
HeaderValue8 Use for attacking HTTP Header values. i.e. "Referrer: {attack}"
FullUrl16 Use for attacking Full Urls i.e. "example.com/{attack}"
FullQueryString32 Use for attacking Full QueryStrings i.e. "example.com/?{attack}"
CookieValue64 Use for attacking Cookie Values i.e. "Cookie: id={attack}"
ParameterName128 Use for attacking GET/POST Parameter Name i.e. "example.com/?{attack}=3"
HeaderName256 Use for attacking Header Name i.e. "{attack}: 3"
CookieName512 Use for attacking Cookie Name i.e. "Cookie: {attack}=3"
UrlRewrite1024 Use for attacking Url Rewrite Parameters i.e. "/id/{attack}/" or "/{attack}/12/"
Json2048 Use for attacking to JSON values i.e. "{ 'id': '{attack}' }"
Xml4096 Use for attacking to XML values i.e. "<id>{attack}</id>"
SoapXml8192 Use for attacking to SOAP Web Service XML values i.e. "<id>{attack}</id>"
Gwt16384 Use for attacking to GWT-RPC requests.
FullBodyXml32768 Attacking the full body XML.
FullBodyJson65536 Attacking the full body JSON.
UrlEncodable1076 Shorthand value for enum values which are URL encodable.
All131068 All attack usages.
See Also