Skip to content

Instantly share code, notes, and snippets.

@bhdryrdm
Created June 3, 2018 15:01
Show Gist options
  • Save bhdryrdm/f5cce3d84d6251ca773356a59f1d72ae to your computer and use it in GitHub Desktop.
Save bhdryrdm/f5cce3d84d6251ca773356a59f1d72ae to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DevF_LABS.RequestResponse.XSS.StoredXSS
{
public class SXSS_S2_StealRequest
{
[Required(ErrorMessage = "Yorum zorunlu alandır!")]
[StringLength(500, ErrorMessage = "Yorumunuz 500 karakterden fazla olamaz!")]
public string SXSS_S2_StealRequest_Cookie { get; set; }
public string SessionID { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment