forked from osintbrazuca/osint-brazuca-regex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
osint-brazuca-regex.json
122 lines (122 loc) · 3.84 KB
/
osint-brazuca-regex.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"cnpj": [
{
"regex": "([0-9]{2}[\\.]?[0-9]{3}[\\.]?[0-9]{3}[\\/]?[0-9]{4}[-]?[0-9]{2})|([0-9]{3}[\\.]?[0-9]{3}[\\.]?[0-9]{3}[-]?[0-9]{2})",
"description": "Cadastro Nacional da Pessoa Jurídica"
}
],
"cpf": [
{
"regex": "[0-9]{3}\\.?[0-9]{3}\\.?[0-9]{3}\\-?[0-9]{2}",
"description": "Cadastro de Pessoas Físicas"
}
],
"cnpjOuCpf": [
{
"regex": "^(([0-9]{2}[\\.]?[0-9]{3}[\\.]?[0-9]{3}[\\/]?[0-9]{4}[-]?[0-9]{2})|([0-9]{3}[\\.]?[0-9]{3}[\\.]?[0-9]{3}[-]?[0-9]{2})|[0-9]{3}\\.?[0-9]{3}\\.?[0-9]{3}\\-?[0-9]{2})$",
"description": "Cadastro de Pessoas Físicas ou Jurídicas"
}
],
"rg": [
{
"regex": "(\\d{1,2}\\.?)(\\d{3}\\.?)(\\d{3})(\\-?[0-9Xx]{1})",
"description": "Registro Geral"
}
],
"cnh": [
{
"regex": "((cnh.*[0-9]{11})|(CNH.*[0-9]{11})|(habilitação.*[0-9]{11})|(carteira.*[0-9]{11}))",
"description": "Carteira Nacional de Habilitação"
}
],
"cep": [
{
"regex": "(^[0-9]{5})-?([0-9]{3}$)",
"description": "Código de Endereçamento Postal "
}
],
"rne": [
{
"regex": "(RNE)([A-Z\\d])(\\d{6})([A-Z\\d])",
"description": "Registro Nacional de Estrangeiro"
}
],
"renavam": [
{
"regex": "((\\d{4})[.](\\d{6})-(\\d{1})|(\\d{4})(\\d{6})(\\d{1}))",
"description": "Registro Nacional de Veículos Automotores"
}
],
"boleto": [
{
"regex": "(\\d{5}[\\.]\\d{5}[\\s]\\d{5}[\\.]\\d{6}[\\s]\\d{5}[\\.]\\d{6}[\\s]\\d[\\s]\\d{14})|(\\d{47,48})|(\\d{12} \\d{12} \\d{12} \\d{12})",
"description": "Boleto Bancário e Linha Digitável"
}
],
"pixChaveRandom": [
{
"regex": "([a-z\\d]{8})\\-([a-z\\d]{4})\\-([a-z\\d]{4})\\-([a-z\\d]{4})\\-([a-z\\d]{12})",
"description": "Chave PIX Aleatória"
}
],
"data": [
{
"regex": "([0-9]{2})[-|\/]([0-9]{2})[-|\/]([0-9]{4})",
"description": "Data dd-mm-yyyy | dd/mm/yyyy"
}
],
"crm": [
{
"regex": "([0-9-\/]{5,11})(?i)[a-z]{2}",
"description": "Conselho Federal de Medicina"
}
],
"telefone": [
{
"regex": "(?:(?:\\+|00)?(55)\\s?)?(?:\\(?([1-9][0-9])\\)?\\s?)(?:((?:9\\d|[2-9])\\d{3})\\-?(\\d{4}))",
"description": "Telefone Brasil"
}
],
"bitcoin": [
{
"regex": "^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,39}$",
"description": "Endereço wallet bitcoin"
}
],
"url": [
{
"regex": "https?:\\/\\/(www\\.)?[-a-zA-Z0-9@:%._\\+~#=]{1,256}\\.[a-zA-Z0-9()]{1,6}\\b([-a-zA-Z0-9()!@:%_\\+.~#?&\\/\\/=]*)",
"description": "URL - Uniform Resource Locator"
}
],
"email": [
{
"regex": "[^@ \\t\\r\\n]+@[^@ \\t\\r\\n]+\\.[^@ \\t\\r\\n]+",
"description": "Endereço de email"
}
],
"ip": [
{
"regex": "[[:digit:]]{1,3}\\.[[:digit:]]{1,3}\\.[[:digit:]]{1,3}\\.[[:digit:]]{1,3}",
"description": "IP - Internet Protocol"
}
],
"correios": [
{
"regex": "/^[A-Z]{2}[0-9]{9}BR$/i",
"description": "Código de rastreamento de encomenda dos Correios"
}
],
"placaDetran": [
{
"regex": "[A-Z]{3}[0-9][0-9A-Z][0-9]{2}",
"description": "Placas de Carros e Motos Brasileiras (incluindo Mercosul)"
}
],
"siglaUF": [
{
"regex": "(AC|AL|AP|AM|BA|CE|DF|ES|GO|MA|MT|MS|MG|PA|PB|PR|PE|PI|RJ|RN|RS|RO|RR|SC|SP|SE|TO|BR)",
"description": "Siglas das Unidades Federativas do Brasil"
}
]
}