| 14051 | except: return {}, 404 |
| 14052 | |
| 14053 | def check_paypal(self, target): |
| 14054 | try: |
| 14055 | target_clean = urllib.parse.quote(target.strip()) |
| 14056 | r = session.get(f"https://www.paypal.com/paypalme/{target_clean}", timeout=5) |
| 14057 | if r.status_code == 200 and target_clean.lower() in r.text.lower(): |
| 14058 | return " Attivo", f"https://www.paypal.com/paypalme/{target_clean}", 200 |
| 14059 | return " No", "", 404 |
| 14060 | except Exception as e: |
| 14061 | print(f"[*] Errore PayPal: {e}") |
| 14062 | return " Err", "", 404 |
| 14063 | |
| 14064 | def _safe_social_json(self, html_text): |
| 14065 | if not html_text: |