代码拉取完成,页面将自动刷新
{
"main":{
"rules":[
{
"name":"Visa Card Scanner (4x4 digits)",
"description":"\"Scan for Visa Card numbers formatted as 4 groups of 4 contiguous digits. Matches are validated via the Luhn algorithm. \n\nExamples of matching formats:\n* 4111 1111 1111 1111\n* 4111-1111-1111-1111\n* 4111.1111.1111.1111\n* 4111,1111,1111,1111\"",
"pattern":"\\b4\\d{3}(?:(?:,\\d{4}){3}|(?:\\s\\d{4}){3}|(?:\\.\\d{4}){3}|(?:-\\d{4}){3})\\b",
"tags":[
"sensitive_data:visa_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"Visa Card Scanner (2x8 digits)",
"description":"\"Scan for Visa Card numbers formatted as 2 groups of 8 contiguous digits. Matches are validated via the Luhn algorithm. \n\nExamples of matching formats:\n* 41111111 11111111\n* 41111111-11111111\n* 41111111.11111111\n* 41111111,11111111\"",
"pattern":"\\b4\\d{3}(?:(?:\\d{4}(?:(?:,\\d{8})|(?:-\\d{8})|(?:\\s\\d{8})|(?:\\.\\d{8}))))\\b",
"tags":[
"sensitive_data:visa_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"Visa Card Scanner (1x16 & 1x19 digits)",
"description":"\"Scan for Visa Card numbers formatted as 16 or 19 contiguous digits. Matches are validated via the Luhn algorithm. \n\nExamples of matching formats:\n* 4111111111111111\n* 4012888888881881\"",
"pattern":"\\b4\\d{15}(?:\\d{3})?\\b",
"tags":[
"sensitive_data:visa_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"MasterCard Scanner (4x4 digits)",
"description":"\"Scan for MasterCard numbers formatted as 4 groups of 4 contiguous digits. Matches are validated via the Luhn algorithm. \n\nExamples of matching formats:\n* 5105 1051 0510 5100\n* 5105-1051-0510-5100\n* 5105.1051.0510.5100\n* 5105,1051,0510,5100\"",
"pattern":"\\b(?:(?:5[1-5]\\d{2})|(?:222[1-9])|(?:22[3-9]\\d)|(?:2[3-6]\\d{2})|(?:27[0-1]\\d)|(?:2720))(?:(?:\\s\\d{4}){3}|(?:\\.\\d{4}){3}|(?:-\\d{4}){3}|(?:,\\d{4}){3})\\b",
"tags":[
"sensitive_data:master_card_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"MasterCard Scanner (2x8 digits)",
"description":"\"Scan for MasterCard numbers formatted as 2 groups of 8 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 51051051 05105100\n* 51051051-05105100\n* 51051051.05105100\n* 51051051,05105100\"",
"pattern":"\\b(?:(?:5[1-5]\\d{2})|(?:222[1-9])|(?:22[3-9]\\d)|(?:2[3-6]\\d{2})|(?:27[0-1]\\d)|(?:2720))(?:(?:\\d{4}(?:(?:,\\d{8})|(?:-\\d{8})|(?:\\s\\d{8})|(?:\\.\\d{8}))))\\b",
"tags":[
"sensitive_data:master_card_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"MasterCard Scanner (1x16 digits)",
"description":"\"Scan for MasterCard numbers formatted as 16 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 5105105105105100\"",
"pattern":"\\b(?:(?:5[1-5]\\d{2})|(?:222[1-9])|(?:22[3-9]\\d)|(?:2[3-6]\\d{2})|(?:27[0-1]\\d)|(?:2720))(?:\\d{12})\\b",
"tags":[
"sensitive_data:master_card_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"Discover Card Scanner (4x4 digits)",
"description":"\"Scan for Discover Card numbers formatted as 4 groups of 4 contiguous digits. Matches are validated via the Luhn algorithm. \n\nExamples of matching formats:\n* 6011 0009 9013 9424\n* 6011-0009-9013-9424\n* 6011.0009.9013.9424\n* 6011,0009,9013,9424\"",
"pattern":"\\b(?:(?:(?:6221(?:2[6-9]|[3-9][0-9])\\d{2}(?:,\\d{4}){2})|(?:6221\\s(?:2[6-9]|[3-9][0-9])\\d{2}(?:\\s\\d{4}){2})|(?:6221\\.(?:2[6-9]|[3-9][0-9])\\d{2}(?:\\.\\d{4}){2})|(?:6221-(?:2[6-9]|[3-9][0-9])\\d{2}(?:-\\d{4}){2}))|(?:(?:6229(?:[01][0-9]|2[0-5])\\d{2}(?:,\\d{4}){2})|(?:6229\\s(?:[01][0-9]|2[0-5])\\d{2}(?:\\s\\d{4}){2})|(?:6229\\.(?:[01][0-9]|2[0-5])\\d{2}(?:\\.\\d{4}){2})|(?:6229-(?:[01][0-9]|2[0-5])\\d{2}(?:-\\d{4}){2}))|(?:(?:6011|65\\d{2}|64[4-9]\\d|622[2-8])(?:(?:\\s\\d{4}){3}|(?:\\.\\d{4}){3}|(?:-\\d{4}){3}|(?:,\\d{4}){3})))\\b",
"tags":[
"sensitive_data:discover_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"Discover Card Scanner (2x8 digits)",
"description":"\"Scan for Discover Card numbers formatted as 2 groups of 8 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 60110009 90139424\n* 60110009-90139424\n* 60110009.90139424\n* 60110009,90139424\"",
"pattern":"\\b(?:6221(?:2[6-9]|[3-9][0-9])\\d{2}(?:,\\d{8}|\\s\\d{8}|-\\d{8}|\\.\\d{8})|6229(?:[01][0-9]|2[0-5])\\d{2}(?:,\\d{8}|\\s\\d{8}|-\\d{8}|\\.\\d{8})|(?:6011|65\\d{2}|64[4-9]\\d|622[2-8])\\d{4}(?:,\\d{8}|\\s\\d{8}|-\\d{8}|\\.\\d{8}))\\b",
"tags":[
"sensitive_data:discover_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"Discover Card Scanner (1x16 digits)",
"description":"\"Scan for Discover Card numbers formatted as 16 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 6011000990139424\"",
"pattern":"\\b(?:6221(?:2[6-9]|[3-9][0-9])\\d{10}|6229(?:[01][0-9]|2[0-5])\\d{10}|(?:6011|65\\d{2}|64[4-9]\\d|622[2-8])\\d{12})\\b",
"tags":[
"sensitive_data:discover_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"American Express Card Scanner (4+6+5 digits)",
"description":"\"Scan for American Express Card numbers formatted as 3 groups of 4, 6, and 5 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 3782 822463 10005\n* 3782-822463-10005\n* 3782.822463.10005\n* 3782,822463,10005\"",
"pattern":"\\b3[47]\\d{2}(?:(?:\\s\\d{6}\\s\\d{5})|(?:\\.\\d{6}\\.\\d{5})|(?:-\\d{6}-\\d{5})|(?:,\\d{6},\\d{5}))\\b",
"tags":[
"sensitive_data:american_express_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"American Express Card Scanner (4+4+4+3 digits)",
"description":"\"Scan for American Express Card numbers formatted as 3 groups of 4 contiguous digits followed by 3 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 3782 8224 6310 005\n* 3782-8224-6310-005\n* 3782.8224.6310.005\n* 3782,8224.6310,005\"",
"pattern":"\\b3[47]\\d{2}(?:(?:\\s\\d{4}\\s\\d{4}\\s\\d{3})|(?:\\,\\d{4}\\,\\d{4}\\,\\d{3})|(?:-\\d{4}-\\d{4}-\\d{3})|(?:\\.\\d{4}\\.\\d{4}\\.\\d{3}))\\b",
"tags":[
"sensitive_data:american_express_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"American Express Card Scanner (8+7 digits)",
"description":"\"Scan for American Express Card numbers formatted as 2 groups of 8 and 7 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 37828224 6310005\n* 37828224-6310005\n* 37828224.6310005\n* 37828224.6310005\"",
"pattern":"\\b3[47]\\d{6}(?:(?:\\s\\d{7})|(?:\\,\\d{7})|(?:-\\d{7})|(?:\\.\\d{7}))\\b",
"tags":[
"sensitive_data:american_express_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"American Express Card Scanner (1x15 digits)",
"description":"\"Scan for American Express Card numbers formatted as 15 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 378282246310005\"",
"pattern":"\\b3[47]\\d{13}\\b",
"tags":[
"sensitive_data:american_express_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"Diners Card Scanner (4+6+4 digits)",
"description":"\"Scan for Diners Card numbers formatted as 3 groups of 4, 6, and 4 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 3056 930902 5904\n* 3056-930902-5904\n* 3056.930902.5904\n* 3056,930902,5904\"",
"pattern":"\\b(?:30[0-59]\\d|3[689]\\d{2})(?:(?:\\s\\d{6}\\s\\d{4})|(?:\\.\\d{6}\\.\\d{4})|(?:-\\d{6}-\\d{4})|(?:,\\d{6},\\d{4}))\\b",
"tags":[
"sensitive_data:diners_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"Diners Card Scanner (4+4+4+2 digits)",
"description":"\"Scan for Diners Card numbers formatted as 3 groups of 4 contiguous digits followed by 2 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 3056 9309 0259 04\n* 3056-9309-0259-04\n* 3056.9309.0259.04\n* 3056,9309,0259,04\"",
"pattern":"\\b(?:30[0-59]\\d|3[689]\\d{2})(?:(?:\\s\\d{4}\\s\\d{4}\\s\\d{2})|(?:\\,\\d{4}\\,\\d{4}\\,\\d{2})|(?:-\\d{4}-\\d{4}-\\d{2})|(?:\\.\\d{4}\\.\\d{4}\\.\\d{2}))\\b",
"tags":[
"sensitive_data:diners_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"Diners Card Scanner (8+6 digits)",
"description":"\"Scan for Diners Card numbers formatted as 2 groups of 8 and 6 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 30569309 025904\n* 30569309-025904\n* 30569309.025904\n* 30569309,025904\"",
"pattern":"\\b(?:30[0-59]\\d{5}|3[689]\\d{6})(?:(?:\\s\\d{6})|(?:\\,\\d{6})|(?:-\\d{6})|(?:\\.\\d{6}))\\b",
"tags":[
"sensitive_data:diners_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"Diners Card Scanner (1x14 digits)",
"description":"\"Scan for Diners Card numbers formatted as 14 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 30569309025904\"",
"pattern":"(?:30[0-59]\\d|3[689]\\d{2})(?:\\d{10})",
"tags":[
"sensitive_data:diners_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"JCB Card Scanner (4x4 digits)",
"description":"\"Scan for JCB Card numbers formatted as 4 groups of 4 contiguous digits. Matches are validated via the Luhn algorithm. \n\nExamples of matching formats:\n* 3530 1113 3330 0000\n* 3530-1113-3330-0000\n* 3530.1113.3330.0000\n* 3530,1113,3330,0000\"",
"pattern":"\\b35(?:2[89]|[3-9][0-9])(?:(?:\\s\\d{4}){3}|(?:\\.\\d{4}){3}|(?:-\\d{4}){3}|(?:,\\d{4}){3})\\b",
"tags":[
"sensitive_data:jcb_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"JCB Card Scanner (2x8 digits)",
"description":"\"Scan for JCB Card numbers formatted as 2 groups of 8 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 35301113 33300000\n* 35301113-33300000\n* 35301113.33300000\n* 35301113,33300000\"",
"pattern":"\\b35(?:2[89]|[3-9][0-9])\\d{4}(?:(?:,\\d{8})|(?:-\\d{8})|(?:\\s\\d{8})|(?:\\.\\d{8}))\\b",
"tags":[
"sensitive_data:jcb_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"JCB Card Scanner (1x16 digits)",
"description":"\"Scan for JCB Card numbers formatted as 16 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 3530111333300000\n\"",
"pattern":"\\b35(?:2[89]|[3-9][0-9])(?:\\d{12})\\b",
"tags":[
"sensitive_data:jcb_credit_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"Maestro Card Scanner (4x4 digits)",
"description":"\"Scan for Maestro Card numbers formatted as 4 groups of 4 contiguous digits. Matches are validated via the Luhn algorithm. \n\nExamples of matching formats:\n* 6759 6498 2643 8453\n* 6759-6498-2643-8453\n* 6759.6498.2643.8453\n* 6759,6498,2643,8453\"",
"pattern":"\\b(?:5[06-9]\\d{2}|6\\d{3})(?:(?:\\s\\d{4}){3}|(?:\\.\\d{4}){3}|(?:-\\d{4}){3}|(?:,\\d{4}){3})\\b",
"tags":[
"sensitive_data:maestro_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"Maestro Card Scanner (2x8 digits)",
"description":"\"Scan for Maestro Card numbers formatted as 2 groups of 8 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 67596498 26438453\n* 67596498-26438453\n* 67596498.26438453\n* 67596498,26438453\"",
"pattern":"\\b(?:5[06-9]\\d{6}|6\\d{7})(?:\\s\\d{8}|\\.\\d{8}|-\\d{8}|,\\d{8})\\b",
"tags":[
"sensitive_data:maestro_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"Maestro Card Scanner (1x16 digits)",
"description":"\"Scan for Maestro Card numbers formatted as 16 contiguous digits. Matches are validated via the Luhn algorithm.\n\nExamples of matching formats:\n* 6759649826438453\n\"",
"pattern":"\\b(?:5[06-9]\\d{2}|6\\d{3})(?:\\d{12})\\b",
"tags":[
"sensitive_data:maestro_card",
"sensitive_data_category:credit_card"
]
},
{
"name":"Standard Iban Code Scanner",
"pattern":"\\b(?:NO\\d{2}(?:[ \\-]?\\d{4}){2}[ \\-]?\\d{3}|BE\\d{2}(?:[ \\-]?\\d{4}){3}|(?:DK|FO|FI|GL|SD)\\d{2}(?:[ \\-]?\\d{4}){3}[ \\-]?\\d{2}|NL\\d{2}[ \\-]?[A-Z]{4}(?:[ \\-]?\\d{4}){2}[ \\-]?\\d{2}|MK\\d{2}[ \\-]?\\d{3}[A-Z0-9](?:[ \\-]?[A-Z0-9]{4}){2}[ \\-]?[A-Z0-9]\\d{2}|SI\\d{17}|(?:AT|BA|EE|LT|XK)\\d{18}|(?:LU|KZ|EE|LT)\\d{5}[A-Z0-9]{13}|LV\\d{2}[A-Z]{4}[A-Z0-9]{13}|(?:LI|CH)\\d{2}[ \\-]?\\d{4}[ \\-]?\\d[A-Z0-9]{3}(?:[ \\-]?[A-Z0-9]{4}){2}[ \\-]?[A-Z0-9]|HR\\d{2}(?:[ \\-]?\\d{4}){4}[ \\-]?\\d|GE\\d{2}[ \\-]?[A-Z0-9]{2}\\d{2}\\d{14}|VA\\d{20}|BG\\d{2}[A-Z]{4}\\d{6}[A-Z0-9]{8}|BH\\d{2}[A-Z]{4}[A-Z0-9]{14}|GB\\d{2}[A-Z]{4}(?:[ \\-]?\\d{4}){3}[ \\-]?\\d{2}|IE\\d{2}[ \\-]?[A-Z0-9]{4}(?:[ \\-]?\\d{4}){3}[ \\-]?\\d{2}|(?:CR|DE|ME|RS)\\d{2}(?:[ \\-]?\\d{4}){4}[ \\-]?\\d{2}|(?:AE|TL|IL)\\d{2}(?:[ \\-]?\\d{4}){4}[ \\-]?\\d{3}|GI\\d{2}[ \\-]?[A-Z]{4}(?:[ \\-]?[A-Z0-9]{4}){3}[ \\-]?[A-Z0-9]{3}|IQ\\d{2}[ \\-]?[A-Z]{4}(?:[ \\-]?\\d{4}){3}[ \\-]?\\d{3}|MD\\d{2}(?:[ \\-]?[A-Z0-9]{4}){5}|SA\\d{2}[ \\-]?\\d{2}[A-Z0-9]{2}(?:[ \\-]?[A-Z0-9]{4}){4}|RO\\d{2}[ \\-]?[A-Z]{4}(?:[ \\-]?[A-Z0-9]{4}){4}|(?:PK|VG)\\d{2}[ \\-]?[A-Z0-9]{4}(?:[ \\-]?\\d{4}){4}|AD\\d{2}(?:[ \\-]?\\d{4}){2}(?:[ \\-]?[A-Z0-9]{4}){3}|(?:CZ|SK|ES|SE|TN)\\d{2}(?:[ \\-]?\\d{4}){5}|(?:LY|PT|ST)\\d{2}(?:[ \\-]?\\d{4}){5}[ \\-]?\\d|TR\\d{2}[ \\-]?\\d{4}[ \\-]?\\d[A-Z0-9]{3}(?:[ \\-]?[A-Z0-9]{4}){3}[ \\-]?[A-Z0-9]{2}|IS\\d{2}(?:[ \\-]?\\d{4}){5}[ \\-]?\\d{2}|(?:IT|SM)\\d{2}[ \\-]?[A-Z]\\d{3}[ \\-]?\\d{4}[ \\-]?\\d{3}[A-Z0-9](?:[ \\-]?[A-Z0-9]{4}){2}[ \\-]?[A-Z0-9]{3}|GR\\d{2}[ \\-]?\\d{4}[ \\-]?\\d{3}[A-Z0-9](?:[ \\-]?[A-Z0-9]{4}){3}[A-Z0-9]{3}|(?:FR|MC)\\d{2}(?:[ \\-]?\\d{4}){2}[ \\-]?\\d{2}[A-Z0-9]{2}(?:[ \\-]?[A-Z0-9]{4}){2}[ \\-]?[A-Z0-9]\\d{2}|MR\\d{2}(?:[ \\-]?\\d{4}){5}[ \\-]?\\d{3}|(?:SV|DO)\\d{2}[ \\-]?[A-Z]{4}(?:[ \\-]?\\d{4}){5}|BY\\d{2}[ \\-]?[A-Z]{4}[ \\-]?\\d{4}(?:[ \\-]?[A-Z0-9]{4}){4}|GT\\d{2}(?:[ \\-]?[A-Z0-9]{4}){6}|AZ\\d{2}[ \\-]?[A-Z0-9]{4}(?:[ \\-]?\\d{5}){4}|LB\\d{2}[ \\-]?\\d{4}(?:[ \\-]?[A-Z0-9]{5}){4}|(?:AL|CY)\\d{2}(?:[ \\-]?\\d{4}){2}(?:[ \\-]?[A-Z0-9]{4}){4}|(?:HU|PL)\\d{2}(?:[ \\-]?\\d{4}){6}|QA\\d{2}[ \\-]?[A-Z]{4}(?:[ \\-]?[A-Z0-9]{4}){5}[ \\-]?[A-Z0-9]|PS\\d{2}[ \\-]?[A-Z0-9]{4}(?:[ \\-]?\\d{4}){5}[ \\-]?\\d|UA\\d{2}[ \\-]?\\d{4}[ \\-]?\\d{2}[A-Z0-9]{2}(?:[ \\-]?[A-Z0-9]{4}){4}[ \\-]?[A-Z0-9]|BR\\d{2}(?:[ \\-]?\\d{4}){5}[ \\-]?\\d{3}[A-Z0-9][ \\-]?[A-Z0-9]|EG\\d{2}(?:[ \\-]?\\d{4}){6}\\d|MU\\d{2}[ \\-]?[A-Z]{4}(?:[ \\-]?\\d{4}){4}\\d{3}[A-Z][ \\-]?[A-Z]{2}|(?:KW|JO)\\d{2}[ \\-]?[A-Z]{4}(?:[ \\-]?[A-Z0-9]{4}){5}[ \\-]?[A-Z0-9]{2}|MT\\d{2}[ \\-]?[A-Z]{4}[ \\-]?\\d{4}[ \\-]?\\d[A-Z0-9]{3}(?:[ \\-]?[A-Z0-9]{3}){4}[ \\-]?[A-Z0-9]{3}|SC\\d{2}[ \\-]?[A-Z]{4}(?:[ \\-]?\\d{4}){5}[ \\-]?[A-Z]{3}|LC\\d{2}[ \\-]?[A-Z]{4}(?:[ \\-]?[A-Z0-9]{4}){6})\\b",
"tags":[
"sensitive_data:iban_code",
"sensitive_data_category:iban_code"
]
}
]
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。