(self, resp)
| 12003 | } |
| 12004 | # --- ANALISI DOMINIO AVANZATA (NSLOOKUP STYLE + ENRICHMENT) --- |
| 12005 | def _safe_response_json(self, resp): |
| 12006 | if not resp: |
| 12007 | return None |
| 12008 | try: |
| 12009 | return resp.json() |
| 12010 | except Exception: |
| 12011 | return None |
| 12012 | |
| 12013 | def _domain_headers_and_tls(self, domain): |
| 12014 | out = {} |
no outgoing calls
no test coverage detected