Skip to content

Latest commit

 

History

History
28 lines (28 loc) · 17.3 KB

File metadata and controls

28 lines (28 loc) · 17.3 KB

| 74 | RegexVal | VisaMasterCreditCard | CC-> 4111-1111-1111-1111 | X | ^(?:4[0-9]{3}(?:-[0-9]{4}){2}|5[1-5][0-9]{2}(?:-[0-9]{4}){2})$ | Visa or Master credit card number with dash/hyphens separators adhering Luhn algorithm | | 75 | RegexVal | VisaMasterCreditCard | IC-> 1111-1111-1111-1111 | OK | ^(?:4[0-9]{3}(?:-[0-9]{4}){2}|5[1-5][0-9]{2}(?:-[0-9]{4}){2})$ | Visa or Master credit card number with dash/hyphens separators adhering Luhn algorithm | | 76 | RegexVal | VisaMasterCreditCard | IC-> 1111-1111-1111 | OK | ^(?:4[0-9]{3}(?:-[0-9]{4}){2}|5[1-5][0-9]{2}(?:-[0-9]{4}){2})$ | Visa or Master credit card number with dash/hyphens separators adhering Luhn algorithm | | 77 | RegexVal | VisaMasterCreditCard | IC-> 4111111111111111 | OK | ^(?:4[0-9]{3}(?:-[0-9]{4}){2}|5[1-5][0-9]{2}(?:-[0-9]{4}){2})$ | Visa or Master credit card number with dash/hyphens separators adhering Luhn algorithm | | 96 | RegexVal | Username | CC-> gokhanercan | X | regex | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 97 | RegexVal | Username | CC-> gokhan123 | X | regex | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 98 | RegexVal | Username | CC-> gokhan_ercan | X | regex | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 99 | RegexVal | Username | IC-> gokhanercan234567890a | OK | regex | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 100 | RegexVal | Username | IC-> first@lastname.com | OK | regex | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 101 | RegexVal | Username | IC-> 1234 | OK | regex | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 102 | RegexVal | Username | IC-> ab | OK | regex | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 103 | RegexVal | Username | IC-> **** | OK | regex | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 104 | RegexVal | Username | IC-> gokhan-ercan | OK | regex | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 105 | RegexVal | Username | IC-> gokhan ercan | OK | regex | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 74 | RegexVal | VisaMasterCreditCard | CC-> 4111-1111-1111-1111 | X | regex | Visa or Master credit card number with dash/hyphens separators adhering Luhn algorithm | | 75 | RegexVal | VisaMasterCreditCard | IC-> 1111-1111-1111-1111 | OK | regex | Visa or Master credit card number with dash/hyphens separators adhering Luhn algorithm | | 76 | RegexVal | VisaMasterCreditCard | IC-> 1111-1111-1111 | OK | regex | Visa or Master credit card number with dash/hyphens separators adhering Luhn algorithm | | 77 | RegexVal | VisaMasterCreditCard | IC-> 4111111111111111 | OK | regex | Visa or Master credit card number with dash/hyphens separators adhering Luhn algorithm | | 96 | RegexVal | Username | CC-> gokhanercan | X | ^[a-zA-Z][a-zA-Z0-9_]{3,20}$ | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 97 | RegexVal | Username | CC-> gokhan123 | X | ^[a-zA-Z][a-zA-Z0-9_]{3,20}$ | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 98 | RegexVal | Username | CC-> gokhan_ercan | X | ^[a-zA-Z][a-zA-Z0-9_]{3,20}$ | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 99 | RegexVal | Username | IC-> gokhanercan234567890a | OK | ^[a-zA-Z][a-zA-Z0-9_]{3,20}$ | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 100 | RegexVal | Username | IC-> first@lastname.com | OK | ^[a-zA-Z][a-zA-Z0-9_]{3,20}$ | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 101 | RegexVal | Username | IC-> 1234 | OK | ^[a-zA-Z][a-zA-Z0-9_]{3,20}$ | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 102 | RegexVal | Username | IC-> ab | OK | ^[a-zA-Z][a-zA-Z0-9_]{3,20}$ | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 103 | RegexVal | Username | IC-> **** | OK | ^[a-zA-Z][a-zA-Z0-9_]{3,20}$ | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 104 | RegexVal | Username | IC-> gokhan-ercan | OK | ^[a-zA-Z][a-zA-Z0-9_]{3,20}$ | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length | | 105 | RegexVal | Username | IC-> gokhan ercan | OK | ^[a-zA-Z][a-zA-Z0-9_]{3,20}$ | Lowercased username without special characters but underscore char and numbers, between 3 and 20 characters length |