Show / Hide Table of Contents

Class Xss

Information reported for an XSS.

Inheritance
System.Object
Xss
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.WebSecurityScanner.v1.Data
Assembly: Google.Apis.WebSecurityScanner.v1.dll
Syntax
public class Xss : IDirectResponseSchema

Properties

AttackVector

The attack vector of the payload triggering this XSS.

Declaration
[JsonProperty("attackVector")]
public virtual string AttackVector { get; set; }
Property Value
Type Description
System.String

ErrorMessage

An error message generated by a javascript breakage.

Declaration
[JsonProperty("errorMessage")]
public virtual string ErrorMessage { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

StackTraces

Stack traces leading to the point where the XSS occurred.

Declaration
[JsonProperty("stackTraces")]
public virtual IList<string> StackTraces { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

StoredXssSeedingUrl

The reproduction url for the seeding POST request of a Stored XSS.

Declaration
[JsonProperty("storedXssSeedingUrl")]
public virtual string StoredXssSeedingUrl { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top