2024-11-06 14:53:19 -03:00
|
|
|
# Config MISP
|
|
|
|
MISP_CONFIG = {
|
|
|
|
"URL": "<URL_MISP>",
|
|
|
|
"AUTHKEY": "<AUTHKEY_MISP>"
|
|
|
|
}
|
|
|
|
|
|
|
|
CONFIG_WL = {
|
|
|
|
"filtros_buscar": ["osint", "google", "1000","microsoft","amazon","cloudflare"],
|
|
|
|
"max_reg": 4000
|
|
|
|
}
|
|
|
|
|
|
|
|
KTIP_CONFIG = {
|
|
|
|
"api_key": "<APIKEY>",
|
|
|
|
"url_base": "https://opentip.kaspersky.com/api/v1/search/"
|
|
|
|
}
|
|
|
|
|
|
|
|
IOC_TIPOS_OMITIR = [
|
|
|
|
'comment',
|
|
|
|
'text',
|
|
|
|
'other',
|
|
|
|
'datetime',
|
|
|
|
'attachment',
|
|
|
|
'port',
|
|
|
|
'size-in-bytes',
|
|
|
|
'counter',
|
|
|
|
'integer',
|
|
|
|
'cpe',
|
|
|
|
'float',
|
|
|
|
'hex',
|
|
|
|
'phone-number',
|
|
|
|
'boolean',
|
|
|
|
'anonymised',
|
|
|
|
'pgp-public-key',
|
|
|
|
'pgp-private-key'
|
|
|
|
]
|
|
|
|
|
2024-12-04 11:09:10 -03:00
|
|
|
WORKERS_THR = 4
|
|
|
|
|