Model\Payload::countXSS PHP Method

countXSS() public static method

Returns count of all Payloads that are XSS Related
public static countXSS ( ) : mixed
return mixed
    public static function countXSS()
    {
        $payloads = new self();
        return $payloads->count(array('pType = ?', 'XSS'));
    }