diff --git a/Output/AUTARCH_Setup.exe b/Output/AUTARCH_Setup.exe deleted file mode 100644 index 80e514a..0000000 Binary files a/Output/AUTARCH_Setup.exe and /dev/null differ diff --git a/activate.sh b/activate.sh deleted file mode 100644 index 488ba9b..0000000 --- a/activate.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -source "$(dirname "$(realpath "$0")")/venv/bin/activate" diff --git a/autarch_float.md b/autarch_float.md new file mode 100644 index 0000000..2c53213 --- /dev/null +++ b/autarch_float.md @@ -0,0 +1,650 @@ +# AUTARCH Cloud Edition & Float Mode — Architecture Plan + +**Run AUTARCH on a VPS, use it like it's on your local machine** + +By darkHal Security Group & Setec Security Labs + +--- + +## 1. What Is Float Mode? + +Float Mode makes a remote AUTARCH instance feel local. The user signs into their AUTARCH account on a VPS and activates Float Mode. A lightweight client applet running on the user's PC creates a bridge that: + +- **Forwards USB devices** (phones, ESP32, hardware) from the user's PC to the VPS +- **Exposes local network context** (LAN scanning sees the user's network, not the VPS's) +- **Bridges serial ports** (COM/ttyUSB devices) for hardware flashing +- **Provides clipboard sync** between local and remote +- **Tunnels mDNS/Bluetooth discovery** from the local machine + +The VPS does all computation. The user's PC just provides I/O. + +``` +┌─────────────────────────────────────────────────────────┐ +│ USER'S BROWSER │ +│ ┌───────────────────────────────────────────────────┐ │ +│ │ AUTARCH Cloud Edition (Web UI) │ │ +│ │ Same UI as local AUTARCH — hardware, OSINT, │ │ +│ │ exploit tools, AI chat — everything works │ │ +│ └─────────────────────┬─────────────────────────────┘ │ +│ │ HTTPS │ +└────────────────────────┼────────────────────────────────┘ + │ + ┌────▼────┐ + │ VPS │ + │ AUTARCH │ ← All processing happens here + │ CE │ + └────┬────┘ + │ WebSocket (wss://) + │ Float Bridge Protocol + │ +┌────────────────────────┼────────────────────────────────┐ +│ USER'S PC │ +│ ┌─────────────────────▼─────────────────────────────┐ │ +│ │ Float Applet (native Go app) │ │ +│ │ │ │ +│ │ ┌──────────┐ ┌──────────┐ ┌─────────────────┐ │ │ +│ │ │ USB Hub │ │ Serial │ │ Network Context │ │ │ +│ │ │ Bridge │ │ Bridge │ │ (LAN, mDNS) │ │ │ +│ │ └────┬─────┘ └────┬─────┘ └────────┬────────┘ │ │ +│ └───────┼──────────────┼─────────────────┼───────────┘ │ +│ │ │ │ │ +│ ┌────▼────┐ ┌────▼────┐ ┌────▼────┐ │ +│ │ Android │ │ ESP32 │ │ LAN │ │ +│ │ Phone │ │ Board │ │ Devices │ │ +│ └─────────┘ └─────────┘ └─────────┘ │ +└──────────────────────────────────────────────────────────┘ +``` + +--- + +## 2. Why Write AUTARCH CE in Go? + +The Python AUTARCH works great locally. But for cloud deployment at scale: + +| Python AUTARCH | Go AUTARCH CE | +|----------------|---------------| +| 500MB+ with venv + dependencies | Single binary, ~30MB | +| Requires Python 3.10+, pip, venv | Zero runtime dependencies | +| Flask (single-threaded WSGI) | Native goroutine concurrency | +| llama-cpp-python (C++ bindings) | HTTP calls to LLM APIs only (no local models on VPS) | +| File-based config (INI) | Embedded config + SQLite | +| 72 modules loaded at startup | Modular, lazy-loaded handlers | +| subprocess for system tools | Native Go implementations where possible | + +**Key insight:** The Cloud Edition doesn't need local LLM inference (no GPU on VPS), doesn't need ADB/Fastboot binaries (USB is on the user's PC), and doesn't need heavy Python dependencies. What it needs is a fast web server, WebSocket handling, and the ability to relay commands to the Float applet. + +--- + +## 3. What Gets Ported, What Gets Dropped + +### Port to Go (core features that work in cloud context) + +| Feature | Python Source | Go Approach | +|---------|-------------|-------------| +| Web dashboard + UI | `web/app.py`, templates, CSS, JS | Go HTTP server + embedded templates | +| Authentication | `web/auth.py` | bcrypt + JWT | +| Configuration | `core/config.py` | YAML config + SQLite | +| LLM Chat (API-only) | `core/llm.py` | HTTP client to Claude/OpenAI/HF APIs | +| Agent system | `core/agent.py` | Port agent loop + tool registry to Go | +| OSINT recon | `modules/recon.py` | HTTP client, site database, result parsing | +| Dossier management | `modules/dossier.py` | SQLite + file storage | +| GeoIP | `modules/geoip.py` | MaxMind DB reader (native Go) | +| Hash toolkit | part of `modules/analyze.py` | Go `crypto/*` packages | +| Reverse shell listener | `modules/revshell.py`, `core/revshell.py` | Go net.Listener | +| Port scanner | `web/routes/port_scanner.py` | Go `net.DialTimeout` | +| Network mapping | `modules/net_mapper.py` | Go ICMP/TCP scanner | +| Targets management | `web/routes/targets.py` | SQLite CRUD | +| Payload generation | `modules/simulate.py` | String templating | +| Report engine | `modules/report_engine.py` | Go templates → PDF | +| Threat intel | `modules/threat_intel.py` | HTTP client to threat feeds | +| Wireshark (tshark) | `modules/wireshark.py` | Exec wrapper (tshark on VPS) | +| DNS service | `services/dns-server/` | Already Go, integrate directly | + +### Relay via Float Bridge (runs on user's PC, not VPS) + +| Feature | Why Relay? | Bridge Protocol | +|---------|-----------|----------------| +| ADB commands | Phone is on user's USB | USB frame relay | +| Fastboot | Phone is on user's USB | USB frame relay | +| ESP32 flash | Board is on user's serial port | Serial frame relay | +| Serial monitor | Device is on user's ttyUSB | Serial stream relay | +| LAN scanning | User's network, not VPS | Network proxy relay | +| mDNS discovery | User's LAN | mDNS frame relay | +| Bluetooth | User's adapter | BT command relay | +| File push/pull to device | USB device files | Chunked transfer relay | + +### Drop (not applicable in cloud context) + +| Feature | Why Drop | +|---------|---------| +| Local LLM (llama.cpp) | No GPU on VPS; use API backends | +| Local transformers | Same — no GPU | +| System defender (hardening) | VPS is managed by Setec Manager | +| Windows defender | Cloud is Linux only | +| Defense monitor | Managed by Setec Manager | +| UPnP port mapping | VPS has static IP, no NAT | +| WireGuard management | Not needed in cloud (direct HTTPS) | +| Metasploit RPC | Can optionally exec, but low priority | +| RouterSploit | Same | +| Module encryption system | Go doesn't need this pattern | +| Setup wizard | Replaced by Setec Manager bootstrap | +| CLI menu system | Cloud is web-only | +| Print capture/debug console | Replace with structured logging | + +--- + +## 4. AUTARCH CE Directory Structure + +``` +/c/autarch_ce/ # Development root +├── cmd/ +│ └── autarch-ce/ +│ └── main.go # Entry point +├── internal/ +│ ├── server/ +│ │ ├── server.go # HTTP server, router, middleware +│ │ ├── auth.go # JWT authentication +│ │ ├── sse.go # SSE streaming helpers +│ │ └── websocket.go # WebSocket helpers +│ ├── handlers/ +│ │ ├── dashboard.go # Main dashboard +│ │ ├── chat.go # LLM chat + agent mode +│ │ ├── osint.go # OSINT reconnaissance +│ │ ├── scanner.go # Port scanner +│ │ ├── analyze.go # Hash toolkit, file analysis +│ │ ├── simulate.go # Payload generation, attack sim +│ │ ├── hardware.go # Hardware management (Float relay) +│ │ ├── targets.go # Target management CRUD +│ │ ├── exploit.go # Android/iPhone exploit routes +│ │ ├── revshell.go # Reverse shell listener +│ │ ├── network.go # Network tools (traceroute, ping, DNS) +│ │ ├── threat.go # Threat intel feeds +│ │ ├── reports.go # Report generation +│ │ ├── settings.go # Configuration management +│ │ └── wireshark.go # Packet capture (tshark on VPS) +│ ├── llm/ +│ │ ├── llm.go # Multi-backend LLM client interface +│ │ ├── claude.go # Anthropic Claude backend +│ │ ├── openai.go # OpenAI backend +│ │ ├── huggingface.go # HuggingFace Inference backend +│ │ └── agent.go # Autonomous agent (THOUGHT/ACTION/PARAMS) +│ ├── osint/ +│ │ ├── engine.go # Site checking engine (concurrent) +│ │ ├── sites.go # Site database loader (JSON) +│ │ ├── dossier.go # Dossier management +│ │ └── geoip.go # MaxMind GeoIP reader +│ ├── hardware/ +│ │ ├── manager.go # Hardware manager (Float-aware) +│ │ ├── adb.go # ADB command builder/parser +│ │ ├── fastboot.go # Fastboot command builder/parser +│ │ ├── serial.go # Serial port management +│ │ └── bridge.go # Float bridge command relay +│ ├── float/ +│ │ ├── protocol.go # Binary WebSocket frame protocol +│ │ ├── session.go # Session management +│ │ ├── usb.go # USB device relay logic +│ │ ├── serial.go # Serial port relay logic +│ │ └── network.go # Network context relay logic +│ ├── scanner/ +│ │ ├── port.go # TCP/UDP port scanner +│ │ ├── service.go # Service fingerprinting +│ │ └── network.go # Network mapper (ICMP sweep) +│ ├── tools/ +│ │ ├── registry.go # Agent tool registry +│ │ ├── hash.go # Hash computation + identification +│ │ ├── strings.go # String extraction from binaries +│ │ └── encode.go # Encoding/decoding utilities +│ ├── revshell/ +│ │ ├── listener.go # TCP listener for reverse shells +│ │ ├── generator.go # Shell payload generator +│ │ └── session.go # Active shell session management +│ ├── db/ +│ │ ├── db.go # SQLite connection + migrations +│ │ ├── targets.go # Target CRUD +│ │ ├── dossiers.go # Dossier storage +│ │ ├── sessions.go # Float sessions +│ │ └── jobs.go # Background job tracking +│ └── config/ +│ └── config.go # YAML config + defaults +├── web/ +│ ├── templates/ # HTML templates (embed.FS) +│ │ ├── base.html # Master layout (port from Python) +│ │ ├── login.html +│ │ ├── dashboard.html +│ │ ├── chat.html +│ │ ├── osint.html +│ │ ├── scanner.html +│ │ ├── hardware.html +│ │ ├── analyze.html +│ │ ├── simulate.html +│ │ ├── targets.html +│ │ ├── exploit.html +│ │ ├── revshell.html +│ │ ├── reports.html +│ │ ├── settings.html +│ │ └── ... (one per feature) +│ └── static/ # CSS/JS/images (embed.FS) +│ ├── css/style.css # Port from Python AUTARCH +│ ├── js/ +│ │ ├── app.js # Main app logic (port from Python) +│ │ ├── float-client.js # Float Mode browser-side logic +│ │ ├── hardware-direct.js # WebUSB (for local mode fallback) +│ │ └── lib/ +│ │ ├── adb-bundle.js # ADB WebUSB client +│ │ ├── fastboot-bundle.js # Fastboot WebUSB client +│ │ └── esptool-bundle.js # ESP32 Web Serial client +│ └── img/ +│ └── autarch.ico +├── data/ +│ └── sites/ # OSINT site databases (JSON) +│ ├── sherlock.json +│ ├── maigret.json +│ └── ... +├── build.sh +├── go.mod +└── config.yaml +``` + +--- + +## 5. Float Bridge Protocol + +### 5.1 Frame Format + +All communication over WebSocket using binary frames: + +``` +┌──────┬──────┬──────┬────────┬─────────────────────┐ +│ VER │ TYPE │ SEQ │ LENGTH │ PAYLOAD │ +│ 1B │ 1B │ 4B │ 4B │ variable │ +└──────┴──────┴──────┴────────┴─────────────────────┘ + +VER: Protocol version (0x01) +TYPE: Frame type (see below) +SEQ: Sequence number (for request/response matching) +LENGTH: Payload length in bytes (big-endian uint32) +PAYLOAD: Type-specific data (JSON or binary) +``` + +### 5.2 Frame Types + +``` +── Control ────────────────────────────────── +0x00 PING Keepalive +0x01 PONG Keepalive response +0x02 HELLO Client registration (capabilities, platform) +0x03 AUTH Session authentication +0x04 ERROR Error response +0x05 DISCONNECT Graceful disconnect + +── USB ────────────────────────────────────── +0x10 USB_ENUMERATE List connected USB devices +0x11 USB_ENUMERATE_RESULT Device list response +0x12 USB_OPEN Open device by vid:pid or serial +0x13 USB_OPEN_RESULT Open result (handle ID) +0x14 USB_CLOSE Close device handle +0x15 USB_TRANSFER Bulk/interrupt transfer +0x16 USB_TRANSFER_RESULT Transfer response data +0x17 USB_HOTPLUG Device connected/disconnected event + +── ADB (high-level, built on USB) ────────── +0x20 ADB_DEVICES List ADB devices +0x21 ADB_DEVICES_RESULT Device list with state/model +0x22 ADB_SHELL Execute shell command +0x23 ADB_SHELL_RESULT Command output +0x24 ADB_PUSH Push file to device +0x25 ADB_PUSH_DATA File data chunk +0x26 ADB_PUSH_RESULT Push completion +0x27 ADB_PULL Pull file from device +0x28 ADB_PULL_DATA File data chunk +0x29 ADB_PULL_RESULT Pull completion +0x2A ADB_INSTALL Install APK +0x2B ADB_INSTALL_RESULT Install result +0x2C ADB_LOGCAT Start logcat stream +0x2D ADB_LOGCAT_LINE Logcat line +0x2E ADB_REBOOT Reboot device + +── Fastboot ───────────────────────────────── +0x30 FB_DEVICES List fastboot devices +0x31 FB_DEVICES_RESULT Device list +0x32 FB_GETVAR Get variable +0x33 FB_GETVAR_RESULT Variable value +0x34 FB_FLASH Flash partition (streamed) +0x35 FB_FLASH_DATA Firmware data chunk +0x36 FB_FLASH_PROGRESS Flash progress update +0x37 FB_FLASH_RESULT Flash completion +0x38 FB_REBOOT Reboot +0x39 FB_OEM_UNLOCK OEM unlock + +── Serial ─────────────────────────────────── +0x40 SERIAL_LIST List serial ports +0x41 SERIAL_LIST_RESULT Port list +0x42 SERIAL_OPEN Open port (baud, settings) +0x43 SERIAL_OPEN_RESULT Open result +0x44 SERIAL_CLOSE Close port +0x45 SERIAL_WRITE Send data to port +0x46 SERIAL_READ Data received from port +0x47 SERIAL_DETECT_CHIP ESP32 chip detection +0x48 SERIAL_DETECT_RESULT Chip info + +── Network Context ────────────────────────── +0x50 NET_INTERFACES List network interfaces +0x51 NET_INTERFACES_RESULT Interface list (IPs, MACs) +0x52 NET_SCAN Scan local network (ARP/ping) +0x53 NET_SCAN_RESULT Host list +0x54 NET_RESOLVE DNS resolve on client network +0x55 NET_RESOLVE_RESULT Resolution result +0x56 NET_CONNECT TCP connect through client +0x57 NET_CONNECT_RESULT Connection result +0x58 NET_MDNS_DISCOVER mDNS service discovery +0x59 NET_MDNS_RESULT Discovered services + +── System Context ─────────────────────────── +0x60 SYS_INFO Client system info +0x61 SYS_INFO_RESULT OS, arch, hostname, user +0x62 SYS_CLIPBOARD_GET Get clipboard contents +0x63 SYS_CLIPBOARD_DATA Clipboard data +0x64 SYS_CLIPBOARD_SET Set clipboard contents +``` + +### 5.3 Payload Formats + +**HELLO payload (JSON):** +```json +{ + "version": "1.0.0", + "platform": "windows", + "arch": "amd64", + "hostname": "user-desktop", + "capabilities": ["usb", "serial", "network", "clipboard"], + "usb_devices": 3, + "serial_ports": 1 +} +``` + +**USB_ENUMERATE_RESULT payload (JSON):** +```json +{ + "devices": [ + { + "vid": "18d1", + "pid": "4ee7", + "serial": "ABCDEF123456", + "manufacturer": "Google", + "product": "Pixel 8", + "bus": 1, + "address": 4, + "class": "adb" + } + ] +} +``` + +**ADB_SHELL payload (JSON):** +```json +{ + "serial": "ABCDEF123456", + "command": "pm list packages -3" +} +``` + +**USB_TRANSFER payload (binary):** +``` +┌──────────┬──────────┬──────┬──────────┐ +│ HANDLE │ ENDPOINT │ FLAGS│ DATA │ +│ 4B │ 1B │ 1B │ variable │ +└──────────┴──────────┴──────┴──────────┘ +``` + +--- + +## 6. Float Applet (Client-Side) + +### 6.1 Options for the Applet + +| Option | Pros | Cons | +|--------|------|------| +| **Go native app** (recommended) | Single binary, cross-platform, full USB access via libusb/gousb | Requires download + run | +| **Electron app** | Web technologies, WebUSB built-in | Heavy (~150MB), Chromium overhead | +| **Tauri app** | Lighter than Electron (~10MB), Rust backend | More complex build, newer ecosystem | +| **Browser extension + Web Serial/USB** | No install needed | Limited USB access, Chrome only, no raw USB | +| **Java Web Start / JNLP** | Auto-launch from browser | Dead technology, security warnings | + +**Recommendation: Go native app** (5-10MB binary) + +The user downloads a small executable. On launch it: +1. Shows a system tray icon with status +2. Connects via WebSocket to the VPS +3. Enumerates local USB, serial, and network +4. Relays commands from the VPS to local hardware +5. Stays running in background until closed + +### 6.2 Float Applet Structure + +``` +float-applet/ +├── cmd/ +│ └── float/ +│ └── main.go # Entry point, tray icon +├── internal/ +│ ├── bridge/ +│ │ ├── client.go # WebSocket client + reconnect +│ │ ├── protocol.go # Frame parser/builder (shared with server) +│ │ └── handler.go # Dispatch incoming frames to subsystems +│ ├── usb/ +│ │ ├── enumerate.go # List USB devices (gousb/libusb) +│ │ ├── device.go # Open/close/transfer +│ │ └── hotplug.go # Device connect/disconnect events +│ ├── adb/ +│ │ ├── client.go # ADB protocol implementation +│ │ ├── shell.go # Shell command execution +│ │ ├── sync.go # File push/pull (ADB sync protocol) +│ │ └── logcat.go # Logcat streaming +│ ├── fastboot/ +│ │ ├── client.go # Fastboot protocol +│ │ ├── flash.go # Partition flashing +│ │ └── getvar.go # Variable queries +│ ├── serial/ +│ │ ├── enumerate.go # List serial ports +│ │ ├── port.go # Open/read/write serial +│ │ └── esp.go # ESP32 chip detection +│ ├── network/ +│ │ ├── interfaces.go # List local interfaces +│ │ ├── scan.go # ARP/ping sweep +│ │ ├── proxy.go # TCP proxy for remote connections +│ │ └── mdns.go # mDNS discovery relay +│ └── system/ +│ ├── info.go # OS, arch, hostname +│ └── clipboard.go # Clipboard read/write +├── build.sh # Cross-compile: Windows, Linux, macOS +└── go.mod +``` + +### 6.3 Float Applet User Experience + +``` +1. User visits AUTARCH CE web dashboard +2. Clicks "Float Mode" button +3. If first time: + a. Page shows download links for their platform (auto-detected) + b. User downloads float-applet binary (~8MB) + c. Runs it — system tray icon appears +4. Applet auto-connects to VPS via WebSocket +5. Dashboard detects connection: + a. Hardware page now shows LOCAL USB devices + b. LAN scanner sees LOCAL network + c. Serial ports show LOCAL COM/ttyUSB ports +6. User works normally — everything feels local +7. Close applet → hardware reverts to VPS context +``` + +--- + +## 7. AUTARCH CE Feature Map + +### Tier 1: Core (implement first) + +| Feature | Source Reference | Go Package | +|---------|----------------|------------| +| Web server + routing | `web/app.py` (183 lines) | `internal/server/` | +| Authentication | `web/auth.py` (73 lines) | `internal/server/auth.go` | +| Dashboard | `web/routes/dashboard.py` | `internal/handlers/dashboard.go` | +| Configuration | `core/config.py` (587 lines) | `internal/config/` | +| Settings UI | `web/routes/settings.py` | `internal/handlers/settings.go` | +| Base template + CSS | `web/templates/base.html`, `style.css` | `web/templates/`, `web/static/` | + +### Tier 2: Intelligence (implement second) + +| Feature | Source Reference | Go Package | +|---------|----------------|------------| +| LLM chat (API backends) | `core/llm.py` (1400 lines) | `internal/llm/` | +| Agent system | `core/agent.py` (439 lines) | `internal/llm/agent.go` | +| Tool registry | `core/tools.py` | `internal/tools/registry.go` | +| Chat UI | `web/routes/chat.py`, `web/templates/chat.html` | `internal/handlers/chat.go` | +| OSINT engine | `modules/recon.py` | `internal/osint/engine.go` | +| Site databases | `data/sites/*.json` (7,287 sites) | `data/sites/` (embedded) | +| Dossier management | `modules/dossier.py` | `internal/osint/dossier.go` | +| GeoIP | `modules/geoip.py` | `internal/osint/geoip.go` | + +### Tier 3: Scanning & Analysis + +| Feature | Source Reference | Go Package | +|---------|----------------|------------| +| Port scanner | `web/routes/port_scanner.py` | `internal/scanner/port.go` | +| Network mapper | `modules/net_mapper.py` | `internal/scanner/network.go` | +| Hash toolkit | `modules/analyze.py` (hash section) | `internal/tools/hash.go` | +| Target management | `web/routes/targets.py` | `internal/handlers/targets.go` | +| Threat intel | `modules/threat_intel.py` | `internal/handlers/threat.go` | +| Report engine | `modules/report_engine.py` | `internal/handlers/reports.go` | + +### Tier 4: Float Mode + Hardware + +| Feature | Source Reference | Go Package | +|---------|----------------|------------| +| Float bridge (server) | NEW | `internal/float/` | +| Hardware manager | `core/hardware.py` (641 lines) | `internal/hardware/` | +| Hardware UI | `web/routes/hardware.py` (417 lines) | `internal/handlers/hardware.go` | +| ADB relay | `core/hardware.py` ADB methods | `internal/hardware/adb.go` | +| Fastboot relay | `core/hardware.py` FB methods | `internal/hardware/fastboot.go` | +| Serial relay | `core/hardware.py` serial methods | `internal/hardware/serial.go` | + +### Tier 5: Exploitation & Advanced + +| Feature | Source Reference | Go Package | +|---------|----------------|------------| +| Reverse shell | `core/revshell.py`, `modules/revshell.py` | `internal/revshell/` | +| Payload generator | `modules/simulate.py` | `internal/handlers/simulate.go` | +| Android exploit | `core/android_exploit.py` | `internal/handlers/exploit.go` | +| Wireshark (tshark) | `modules/wireshark.py` | `internal/handlers/wireshark.go` | + +--- + +## 8. Estimated Scope + +``` +AUTARCH Cloud Edition (Go rewrite of web-facing features): +├── Core server + auth + config + dashboard ~2,500 lines +├── LLM client + agent system ~2,000 lines +├── OSINT engine + site DB + dossiers ~2,500 lines +├── Scanner + network tools ~1,500 lines +├── Float bridge protocol + server side ~2,000 lines +├── Hardware manager (Float relay) ~1,500 lines +├── Handlers (all web routes) ~3,000 lines +├── Database layer ~1,000 lines +├── Web templates (HTML) ~3,000 lines +├── CSS + JavaScript ~2,500 lines +└── Total ~21,500 lines + +Float Applet (client-side): +├── WebSocket client + reconnect ~500 lines +├── Protocol + frame handling ~800 lines +├── USB enumeration + transfer ~1,000 lines +├── ADB protocol client ~1,500 lines +├── Fastboot protocol client ~800 lines +├── Serial port management ~600 lines +├── Network context (scan, proxy, mDNS) ~1,000 lines +├── System (clipboard, info) ~300 lines +├── Tray icon + UI ~400 lines +└── Total ~6,900 lines + +Combined total: ~28,400 lines of Go +``` + +--- + +## 9. Build Phases + +### Phase 1: Foundation +- Go HTTP server with chi router +- JWT authentication +- Dashboard with system stats +- Configuration management (YAML + UI) +- Base HTML template + CSS (port from Python AUTARCH) +- SQLite database +- **Deliverable:** Working web dashboard you can log into + +### Phase 2: Intelligence +- LLM client (Claude, OpenAI, HuggingFace API backends) +- Agent system (THOUGHT/ACTION/PARAMS loop) +- Tool registry +- Chat UI with SSE streaming +- OSINT engine with concurrent site checking +- GeoIP lookups +- Dossier CRUD +- **Deliverable:** AI chat + OSINT fully working + +### Phase 3: Tools +- Port scanner with SSE progress +- Network mapper +- Hash toolkit (identify, compute, mutate) +- Target management +- Threat intelligence feed integration +- Report generation +- Reverse shell listener +- **Deliverable:** Full scanning + analysis suite + +### Phase 4: Float Mode +- Float bridge protocol implementation (server) +- WebSocket session management +- USB device relay (enumerate, open, transfer) +- ADB command relay +- Fastboot command relay +- Serial port relay +- Hardware UI integration +- **Deliverable:** Connect local hardware to cloud AUTARCH + +### Phase 5: Float Applet +- Go native client application +- WebSocket client with auto-reconnect +- USB enumeration via gousb/libusb +- ADB protocol (shell, sync, install) +- Fastboot protocol (flash, getvar) +- Serial port access +- Network context (interfaces, ARP scan, mDNS) +- System tray icon +- Cross-platform build (Windows, Linux, macOS) +- **Deliverable:** Complete Float Mode end-to-end + +### Phase 6: Polish +- Exploit modules (Android, iPhone) +- Wireshark integration +- Payload generator +- UI refinement +- Documentation +- Automated tests +- **Deliverable:** Production-ready AUTARCH CE + +--- + +## 10. Key Design Decisions + +1. **No local LLM** — VPS won't have GPU. All LLM via API (Claude preferred). +2. **Embedded assets** — Templates, CSS, JS, site databases baked into binary via `embed.FS`. +3. **SQLite not files** — All persistent state in SQLite (not JSON files on disk). +4. **Float is optional** — AUTARCH CE works without Float. Hardware features just show "Connect Float applet" when no bridge is active. +5. **Same UI** — Port the exact HTML/CSS from Python AUTARCH. Users shouldn't notice the difference. +6. **Protocol versioned** — Float bridge protocol has version byte for backward compatibility. +7. **Chunked transfers** — Large files (firmware, APKs) sent in 64KB chunks over the bridge. +8. **Reconnect resilient** — Float applet auto-reconnects. Operations in progress resume or report failure. +9. **Security first** — All bridge communication over WSS (TLS). Session tokens expire. USB transfers validated. +10. **DNS server integrated** — The existing Go DNS server can be imported as a Go package directly. diff --git a/backup.ab b/backup.ab deleted file mode 100644 index e69de29..0000000 diff --git a/data/android_protect/58051FDCG004EJ/honeypot_config.json b/data/android_protect/58051FDCG004EJ/honeypot_config.json deleted file mode 100644 index 25239f6..0000000 --- a/data/android_protect/58051FDCG004EJ/honeypot_config.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "active": true, - "tier": 2, - "protections": { - "private_dns": "adguard", - "ad_opt_out": true, - "location_accuracy": true, - "diagnostics": true - }, - "activated_at": "2026-03-04T09:02:04.669716" -} \ No newline at end of file diff --git a/data/captures/capture_20260217_145129.pcap b/data/captures/capture_20260217_145129.pcap deleted file mode 100644 index 1a14bc1..0000000 Binary files a/data/captures/capture_20260217_145129.pcap and /dev/null differ diff --git a/data/captures/capture_20260217_145237.pcap b/data/captures/capture_20260217_145237.pcap deleted file mode 100644 index 3ded03a..0000000 Binary files a/data/captures/capture_20260217_145237.pcap and /dev/null differ diff --git a/data/captures/capture_20260220_045252.pcap b/data/captures/capture_20260220_045252.pcap deleted file mode 100644 index c1b1a14..0000000 Binary files a/data/captures/capture_20260220_045252.pcap and /dev/null differ diff --git a/data/certs/autarch.crt b/data/certs/autarch.crt deleted file mode 100644 index e0b627c..0000000 --- a/data/certs/autarch.crt +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDKTCCAhGgAwIBAgIUfA3Sef+54+/zn/axqGK99cxqyYkwDQYJKoZIhvcNAQEL -BQAwJDEQMA4GA1UEAwwHQVVUQVJDSDEQMA4GA1UECgwHZGFya0hhbDAeFw0yNjAy -MjExMTAyMTVaFw0zNjAyMTkxMTAyMTVaMCQxEDAOBgNVBAMMB0FVVEFSQ0gxEDAO -BgNVBAoMB2RhcmtIYWwwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC5 -2L7xG2kZLj8u1aA0qFd9Xohxa0XG1K0xhTkWJmNOjgRdRO9RejWhKvpa2DJNTO9L -LyEO8bRH56zKcgFofAJRe4GjCSk3OefBcuCKHBWN+hB1YRu+7spaoTxZ1m5dRP1o -DvsRe/nSA69xGsEbX8Zuc/ROCsaV4LACOBYSMQkOKTWWpTu2cLJyuW/sqHn5REzp -Bndw1sp5p+TCc2+Pf+dCEx1V2lXCt2sWC5jTHvPzwGgy9jNXi+CtKMJRlGrHUmBW -a9woL3caOdAp1i9t6VmXeRO3PBYsByeyuGJoREVRThHu+ZhzQkz3oHGFO5YJbu/o -OKWwWJ9mQUl6jF1uwNTtAgMBAAGjUzBRMB0GA1UdDgQWBBS3bxJnHddd56q+WltD -VsbewxdDVDAfBgNVHSMEGDAWgBS3bxJnHddd56q+WltDVsbewxdDVDAPBgNVHRMB -Af8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCceD5savXA4dhGUss0D8DPIvSg -DS3mjnJtaD7SFqfDmyqM8W9ocQK7yrzdQiywZT+dI8dCnVm1hB5e5l3lTZwTLU41 -XLq4WdHBeimwWIuZl+pKKvXcQUHUkK4epJFrt6mj0onExNSDNI4i7Xk+XnMVIu35 -VrF6IhLrD2AznQyOqY0WeLGmoXe3FT5caUiTm5Kg28xTJC9m7hDOFE34d0Aqb+U1 -U4GFlmXor+MdNKYTEJJy3pslxEZOiRNiiLKWjecYrcKfSk0LY/8TkqVB44pZBQZB -6naQfFuuxDtEa6bHM0q+P/6HM35tpEu6TEJ1eU/yRrejhySFIHfKTjy/WXsm ------END CERTIFICATE----- diff --git a/data/certs/phishmail/mail.google.com.crt b/data/certs/phishmail/mail.google.com.crt deleted file mode 100644 index aa0fa23..0000000 --- a/data/certs/phishmail/mail.google.com.crt +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDWTCCAkGgAwIBAgIUOzmq7jW+wmCJdR9vdQNaC7/DJCwwDQYJKoZIhvcNAQEL -BQAwPDEYMBYGA1UEAwwPbWFpbC5nb29nbGUuY29tMRMwEQYDVQQKDApHb29nbGUg -TExDMQswCQYDVQQGEwJVUzAeFw0yNjAzMDMxMjA2MDFaFw0yNzAzMDMxMjA2MDFa -MDwxGDAWBgNVBAMMD21haWwuZ29vZ2xlLmNvbTETMBEGA1UECgwKR29vZ2xlIExM -QzELMAkGA1UEBhMCVVMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCO -dJygnzih+j44Z7O08n8lWfIpkEBFQtLeoWWbUhi66uIGnISw0x41LxQRSa0pM/cK -1dkQV9olBxOcmFY6XaT8YP7AXt5NkvH0Y/3vE2JHRJpxw0W8ug2tX4pwWCXMkJn2 -/Ih2d/VBzDLKp4UK+KTse+2qrFRsvReoOuWzXBqpLC2Ch4pvz1skmjA/hsH7OiWx -ADeBrtphh+1vHhMM27x6D0i3K0tSvhoZBamjXt7qzjPtPGj7dXlHB+S6LkAJC5pF -vL5GYTc5gSceoUzgBFWVVfLP2TYYyDpss/LFnWnvWMqqrvsW8WNaMmHeOI9RA+Q+ -rcOjxi7VwDmjm6iwvWFNAgMBAAGjUzBRMB0GA1UdDgQWBBQzYwznwTj7ZM89NikD -ty1B33oAlDAfBgNVHSMEGDAWgBQzYwznwTj7ZM89NikDty1B33oAlDAPBgNVHRMB -Af8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQBhp5GxpRz0lw4uRhJvw3ewhPX6 -UHBnWqMb3g4e3zc7RVWqcN4gj9j4ZTFoJxOs2Hw+VfO1i+x3/f4CSxmFrd6FcqNl -B7rRl1+9zup6Me2EQ+XM6mS4Xwf6gmjSvetpcpJAk42c52JdiXq29zZgAPG9n7iz -DrHN70wsB/xGbA2XqcwsOuy3uoBR3TSj9ka3gzrRC1JkP0phcKxlxUYigWaBB/uH -pl5APHqN5fvPyXkiTdX0YQpnRGONm+aMO/LUutIZj4dghQdpJBdDQgv7r3MZl5Z5 -Q1UWqnkFwgO4/sjd7yU7u7DODV5/QIzJ9BWRyhIOXiTArU1+M80SP79WJHKa ------END CERTIFICATE----- diff --git a/data/ddos_config.json b/data/ddos_config.json deleted file mode 100644 index ac3bb9f..0000000 --- a/data/ddos_config.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "enabled": false, - "auto_block_top_talkers": true, - "auto_enable_syn_cookies": true, - "connection_threshold": 100, - "syn_threshold": 50, - "updated": "2026-03-02T23:30:44.437461" -} \ No newline at end of file diff --git a/data/dns/config.json b/data/dns/config.json deleted file mode 100644 index 8890b1a..0000000 --- a/data/dns/config.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "listen_dns": "10.0.0.56:53", - "listen_api": "127.0.0.1:5380", - "api_token": "5ed79350fed2490d2aca6f3b29776365", - "upstream": [], - "cache_ttl": 300, - "zones_dir": "C:\\she\\autarch\\data\\dns\\zones", - "dnssec_keys_dir": "C:\\she\\autarch\\data\\dns\\keys", - "log_queries": true -} \ No newline at end of file diff --git a/data/dns/zones/autarch.local.json b/data/dns/zones/autarch.local.json deleted file mode 100644 index 75043cb..0000000 --- a/data/dns/zones/autarch.local.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "domain": "autarch.local", - "soa": { - "primary_ns": "ns1.autarch.local", - "admin_email": "admin.autarch.local", - "serial": 1772537115, - "refresh": 3600, - "retry": 600, - "expire": 86400, - "min_ttl": 300 - }, - "records": [ - { - "id": "ns1", - "type": "NS", - "name": "autarch.local.", - "value": "ns1.autarch.local.", - "ttl": 3600 - }, - { - "id": "mx1", - "type": "MX", - "name": "autarch.local.", - "value": "mx.autarch.local.", - "ttl": 3600, - "priority": 10 - }, - { - "id": "spf1", - "type": "TXT", - "name": "autarch.local.", - "value": "v=spf1 ip4:127.0.0.1 -all", - "ttl": 3600 - }, - { - "id": "dmarc1", - "type": "TXT", - "name": "_dmarc.autarch.local.", - "value": "v=DMARC1; p=none; rua=mailto:dmarc@autarch.local", - "ttl": 3600 - }, - { - "id": "r1772537722879235900", - "type": "A", - "name": "https://autarch.local", - "value": "10.0.0.56:8181", - "ttl": 300 - } - ], - "dnssec": true, - "created_at": "2026-03-03T11:25:07Z", - "updated_at": "2026-03-03T12:24:00Z" -} \ No newline at end of file diff --git a/data/exports/osint_testuser_20260214_041834.csv b/data/exports/osint_testuser_20260214_041834.csv deleted file mode 100644 index 893f705..0000000 --- a/data/exports/osint_testuser_20260214_041834.csv +++ /dev/null @@ -1,2 +0,0 @@ -Site,URL,Category,Status,Confidence -GitHub,https://github.com/test,,good,85 \ No newline at end of file diff --git a/data/exports/osint_testuser_20260214_041834.json b/data/exports/osint_testuser_20260214_041834.json deleted file mode 100644 index 00db19a..0000000 --- a/data/exports/osint_testuser_20260214_041834.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "query": "testuser", - "exported": "2026-02-14T04:18:34.669640", - "total_results": 1, - "results": [ - { - "name": "GitHub", - "url": "https://github.com/test", - "status": "good", - "rate": 85 - } - ] -} \ No newline at end of file diff --git a/data/hack_hijack/scans.json b/data/hack_hijack/scans.json deleted file mode 100644 index 0ed96f8..0000000 --- a/data/hack_hijack/scans.json +++ /dev/null @@ -1,29 +0,0 @@ -[ - { - "target": "67.183.122.213", - "scan_time": "2026-03-08T23:37:06.286067+00:00", - "duration": 6.04, - "open_ports": [], - "backdoors": [], - "os_guess": "", - "smb_info": {} - }, - { - "target": "67.183.122.213", - "scan_time": "2026-03-08T23:48:58.061607+00:00", - "duration": 6.03, - "open_ports": [], - "backdoors": [], - "os_guess": "", - "smb_info": {} - }, - { - "target": "67.183.122.213", - "scan_time": "2026-03-09T00:48:50.872756+00:00", - "duration": 3.01, - "open_ports": [], - "backdoors": [], - "os_guess": "", - "smb_info": {} - } -] \ No newline at end of file diff --git a/data/hal_system_prompt.txt b/data/hal_system_prompt.txt deleted file mode 100644 index afd7cbb..0000000 --- a/data/hal_system_prompt.txt +++ /dev/null @@ -1,98 +0,0 @@ -You are Hal, the AI agent powering Project AUTARCH — an autonomous security platform built by darkHal Security Group. - -## Your Capabilities -You can read files, write files, execute shell commands, search the codebase, and create new AUTARCH modules on demand. When a user asks you to build a tool or module, you build it. - -## AUTARCH Codebase Structure -- `modules/` — Plugin modules (Python files). Each one is a standalone tool. -- `core/` — Framework internals (llm.py, agent.py, tools.py, config.py, wireshark.py, etc.) -- `web/` — Flask web dashboard (routes/, templates/, static/) -- `data/` — Databases, configs, JSON files -- `models/` — LLM model files (GGUF) - -## Module Categories -| Category | Color | Purpose | -|----------|-------|---------| -| defense | Blue | Security hardening, monitoring, firewalls | -| offense | Red | Penetration testing, exploitation | -| counter | Purple | Counter-intelligence, threat response | -| analyze | Cyan | Analysis, forensics, packet inspection | -| osint | Green | Open source intelligence gathering | -| simulate | Yellow | Attack simulation, red team exercises | - -## How to Create a Module -Every module in `modules/` MUST have these attributes and a `run()` function: - -```python -""" -Module description docstring -""" -import os -import sys -import subprocess -from pathlib import Path - -# Module metadata — REQUIRED -DESCRIPTION = "What this module does" -AUTHOR = "darkHal" -VERSION = "1.0" -CATEGORY = "defense" # One of: defense, offense, counter, analyze, osint, simulate - -sys.path.insert(0, str(Path(__file__).parent.parent)) -from core.banner import Colors, clear_screen, display_banner - - -class ModuleClassName: - """Main class for this module.""" - - def print_status(self, message, status="info"): - colors = {"info": Colors.CYAN, "success": Colors.GREEN, "warning": Colors.YELLOW, "error": Colors.RED} - symbols = {"info": "*", "success": "+", "warning": "!", "error": "X"} - print(f"{colors.get(status, Colors.WHITE)}[{symbols.get(status, '*')}] {message}{Colors.RESET}") - - def run_cmd(self, cmd, timeout=30): - try: - r = subprocess.run(cmd, shell=True, capture_output=True, text=True, timeout=timeout) - return r.returncode == 0, r.stdout.strip() - except Exception as e: - return False, str(e) - - # Add your methods here... - - -def run(): - """Entry point for CLI mode.""" - mod = ModuleClassName() - # Interactive menu or direct execution -``` - -## Important Rules -1. Use the `create_module` tool to write modules — it validates and saves them automatically -2. Always include the metadata: DESCRIPTION, AUTHOR, VERSION, CATEGORY -3. Always include a `run()` function -4. Use `subprocess.run()` for system commands — support both Windows (PowerShell/netsh) and Linux (bash) -5. Import from `core.banner` for Colors -6. Module filenames should be lowercase with underscores (e.g., `port_scanner.py`) -7. Study existing modules with `read_file` if you need to understand patterns -8. The web dashboard discovers modules automatically from the `modules/` directory - -## Platform -This system runs on Windows. Use PowerShell commands where appropriate, but also support Linux fallbacks. - -## Existing Modules (for reference) -- defender.py — System hardening checks (CATEGORY: defense) -- defender_windows.py — Windows-native security checks (CATEGORY: defense) -- defender_monitor.py — Real-time threat monitoring (CATEGORY: defense) -- recon.py — Network reconnaissance (CATEGORY: offense) -- counter.py — Counter-intelligence tools (CATEGORY: counter) -- adultscan.py — Adult content scanner (CATEGORY: analyze) -- agent_hal.py — AI security automation (CATEGORY: core) -- wireshark.py — Packet analysis (CATEGORY: analyze) -- hardware_local.py — Hardware interaction (CATEGORY: hardware) - -## How You Should Respond -- For simple questions: answer directly -- For module creation requests: use the create_module tool -- For system queries: use the shell tool -- For code exploration: use read_file and search_files -- Always explain what you're doing and why diff --git a/data/pentest_sessions/10_0_0_56_20260214_010220.json b/data/pentest_sessions/10_0_0_56_20260214_010220.json deleted file mode 100644 index 40c80e6..0000000 --- a/data/pentest_sessions/10_0_0_56_20260214_010220.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "session_id": "10_0_0_56_20260214_010220", - "target": "10.0.0.56", - "state": "completed", - "created_at": "2026-02-14T01:02:20.746609", - "updated_at": "2026-02-14T01:12:20.951316", - "notes": "", - "step_count": 0, - "tree": { - "target": "10.0.0.56", - "created_at": "2026-02-14T01:02:20.746597", - "updated_at": "2026-02-14T01:02:20.746742", - "root_nodes": [ - "e0d00dbc", - "cf120ead", - "6f4a664c", - "814f0376", - "5b602881", - "4d2e70e8" - ], - "nodes": { - "e0d00dbc": { - "id": "e0d00dbc", - "label": "Reconnaissance", - "node_type": "reconnaissance", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Information gathering and target enumeration", - "tool_output": null, - "findings": [], - "priority": 1, - "created_at": "2026-02-14T01:02:20.746668", - "updated_at": "2026-02-14T01:02:20.746668" - }, - "cf120ead": { - "id": "cf120ead", - "label": "Initial Access", - "node_type": "initial_access", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Gaining initial foothold on target", - "tool_output": null, - "findings": [], - "priority": 2, - "created_at": "2026-02-14T01:02:20.746685", - "updated_at": "2026-02-14T01:02:20.746685" - }, - "6f4a664c": { - "id": "6f4a664c", - "label": "Privilege Escalation", - "node_type": "privilege_escalation", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Escalating from initial access to higher privileges", - "tool_output": null, - "findings": [], - "priority": 3, - "created_at": "2026-02-14T01:02:20.746699", - "updated_at": "2026-02-14T01:02:20.746699" - }, - "814f0376": { - "id": "814f0376", - "label": "Lateral Movement", - "node_type": "lateral_movement", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Moving to other systems in the network", - "tool_output": null, - "findings": [], - "priority": 4, - "created_at": "2026-02-14T01:02:20.746711", - "updated_at": "2026-02-14T01:02:20.746711" - }, - "5b602881": { - "id": "5b602881", - "label": "Credential Access", - "node_type": "credential_access", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Obtaining credentials and secrets", - "tool_output": null, - "findings": [], - "priority": 3, - "created_at": "2026-02-14T01:02:20.746726", - "updated_at": "2026-02-14T01:02:20.746726" - }, - "4d2e70e8": { - "id": "4d2e70e8", - "label": "Persistence", - "node_type": "persistence", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Maintaining access to compromised systems", - "tool_output": null, - "findings": [], - "priority": 5, - "created_at": "2026-02-14T01:02:20.746739", - "updated_at": "2026-02-14T01:02:20.746739" - } - } - }, - "events": [ - { - "timestamp": "2026-02-14T01:02:20.746747", - "event_type": "state_change", - "data": { - "from": "idle", - "to": "running" - } - }, - { - "timestamp": "2026-02-14T01:12:20.951316", - "event_type": "state_change", - "data": { - "from": "running", - "to": "completed", - "summary": "" - } - } - ], - "findings": [], - "pipeline_history": [] -} \ No newline at end of file diff --git a/data/pentest_sessions/192_168_1_100_20260127_202421.json b/data/pentest_sessions/192_168_1_100_20260127_202421.json deleted file mode 100644 index b59d31f..0000000 --- a/data/pentest_sessions/192_168_1_100_20260127_202421.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "session_id": "192_168_1_100_20260127_202421", - "target": "192.168.1.100", - "state": "running", - "created_at": "2026-01-27T20:24:21.604010", - "updated_at": "2026-01-27T20:24:21.604098", - "notes": "", - "step_count": 0, - "tree": { - "target": "192.168.1.100", - "created_at": "2026-01-27T20:24:21.604003", - "updated_at": "2026-01-27T20:24:21.604091", - "root_nodes": [ - "4be13ed9", - "8dc38740", - "22ee2768", - "2c45477f", - "6f793ae8", - "778fc896" - ], - "nodes": { - "4be13ed9": { - "id": "4be13ed9", - "label": "Reconnaissance", - "node_type": "reconnaissance", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Information gathering and target enumeration", - "tool_output": null, - "findings": [], - "priority": 1, - "created_at": "2026-01-27T20:24:21.604032", - "updated_at": "2026-01-27T20:24:21.604032" - }, - "8dc38740": { - "id": "8dc38740", - "label": "Initial Access", - "node_type": "initial_access", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Gaining initial foothold on target", - "tool_output": null, - "findings": [], - "priority": 2, - "created_at": "2026-01-27T20:24:21.604044", - "updated_at": "2026-01-27T20:24:21.604044" - }, - "22ee2768": { - "id": "22ee2768", - "label": "Privilege Escalation", - "node_type": "privilege_escalation", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Escalating from initial access to higher privileges", - "tool_output": null, - "findings": [], - "priority": 3, - "created_at": "2026-01-27T20:24:21.604056", - "updated_at": "2026-01-27T20:24:21.604056" - }, - "2c45477f": { - "id": "2c45477f", - "label": "Lateral Movement", - "node_type": "lateral_movement", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Moving to other systems in the network", - "tool_output": null, - "findings": [], - "priority": 4, - "created_at": "2026-01-27T20:24:21.604066", - "updated_at": "2026-01-27T20:24:21.604066" - }, - "6f793ae8": { - "id": "6f793ae8", - "label": "Credential Access", - "node_type": "credential_access", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Obtaining credentials and secrets", - "tool_output": null, - "findings": [], - "priority": 3, - "created_at": "2026-01-27T20:24:21.604077", - "updated_at": "2026-01-27T20:24:21.604077" - }, - "778fc896": { - "id": "778fc896", - "label": "Persistence", - "node_type": "persistence", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Maintaining access to compromised systems", - "tool_output": null, - "findings": [], - "priority": 5, - "created_at": "2026-01-27T20:24:21.604088", - "updated_at": "2026-01-27T20:24:21.604088" - } - } - }, - "events": [ - { - "timestamp": "2026-01-27T20:24:21.604098", - "event_type": "state_change", - "data": { - "from": "idle", - "to": "running" - } - } - ], - "findings": [], - "pipeline_history": [] -} \ No newline at end of file diff --git a/data/pentest_sessions/192_168_50_78_20260130_133833.json b/data/pentest_sessions/192_168_50_78_20260130_133833.json deleted file mode 100644 index eb0afcf..0000000 --- a/data/pentest_sessions/192_168_50_78_20260130_133833.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "session_id": "192_168_50_78_20260130_133833", - "target": "192.168.50.78", - "state": "running", - "created_at": "2026-01-30T13:38:33.830336", - "updated_at": "2026-01-30T13:38:33.830464", - "notes": "", - "step_count": 0, - "tree": { - "target": "192.168.50.78", - "created_at": "2026-01-30T13:38:33.830323", - "updated_at": "2026-01-30T13:38:33.830460", - "root_nodes": [ - "e4c40c28", - "ddd63828", - "b3f2634d", - "9c162c78", - "aa40d5a3", - "0c50a23d" - ], - "nodes": { - "e4c40c28": { - "id": "e4c40c28", - "label": "Reconnaissance", - "node_type": "reconnaissance", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Information gathering and target enumeration", - "tool_output": null, - "findings": [], - "priority": 1, - "created_at": "2026-01-30T13:38:33.830390", - "updated_at": "2026-01-30T13:38:33.830390" - }, - "ddd63828": { - "id": "ddd63828", - "label": "Initial Access", - "node_type": "initial_access", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Gaining initial foothold on target", - "tool_output": null, - "findings": [], - "priority": 2, - "created_at": "2026-01-30T13:38:33.830408", - "updated_at": "2026-01-30T13:38:33.830408" - }, - "b3f2634d": { - "id": "b3f2634d", - "label": "Privilege Escalation", - "node_type": "privilege_escalation", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Escalating from initial access to higher privileges", - "tool_output": null, - "findings": [], - "priority": 3, - "created_at": "2026-01-30T13:38:33.830421", - "updated_at": "2026-01-30T13:38:33.830421" - }, - "9c162c78": { - "id": "9c162c78", - "label": "Lateral Movement", - "node_type": "lateral_movement", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Moving to other systems in the network", - "tool_output": null, - "findings": [], - "priority": 4, - "created_at": "2026-01-30T13:38:33.830433", - "updated_at": "2026-01-30T13:38:33.830433" - }, - "aa40d5a3": { - "id": "aa40d5a3", - "label": "Credential Access", - "node_type": "credential_access", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Obtaining credentials and secrets", - "tool_output": null, - "findings": [], - "priority": 3, - "created_at": "2026-01-30T13:38:33.830445", - "updated_at": "2026-01-30T13:38:33.830445" - }, - "0c50a23d": { - "id": "0c50a23d", - "label": "Persistence", - "node_type": "persistence", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Maintaining access to compromised systems", - "tool_output": null, - "findings": [], - "priority": 5, - "created_at": "2026-01-30T13:38:33.830457", - "updated_at": "2026-01-30T13:38:33.830457" - } - } - }, - "events": [ - { - "timestamp": "2026-01-30T13:38:33.830464", - "event_type": "state_change", - "data": { - "from": "idle", - "to": "running" - } - } - ], - "findings": [], - "pipeline_history": [] -} \ No newline at end of file diff --git a/data/pentest_sessions/example_com_20260128_192244.json b/data/pentest_sessions/example_com_20260128_192244.json deleted file mode 100644 index 4bcc37c..0000000 --- a/data/pentest_sessions/example_com_20260128_192244.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "session_id": "example_com_20260128_192244", - "target": "example.com", - "state": "running", - "created_at": "2026-01-28T19:22:44.670292", - "updated_at": "2026-01-28T19:22:44.670428", - "notes": "test", - "step_count": 0, - "tree": { - "target": "example.com", - "created_at": "2026-01-28T19:22:44.670279", - "updated_at": "2026-01-28T19:22:44.670423", - "root_nodes": [ - "466dcf04", - "55991daa", - "e3209082", - "af036f87", - "633c0eeb", - "8584f7fc" - ], - "nodes": { - "466dcf04": { - "id": "466dcf04", - "label": "Reconnaissance", - "node_type": "reconnaissance", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Information gathering and target enumeration", - "tool_output": null, - "findings": [], - "priority": 1, - "created_at": "2026-01-28T19:22:44.670353", - "updated_at": "2026-01-28T19:22:44.670353" - }, - "55991daa": { - "id": "55991daa", - "label": "Initial Access", - "node_type": "initial_access", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Gaining initial foothold on target", - "tool_output": null, - "findings": [], - "priority": 2, - "created_at": "2026-01-28T19:22:44.670371", - "updated_at": "2026-01-28T19:22:44.670371" - }, - "e3209082": { - "id": "e3209082", - "label": "Privilege Escalation", - "node_type": "privilege_escalation", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Escalating from initial access to higher privileges", - "tool_output": null, - "findings": [], - "priority": 3, - "created_at": "2026-01-28T19:22:44.670384", - "updated_at": "2026-01-28T19:22:44.670384" - }, - "af036f87": { - "id": "af036f87", - "label": "Lateral Movement", - "node_type": "lateral_movement", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Moving to other systems in the network", - "tool_output": null, - "findings": [], - "priority": 4, - "created_at": "2026-01-28T19:22:44.670397", - "updated_at": "2026-01-28T19:22:44.670397" - }, - "633c0eeb": { - "id": "633c0eeb", - "label": "Credential Access", - "node_type": "credential_access", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Obtaining credentials and secrets", - "tool_output": null, - "findings": [], - "priority": 3, - "created_at": "2026-01-28T19:22:44.670408", - "updated_at": "2026-01-28T19:22:44.670408" - }, - "8584f7fc": { - "id": "8584f7fc", - "label": "Persistence", - "node_type": "persistence", - "status": "todo", - "parent_id": null, - "children": [], - "details": "Maintaining access to compromised systems", - "tool_output": null, - "findings": [], - "priority": 5, - "created_at": "2026-01-28T19:22:44.670420", - "updated_at": "2026-01-28T19:22:44.670420" - } - } - }, - "events": [ - { - "timestamp": "2026-01-28T19:22:44.670428", - "event_type": "state_change", - "data": { - "from": "idle", - "to": "running" - } - } - ], - "findings": [], - "pipeline_history": [] -} \ No newline at end of file diff --git a/data/rcs_tools/backups/rcs_backup_20260303_151154.xml b/data/rcs_tools/backups/rcs_backup_20260303_151154.xml deleted file mode 100644 index a8bf431..0000000 --- a/data/rcs_tools/backups/rcs_backup_20260303_151154.xml +++ /dev/null @@ -1,761 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/data/sites/blackbird.json b/data/sites/blackbird.json deleted file mode 100644 index 7d4ad65..0000000 --- a/data/sites/blackbird.json +++ /dev/null @@ -1,10185 +0,0 @@ -{ - "license": [ - "Copyright (C) 2025 Micah Hoffman", - "This work is licensed under the Creative Commons Attribution-ShareAlike", - "4.0 International License. To view a copy of this license, visit", - "http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to", - "Creative Commons, PO Box 1866, Mountain View, CA 94042, USA." - ], - "authors": [ - "0x9404", - "3xp0rt", - "alexisthereal", - "alvaromaltrain", - "arin17bishwa", - "AXRoux", - "balestek", - "Brenden2008", - "C3n7ral051nt4g3ncy", - "Contributions since 2023-12", - "degun-osint", - "End of interactive chart.", - "fres621", - "Its-Just-Nans", - "Itsoon", - "janhalendk", - "K2SOsint", - "maxk096", - "Micah Hoffman", - "ni5arga", - "p1ngul1n0", - "Paradoxxs", - "serdaraltin", - "SlopeSlayer910", - "SorkoPiko", - "TikvahTerminator" - ], - "categories": [ - "archived", - "art", - "blog", - "business", - "coding", - "dating", - "finance", - "gaming", - "health", - "hobby", - "images", - "misc", - "music", - "news", - "political", - "search", - "shopping", - "social", - "tech", - "video", - "xx NSFW xx" - ], - "sites": [ - { - "name": "21buttons", - "uri_check": "https://www.21buttons.com/buttoner/{account}", - "e_code": 200, - "e_string": "profile-info__profile-data__name", - "m_string": "This is not the page you're looking for", - "m_code": 404, - "known": [ - "patricialmendro", - "ginamariahoffmann", - "espeworkout" - ], - "cat": "social" - }, - { - "name": "247CTF", - "uri_check": "https://247ctf.com/progress/{account}", - "e_code": 200, - "e_string": "property=\"og:url\"", - "m_string": "

Redirecting...

", - "m_code": 302, - "known": [ - "pottm", - "jusb3" - ], - "cat": "tech" - }, - { - "name": "247sports", - "uri_check": "https://247sports.com/User/{account}/", - "e_code": 200, - "e_string": "247Sports", - "m_code": 404, - "known": [ - "bob", - "john" - ], - "cat": "hobby" - }, - { - "name": "35photo", - "uri_check": "https://35photo.pro/@{account}/", - "e_code": 200, - "e_string": "Ошибка / 7dach.ru", - "m_code": 404, - "known": [ - "lana", - "svetlana" - ], - "cat": "social" - }, - { - "name": "about.me", - "uri_check": "https://about.me/{account}", - "e_code": 200, - "e_string": " | about.me", - "m_string": "about.me", - "m_code": 404, - "known": [ - "john", - "jill" - ], - "cat": "social" - }, - { - "name": "ACF", - "uri_check": "https://support.advancedcustomfields.com/forums/users/{account}/", - "e_code": 200, - "e_string": "ACF Support", - "m_string": "Page Not Found", - "m_code": 200, - "known": [ - "mike", - "greg" - ], - "cat": "coding" - }, - { - "name": "AdmireMe.VIP", - "uri_check": "https://admireme.vip/{account}/", - "e_code": 200, - "e_string": "creator-stat subscriber", - "m_string": "<title>Page Not Found |", - "m_code": 404, - "known": [ - "justjessicarabbit", - "savannah250xo" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Adult_Forum", - "uri_check": "https://adultforum.gr/{account}-glamour-escorts/", - "e_code": 200, - "e_string": "Glamour Escorts ", - "m_string": "Page not found - Adult Forum Gr", - "m_code": 404, - "known": [ - "nastya3", - "ekaterina" - ], - "cat": "xx NSFW xx" - }, - { - "name": "adultism", - "uri_check": "https://www.adultism.com/profile/{account}", - "e_code": 200, - "e_string": "Last login:", - "m_string": "<title> Not Found", - "m_code": 404, - "known": [ - "laura", - "sara" - ], - "cat": "xx NSFW xx" - }, - { - "name": "ADVFN", - "uri_check": "https://uk.advfn.com/forum/profile/{account}", - "e_code": 200, - "e_string": "Profile | ADVFN", - "m_string": "ADVFN ERROR - Page Not Found", - "m_code": 404, - "known": [ - "crypto", - "crypto1" - ], - "cat": "finance" - }, - { - "name": "Airline_Pilot_Life", - "uri_check": "https://airlinepilot.life/u/{account}.json", - "uri_pretty": "https://airlinepilot.life/u/{account}", - "e_code": 200, - "e_string": "primary_group_name", - "m_string": "he requested URL or resource could not be found.", - "m_code": 404, - "known": [ - "hannah", - "addison" - ], - "cat": "social" - }, - { - "name": "Airliners", - "uri_check": "https://www.airliners.net/user/{account}/profile", - "e_code": 200, - "e_string": "'s Profile | Airliners Members | Airliners.net", - "m_string": "An Error Occurred", - "m_code": 404, - "known": [ - "pilot", - "pilota" - ], - "cat": "social" - }, - { - "name": "akniga", - "uri_check": "https://akniga.org/profile/{account}", - "e_code": 200, - "e_string": " - Аудиокниги Клуб</title", - "m_string": "К сожалению, такой страницы не существует. Вероятно, она была удалена с сервера, либо ее здесь никогда не было.", - "m_code": 200, - "known": [ - "bob", - "blue" - ], - "cat": "hobby" - }, - { - "name": "Albicla", - "uri_check": "https://albicla.com/{account}/post/1", - "uri_pretty": "https://albicla.com/{account}", - "e_code": 500, - "e_string": "500 Post tymczasowo niedostępny", - "m_string": "404 Nie znaleziono użytkownika", - "m_code": 200, - "known": [ - "GazetaPolska", - "GPCodziennie" - ], - "cat": "social" - }, - { - "name": "alik", - "uri_check": "https://www.alik.cz/u/{account}", - "e_code": 200, - "e_string": "Vizitka – Alík.cz", - "m_string": "Vizitka nenalezena", - "m_code": 404, - "known": [ - "igor", - "pavel" - ], - "cat": "social" - }, - { - "name": "AllMyLinks", - "uri_check": "https://allmylinks.com/{account}", - "e_code": 200, - "e_string": "class=\"site-profile guest\"", - "m_string": "class=\"site-error\"", - "m_code": 404, - "known": [ - "blue", - "goddessbecca" - ], - "cat": "social", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Alura", - "uri_check": "https://cursos.alura.com.br/user/{account}", - "e_code": 200, - "e_string": "Perfil de", - "m_string": "\"error\":\"Not Found\"", - "m_code": 404, - "known": [ - "edmilson", - "jonathan" - ], - "cat": "tech" - }, - { - "name": "Ameblo", - "uri_check": "https://ameblo.jp/{account}", - "e_code": 200, - "e_string": "画像一覧", - "m_string": "削除された可能性がございます。", - "m_code": 404, - "known": [ - "ereko-blog", - "senpai" - ], - "cat": "blog" - }, - { - "name": "AmericanThinker", - "uri_check": "https://www.americanthinker.com/author/{account}/", - "e_code": 200, - "e_string": "Articles &", - "m_string": "American Thinker", - "m_code": 301, - "known": [ - "terrypaulding", - "monicashowalter" - ], - "cat": "political" - }, - { - "name": "AniList", - "uri_check": "https://graphql.anilist.co", - "uri_pretty": "https://anilist.co/user/{account}", - "post_body": "{\"query\":\"query{User(name:\\\"{account}\\\"){id name}}\"}", - "headers": { - "accept": "application/json", - "Content-Type": "application/json" - }, - "e_code": 200, - "e_string": "\"id\":", - "m_string": "Not Found", - "m_code": 404, - "known": [ - "test", - "johndoe" - ], - "cat": "social" - }, - { - "name": "Anime-Planet", - "uri_check": "https://www.anime-planet.com/api/validation/username", - "uri_pretty": "https://www.anime-planet.com/users/{account}", - "post_body": "{\"username\":\"{account}\"}", - "headers": { - "Content-Type": "application/json" - }, - "e_code": 400, - "e_string": "\"msg\":\"Username is unavailable\"", - "m_string": "\"status\":\"ok\"", - "m_code": 200, - "known": [ - "zala", - "lindapearl" - ], - "cat": "social", - "protection": [ - "cloudflare" - ] - }, - { - "name": "anonup", - "uri_check": "https://anonup.com/@{account}", - "e_code": 200, - "e_string": "Show followings", - "m_string": "Page not found!", - "m_code": 302, - "known": [ - "john", - "peter" - ], - "cat": "social" - }, - { - "name": "Aparat", - "uri_check": "https://www.aparat.com/api/fa/v1/user/user/information/username/{account}", - "uri_pretty": "https://www.aparat.com/{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "class=\"error-body\"", - "m_code": 404, - "known": [ - "abolfazlxmaster", - "siahkolah" - ], - "cat": "social" - }, - { - "name": "Apex Legends", - "uri_check": "https://api.tracker.gg/api/v2/apex/standard/profile/origin/{account}", - "uri_pretty": "https://apex.tracker.gg/apex/profile/origin/{account}/overview", - "headers": { - "Accept-Language": "en-US,en;q=0.5", - "Origin": "https://apex.tracker.gg", - "Referer": "https://apex.tracker.gg/", - "TE": "trailers", - "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0" - }, - "e_code": 200, - "e_string": "platformInfo", - "m_string": "CollectorResultStatus::NotFound", - "m_code": 404, - "known": [ - "tttcheekyttt", - "RollsRoyce_Dawn" - ], - "cat": "gaming" - }, - { - "name": "Appian", - "uri_check": "https://community.appian.com/members/{account}", - "e_code": 200, - "e_string": "User Profile", - "m_string": "Go back to our", - "m_code": 301, - "known": [ - "mikec", - "varunkumarb0001" - ], - "cat": "tech" - }, - { - "name": "Arch Linux GitLab", - "uri_check": "https://gitlab.archlinux.org/api/v4/users?username={account}", - "uri_pretty": "https://gitlab.archlinux.org/{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "[]", - "m_code": 200, - "known": [ - "morganamilo", - "nl6720" - ], - "cat": "social" - }, - { - "name": "Archive Of Our Own Account", - "uri_check": "https://archiveofourown.org/users/{account}", - "e_code": 200, - "e_string": "class=\"user home\"", - "m_string": "class=\"system errors error-404 region\"", - "m_code": 404, - "known": [ - "test", - "john" - ], - "cat": "hobby" - }, - { - "name": "ArchWiki", - "uri_check": "https://wiki.archlinux.org/api.php?action=query&format=json&list=users&ususers={account}&usprop=cancreate&formatversion=2&errorformat=html&errorsuselocal=true&uselang=en", - "uri_pretty": "https://wiki.archlinux.org/title/User:{account}", - "e_code": 200, - "e_string": "\"userid\":", - "m_string": "\"missing\":true", - "m_code": 200, - "known": [ - "Lahwaacz", - "Erus_Iluvatar" - ], - "cat": "social" - }, - { - "name": "Arduino (Forum)", - "uri_check": "https://forum.arduino.cc/u/{account}.json", - "uri_pretty": "https://forum.arduino.cc/u/{account}/summary", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"error_type\":\"not_found\"", - "m_code": 404, - "known": [ - "martinhouse", - "gilshultz" - ], - "cat": "tech" - }, - { - "name": "Arduino (Project Hub)", - "uri_check": "https://projecthub.arduino.cc/{account}", - "e_code": 200, - "e_string": "\"userInfo\":{", - "m_string": "\"userInfo\":null", - "m_code": 200, - "known": [ - "peter", - "willy-js" - ], - "cat": "tech" - }, - { - "name": "ArmorGames", - "uri_check": "https://armorgames.com/user/{account}", - "e_code": 200, - "e_string": "about", - "m_string": "404: Oh Noes!", - "m_code": 302, - "known": [ - "john", - "sammy" - ], - "cat": "gaming" - }, - { - "name": "Arsmate", - "uri_check": "https://arsmate.com/{account}", - "e_code": 200, - "e_string": "far fa-user-circle mr-1", - "m_string": "error-link mt-5", - "m_code": 404, - "known": [ - "Angelic", - "Vardoc" - ], - "cat": "xx NSFW xx" - }, - { - "name": "ArtBreeder", - "uri_check": "https://www.artbreeder.com/{account}", - "e_code": 200, - "e_string": "", - "m_string": "Not found:", - "m_code": 404, - "known": [ - "dolores", - "cyborghyena" - ], - "cat": "art" - }, - { - "name": "Artists & Clients", - "uri_check": "https://artistsnclients.com/people/{account}", - "e_code": 200, - "e_string": "Member Since", - "m_string": "The page you requested wasn't there when we tried to get it for you. What a bother!", - "m_code": 404, - "known": [ - "luluc0", - "MuraArts" - ], - "cat": "art" - }, - { - "name": "ArtStation", - "uri_check": "https://www.artstation.com/{account}", - "e_code": 200, - "e_string": "Portfolio", - "m_string": "Page not found", - "m_code": 404, - "known": [ - "kongaxl_design", - "alex_pi" - ], - "cat": "art" - }, - { - "name": "asciinema", - "uri_check": "https://asciinema.org/~{account}", - "e_code": 200, - "e_string": "class=\"profile-page\"", - "m_string": "<h1>404 Not Found</h1>", - "m_code": 404, - "known": [ - "john", - "red" - ], - "cat": "coding" - }, - { - "name": "AtCoder", - "uri_check": "https://atcoder.jp/users/{account}", - "e_code": 200, - "e_string": "<h3>Contest Status</h3>", - "m_string": ">404 Page Not Found</h1>", - "m_code": 404, - "known": [ - "apiad", - "kotatsugame" - ], - "cat": "coding" - }, - { - "name": "au.ru", - "uri_check": "https://au.ru/user/{account}/", - "e_code": 200, - "e_string": "Лоты пользователя ", - "m_string": "Пользователь не найден", - "m_code": 404, - "known": [ - "Svetlana7", - "nastya" - ], - "cat": "misc" - }, - { - "name": "Audiojungle", - "uri_check": "https://audiojungle.net/user/{account}", - "e_code": 200, - "e_string": "s profile on AudioJungle", - "m_string": "404 - Nothing to see here", - "m_code": 404, - "known": [ - "john", - "reds" - ], - "cat": "music" - }, - { - "name": "Avid Community", - "uri_check": "https://community.avid.com/members/{account}/default.aspx", - "headers": { - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/png,image/svg+xml,*/*;q=0.8", - "Cache-Control": "no-cache", - "Host": "community.avid.com", - "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0" - }, - "e_code": 200, - "e_string": "My Activity", - "m_string": "The user you requested cannot be found.", - "m_code": 302, - "known": [ - "Thayne", - "Admin" - ], - "cat": "music" - }, - { - "name": "babepedia", - "uri_check": "https://www.babepedia.com/user/{account}", - "e_code": 200, - "e_string": "'s Page", - "m_string": "Profile not found", - "m_code": 404, - "known": [ - "cherry", - "betty" - ], - "cat": "xx NSFW xx" - }, - { - "name": "BabyPips", - "uri_check": "https://forums.babypips.com/u/{account}.json", - "uri_pretty": "https://forums.babypips.com/u/{account}/summary", - "e_code": 200, - "e_string": "user_badges", - "m_string": "The requested URL or resource could not be found", - "m_code": 404, - "known": [ - "baemax023", - "scottycarsonmvp" - ], - "cat": "social" - }, - { - "name": "Bandcamp", - "uri_check": "https://bandcamp.com/{account}", - "e_code": 200, - "e_string": " collection | Bandcamp", - "m_string": "

Sorry, that something isn’t here.

", - "m_code": 404, - "known": [ - "alice", - "bob" - ], - "cat": "music" - }, - { - "name": "Bandlab", - "uri_check": "https://www.bandlab.com/api/v1.3/users/{account}", - "uri_pretty": "https://www.bandlab.com/{account}", - "e_code": 200, - "e_string": "about", - "m_string": "Couldn't find any matching element, it might be deleted", - "m_code": 404, - "known": [ - "rave_flawless", - "delutaya" - ], - "cat": "music" - }, - { - "name": "bblog_ru", - "uri_check": "https://www.babyblog.ru/user/{account}", - "e_code": 200, - "e_string": ") — дневник на Babyblog.ru", - "m_string": "БэбиБлог - беременность, календарь беременности, дневники", - "m_code": 200, - "known": [ - "joyfitnessdance1", - "bobkokatya94" - ], - "cat": "misc" - }, - { - "name": "BDSMLR", - "uri_check": "https://{account}.bdsmlr.com", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "login", - "m_string": "This blog doesn't exist.", - "m_code": 200, - "known": [ - "themunch", - "shibari4all" - ], - "cat": "xx NSFW xx" - }, - { - "name": "bdsmsingles", - "uri_check": "https://www.bdsmsingles.com/members/{account}/", - "e_code": 200, - "e_string": "Profile", - "m_string": "BDSM Singles", - "m_code": 302, - "known": [ - "GoddessBlueDiamo", - "aalama" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Beacons", - "uri_check": "https://beacons.ai/{account}", - "e_code": 200, - "e_string": " - Link in Bio & Creator Tools | Beacons", - "m_string": "The page you are looking for does not seem to exist anymore", - "m_code": 200, - "known": [ - "rafaballerini", - "lexaloco", - "jardred" - ], - "cat": "social", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Bentbox", - "uri_check": "https://bentbox.co/{account}", - "e_code": 200, - "e_string": "
", - "m_string": "This user is currently not available", - "m_code": 200, - "known": [ - "brockdoom", - "witchhouse", - "hotoptics" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Bento", - "uri_check": "https://bento.me/{account}", - "e_code": 200, - "e_string": "href=\"https://bento.me/explore\"", - "m_string": ">Available!
", - "m_code": 404, - "known": [ - "carlito", - "taylor" - ], - "cat": "social" - }, - { - "name": "BiggerPockets", - "uri_check": "https://www.biggerpockets.com/users/{account}", - "e_code": 200, - "e_string": "| BiggerPockets", - "m_string": "Page not found", - "m_code": 404, - "known": [ - "trustgreene", - "chasel9" - ], - "cat": "finance" - }, - { - "name": "BIGO Live", - "uri_check": "https://www.bigo.tv/user/{account}", - "e_code": 200, - "e_string": "userInfo:{nickName", - "m_string": "userInfo:{}", - "m_code": 200, - "known": [ - "treasdior", - "Jacin19" - ], - "cat": "gaming" - }, - { - "name": "Bikemap", - "uri_check": "https://www.bikemap.net/en/u/{account}/routes/created/", - "e_code": 200, - "e_string": "- 🚲 Bikemap", - "m_string": "Page not found - Error 404 ", - "m_code": 404, - "known": [ - "mike", - "greg" - ], - "cat": "health" - }, - { - "name": "Bimpos", - "uri_check": "https://ask.bimpos.com/user/{account}", - "e_code": 200, - "e_string": "<title>User ", - "m_string": "Page not found", - "m_code": 404, - "known": [ - "john", - "db" - ], - "cat": "tech" - }, - { - "name": "Bio Sites", - "uri_check": "https://bio.site/{account}", - "e_code": 200, - "e_string": "section\":{\"handles", - "m_string": "This site no longer exists", - "m_code": 404, - "known": [ - "leticiabufoni", - "kayurkaRhea" - ], - "cat": "social" - }, - { - "name": "biolink", - "uri_check": "https://bio.link/{account}", - "e_code": 200, - "e_string": "profile:username", - "m_string": "The page you’re looking for doesn’t exist", - "m_code": 404, - "known": [ - "adli_hm", - "jake" - ], - "cat": "misc" - }, - { - "name": "Bitbucket", - "uri_check": "https://bitbucket.org/!api/2.0/repositories/{account}?page=1&pagelen=25&sort=-updated_on&q=&fields=-values.owner%2C-values.workspace", - "uri_pretty": "https://bitbucket.org/{account}/workspace/repositories/", - "e_code": 200, - "e_string": "full_name", - "m_string": "No workspace with identifier", - "m_code": 404, - "known": [ - "LaNMaSteR53", - "osamahalisawi" - ], - "cat": "coding" - }, - { - "name": "Bitchute", - "uri_check": "https://api.bitchute.com/api/beta/channel", - "uri_pretty": "https://www.bitchute.com/channel/{account}/", - "post_body": "{\"channel_id\":\"{account}\"}", - "headers": { - "Content-Type": "application/json" - }, - "e_code": 200, - "e_string": "\"channel_id\":", - "m_string": "\"errors\":", - "m_code": 404, - "known": [ - "simon_parkes", - "americafloats", - "daindor" - ], - "cat": "political" - }, - { - "name": "Blogger", - "uri_check": "https://www.blogger.com/profile/{account}", - "e_code": 200, - "e_string": "shadow-light user-stats", - "m_string": "Sorry, the blog you were looking for does not exist.", - "m_code": 405, - "known": [ - "07333944864481878697", - "05941544278367416980" - ], - "cat": "blog" - }, - { - "name": "blogi.pl", - "uri_check": "https://www.blogi.pl/osoba,{account}.html", - "e_code": 200, - "e_string": "Informacje ogólne", - "m_string": "Niepoprawny adres.", - "m_code": 200, - "known": [ - "naukowa", - "izkpaw" - ], - "cat": "blog" - }, - { - "name": "Blogmarks", - "uri_check": "http://blogmarks.net/user/{account}", - "e_code": 200, - "e_string": "class=\"mark\"", - "m_string": "", - "m_code": 200, - "known": [ - "test", - "mike" - ], - "cat": "misc" - }, - { - "name": "Blogspot", - "uri_check": "http://{account}.blogspot.com", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "Blogger Template Style", - "m_string": "Blog not found", - "m_code": 404, - "known": [ - "test" - ], - "cat": "blog" - }, - { - "name": "Bluesky 1", - "uri_check": "https://bsky.app/profile/{account}", - "e_code": 200, - "e_string": "on Bluesky", - "m_string": "<p id=\"bsky_did\"></p>", - "m_code": 200, - "known": [ - "bsky.app", - "safety.bsky.app" - ], - "cat": "social" - }, - { - "name": "Bluesky 2", - "uri_check": "https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor={account}.bsky.social", - "uri_pretty": "https://bsky.app/profile/{account}.bsky.social", - "e_code": 200, - "e_string": "\"handle\":\"", - "m_string": "\"message\":\"Profile not found\"", - "m_code": 400, - "known": [ - "john", - "mark" - ], - "cat": "social" - }, - { - "name": "BoardGameGeek", - "uri_check": "https://api.geekdo.com/api/accounts/validate/username?username={account}", - "uri_pretty": "https://boardgamegeek.com/user/{account}", - "e_code": 200, - "e_string": "\"message\":\"Sorry, this username is already taken.\"", - "m_string": "\"isValid\":true", - "m_code": 200, - "known": [ - "ntrautner", - "Petdoc" - ], - "cat": "gaming" - }, - { - "name": "BodyBuilding.com", - "uri_check": "http://api.bodybuilding.com/api-proxy/bbc/get?slug={account}", - "uri_pretty": "http://bodyspace.bodybuilding.com/{account}/", - "e_code": 200, - "e_string": "username", - "m_string": "data\" :\"\"", - "m_code": 200, - "known": [ - "mike" - ], - "cat": "health" - }, - { - "name": "bonga_cams", - "uri_check": "https://pt.bongacams.com/{account}", - "e_code": 200, - "e_string": "Chat público ao vivo de", - "m_string": "Câmaras de sexo free: chat pornô ao vivo", - "m_code": 404, - "known": [ - "prettykatea", - "milaowens" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Bookcrossing", - "uri_check": "https://www.bookcrossing.com/mybookshelf/{account}", - "e_code": 200, - "e_string": "Recent Book Activity", - "m_string": "Sorry, we were unable to locate the content that you requested.", - "m_code": 404, - "known": [ - "john", - "bob" - ], - "cat": "hobby" - }, - { - "name": "Booknode", - "uri_check": "https://booknode.com/profil/{account}", - "e_code": 200, - "e_string": "<title>Profil de", - "m_string": "<title>Page non trouvée", - "m_code": 404, - "known": [ - "Paraffine", - "chanoa" - ], - "cat": "hobby" - }, - { - "name": "Boosty", - "uri_check": "https://api.boosty.to/v1/blog/{account}", - "uri_pretty": "https://boosty.to/{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"error\":\"blog_not_found\"", - "m_code": 404, - "known": [ - "evdokia", - "lana" - ], - "cat": "social" - }, - { - "name": "Booth", - "uri_check": "https://{account}.booth.pm/", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "- BOOTH", - "m_string": "BOOTH - The International Indie Art Marketplace", - "m_code": 302, - "known": [ - "monoliorder", - "hasya" - ], - "cat": "shopping" - }, - { - "name": "Brickset", - "uri_check": "https://brickset.com/profile/{account}", - "e_code": 200, - "e_string": "Member since:", - "m_string": "{name}", - "m_code": 200, - "known": [ - "lowlead", - "vwong19" - ], - "cat": "hobby" - }, - { - "name": "BugCrowd", - "uri_check": "https://bugcrowd.com/{account}/profile_widgets", - "uri_pretty": "https://bugcrowd.com/{account}", - "e_code": 200, - "e_string": "\"widgets\":", - "m_string": "class='cc-error-page__msg'", - "m_code": 404, - "known": [ - "lopseg", - "Ebrietas" - ], - "cat": "tech" - }, - { - "name": "Bunpro", - "uri_check": "https://community.bunpro.jp/u/{account}.json", - "e_code": 200, - "e_string": "username", - "m_string": "The requested URL or resource could not be found.", - "m_code": 404, - "known": [ - "blacktide", - "honey" - ], - "cat": "social" - }, - { - "name": "Buy Me a Coffee", - "uri_check": "https://app.buymeacoffee.com/api/v1/check_availability", - "uri_pretty": "https://buymeacoffee.com/{account}", - "post_body": "{\"project_slug\":\"{account}\"}", - "headers": { - "Content-Type": "application/json" - }, - "e_code": 200, - "e_string": "\"available\":false", - "m_string": "\"available\":true", - "m_code": 200, - "known": [ - "freebird", - "robinwong" - ], - "cat": "finance", - "protection": [ - "cloudflare" - ] - }, - { - "name": "BuzzFeed", - "uri_check": "https://www.buzzfeed.com/{account}", - "e_code": 200, - "e_string": " on BuzzFeed", - "m_string": "Es posible que el enlace que seleccionaste esté roto o que se haya eliminado la página", - "m_code": 404, - "known": [ - "braftty", - "guillermo" - ], - "cat": "misc" - }, - { - "name": "Calendy", - "uri_check": "https://calendly.com/{account}", - "e_code": 200, - "e_string": "og:author", - "m_string": "Sorry, but the page you were looking for could not be found.", - "m_code": 404, - "known": [ - "honey", - "roger" - ], - "cat": "misc" - }, - { - "name": "Cameo", - "uri_check": "https://www.cameo.com/{account}", - "e_code": 200, - "e_string": "aggregateRating", - "m_string": "", - "m_code": 301, - "known": [ - "michael_owen10", - "sarahall3" - ], - "cat": "shopping" - }, - { - "name": "Carbonmade", - "uri_check": "https://{account}.carbonmade.com/", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "s online portfolio", - "m_string": "site not found", - "m_code": 404, - "known": [ - "jenny", - "bob" - ], - "cat": "hobby" - }, - { - "name": "Career.habr", - "uri_check": "https://career.habr.com/{account}", - "e_code": 200, - "e_string": "— Хабр Карьера", - "m_string": "Ошибка 404", - "m_code": 404, - "known": [ - "alex", - "bob" - ], - "cat": "business" - }, - { - "name": "carrd.co", - "uri_check": "https://{account}.carrd.co", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "( Made with Carrd )", - "m_string": "Sorry, the requested page could not be found.", - "m_code": 404, - "known": [ - "liam", - "peter" - ], - "cat": "business" - }, - { - "name": "CastingCallClub", - "uri_check": "https://www.castingcall.club/{account}", - "e_code": 200, - "e_string": "| Casting Call Club", - "m_string": "404: This is not the page you were looking for. In the future, our AI robot overlords will be able to better predict exactly what you were looking for.", - "m_code": 302, - "known": [ - "Lindz", - "Danye" - ], - "cat": "hobby" - }, - { - "name": "CD-Action", - "uri_check": "https://cdaction.pl/uzytkownicy/{account}", - "e_code": 200, - "e_string": "Lista gier:", - "m_string": "Coś się popsuło...", - "m_code": 404, - "known": [ - "saczuan", - "cormac" - ], - "cat": "gaming" - }, - { - "name": "cda.pl", - "uri_check": "https://www.cda.pl/{account}", - "e_code": 200, - "e_string": "Foldery", - "m_string": "Strona na którą chcesz wejść nie istnieje", - "m_code": 200, - "known": [ - "test2", - "janek" - ], - "cat": "video" - }, - { - "name": "Cent", - "uri_check": "https://beta.cent.co/data/user/profile?userHandles={account}", - "uri_pretty": "https://beta.cent.co/{account}/", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"results\":[]", - "m_code": 200, - "known": [ - "alex", - "ben" - ], - "cat": "social" - }, - { - "name": "cfx.re", - "uri_check": "https://forum.cfx.re/u/{account}.json", - "uri_pretty": "https://forum.cfx.re/u/{account}/summary", - "e_code": 200, - "e_string": "created_at", - "m_string": "The requested URL or resource could not be found.", - "m_code": 404, - "known": [ - "masiball", - "anel_hadzyc", - "kiminaze" - ], - "cat": "gaming" - }, - { - "name": "championat", - "uri_check": "https://www.championat.com/user/{account}/", - "e_code": 200, - "e_string": "Личный профил", - "m_string": "Извините, запрашиваемая страница не найдена", - "m_code": 404, - "known": [ - "john", - "bob" - ], - "cat": "news" - }, - { - "name": "Chamsko", - "uri_check": "https://www.chamsko.pl/profil/{account}", - "e_code": 200, - "e_string": "W serwisie od", - "m_string": "Strona nie istnieje.", - "m_code": 404, - "known": [ - "test", - "janek" - ], - "cat": "images" - }, - { - "name": "chatango.com", - "uri_check": "https://{account}.chatango.com", - "e_code": 200, - "e_string": "Chatango!", - "m_string": "<title>Unknown User!", - "m_code": 200, - "known": [ - "7nights", - "merbailey", - "steakomura", - "equicentric" - ], - "cat": "social" - }, - { - "name": "chaturbate", - "uri_check": "https://chaturbate.com/{account}/", - "e_code": 200, - "e_string": "'s Bio and Free Webcam", - "m_string": "It's probably just a broken link", - "m_code": 404, - "known": [ - "pussylovekate", - "kemii" - ], - "cat": "xx NSFW xx" - }, - { - "name": "cHEEZburger", - "uri_check": "https://profile.cheezburger.com/{account}", - "e_code": 200, - "e_string": "profile-header", - "m_string": "<title>Home - ", - "m_code": 302, - "known": [ - "john" - ], - "cat": "hobby" - }, - { - "name": "Chess.com", - "uri_check": "https://api.chess.com/pub/player/{account}", - "uri_pretty": "https://www.chess.com/member/{account}", - "e_code": 200, - "e_string": "player_id", - "m_string": "not found", - "m_code": 404, - "known": [ - "john", - "peter", - "josh" - ], - "cat": "gaming" - }, - { - "name": "Choko.Link", - "uri_check": "https://choko.link/api/auth/check", - "uri_pretty": "https://choko.link/{account}", - "post_body": "{\"username\":\"{account}\"}", - "e_code": 200, - "e_string": "\"result\":false", - "m_string": "\"result\":true", - "m_code": 200, - "known": [ - "yaroslava_lytvyak", - "eugeniapsychology" - ], - "cat": "social" - }, - { - "name": "Chomikuj.pl", - "uri_check": "https://chomikuj.pl/{account}/", - "e_code": 200, - "e_string": "Foldery", - "m_string": "Chomik o takiej nazwie nie istnieje", - "m_code": 404, - "known": [ - "test", - "test2" - ], - "cat": "misc" - }, - { - "name": "Chyoa", - "uri_check": "https://chyoa.com/user/{account}", - "e_code": 200, - "e_string": "When I'm not reading erotica I like to read", - "m_string": "Sorry, I got distracted...", - "m_code": 404, - "known": [ - "joe", - "carlos01" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Cloudflare", - "uri_check": "https://community.cloudflare.com/u/{account}/card.json", - "uri_pretty": "https://community.cloudflare.com/u/{account}", - "e_code": 200, - "e_string": "user_avatar", - "m_string": "The requested URL or resource could not be found", - "m_code": 404, - "known": [ - "carl", - "morten" - ], - "cat": "tech" - }, - { - "name": "Clubhouse", - "uri_check": "https://www.clubhouse.com/@{account}", - "e_code": 200, - "e_string": "\"user\":", - "m_string": "404", - "m_code": 404, - "known": [ - "kirbyplessas", - "rohan" - ], - "cat": "social" - }, - { - "name": "cnet", - "uri_check": "https://www.cnet.com/profiles/{account}/", - "e_code": 200, - "e_string": "Member Since:", - "m_string": "Page Not Found (404) - CNET", - "m_code": 301, - "known": [ - "john", - "bob" - ], - "cat": "news" - }, - { - "name": "Coda", - "uri_check": "https://coda.io/@{account}/", - "e_code": 200, - "e_string": "- Coda Profile", - "m_string": "Coda | Page not found - Coda", - "m_code": 404, - "known": [ - "huizer", - "kennywong" - ], - "cat": "hobby" - }, - { - "name": "Code Project", - "uri_check": "https://www.codeproject.com/Members/{account}", - "e_code": 200, - "e_string": "Member since", - "m_string": "Unable to load the requested member's information", - "m_code": 200, - "known": [ - "WmCraig", - "Rick-York" - ], - "cat": "coding" - }, - { - "name": "Codeberg", - "uri_check": "https://codeberg.org/{account}", - "e_code": 200, - "e_string": "Joined on", - "m_string": "The page you are trying to reach either", - "m_code": 404, - "known": [ - "dachary", - "happy" - ], - "cat": "coding" - }, - { - "name": "Codecademy", - "uri_check": "https://discuss.codecademy.com/u/{account}/summary", - "e_code": 200, - "e_string": " Profile - ", - "m_string": "Oops! That page doesn’t exist", - "m_code": 404, - "known": [ - "doctypeme", - "ocean.war" - ], - "cat": "coding" - }, - { - "name": "CodeChef", - "uri_check": "https://www.codechef.com/users/{account}", - "e_code": 200, - "e_string": "class=\"user-profile-container\"", - "m_string": "", - "m_code": 302, - "known": [ - "maroonrk", - "lyrically" - ], - "cat": "coding" - }, - { - "name": "Codeforces", - "uri_check": "https://codeforces.com/api/user.info?handles={account}", - "uri_pretty": "https://codeforces.com/profile/{account}", - "e_code": 200, - "e_string": "\"status\":\"OK\"", - "m_string": "\"status\":\"FAILED\"", - "m_code": 400, - "known": [ - "Abdul01", - "Abdullah" - ], - "cat": "coding" - }, - { - "name": "codementor", - "uri_check": "https://www.codementor.io/@{account}", - "e_code": 200, - "e_string": "ABOUT ME", - "m_string": "404/favicon.png", - "m_code": 404, - "known": [ - "e4c5", - "juanelfers" - ], - "cat": "coding" - }, - { - "name": "CodePen", - "uri_check": "https://codepen.io/{account}", - "e_code": 200, - "e_string": "property=\"og:url\"", - "m_string": "data-test-id=\"text-404\"", - "m_code": 404, - "known": [ - "good88gorg", - "RayyanDonut" - ], - "cat": "coding", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Coderwall", - "uri_check": "https://coderwall.com/{account}/", - "e_code": 200, - "e_string": "s profile |", - "m_string": "404! Our feels when that url is used", - "m_code": 404, - "known": [ - "john", - "test" - ], - "cat": "coding" - }, - { - "name": "Codewars", - "uri_check": "https://www.codewars.com/users/{account}", - "e_code": 200, - "e_string": "| Codewars", - "m_string": "Whoops! The page you were looking for doesn't seem to exist.", - "m_code": 404, - "known": [ - "john", - "reds" - ], - "cat": "coding" - }, - { - "name": "COLOURlovers", - "uri_check": "https://www.colourlovers.com/ajax/check-username-availability", - "uri_pretty": "https://www.colourlovers.com/lover/{account}", - "post_body": "userName={account}", - "headers": { - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" - }, - "e_code": 200, - "e_string": "\"_status\":\"unavailable\"", - "m_string": "\"_status\":\"available\"", - "m_code": 200, - "known": [ - "timanttimaarit", - "tsoloweyko" - ], - "cat": "hobby", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Community Adobe", - "uri_check": "https://community.adobe.com/t5/forums/searchpage/tab/user?q={account}", - "e_code": 200, - "e_string": "UserSearchItemContainer", - "m_string": "No search results found.", - "m_code": 200, - "known": [ - "test", - "janet" - ], - "cat": "tech" - }, - { - "name": "contactos.sex", - "uri_check": "https://www.contactossex.com/profile/{account}", - "e_code": 200, - "e_string": "Información Personal", - "m_string": "Desde 2001 conectando gente!", - "m_code": 302, - "known": [ - "danijak", - "darkfox" - ], - "cat": "xx NSFW xx" - }, - { - "name": "coroflot", - "uri_check": "https://www.coroflot.com/{account}", - "e_code": 200, - "e_string": "portfolio", - "m_string": "Looking for something?", - "m_code": 404, - "known": [ - "john", - "blue" - ], - "cat": "art" - }, - { - "name": "Coub", - "uri_check": "https://coub.com/api/v2/channels/{account}", - "uri_pretty": "https://coub.com/{account}/", - "e_code": 200, - "e_string": "\"user_id\":", - "m_string": "\"error\":\"Unhandled exception\"", - "m_code": 404, - "known": [ - "djantidog", - "mcnorington" - ], - "cat": "social" - }, - { - "name": "cowboys4angels", - "uri_check": "https://cowboys4angels.com/cowboy/{account}/", - "e_code": 200, - "e_string": " - Cowboys 4 Angels", - "m_string": "Error Page not found", - "m_code": 404, - "known": [ - "jaxjames", - "jordan-2" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Cracked", - "uri_check": "https://www.cracked.com/members/{account}", - "e_code": 200, - "e_string": "Member Since", - "m_string": "", - "m_code": 302, - "known": [ - "mbattagl", - "Hatchback" - ], - "cat": "social" - }, - { - "name": "cracked_io", - "uri_check": "https://cracked.io/{account}", - "e_code": 200, - "e_string": "Cracked.io - Profile of", - "m_string": "The member you specified is either invalid or doesn't exist", - "m_code": 404, - "known": [ - "RealPsycho", - "SamWinchester" - ], - "cat": "social" - }, - { - "name": "crevado", - "uri_check": "https://{account}.crevado.com/", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "Portfolio", - "m_string": "Site not found :-(", - "m_code": 404, - "known": [ - "john", - "red" - ], - "cat": "images" - }, - { - "name": "Cropty", - "uri_check": "https://api.cropty.io/v1/auth/{account}", - "uri_pretty": "https://www.cropty.io/@{account}", - "e_code": 200, - "e_string": "\"name\":", - "m_string": "\"errors\":", - "m_code": 404, - "known": [ - "mailmal", - "dosash" - ], - "cat": "finance" - }, - { - "name": "Crowdin", - "uri_check": "https://crowdin.com/profile/{account}", - "e_code": 200, - "e_string": "id=\"profile-page\"", - "m_string": "class=\"error-page\"", - "m_code": 404, - "known": [ - "erga", - "peter" - ], - "cat": "hobby" - }, - { - "name": "Cults3D", - "uri_check": "https://cults3d.com/en/users/{account}/creations", - "e_code": 200, - "e_string": "All the 3D models of", - "m_string": "Oh dear, this page is not working!", - "m_code": 404, - "known": [ - "Bstar3Dart", - "john" - ], - "cat": "hobby" - }, - { - "name": "Cytoid", - "uri_check": "https://cytoid.io/profile/{account}", - "e_code": 200, - "e_string": "Joined", - "m_string": "Profile not found", - "m_code": 404, - "known": [ - "nyala", - "speedymlg7" - ], - "cat": "gaming" - }, - { - "name": "Daily Kos", - "uri_check": "https://www.dailykos.com/user/{account}", - "e_code": 200, - "e_string": "id=\"userData\"", - "m_string": "Page not found! (404)", - "m_code": 404, - "known": [ - "msouza", - "kos" - ], - "cat": "news" - }, - { - "name": "darudar", - "uri_check": "https://darudar.org/users/{account}/", - "e_code": 200, - "e_string": ". Дарудар", - "m_string": "404. Дару~дар: миру~мир!", - "m_code": 404, - "known": [ - "svetlana7", - "igor" - ], - "cat": "misc" - }, - { - "name": "dateinasia", - "uri_check": "https://www.dateinasia.com/{account}", - "e_code": 200, - "e_string": "About me", - "m_string": "The page you are looking for does not exist", - "m_code": 404, - "known": [ - "shime", - "janeferater" - ], - "cat": "dating" - }, - { - "name": "datezone", - "uri_check": "https://www.datezone.com/users/{account}/", - "e_code": 200, - "e_string": "profile_status", - "m_string": "404: page not found", - "m_code": 200, - "known": [ - "maniektwist", - "carllos" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Dating.ru", - "uri_check": "https://dating.ru/{account}/", - "e_code": 200, - "e_string": "| dating.ru", - "m_string": "Такой страницы не существует.", - "m_code": 404, - "known": [ - "john", - "blue" - ], - "cat": "dating" - }, - { - "name": "DDoSecrets", - "uri_check": "https://search.ddosecrets.com/search?q={account}", - "e_code": 200, - "e_string": "aria-label=\"Search result pages\"", - "m_string": "

No results

", - "m_code": 200, - "known": [ - "egord", - "Mddearing" - ], - "cat": "archived" - }, - { - "name": "Demotywatory", - "uri_check": "https://demotywatory.pl/user/{account}", - "e_code": 200, - "e_string": "Z nami od:", - "m_string": "Użytkownik o podanym pseudonimie nie istnieje.", - "m_code": 200, - "known": [ - "test", - "test2" - ], - "cat": "images" - }, - { - "name": "depop", - "uri_check": "https://www.depop.com/{account}/", - "e_code": 200, - "e_string": "s Shop - Depop", - "m_string": "Sorry, that page doesn't exist", - "m_code": 404, - "known": [ - "sara", - "susan" - ], - "cat": "shopping" - }, - { - "name": "Designspriation", - "uri_check": "https://www.designspiration.com/{account}/", - "e_code": 200, - "e_string": "has discovered on Designspiration", - "m_string": "Content Not Found", - "m_code": 404, - "known": [ - "sam", - "smith" - ], - "cat": "art" - }, - { - "name": "destream", - "uri_check": "https://api.destream.net/siteapi/v2/live/details/{account}", - "uri_pretty": "https://destream.net/live/{account}", - "e_code": 200, - "e_string": "\"userName\":", - "m_string": "\"errorMessage\":\"Error happened.\"", - "m_code": 400, - "known": [ - "skromnuy_fifa", - "wudjer" - ], - "cat": "finance" - }, - { - "name": "Destructoid", - "uri_check": "https://www.destructoid.com/?name={account}", - "e_code": 200, - "e_string": "Follow", - "m_string": "Error in query", - "m_code": 200, - "known": [ - "john", - "alice", - "bob" - ], - "cat": "social" - }, - { - "name": "dev.to", - "uri_check": "https://dev.to/{account}", - "e_code": 200, - "e_string": "\"@id\":", - "m_string": "class=\"not-found-page base-background-color\"", - "m_code": 404, - "known": [ - "john", - "bob" - ], - "cat": "coding", - "protection": [ - "other" - ] - }, - { - "name": "DeviantArt", - "uri_check": "https://www.deviantart.com/{account}", - "e_code": 200, - "e_string": " | DeviantArt", - "m_string": "DeviantArt: 404", - "m_code": 404, - "known": [ - "rattybike", - "john" - ], - "cat": "images" - }, - { - "name": "devRant", - "uri_check": "https://devrant.com/users/{account}", - "e_code": 200, - "e_string": "Joined devRant on", - "m_string": "", - "m_code": 302, - "known": [ - "dfox", - "trogus" - ], - "cat": "coding" - }, - { - "name": "dfgames", - "uri_check": "https://www.dfgames.com.br/user/{account}", - "e_code": 200, - "e_string": "Reputa", - "m_string": "404 Not Found", - "m_code": 404, - "known": [ - "carlos01", - "eduardo" - ], - "cat": "gaming" - }, - { - "name": "Diablo", - "uri_check": "https://diablo2.io/member/{account}/", - "e_code": 200, - "e_string": "Viewing profile - ", - "m_string": "The requested user does not exist", - "m_code": 404, - "known": [ - "Mike01", - "John" - ], - "cat": "gaming" - }, - { - "name": "DIBIZ", - "uri_check": "https://www.dibiz.com/{account}", - "e_code": 200, - "e_string": "Add to contacts
", - "m_string": "An Error Has Occurred", - "m_code": 404, - "known": [ - "fractalhue", - "rid" - ], - "cat": "business" - }, - { - "name": "Digitalspy", - "uri_check": "https://forums.digitalspy.com/profile/discussions/{account}", - "e_code": 200, - "e_string": "About", - "m_string": "User not found", - "m_code": 404, - "known": [ - "JeffG1", - "Maxatoria" - ], - "cat": "social" - }, - { - "name": "diigo", - "uri_check": "https://www.diigo.com/interact_api/load_profile_info?name={account}", - "uri_pretty": "https://www.diigo.com/profile/{account}", - "e_code": 200, - "e_string": "regist_at", - "m_string": "{}", - "m_code": 200, - "known": [ - "whoami", - "johndoe" - ], - "cat": "images" - }, - { - "name": "Discogs", - "uri_check": "https://api.discogs.com/users/{account}", - "uri_pretty": "https://www.discogs.com/user/{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"message\": \"User does not exist or may have been deleted.\"", - "m_code": 404, - "known": [ - "damiano84", - "bernadette69" - ], - "cat": "music" - }, - { - "name": "Discord Invites", - "uri_check": "https://discord.com/api/v9/invites/{account}?with_counts=true&with_expiration=true", - "uri_pretty": "https://discord.com/invite/{account}", - "e_code": 200, - "e_string": "\"channel\":", - "m_string": "\"message\": \"Unknown Invite\"", - "m_code": 404, - "known": [ - "test", - "web" - ], - "cat": "social" - }, - { - "name": "Discord Users", - "uri_check": "https://discord.com/api/v9/unique-username/username-attempt-unauthed", - "post_body": "{\"username\": \"{account}\"}", - "headers": { - "Content-Type": "application/json" - }, - "e_code": 200, - "e_string": "\"taken\":true", - "m_string": "\"taken\":false", - "m_code": 200, - "known": [ - "test", - "web" - ], - "cat": "social" - }, - { - "name": "Discourse", - "uri_check": "https://meta.discourse.org/u/{account}/summary.json", - "uri_pretty": "https://meta.discourse.org/u/{account}", - "e_code": 200, - "e_string": "topics", - "m_string": "The requested URL or resource could not be found.", - "m_code": 404, - "known": [ - "ndalliard", - "gerhard" - ], - "cat": "misc" - }, - { - "name": "discuss.elastic.co", - "uri_check": "https://discuss.elastic.co/u/{account}", - "e_code": 200, - "e_string": " Profile", - "m_string": "Oops!", - "m_code": 404, - "known": [ - "whoami", - "johndoe" - ], - "cat": "tech" - }, - { - "name": "Disqus", - "uri_check": "https://disqus.com/api/3.0/users/details?user=username:{account}&api_key=E8Uh5l5fHZ6gD8U3KycjAIAk46f68Zw7C6eW8WSjZvCLXebZ7p0r1yrYDrLilk2F", - "uri_pretty": "https://disqus.com/by/{account}/", - "e_code": 200, - "e_string": "\"code\":0", - "m_string": "\"code\":2", - "m_code": 400, - "known": [ - "Aristotelian1", - "50calibercat" - ], - "cat": "social" - }, - { - "name": "Dissenter", - "uri_check": "https://dissenter.com/user/{account}", - "e_code": 200, - "e_string": "Dissenter | The Comment Section of the Internet", - "m_string": "That user is not registered here.", - "m_code": 404, - "known": [ - "pryerlee", - "archdukeofevil" - ], - "cat": "political" - }, - { - "name": "Docker Hub (Organization)", - "uri_check": "https://hub.docker.com/v2/orgs/{account}/", - "uri_pretty": "https://hub.docker.com/u/{account}", - "e_code": 200, - "e_string": "\"uuid\":", - "m_string": "\"orgname\":[\"", - "m_code": 404, - "known": [ - "bitnami", - "tensorflow" - ], - "cat": "coding" - }, - { - "name": "Docker Hub (User)", - "uri_check": "https://hub.docker.com/v2/users/{account}/", - "uri_pretty": "https://hub.docker.com/u/{account}", - "e_code": 200, - "e_string": "\"uuid\":", - "m_string": "\"message\":\"User not found\"", - "m_code": 404, - "known": [ - "dannapierskitoptal", - "torvalds" - ], - "cat": "coding" - }, - { - "name": "Dojoverse", - "uri_check": "https://dojoverse.com/members/{account}/", - "e_code": 200, - "e_string": "Joined", - "m_string": "Looks like you got lost!.", - "m_code": 404, - "known": [ - "eric", - "danielrivera10927" - ], - "cat": "hobby" - }, - { - "name": "donate.stream", - "uri_check": "https://donate.stream/api/v1/streamer.get?path={account}&app=9f4e793cec820015d511dbc77b20c5c1", - "uri_pretty": "https://donate.stream/{account}", - "e_code": 200, - "e_string": "\"response\":", - "m_string": "\"message\":\"Not found\"", - "m_code": 200, - "known": [ - "requiemzxc_komaru", - "hexttr" - ], - "cat": "finance", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Donatello", - "uri_check": "https://donatello.to/{account}", - "e_code": 200, - "e_string": "UserPage.init", - "m_string": "<title>Сторінку не знайдено (404) - Donatello", - "m_code": 404, - "known": [ - "Metvix", - "Selezenka" - ], - "cat": "finance" - }, - { - "name": "Donatik", - "uri_check": "https://{account}.donatik.io/en", - "e_code": 200, - "e_string": "\\\"__typename\\\":\\\"User\\\"", - "m_string": "id=\"__next_error__\"", - "m_code": 500, - "known": [ - "gypsyjitsu", - "forestgamp3021" - ], - "cat": "finance" - }, - { - "name": "Donation Alerts", - "uri_check": "https://www.donationalerts.com/api/v1/user/{account}/donationpagesettings", - "uri_pretty": "https://www.donationalerts.com/r/{account}", - "e_code": 200, - "e_string": "\"data\":", - "m_string": "\"success\":false", - "m_code": 202, - "known": [ - "gorou", - "saku" - ], - "cat": "finance" - }, - { - "name": "Donatty", - "uri_check": "https://api.donatty.com/users/find/{account}", - "uri_pretty": "https://donatty.com/{account}", - "e_code": 200, - "e_string": "\"response\":", - "m_string": "\"error\":\"internal error\"", - "m_code": 404, - "known": [ - "takaisekai", - "fordmac" - ], - "cat": "business", - "protection": [ - "cloudflare" - ] - }, - { - "name": "dot.cards", - "uri_check": "https://dot.cards/{account}", - "e_code": 200, - "e_string": "status\": \"success", - "m_string": "status\": \"username_not_found", - "m_code": 200, - "known": [ - "dakmusic", - "jhartwell" - ], - "cat": "business" - }, - { - "name": "Dota2.ru", - "uri_check": "https://dota2.ru/forum/search/?type=user&keywords={account}&sort_by=username", - "e_code": 200, - "e_string": "class=\"forum-section__item forum-section__item--first\"", - "m_string": "id=\"no-activity-posts\"", - "m_code": 200, - "known": [ - "narancha", - "Darkness whisper" - ], - "cat": "gaming" - }, - { - "name": "DOTAFire", - "uri_check": "https://www.dotafire.com/ajax/searchSite?text={account}&search=members", - "e_code": 200, - "e_string": "href=\"/profile/", - "m_string": ">No results found", - "m_code": 200, - "known": [ - "DotaCoachApp", - "zveen" - ], - "cat": "gaming" - }, - { - "name": "DOU", - "uri_check": "https://dou.ua/users/{account}/", - "e_code": 200, - "e_string": "class=\"page-profile\"", - "m_string": "class=\"page-error\"", - "m_code": 404, - "known": [ - "doucommunity", - "volodymyrobrizan" - ], - "cat": "social" - }, - { - "name": "Dribbble", - "uri_check": "https://dribbble.com/{account}", - "e_code": 200, - "e_string": " | Dribbble", - "m_string": "(404)", - "m_code": 404, - "known": [ - "UI8", - "keeplegend" - ], - "cat": "art" - }, - { - "name": "DRIVE2.RU", - "uri_check": "https://www.drive2.ru/users/{account}/", - "e_code": 200, - "e_string": "itemprop=\"name\"", - "m_string": "404 — Страница не найдена", - "m_code": 404, - "known": [ - "seryjkot", - "timo6a" - ], - "cat": "social", - "protection": [ - "ddos-guard" - ] - }, - { - "name": "Droners", - "uri_check": "https://droners.io/accounts/{account}/", - "e_code": 200, - "e_string": "- Professional Drone Pilot", - "m_string": "(404)", - "m_code": 302, - "known": [ - "chriskahn", - "swilken" - ], - "cat": "hobby" - }, - { - "name": "Drum", - "uri_check": "https://drum.io/{account}/", - "e_code": 200, - "e_string": "firstName\": \"", - "m_string": "Page not found", - "m_code": 302, - "known": [ - "huckcredibleshotz", - "thesuccesspalette" - ], - "cat": "hobby" - }, - { - "name": "Duolingo", - "uri_check": "https://www.duolingo.com/2017-06-30/users?username={account}&_=1628308619574", - "uri_pretty": "https://www.duolingo.com/profile/{account}", - "e_code": 200, - "e_string": "joinedClassroomIds", - "m_string": "\"users\" : []", - "m_code": 200, - "known": [ - "sdfsdf", - "duolingo" - ], - "cat": "hobby" - }, - { - "name": "easyen", - "uri_check": "https://easyen.ru/index/8-0-{account}", - "e_code": 200, - "e_string": "День рождения", - "m_string": "Пользователь не найден", - "m_code": 200, - "known": [ - "wd" - ], - "cat": "social" - }, - { - "name": "eBay", - "uri_check": "https://www.ebay.com/usr/{account}", - "e_code": 200, - "e_string": "on eBay", - "m_string": "The User ID you entered was not found", - "m_code": 200, - "known": [ - "the_gqs", - "johnny" - ], - "cat": "shopping" - }, - { - "name": "ebay_stores", - "uri_check": "https://www.ebay.com/str/{account}", - "e_code": 200, - "e_string": "| eBay Stores", - "m_string": "Sorry, this store was not found.", - "m_code": 410, - "known": [ - "tactical", - "tactical-security" - ], - "cat": "shopping" - }, - { - "name": "Electrobel", - "uri_check": "https://be.electrobel.org/register.ajax", - "uri_pretty": "https://be.electrobel.org/{account}", - "post_body": "action=checkUsername&username={account}", - "headers": { - "Content-Type": "application/x-www-form-urlencoded" - }, - "e_code": 200, - "e_string": "\"html\":\"Username existsPlease choose another\"", - "m_string": "\"html\":\"Name is available\"", - "m_code": 200, - "known": [ - "wixel", - "Gloomer" - ], - "cat": "social" - }, - { - "name": "Engadget", - "uri_check": "https://www.engadget.com/about/editors/{account}/", - "e_code": 200, - "e_string": "\"displayName\"", - "m_string": ", - Engadget", - "m_code": 200, - "known": [ - "devindra-hardawar", - "kris-holt" - ], - "cat": "tech" - }, - { - "name": "EPORNER", - "uri_check": "https://www.eporner.com/xhr/check/", - "uri_pretty": "https://www.eporner.com/profile/{account}/", - "post_body": "xhr=1&act=check_login&login={account}", - "headers": { - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" - }, - "e_code": 200, - "e_string": "\"msg_body\":\"This login already exists. Choose another one\"", - "m_string": "\"msg_body\":\"Available\"", - "m_code": 200, - "known": [ - "LAM_2030", - "DianaX814" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Etoro", - "uri_check": "https://www.etoro.com/api/logininfo/v1.1/users/{account}", - "uri_pretty": "https://www.etoro.com/people/{account}", - "e_code": 200, - "e_string": "\"gcid\":", - "m_string": "\"ErrorCode\":\"NotFound\"", - "m_code": 404, - "known": [ - "jeepsontrading", - "armandofoschini" - ], - "cat": "finance", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Etsy", - "uri_check": "https://www.etsy.com/people/{account}", - "e_code": 200, - "e_string": " favorite items - Etsy", - "m_string": "Sorry, the member you are looking for does not exist", - "m_code": 404, - "known": [ - "david", - "happiness" - ], - "cat": "shopping" - }, - { - "name": "Evolution CMS", - "uri_check": "https://community.evocms.ru/users/?search={account}", - "e_code": 200, - "e_string": "id=\"user-search\"", - "m_string": "", - "m_code": 200, - "known": [ - "Dmi3yy", - "Pathologic" - ], - "cat": "tech" - }, - { - "name": "Expressional.social (Mastodon Instance)", - "uri_check": "https://expressional.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://expressional.social/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "jippi", - "poolesen" - ], - "cat": "social" - }, - { - "name": "Eyeem", - "uri_check": "https://www.eyeem.com/u/{account}", - "e_code": 200, - "e_string": "Marketplace", - "m_string": "Not Found (404) | EyeEm", - "m_code": 301, - "known": [ - "john", - "bob" - ], - "cat": "art" - }, - { - "name": "F3", - "uri_check": "https://f3.cool/{account}", - "e_code": 200, - "e_string": "@", - "m_string": "Page Not Found - F3", - "m_code": 404, - "known": [ - "nick", - "john" - ], - "cat": "social" - }, - { - "name": "Fabswingers", - "uri_check": "https://www.fabswingers.com/profile/{account}", - "e_code": 200, - "e_string": "View Profile", - "m_string": "The user you tried to view doesn't seem to be on the site any more", - "m_code": 200, - "known": [ - "justusboth2013", - "hellfireclub", - "fabswingers.com" - ], - "cat": "dating" - }, - { - "name": "Facebook", - "uri_check": "https://www.facebook.com/{account}/", - "e_code": 200, - "e_string": "__isProfile", - "m_string": "<title>Facebook", - "m_code": 200, - "known": [ - "john.miniolic", - "adam" - ], - "cat": "social" - }, - { - "name": "FACEIT", - "uri_check": "https://www.faceit.com/api/users/v1/nicknames/{account}", - "uri_pretty": "https://www.faceit.com/en/players/{account}", - "e_code": 200, - "e_string": "\"result\":\"OK\"", - "m_string": "\"message\":\"user not found\"", - "m_code": 404, - "known": [ - "s1mple", - "w0nderful" - ], - "cat": "gaming" - }, - { - "name": "Faktopedia", - "uri_check": "https://faktopedia.pl/user/{account}", - "e_code": 200, - "e_string": "Zamieszcza fakty od:", - "m_string": "Nie znaleziono użytkownika o podanym loginie.", - "m_code": 200, - "known": [ - "janek", - "ania" - ], - "cat": "images" - }, - { - "name": "FanCentro", - "uri_check": "https://fancentro.com/api/profile.get?profileAlias={account}&limit=1", - "uri_pretty": "https://fancentro.com/{account}/", - "e_code": 200, - "e_string": "\"status\":true", - "m_string": "\"status\":false", - "m_code": 200, - "known": [ - "medroxy", - "miaaamador" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Fandom", - "uri_check": "https://www.fandom.com/u/{account}", - "e_code": 200, - "e_string": "| Profile | Fandom", - "m_string": "Not Found", - "m_code": 404, - "known": [ - "EJacobs94", - "Drew_Dietsch" - ], - "cat": "gaming" - }, - { - "name": "fanpop", - "uri_check": "https://www.fanpop.com/fans/{account}", - "e_code": 200, - "e_string": "Fanpopping since", - "m_string": "", - "m_code": 302, - "known": [ - "test", - "johndoe" - ], - "cat": "social" - }, - { - "name": "Fansly", - "uri_check": "https://apiv2.fansly.com/api/v1/account?usernames={account}", - "uri_pretty": "https://fansly.com/{account}/posts", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"response\":[]", - "m_code": 200, - "known": [ - "Mikomin", - "test" - ], - "cat": "xx NSFW xx", - "protection": [ - "cloudfront" - ] - }, - { - "name": "Fark", - "uri_check": "https://www.fark.com/users/{account}", - "e_code": 200, - "e_string": "Fark account number", - "m_string": "Tastes like chicken.", - "m_code": 200, - "known": [ - "bob", - "bobby" - ], - "cat": "social" - }, - { - "name": "FatSecret", - "uri_check": "https://www.fatsecret.com/member/{account}", - "e_code": 200, - "e_string": "- Member", - "m_string": "Your Key to Success", - "m_code": 302, - "known": [ - "bob", - "bobby" - ], - "cat": "health" - }, - { - "name": "Federated.press (Mastodon Instance)", - "uri_check": "https://federated.press/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://federated.press/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "wood", - "cliffcheney" - ], - "cat": "social" - }, - { - "name": "Figma", - "uri_check": "https://www.figma.com/api/profile/handle/{account}", - "uri_pretty": "https://www.figma.com/@{account}", - "e_code": 200, - "e_string": "\"status\":200", - "m_string": "\"status\":404", - "m_code": 404, - "known": [ - "bob", - "mike" - ], - "cat": "tech", - "protection": [ - "cloudfront" - ] - }, - { - "name": "Filmot Channel Search", - "uri_check": "https://filmot.com/channelsearch/{account}", - "e_code": 200, - "e_string": "Subscribers", - "m_string": "No channels found", - "m_code": 200, - "known": [ - "bobicraft", - "parodiadoranimado" - ], - "cat": "archived" - }, - { - "name": "Filmot Unlisted Videos", - "uri_check": "https://filmot.com/unlistedSearch?channelQuery={account}&sortField=uploaddate&sortOrder=desc&", - "e_code": 200, - "e_string": "clips found", - "m_string": "No results", - "m_code": 200, - "known": [ - "holasoygerman", - "elrubiusomg" - ], - "cat": "archived" - }, - { - "name": "Filmweb", - "uri_check": "https://www.filmweb.pl/user/{account}", - "e_code": 200, - "e_string": "profil w Filmweb", - "m_string": "Varnish 404", - "m_code": 200, - "known": [ - "test", - "Marcin_P" - ], - "cat": "hobby" - }, - { - "name": "fine_art_america", - "uri_check": "https://fineartamerica.com/profiles/{account}", - "e_code": 200, - "e_string": "Shop for artwork by", - "m_string": "Browse through millions of independent artists in our extensive", - "m_code": 301, - "known": [ - "scott-norris", - "mary-helmreich" - ], - "cat": "shopping" - }, - { - "name": "Fiverr", - "uri_check": "https://www.fiverr.com/validate_username", - "uri_pretty": "https://www.fiverr.com/{account}", - "post_body": "{\"username\": \"{account}\"}", - "headers": { - "Content-Type": "application/json" - }, - "e_code": 201, - "e_string": "\"errorKeys\":[[\"username\",\"user_taken\"]]", - "m_string": "\"status\":\"success\"", - "m_code": 201, - "known": [ - "yellowdd", - "samanvay" - ], - "cat": "shopping" - }, - { - "name": "FL.ru", - "uri_check": "https://www.fl.ru/users/{account}/portfolio/", - "e_code": 200, - "e_string": "class=\"page-profile\"", - "m_string": "content=\"404 Not Found\"", - "m_code": 404, - "known": [ - "makediffdev", - "moldanovadasha" - ], - "cat": "social", - "protection": [ - "ddos-guard" - ] - }, - { - "name": "Flickr", - "uri_check": "https://www.flickr.com/photos/{account}/", - "e_code": 200, - "e_string": "| Flickr", - "m_string": "", - "m_code": 404, - "known": [ - "glaciernps", - "test" - ], - "cat": "images" - }, - { - "name": "Flightradar24", - "uri_check": "https://my.flightradar24.com/{account}/", - "e_code": 200, - "e_string": "class=\"profile-card\" data-profile-user=", - "m_string": "class=\"main page-not-found-main", - "m_code": 404, - "known": [ - "finn", - "pavelkral" - ], - "cat": "misc" - }, - { - "name": "Flipboard", - "uri_check": "https://flipboard.com/@{account}", - "e_code": 200, - "e_string": ") on Flipboard", - "m_string": "", - "m_code": 404, - "known": [ - "cosmopolitan", - "Mashable" - ], - "cat": "tech" - }, - { - "name": "flowcode", - "uri_check": "https://www.flowcode.com/page/{account}", - "e_code": 200, - "e_string": ";s Flowpage", - "m_string": "Nobody's reserved this Flowpage yet.", - "m_code": 404, - "known": [ - "evdokia", - "irina" - ], - "cat": "social" - }, - { - "name": "Fodors Forum", - "uri_check": "https://www.fodors.com/community/profile/{account}/forum-activity", - "e_code": 200, - "e_string": "User Profile | Fodor’s Travel", - "m_string": "Plan Your Trip Online", - "m_code": 302, - "known": [ - "jdstraveler", - "gooster" - ], - "cat": "social" - }, - { - "name": "Folkd", - "uri_check": "https://www.folkd.com/?app=core&module=system&controller=ajax&do=usernameExists&input={account}", - "uri_pretty": "https://www.folkd.com/search/?q={account}&quick=1&type=core_members", - "e_code": 200, - "e_string": "\"message\":\"That display name is in use by another member.\"", - "m_string": "\"result\":\"ok\"", - "m_code": 200, - "known": [ - "smartplayapk", - "abdulmerfantz" - ], - "cat": "social", - "protection": [ - "other" - ] - }, - { - "name": "Fortnite Tracker", - "uri_check": "https://fortnitetracker.com/profile/all/{account}", - "e_code": 200, - "e_string": "s Fortnite Stats - Fortnite Tracker", - "m_string": "Fortnite Player Stats -", - "m_code": 404, - "known": [ - "steph", - "sam" - ], - "cat": "gaming" - }, - { - "name": "forumprawne.org", - "uri_check": "https://forumprawne.org/members/{account}.html", - "e_code": 200, - "e_string": "Wiadomość", - "m_string": "", - "m_code": 500, - "known": [ - "test", - "test2" - ], - "cat": "misc" - }, - { - "name": "Fosstodon.org (Mastodon Instance)", - "uri_check": "https://fosstodon.org/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://fosstodon.org/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "linux", - "Phil35" - ], - "cat": "social" - }, - { - "name": "fotka", - "uri_check": "https://api.fotka.com/v2/user/dataStatic?login={account}", - "uri_pretty": "https://fotka.com/profil/{account}", - "e_code": 200, - "e_string": "profil", - "m_string": "ERROR", - "m_code": 200, - "known": [ - "test", - "test2" - ], - "cat": "social" - }, - { - "name": "Fotolog Archived Profile", - "uri_check": "https://archive.org/wayback/available?url=https://www.fotolog.com/{account}", - "uri_pretty": "https://web.archive.org/web/2/fotolog.com/{account}", - "e_code": 200, - "e_string": "\"archived_snapshots\": {\"closest\"", - "m_string": "\"archived_snapshots\": {}", - "m_code": 200, - "known": [ - "x_zudex_x", - "angelito" - ], - "cat": "archived" - }, - { - "name": "Foursquare", - "uri_check": "https://foursquare.com/{account}", - "e_code": 200, - "e_string": "class=\"userProfile2Page\"", - "m_string": "", - "m_code": 308, - "known": [ - "j0hn", - "ncyp23" - ], - "cat": "social" - }, - { - "name": "freeCodeCamp", - "uri_check": "https://api.freecodecamp.org/users/get-public-profile?username={account}", - "uri_pretty": "https://www.freecodecamp.org/{account}", - "e_code": 200, - "e_string": "\"user\":", - "m_string": "{}", - "m_code": 404, - "known": [ - "zaira", - "caesarsage" - ], - "cat": "coding", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Freelance.RU", - "uri_check": "https://freelance.ru/{account}", - "e_code": 200, - "e_string": "class=\" user-top-container user-portfolio\"", - "m_string": "class=\"msg_error alert alert-danger\"", - "m_code": 404, - "known": [ - "sunsey", - "semanticlan" - ], - "cat": "business" - }, - { - "name": "Freelance.ua", - "uri_check": "https://freelance.ua/user/{account}/", - "e_code": 200, - "e_string": "p-profile-avatar", - "m_string": "Схоже, дана сторінка не знайдена", - "m_code": 404, - "known": [ - "tkachenkoalex", - "oleksandrseo1" - ], - "cat": "social" - }, - { - "name": "Freelancehunt Employer", - "uri_check": "https://freelancehunt.com/en/employer/{account}.html", - "e_code": 200, - "e_string": "\"@id\":\"https://freelancehunt.com/en/employers\"", - "m_string": "User not found.", - "m_code": 404, - "known": [ - "vadym1232", - "Dekovital" - ], - "cat": "social", - "protection": [ - "other" - ] - }, - { - "name": "Freelancehunt Freelancer", - "uri_check": "https://freelancehunt.com/en/freelancer/{account}.html", - "e_code": 200, - "e_string": "\"@id\":\"https://freelancehunt.com/en/freelancers\"", - "m_string": "User not found.", - "m_code": 404, - "known": [ - "rhythmdev_top", - "Zainka" - ], - "cat": "social", - "protection": [ - "other" - ] - }, - { - "name": "Freelancer", - "uri_check": "https://www.freelancer.com/api/users/0.1/users?usernames%5B%5D={account}&compact=true", - "uri_pretty": "https://www.freelancer.com/u/{account}", - "e_code": 200, - "e_string": "\"users\":{\"", - "m_string": "\"users\":{}", - "m_code": 200, - "known": [ - "desiaunty", - "creatvmind" - ], - "cat": "business" - }, - { - "name": "freesound", - "uri_check": "https://freesound.org/people/{account}/section/stats/?ajax=1", - "uri_pretty": "https://freesound.org/people/{account}/", - "e_code": 200, - "e_string": "forum posts", - "m_string": "

Page not found

", - "m_code": 404, - "known": [ - "Manu593", - "somewhereinjp" - ], - "cat": "music" - }, - { - "name": "FreeSteamKeys", - "uri_check": "https://www.freesteamkeys.com/members/{account}/", - "e_code": 200, - "e_string": "item-header-avatar", - "m_string": "error404", - "m_code": 404, - "known": [ - "giveaway-su", - "keygenerator" - ], - "cat": "gaming" - }, - { - "name": "FriendFinder", - "uri_check": "https://friendfinder.com/profile/{account}", - "e_code": 200, - "e_string": "Last Visit:", - "m_string": "302 Found", - "m_code": 302, - "known": [ - "alex56", - "john" - ], - "cat": "dating" - }, - { - "name": "FriendFinder-X", - "uri_check": "https://www.friendfinder-x.com/profile/{account}", - "e_code": 200, - "e_string": "'s Dating Profile on FriendFinder-x", - "m_string": "The document has moved", - "m_code": 302, - "known": [ - "john" - ], - "cat": "dating" - }, - { - "name": "Fur Affinity", - "uri_check": "https://www.furaffinity.net/user/{account}/", - "e_code": 200, - "e_string": "", - "m_string": "

System Error

", - "m_code": 200, - "known": [ - "karintina", - "mikrogoat" - ], - "cat": "images" - }, - { - "name": "Gab", - "uri_check": "https://gab.com/api/v1/account_by_username/{account}", - "uri_pretty": "https://gab.com/{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"error\":\"Record not found\"", - "m_code": 404, - "known": [ - "RealMarjorieGreene", - "LaurenBoebert" - ], - "cat": "political" - }, - { - "name": "Game Jolt", - "uri_check": "https://gamejolt.com/site-api/web/profile/@{account}/", - "uri_pretty": "https://gamejolt.com/@{account}", - "e_code": 200, - "e_string": "created_on", - "m_string": "null,", - "m_code": 404, - "known": [ - "nilllzz", - "KorbloxTeams" - ], - "cat": "gaming" - }, - { - "name": "game_debate", - "uri_check": "https://www.game-debate.com/profile/{account}", - "e_code": 200, - "e_string": "| , , GB pc game performance", - "m_string": "Not Found", - "m_code": 404, - "known": [ - "Johnboy", - "Crazy" - ], - "cat": "gaming" - }, - { - "name": "Gamer DVR", - "uri_check": "https://gamerdvr.com/gamer/{account}", - "e_code": 200, - "e_string": "class=\"gamerpic\"", - "m_string": "You are being <", - "m_code": 302, - "known": [ - "dnlunger", - "punksxe" - ], - "cat": "gaming" - }, - { - "name": "Gamespot", - "uri_check": "https://www.gamespot.com/profile/{account}/summary/activity/?ajax", - "uri_pretty": "https://www.gamespot.com/profile/{account}/", - "e_code": 200, - "e_string": "\"success\":true", - "m_string": "\"success\":false", - "m_code": 200, - "known": [ - "alice", - "bob" - ], - "cat": "gaming", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Garmin connect", - "uri_check": "https://connect.garmin.com/modern/profile/{account}", - "e_code": 200, - "e_string": "window.ERROR_VIEW = null", - "m_string": "resourceNotFoundRoute", - "m_code": 200, - "known": [ - "tommy", - "cderalow" - ], - "cat": "health" - }, - { - "name": "GDBrowser", - "uri_check": "https://gdbrowser.com/api/profile/{account}", - "uri_pretty": "https://gdbrowser.com/u/{account}", - "e_code": 200, - "e_string": "\"accountID\":", - "m_string": "-1", - "m_code": 500, - "known": [ - "SorkoPiko", - "Subwoofer" - ], - "cat": "gaming" - }, - { - "name": "GeeksForGeeks", - "uri_check": "https://authapi.geeksforgeeks.org/api-get/user-profile-info/?handle={account}", - "uri_pretty": "https://www.geeksforgeeks.org/user/{account}/", - "e_code": 200, - "e_string": "\"message\":\"data retrieved successfully\"", - "m_string": "\"message\":\"User not found!\"", - "m_code": 400, - "known": [ - "nath_789", - "harshrajsinghsiwan", - "igovindindia" - ], - "cat": "coding" - }, - { - "name": "Genius (Artists)", - "uri_check": "https://genius.com/artists/{account}", - "e_code": 200, - "e_string": "class=\"profile_header\"", - "m_string": "class=\"render_404\"", - "m_code": 404, - "known": [ - "Profjam", - "Hozier" - ], - "cat": "music" - }, - { - "name": "Genius (Users)", - "uri_check": "https://genius.com/{account}", - "e_code": 200, - "e_string": "class=\"profile_header\"", - "m_string": "class=\"render_404\"", - "m_code": 404, - "known": [ - "Rabe8i", - "Tobias_the_explicator" - ], - "cat": "music" - }, - { - "name": "Geocaching", - "uri_check": "https://www.geocaching.com/p/?u={account}", - "e_code": 200, - "e_string": "class=\"hax-profile\"", - "m_string": "class=\"callout http-error\"", - "m_code": 404, - "known": [ - "moun10bike", - "niraD", - "john" - ], - "cat": "social" - }, - { - "name": "getmonero", - "uri_check": "https://forum.getmonero.org/user/{account}", - "e_code": 200, - "e_string": "Monero | User", - "m_string": "Monero | Page not found. Error: 404", - "m_code": 200, - "known": [ - "silverfox", - "monero" - ], - "cat": "misc" - }, - { - "name": "Gettr", - "uri_check": "https://gettr.com/api/s/uinf/{account}", - "uri_pretty": "https://gettr.com/user/{account}", - "e_code": 200, - "e_string": "\"rc\":\"OK\"", - "m_string": "\"rc\":\"ERR\"", - "m_code": 400, - "known": [ - "gettr", - "support" - ], - "cat": "social" - }, - { - "name": "Gigapan", - "uri_check": "https://www.gigapan.com/profiles/{account}", - "e_code": 200, - "e_string": "width=\"100\"", - "m_string": "View Gigapans", - "m_code": 404, - "known": [ - "test", - "lucahammer" - ], - "cat": "hobby" - }, - { - "name": "Giphy (Channel)", - "uri_check": "https://giphy.com/channel/{account}", - "e_code": 200, - "e_string": "\\\"user_id\\\"", - "m_string": "404 Not Found", - "m_code": 404, - "known": [ - "teddy_99", - "LastYear" - ], - "cat": "images", - "protection": [ - "other" - ] - }, - { - "name": "Gitea", - "uri_check": "https://gitea.com/api/v1/users/{account}", - "uri_pretty": "https://gitea.com/{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"message\":\"user redirect does not exist", - "m_code": 404, - "known": [ - "xin", - "dev", - "jane" - ], - "cat": "coding" - }, - { - "name": "Gitee", - "uri_check": "https://gitee.com/{account}", - "e_code": 200, - "e_string": "class=\"ui container user_page\"", - "m_string": "class=\"container error midCenter\"", - "m_code": 404, - "known": [ - "maxim", - "fupengfei" - ], - "cat": "coding" - }, - { - "name": "GitHub", - "uri_check": "https://api.github.com/users/{account}", - "uri_pretty": "https://github.com/{account}", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" - }, - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"status\": \"404\"", - "m_code": 404, - "known": [ - "test", - "WebBreacher" - ], - "cat": "coding" - }, - { - "name": "GitHub Gists", - "uri_check": "https://api.github.com/users/{account}/gists", - "uri_pretty": "https://gist.github.com/{account}", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" - }, - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"status\": \"404\"", - "m_code": 404, - "known": [ - "teymurgahramanov", - "WebBreacher" - ], - "cat": "coding" - }, - { - "name": "GitLab", - "uri_check": "https://gitlab.com/api/v4/users?username={account}", - "uri_pretty": "https://gitlab.com/{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "[]", - "m_code": 200, - "known": [ - "skennedy", - "KennBro" - ], - "cat": "coding" - }, - { - "name": "gloria.tv", - "uri_check": "https://gloria.tv/{account}", - "e_code": 200, - "e_string": "Last online", - "m_string": "Page unavailable", - "m_code": 404, - "known": [ - "Irapuato", - "en.news" - ], - "cat": "social" - }, - { - "name": "GNOME (GitLab)", - "uri_check": "https://gitlab.gnome.org/api/v4/users?username={account}", - "uri_pretty": "https://gitlab.gnome.org/{account}", - "e_code": 200, - "e_string": "\"username\":", - "m_string": "[]", - "m_code": 200, - "known": [ - "MystikNinja", - "0xMRTT" - ], - "cat": "coding", - "protection": [ - "anubis" - ] - }, - { - "name": "GNOME (Shell Extensions)", - "uri_check": "https://extensions.gnome.org/accounts/profile/{account}", - "e_code": 200, - "e_string": "class=\"user-details\"", - "m_string": "

404 - Page not Found

", - "m_code": 404, - "known": [ - "johnny", - "dev" - ], - "cat": "coding" - }, - { - "name": "GOG", - "uri_check": "https://www.gog.com/u/{account}", - "e_code": 200, - "e_string": "window.profilesData.profileUser", - "m_string": "href=\"http://www.gog.com/404\"", - "m_code": 302, - "known": [ - "user", - "Admin" - ], - "cat": "gaming" - }, - { - "name": "Goodgame_Russia", - "uri_check": "https://goodgame.ru/channel/{account}/", - "e_code": 200, - "e_string": "channel_id", - "m_string": "Такой страницы не существует", - "m_code": 400, - "known": [ - "ejysarmat", - "JacksonTV" - ], - "cat": "gaming" - }, - { - "name": "gpodder.net", - "uri_check": "https://gpodder.net/user/{account}/", - "e_code": 200, - "e_string": "mdash; gpodder.net", - "m_string": "404 - Not found", - "m_code": 404, - "known": [ - "blue", - "red" - ], - "cat": "music" - }, - { - "name": "grandprof", - "uri_check": "https://grandprof.org/communaute/{account}", - "e_code": 200, - "e_string": "s Profile", - "m_string": "Mauvaise pioche", - "m_code": 404, - "known": [ - "mohamed01", - "amine" - ], - "cat": "misc" - }, - { - "name": "Graphics.social (Mastodon Instance)", - "uri_check": "https://graphics.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://graphics.social/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "brian", - "moonpotato" - ], - "cat": "social" - }, - { - "name": "Gravatar", - "uri_check": "https://en.gravatar.com/{account}.json", - "uri_pretty": "https://en.gravatar.com/{account}", - "e_code": 200, - "e_string": "entry", - "m_string": "User not found", - "m_code": 404, - "known": [ - "test" - ], - "cat": "images" - }, - { - "name": "Greasy Fork", - "uri_check": "https://greasyfork.org/en/users?q={account}", - "e_code": 200, - "e_string": "class=\"user-list\"", - "m_string": "

No users!

", - "m_code": 200, - "known": [ - "TScofield", - "gitscofield" - ], - "cat": "tech" - }, - { - "name": "GTAinside.com", - "uri_check": "https://www.gtainside.com/user/{account}", - "e_code": 200, - "e_string": "userpage_user", - "m_string": "

404 Not Found", - "m_code": 200, - "known": [ - "daniel", - "franco" - ], - "cat": "gaming" - }, - { - "name": "gumroad", - "uri_check": "https://{account}.gumroad.com/", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "s profile picture", - "m_string": "Page not found", - "m_code": 404, - "known": [ - "ellietalksmoney", - "reallyniceimages" - ], - "cat": "shopping" - }, - { - "name": "Habbo.com", - "uri_check": " https://www.habbo.com/api/public/users?name={account}", - "uri_pretty": " https://www.habbo.com/profile/{account}", - "e_code": 200, - "e_string": "uniqueId\":", - "m_string": "error\": \"not-found", - "m_code": 404, - "known": [ - "john", - "michelle" - ], - "cat": "gaming" - }, - { - "name": "Habbo.com.br", - "uri_check": "https://www.habbo.com.br/api/public/users?name={account}", - "uri_pretty": "https://www.habbo.com.br/profile/{account}", - "e_code": 200, - "e_string": "uniqueId\":", - "m_string": "error\": \"not-found", - "m_code": 404, - "known": [ - "jeaniucas", - "cellao" - ], - "cat": "gaming" - }, - { - "name": "Habbo.com.tr", - "uri_check": "https://www.habbo.com.tr/api/public/users?name={account}", - "uri_pretty": "https://www.habbo.com.tr/profile/{account}", - "e_code": 200, - "e_string": "uniqueId\":", - "m_string": "error\": \"not-found", - "m_code": 404, - "known": [ - "fatma9180", - "elektrikci" - ], - "cat": "gaming" - }, - { - "name": "Habbo.de", - "uri_check": "https://www.habbo.de/api/public/users?name={account}", - "uri_pretty": "https://www.habbo.de/profile/{account}", - "e_code": 200, - "e_string": "uniqueId\":", - "m_string": "error\": \"not-found", - "m_code": 404, - "known": [ - "klaus", - "angelinaa" - ], - "cat": "gaming" - }, - { - "name": "Habbo.es", - "uri_check": " https://www.habbo.es/api/public/users?name={account}", - "uri_pretty": " https://www.habbo.es/profile/{account}", - "e_code": 200, - "e_string": "uniqueId\":", - "m_string": "not-found", - "m_code": 404, - "known": [ - "juan", - "michelle" - ], - "cat": "gaming" - }, - { - "name": "Habbo.fi", - "uri_check": "https://www.habbo.fi/api/public/users?name={account}", - "uri_pretty": "https://www.habbo.fi/profile/{account}", - "e_code": 200, - "e_string": "uniqueId\":", - "m_string": "error\": \"not-found", - "m_code": 404, - "known": [ - "cucumberz", - "Yasline" - ], - "cat": "gaming" - }, - { - "name": "Habbo.fr", - "uri_check": "https://www.habbo.fr/api/public/users?name={account}", - "uri_pretty": "https://www.habbo.fr/profile/{account}", - "e_code": 200, - "e_string": "uniqueId\":", - "m_string": "error\": \"not-found", - "m_code": 404, - "known": [ - "2006", - "sicilienne" - ], - "cat": "gaming" - }, - { - "name": "Habbo.it", - "uri_check": "https://www.habbo.it/api/public/users?name={account}", - "uri_pretty": "https://www.habbo.it/profile/{account}", - "e_code": 200, - "e_string": "uniqueId\":", - "m_string": "error\": \"not-found", - "m_code": 404, - "known": [ - "samsebek", - "papablu" - ], - "cat": "gaming" - }, - { - "name": "Habbo.nl", - "uri_check": "https://www.habbo.nl/api/public/users?name={account}", - "uri_pretty": "https://www.habbo.nl/profile/{account}", - "e_code": 200, - "e_string": "uniqueId\":", - "m_string": "error\": \"not-found", - "m_code": 404, - "known": [ - "XOTWOD.xx", - "xoSorxo" - ], - "cat": "gaming" - }, - { - "name": "Habr", - "uri_check": "https://habr.com/ru/users/{account}/", - "e_code": 200, - "e_string": "tm-page tm-user", - "m_string": "tm-error-message", - "m_code": 404, - "known": [ - "Bo0oM", - "AlhimicMan" - ], - "cat": "social" - }, - { - "name": "Habr Employer", - "uri_check": "https://freelance.habr.com/freelancers/{account}/employer", - "e_code": 200, - "e_string": "user-profile profile-blocks", - "m_string": "icon_user_locked", - "m_code": 404, - "known": [ - "aufdk", - "Danvantariy" - ], - "cat": "social" - }, - { - "name": "Habr Freelancer", - "uri_check": "https://freelance.habr.com/freelancers/{account}", - "e_code": 200, - "e_string": "user-profile profile-blocks", - "m_string": "icon_user_locked", - "m_code": 404, - "known": [ - "Bo0oM", - "Akloom" - ], - "cat": "social" - }, - { - "name": "Habr Q&A", - "uri_check": "https://qna.habr.com/user/{account}", - "e_code": 200, - "e_string": "class=\"page-header__info\"", - "m_string": "icon_error_404", - "m_code": 404, - "known": [ - "Masthead", - "dmitriypur" - ], - "cat": "coding" - }, - { - "name": "Habtium", - "uri_check": "https://habtium.es/{account}", - "e_code": 200, - "e_string": "
Oops!", - "m_code": 404, - "known": [ - "diegjeremy", - "suigetsu" - ], - "cat": "gaming" - }, - { - "name": "Hackaday.io", - "uri_check": "https://hackaday.io/{account}", - "strip_bad_char": "-", - "e_code": 200, - "e_string": "class=\"following-container \"", - "m_string": "class=\"error-nav\"", - "m_code": 404, - "known": [ - "john", - "adam" - ], - "cat": "hobby" - }, - { - "name": "Hackadvisor", - "uri_check": "https://hackadvisor.io/api/v2/profile/{account}/", - "uri_pretty": "https://hackadvisor.io/hacker/{account}", - "e_code": 200, - "e_string": "\"username\":", - "m_string": "{\"detail\":\"Username not found\"}", - "m_code": 404, - "known": [ - "WorstWurst", - "shriyanss" - ], - "cat": "tech" - }, - { - "name": "Hacker News", - "uri_check": "https://news.ycombinator.com/user?id={account}", - "e_code": 200, - "e_string": "created:", - "m_string": "No such user.", - "m_code": 200, - "known": [ - "mubix", - "egypt" - ], - "cat": "tech" - }, - { - "name": "hackerearth", - "uri_check": "https://www.hackerearth.com/@{account}", - "e_code": 200, - "e_string": "| Developer Profile on HackerEarth", - "m_string": "404 | HackerEarth", - "m_code": 200, - "known": [ - "peter", - "liam" - ], - "cat": "coding" - }, - { - "name": "Hackernoon", - "uri_check": "https://hackernoon.com/_next/data/foL6JC7ro2FEEMD-gMKgQ/u/{account}.json", - "uri_pretty": "https://hackernoon.com/u/{account}", - "e_code": 200, - "e_string": "\"profile\"", - "m_string": "__N_REDIRECT", - "m_code": 200, - "known": [ - "john", - "alex" - ], - "cat": "tech" - }, - { - "name": "HackerOne", - "uri_check": "https://hackerone.com/graphql", - "uri_pretty": "https://hackerone.com/{account}", - "post_body": "{\"query\":\"query($url: URI!) {\\n resource(url: $url) {\\n ... on User { username }\\n }\\n }\",\"variables\":{\"url\":\"{account}\"}}", - "headers": { - "Content-Type": "application/json" - }, - "e_code": 200, - "e_string": "\"username\":", - "m_string": "\"type\":\"NOT_FOUND\"", - "m_code": 200, - "known": [ - "born2hack", - "godiego" - ], - "cat": "tech" - }, - { - "name": "HackerRank", - "uri_check": "https://www.hackerrank.com/rest/contests/master/hackers/{account}/profile", - "uri_pretty": "https://www.hackerrank.com/profile/{account}", - "e_code": 200, - "e_string": "\"model\":", - "m_string": "\"error\":\"Not Found\"", - "m_code": 404, - "known": [ - "FMota", - "adepanges" - ], - "cat": "tech", - "protection": [ - "other" - ] - }, - { - "name": "hackrocks", - "uri_check": "https://hackrocks.com/api/users/profile", - "uri_pretty": "https://hackrocks.com/id/{account}", - "post_body": "{\"username\":\"{account}\"}", - "headers": { - "Accept": "application/json, text/plain, */*", - "Content-Type": "application/json" - }, - "e_code": 200, - "e_string": "\"username\":", - "m_string": "\"error_data\":\"USER_NOT_FOUND\"", - "m_code": 404, - "known": [ - "mespejo", - "NeoWaveCode" - ], - "cat": "tech" - }, - { - "name": "Hackster", - "uri_check": "https://www.hackster.io/{account}", - "e_code": 200, - "e_string": "data-hypernova-key=\"UserProfile\"", - "m_string": "id=\"error\"", - "m_code": 404, - "known": [ - "hendra", - "sologithu" - ], - "cat": "coding" - }, - { - "name": "hamaha", - "uri_check": "https://hamaha.net/{account}", - "e_code": 200, - "e_string": "- трейдинг форекс фьючерсы акции фондовый рынок ", - "m_string": "HAMAHA Биткоин форум.", - "m_code": 200, - "known": [ - "oleg", - "misha" - ], - "cat": "finance" - }, - { - "name": "Hanime", - "uri_check": "https://hanime.tv/channels/{account}", - "e_code": 200, - "e_string": "Channel Views", - "m_string": "DYNAMIC", - "m_code": 302, - "known": [ - "thecolorred-7902", - "arisu-cum-stats-2787" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Hashnode", - "uri_check": "https://gql.hashnode.com/", - "uri_pretty": "https://hashnode.com/@{account}", - "post_body": "{\"operationName\":\"UserBadge\",\"query\":\"query UserBadge($username:String!){user(username:$username){id}}\",\"variables\":{\"username\":\"{account}\"}}", - "headers": { - "content-type": "application/json" - }, - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"user\":null", - "m_code": 200, - "known": [ - "33win1net", - "goober99" - ], - "cat": "tech" - }, - { - "name": "Hcommons.social (Mastodon Instance)", - "uri_check": "https://hcommons.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://hcommons.social/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "hello", - "iuulaio" - ], - "cat": "social" - }, - { - "name": "Heylink", - "uri_check": "https://heylink.me/{account}/", - "e_code": 200, - "e_string": "HeyLink.me |", - "m_string": "We can't find the page that you're looking for :(", - "m_code": 404, - "known": [ - "mohammed13", - "johnny" - ], - "cat": "misc" - }, - { - "name": "hiberworld", - "uri_check": "https://hiberworld.com/user/{account}", - "e_code": 200, - "e_string": "Member since ", - "m_string": "Looks like you got lost ", - "m_code": 200, - "known": [ - "Axeman", - "Silver01" - ], - "cat": "gaming" - }, - { - "name": "HiHello", - "uri_check": "https://www.hihello.me/author/{account}", - "e_code": 200, - "e_string": "HiHello Blog Author: ", - "m_string": "Well, this is awkward", - "m_code": 404, - "known": [ - "pascal-theriault", - "kortnee-paiha" - ], - "cat": "business" - }, - { - "name": "Historians.social (Mastodon Instance)", - "uri_check": "https://historians.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://historians.social/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "lizcovart", - "Ejoiner" - ], - "cat": "social" - }, - { - "name": "Holopin", - "uri_check": "https://www.holopin.io/api/auth/username", - "uri_pretty": "https://holopin.io/@{account}#", - "post_body": "{\"username\":\"{account}\"}", - "headers": { - "Content-Type": "application/json" - }, - "e_code": 200, - "e_string": "\"available\":false", - "m_string": "\"available\":true", - "m_code": 200, - "known": [ - "holo", - "john", - "fire" - ], - "cat": "hobby" - }, - { - "name": "HomeDesign3D", - "uri_check": "https://en.homedesign3d.net/user/{account}", - "e_code": 200, - "e_string": "userspace", - "m_string": "An Error Occurred: Internal Server Error", - "m_code": 500, - "known": [ - "carlos01", - "paul" - ], - "cat": "hobby" - }, - { - "name": "Hometech.social (Mastodon Instance)", - "uri_check": "https://hometech.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://hometech.social/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "one4ll", - "seth" - ], - "cat": "social" - }, - { - "name": "hoo.be", - "uri_check": "https://hoo.be/{account}", - "e_code": 200, - "e_string": "--profile-name-color", - "m_string": "Page Not Found</h3>", - "m_code": 404, - "known": [ - "chrishemsworth", - "alextackie" - ], - "cat": "business" - }, - { - "name": "Hostux.social (Mastodon Instance)", - "uri_check": "https://hostux.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://hostux.social/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "alarig", - "rsmela" - ], - "cat": "social" - }, - { - "name": "Houzz", - "uri_check": "https://www.houzz.com/user/{account}", - "e_code": 200, - "e_string": "Followers", - "m_string": "Page Not Found", - "m_code": 404, - "known": [ - "liam", - "alex" - ], - "cat": "hobby" - }, - { - "name": "HubPages", - "uri_check": "https://hubpages.com/@{account}", - "e_code": 200, - "e_string": "name\">Followers", - "m_string": "Sorry, that user does not exist", - "m_code": 404, - "known": [ - "greeneyes1607", - "lmmartin" - ], - "cat": "blog" - }, - { - "name": "Hubski", - "uri_check": "https://hubski.com/user/{account}", - "e_code": 200, - "e_string": "'s profile", - "m_string": "No such user.", - "m_code": 200, - "known": [ - "john", - "blue" - ], - "cat": "social" - }, - { - "name": "HudsonRock", - "uri_check": "https://cavalier.hudsonrock.com/api/json/v2/osint-tools/search-by-username?username={account}", - "e_code": 200, - "e_string": "This username is associated with a computer that was infected by an info-stealer", - "m_string": "This username is not associated with a computer infected by an info-stealer", - "m_code": 200, - "known": [ - "testadmin", - "testadmin1" - ], - "cat": "tech" - }, - { - "name": "HuggingFace", - "uri_check": "https://huggingface.co/{account}", - "e_code": 200, - "e_string": "data-target=\"UserProfile\"", - "m_string": "content=\"404 – Hugging Face\"", - "m_code": 404, - "known": [ - "hack", - "dev", - "Amanda" - ], - "cat": "tech" - }, - { - "name": "HulkShare", - "uri_check": "https://www.hulkshare.com/{account}", - "e_code": 200, - "e_string": "id=\"profile_image\"", - "m_string": "Invalid user.", - "m_code": 200, - "known": [ - "djjamesryan", - "dxcrew2" - ], - "cat": "social" - }, - { - "name": "Iconfinder", - "uri_check": "https://www.iconfinder.com/{account}", - "e_code": 200, - "e_string": "data-to-user-id=", - "m_string": "We couldn't find the page you are looking for.", - "m_code": 404, - "known": [ - "roundicons", - "iconfinder" - ], - "cat": "images" - }, - { - "name": "icq-chat", - "uri_check": "https://icq.icqchat.co/members/{account}/", - "e_code": 200, - "e_string": "Last seen", - "m_string": "Oops! We ran into some problems", - "m_code": 404, - "known": [ - "brookenora.54", - "bigdaddy.77" - ], - "cat": "social" - }, - { - "name": "IFTTT", - "uri_check": "https://ifttt.com/p/{account}", - "e_code": 200, - "e_string": "Joined", - "m_string": "The requested page or file does not exist", - "m_code": 404, - "known": [ - "nr9992", - "sss90" - ], - "cat": "misc" - }, - { - "name": "ifunny", - "uri_check": "https://ifunny.co/user/{account}", - "e_code": 200, - "e_string": "subscribers", - "m_string": "404 - page not found", - "m_code": 404, - "known": [ - "hacker", - "john" - ], - "cat": "misc" - }, - { - "name": "igromania", - "uri_check": "http://forum.igromania.ru/member.php?username={account}", - "e_code": 200, - "e_string": "Форум Игромании - Просмотр профиля:", - "m_string": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "m_code": 200, - "known": [ - "bob", - "blue" - ], - "cat": "social" - }, - { - "name": "ilovegrowingmarijuana", - "uri_check": "https://support.ilovegrowingmarijuana.com/u/{account}", - "e_code": 200, - "e_string": "<title> Profile - ", - "m_string": "Oops! That page doesn’t exist or is private", - "m_code": 404, - "known": [ - "ILGM.Stacy", - "Mosaicmind9x" - ], - "cat": "social" - }, - { - "name": "imagefap", - "uri_check": "https://www.imagefap.com/profile/{account}", - "e_code": 200, - "e_string": "s Profile", - "m_string": "Invalid uid", - "m_code": 200, - "known": [ - "lover03", - "SecretSide15" - ], - "cat": "xx NSFW xx" - }, - { - "name": "ImageShack", - "uri_check": "https://imageshack.com/user/{account}", - "e_code": 200, - "e_string": "s Images", - "m_string": "", - "m_code": 302, - "known": [ - "test" - ], - "cat": "images" - }, - { - "name": "iMGSRC.RU", - "uri_check": "https://imgsrc.ru/main/user.php?lang=ru&user={account}", - "e_code": 200, - "e_string": "Присоединился", - "m_string": "", - "m_code": 302, - "known": [ - "natalisn", - "andydiamond", - "natalyck" - ], - "cat": "images" - }, - { - "name": "Imgur", - "uri_check": "https://api.imgur.com/account/v1/accounts/{account}?client_id=546c25a59c58ad7", - "uri_pretty": "https://imgur.com/user/{account}/about", - "e_code": 200, - "e_string": "\"username\":", - "m_string": "\"code\":\"404\"", - "m_code": 404, - "known": [ - "OliverClothesoff70", - "DadOnTheInternet" - ], - "cat": "images" - }, - { - "name": "inaturalist", - "uri_check": "https://inaturalist.nz/people/{account}", - "e_code": 200, - "e_string": "s Profile", - "m_string": "404 Not Found", - "m_code": 404, - "known": [ - "greg", - "tom" - ], - "cat": "hobby" - }, - { - "name": "Independent academia", - "uri_check": "https://independent.academia.edu/{account}", - "e_code": 200, - "e_string": "- Academia.edu", - "m_string": "Academia.edu", - "m_code": 404, - "known": [ - "peter", - "LiamM" - ], - "cat": "hobby" - }, - { - "name": "InkBunny", - "uri_check": "https://inkbunny.net/{account}", - "e_code": 200, - "e_string": "Profile | Inkbunny, the Furry Art Community", - "m_string": "Members | Inkbunny, the Furry Art Community", - "m_code": 302, - "known": [ - "AdminBunny", - "test" - ], - "cat": "xx NSFW xx" - }, - { - "name": "InsaneJournal", - "uri_check": "https://{account}.insanejournal.com/profile", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "User:", - "m_string": "The requested URL /profile was not found on this server", - "m_code": 200, - "known": [ - "test", - "pint-sized", - "acroamatica" - ], - "cat": "social" - }, - { - "name": "Instagram", - "uri_check": "https://www.instagram.com/{account}/", - "e_code": 200, - "e_string": "\"routePath\":\"\\/{username}\\/{?tab}\\/{?view_type}\\/{?igshid}\\/\"", - "m_string": "\"routePath\":null", - "m_code": 200, - "known": [ - "jennaortega", - "cristiano" - ], - "cat": "social" - }, - { - "name": "Instagram (Imginn)", - "uri_check": "https://imginn.com/{account}/", - "e_code": 200, - "e_string": "userinfo", - "m_string": "page-error notfound", - "m_code": 404, - "known": [ - "therock", - "ramarim" - ], - "cat": "social", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Instagram_archives", - "uri_check": "https://archive.org/wayback/available?url=https://instagram.com/{account}/", - "e_code": 200, - "e_string": "\"archived_snapshots\": {\"closest\"", - "m_string": "\"archived_snapshots\": {}}", - "m_code": 200, - "known": [ - "zuck", - "jack" - ], - "cat": "social" - }, - { - "name": "Instructables", - "uri_check": "https://www.instructables.com/json-api/showAuthorExists?screenName={account}", - "uri_pretty": "https://www.instructables.com/member/{account}/", - "e_code": 200, - "e_string": "\"exists\": true", - "m_string": "\"error\": \"Sorry, we couldn't find that one!\"", - "m_code": 404, - "known": [ - "davidandora", - "test" - ], - "cat": "hobby" - }, - { - "name": "Internet Archive User Search", - "uri_check": "https://archive.org/advancedsearch.php?q={account}&output=json", - "uri_pretty": "https://archive.org/search.php?query={account}", - "e_code": 200, - "e_string": "backup_location", - "m_string": "numFound\":0", - "m_code": 200, - "known": [ - "test", - "mubix" - ], - "cat": "misc" - }, - { - "name": "interpals", - "uri_check": "https://www.interpals.net/{account}", - "e_code": 200, - "e_string": "Looking for", - "m_string": "User not found", - "m_code": 200, - "known": [ - "test" - ], - "cat": "dating" - }, - { - "name": "Intigriti", - "uri_check": "https://app.intigriti.com/api/user/public/profile/{account}", - "uri_pretty": "https://app.intigriti.com/profile/{account}", - "e_code": 200, - "e_string": "\"userName\":", - "m_string": "class=\"error-page-container\"", - "m_code": 404, - "known": [ - "vampire01", - "kenshiin" - ], - "cat": "tech" - }, - { - "name": "Issuu", - "uri_check": "https://issuu.com/call/signup/v2/check-username/{account}", - "uri_pretty": "https://issuu.com/{account}", - "e_code": 200, - "e_string": "\"status\":\"unavailable\"", - "m_string": "\"status\":\"available\"", - "m_code": 200, - "known": [ - "letsplayhockey", - "the_anchor" - ], - "cat": "social" - }, - { - "name": "itch.io", - "uri_check": "https://itch.io/profile/{account}", - "e_code": 200, - "e_string": "class=\"user_data\"", - "m_string": "class=\"not_found_page page_widget base_widget\"", - "m_code": 404, - "known": [ - "obliviist", - "finch" - ], - "cat": "gaming" - }, - { - "name": "iXBT Forum", - "uri_check": "https://forum.ixbt.com/users.cgi?id=info:{account}", - "e_code": 200, - "e_string": "Информация об участнике:", - "m_string": "Проверьте регистр написания.", - "m_code": 404, - "known": [ - "phosphor", - "Dronich" - ], - "cat": "tech" - }, - { - "name": "Japandict", - "uri_check": "https://forum.japandict.com/u/{account}", - "e_code": 200, - "e_string": "modern browser", - "m_string": "The page you requested could not be found.", - "m_code": 404, - "known": [ - "Yan", - "Happy" - ], - "cat": "social" - }, - { - "name": "JBZD", - "uri_check": "https://jbzd.com.pl/uzytkownik/{account}", - "e_code": 200, - "e_string": "Dzidy użytkownika", - "m_string": "Błąd 404", - "m_code": 404, - "known": [ - "test", - "janek" - ], - "cat": "images" - }, - { - "name": "jeja.pl", - "uri_check": "https://www.jeja.pl/user,{account}", - "e_code": 200, - "e_string": "Profil użytkownika", - "m_string": "Niepoprawny login", - "m_code": 200, - "known": [ - "kowal", - "janek" - ], - "cat": "misc" - }, - { - "name": "Jeuxvideo", - "uri_check": "https://www.jeuxvideo.com/profil/{account}?mode=infos", - "e_code": 200, - "e_string": "- jeuxvideo.com", - "m_string": "rence des gamers", - "m_code": 404, - "known": [ - "jane", - "alex" - ], - "cat": "gaming" - }, - { - "name": "Joe Monster", - "uri_check": "https://joemonster.org/bojownik/{account}", - "e_code": 200, - "e_string": "jest prywatny", - "m_string": "Nie wiem jak ci to powiedzieć", - "m_code": 200, - "known": [ - "dandris", - "lasior" - ], - "cat": "misc" - }, - { - "name": "joinDOTA", - "uri_check": "https://www.joindota.com/ajax/search", - "uri_pretty": "https://www.joindota.com/search?m=edb_player&q={account}", - "post_body": "search={account}&module=edb_player&language=en", - "headers": { - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" - }, - "e_code": 200, - "e_string": "\"items\":[{", - "m_string": "\"count\":0", - "m_code": 200, - "known": [ - "AngryTestie", - "amddota2" - ], - "cat": "gaming" - }, - { - "name": "JSFiddle", - "uri_check": "https://jsfiddle.net/user/{account}/", - "e_code": 200, - "e_string": "Settings - JSFiddle - Code Playground", - "m_string": "That page doesn't exist.", - "m_code": 404, - "known": [ - "john", - "alex" - ], - "cat": "coding" - }, - { - "name": "Justforfans", - "uri_check": "https://justfor.fans/{account}", - "e_code": 200, - "e_string": " @ JustFor.Fans", - "m_string": "", - "m_code": 302, - "known": [ - "devinfrancoxxx", - "RileyChaux" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Kaggle", - "uri_check": "https://www.kaggle.com/{account}", - "e_code": 200, - "e_string": "property=\"og:username\"", - "m_string": "Kaggle: Your Home for Data Science", - "m_code": 404, - "known": [ - "charmq", - "tunguz" - ], - "cat": "coding" - }, - { - "name": "kashipara", - "uri_check": "https://www.kashipara.com/ajax/checkNewUser.php", - "uri_pretty": "https://www.kashipara.com/profile/user/{account}", - "post_body": "id=UserName&value={account}", - "headers": { - "Content-Type": "application/x-www-form-urlencoded" - }, - "e_code": 200, - "e_string": "\"message\":\"UserName already Exist\"", - "m_string": "\"message\":\"UserName avalible\"", - "m_code": 200, - "known": [ - "lopalopa", - "westde123" - ], - "cat": "tech" - }, - { - "name": "Keybase", - "uri_check": "https://keybase.io/_/api/1.0/user/lookup.json?usernames={account}", - "uri_pretty": "https://keybase.io/{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"them\":[null]", - "m_code": 200, - "known": [ - "test", - "mubix" - ], - "cat": "social" - }, - { - "name": "Kick", - "uri_check": "https://kick.com/api/v2/channels/{account}", - "uri_pretty": "https://kick.com/{account}", - "e_code": 200, - "e_string": "\"id\"", - "m_string": "Not Found", - "m_code": 404, - "known": [ - "deepak", - "anthonyz" - ], - "cat": "social", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Kickstarter", - "uri_check": "https://www.kickstarter.com/profile/{account}", - "e_code": 200, - "e_string": "projects", - "m_string": "Oops, Something went missing", - "m_code": 404, - "known": [ - "john", - "bob" - ], - "cat": "shopping" - }, - { - "name": "kik", - "uri_check": "https://kik.me/{account}", - "e_code": 200, - "e_string": "/thumb.jpg\"/>", - "m_string": "

", - "m_code": 200, - "known": [ - "adam", - "smith", - "jones" - ], - "cat": "social" - }, - { - "name": "kipin", - "uri_check": "https://kipin.app/{account}", - "e_code": 200, - "e_string": "kipin.app/data/photos/resized2/", - "m_string": "Page not found. Link expired, broken or wrong.", - "m_code": 302, - "known": [ - "monethica", - "asd_fca" - ], - "cat": "business" - }, - { - "name": "KnowYourMeme", - "uri_check": "https://knowyourmeme.com/users/{account}", - "e_code": 200, - "e_string": "Contributions", - "m_string": "404, File Not Found!", - "m_code": 400, - "known": [ - "ayumukasuga", - "butterin-yobread" - ], - "cat": "social" - }, - { - "name": "Ko-Fi", - "uri_check": "https://ko-fi.com/{account}", - "e_code": 200, - "e_string": "id=\"profile-header\"", - "m_string": "Object moved", - "m_code": 302, - "known": [ - "frank", - "marcmakescomics" - ], - "cat": "social", - "protection": [ - "cloudflare" - ] - }, - { - "name": "komi", - "uri_check": "https://api.komi.io/api/talent/usernames/{account}", - "uri_pretty": "https://{account}.komi.io", - "e_code": 200, - "e_string": "accountStatus\":\"active", - "m_string": "The talent profile was not found", - "m_code": 404, - "known": [ - "abbysage", - "iamdsprings" - ], - "cat": "social" - }, - { - "name": "Kongregate", - "uri_check": "https://www.kongregate.com/accounts/{account}", - "e_code": 200, - "e_string": "Member Since", - "m_string": "Sorry, no account with that name was found", - "m_code": 404, - "known": [ - "test" - ], - "cat": "gaming" - }, - { - "name": "Kotburger", - "uri_check": "https://kotburger.pl/user/{account}", - "e_code": 200, - "e_string": "Zamieszcza kotburgery od:", - "m_string": "Nie znaleziono użytkownika o podanym loginie.", - "m_code": 200, - "known": [ - "ania", - "janek" - ], - "cat": "images" - }, - { - "name": "Kwai", - "uri_check": "https://www.kwai.com/@{account}", - "e_code": 200, - "e_string": "name=\"title\"", - "m_string": "Kwai", - "m_code": 200, - "known": [ - "carlito", - "taylor" - ], - "cat": "social" - }, - { - "name": "kwejk.pl", - "uri_check": "https://kwejk.pl/uzytkownik/{account}#/tablica/", - "e_code": 200, - "e_string": "Kwejki użytkownika", - "m_string": "404 - strona nie została znaleziona - KWEJK.pl", - "m_code": 404, - "known": [ - "test", - "janek" - ], - "cat": "images" - }, - { - "name": "Kwork", - "uri_check": "https://kwork.ru/user_kworks/{account}", - "uri_pretty": "https://kwork.ru/user/{account}", - "post_body": "{\"username\":\"{account}\",\"offset\":0,\"limit\":10}", - "headers": { - "Content-Type": "application/json" - }, - "e_code": 200, - "e_string": "\"success\":true", - "m_string": "\"success\":false", - "m_code": 200, - "known": [ - "ilkarkarakurt", - "sergeymeshiy" - ], - "cat": "social" - }, - { - "name": "Last.fm", - "uri_check": "https://www.last.fm/user/{account}", - "e_code": 200, - "e_string": "class=\"header-info\"", - "m_string": "

404 - Page Not Found

", - "m_code": 404, - "known": [ - "anne", - "alex" - ], - "cat": "music" - }, - { - "name": "LeakIX", - "uri_check": "https://leakix.net/u/{account}", - "e_code": 200, - "e_string": ">Joined ", - "m_string": "LeakIX - Server error", - "m_code": 500, - "known": [ - "Chocapikk", - "Hug1337" - ], - "cat": "tech", - "protection": [ - "other" - ] - }, - { - "name": "Learn CW Online", - "uri_check": "https://lcwo.net/api/user_exists.php", - "uri_pretty": "https://lcwo.net/profile/{account}", - "post_body": "username={account}", - "headers": { - "Content-Type": "application/x-www-form-urlencoded" - }, - "e_code": 200, - "e_string": "\"user_exists\": 1", - "m_string": "\"user_exists\": 0", - "m_code": 200, - "known": [ - "wm3o", - "test" - ], - "cat": "hobby" - }, - { - "name": "LeetCode", - "uri_check": "https://leetcode.com/graphql/", - "uri_pretty": "https://leetcode.com/u/{account}/", - "post_body": "{\"query\":\"query userPublicProfile($username: String!) { matchedUser(username: $username) { username } }\",\"variables\":{\"username\":\"{account}\"},\"operationName\":\"userPublicProfile\"}", - "headers": { - "Content-Type": "application/json" - }, - "e_code": 200, - "e_string": "\"username\":", - "m_string": "\"matchedUser\":null", - "m_code": 200, - "known": [ - "aku_2000", - "wengh" - ], - "cat": "coding" - }, - { - "name": "Lemon8", - "uri_check": "https://www.lemon8-app.com/{account}?region=us", - "e_code": 200, - "e_string": "class=\"user-desc-main-info", - "m_string": "unavailableReason\": \"not_found", - "m_code": 404, - "known": [ - "phinyamat", - "andrianajohnson" - ], - "cat": "social" - }, - { - "name": "Letterboxd", - "uri_check": "https://letterboxd.com/{account}/", - "e_code": 200, - "e_string": "’s profile on Letterboxd", - "m_string": "Sorry, we can’t find the page you’ve requested.", - "m_code": 404, - "known": [ - "serdaraltin", - "choi" - ], - "cat": "social" - }, - { - "name": "LevelBlue", - "uri_check": "https://otx.alienvault.com/otxapi/auth/validate?username={account}", - "uri_pretty": "https://otx.alienvault.com/user/{account}/pulses", - "e_code": 400, - "e_string": "\"username\": [\"This username is already taken\"]", - "m_string": "{}", - "m_code": 200, - "known": [ - "BotnetExposer", - "jamesbrine" - ], - "cat": "social" - }, - { - "name": "Liberapay", - "uri_check": "https://liberapay.com/{account}", - "e_code": 200, - "e_string": "class=\"profile-header\"", - "m_string": "Response code: 404", - "m_code": 404, - "known": [ - "db0", - "bnjbvr" - ], - "cat": "finance", - "protection": [ - "cloudflare" - ] - }, - { - "name": "LibraryThing", - "uri_check": "https://www.librarything.com/profile/{account}", - "e_code": 200, - "e_string": "
Joined
", - "m_string": "Error: This user doesn't exist", - "m_code": 200, - "known": [ - "test", - "john" - ], - "cat": "hobby" - }, - { - "name": "Libretooth.gr (Mastodon Instance)", - "uri_check": "https://libretooth.gr/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://libretooth.gr/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "infolibre", - "tzinalilik" - ], - "cat": "social" - }, - { - "name": "lichess.org", - "uri_check": "https://lichess.org/api/player/autocomplete?term={account}&exists=1", - "uri_pretty": "https://lichess.org/@/{account}", - "e_code": 200, - "e_string": "true", - "m_string": "false", - "m_code": 200, - "known": [ - "mohammed01", - "mohammed03" - ], - "cat": "gaming" - }, - { - "name": "LINE", - "uri_check": "https://line.me/R/ti/p/@{account}?from=page", - "e_code": 200, - "e_string": "Add LINE Friends via QR Code", - "m_string": "404 Not Found", - "m_code": 404, - "known": [ - "roseareal", - "yoasobi" - ], - "cat": "social" - }, - { - "name": "Linktree", - "uri_check": "https://linktr.ee/{account}", - "e_code": 200, - "e_string": "\"uuid\":", - "m_string": "\"statusCode\":404", - "m_code": 404, - "known": [ - "anne", - "alex" - ], - "cat": "social" - }, - { - "name": "linux.org.ru", - "uri_check": "https://www.linux.org.ru/people/{account}/profile", - "e_code": 200, - "e_string": "Дата регистрации", - "m_string": "Пользователя не существует", - "m_code": 404, - "known": [ - "john", - "bob" - ], - "cat": "tech" - }, - { - "name": "Livejournal", - "uri_check": "https://{account}.livejournal.com", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "Unknown Journal", - "m_code": 404, - "known": [ - "jill", - "john" - ], - "cat": "blog" - }, - { - "name": "livemaster.ru", - "uri_check": "https://www.livemaster.ru/{account}", - "e_code": 200, - "e_string": "Магазин мастера", - "m_string": "<title>Вы попали на несуществующую страницу", - "m_code": 404, - "known": [ - "redart", - "ellentoy" - ], - "cat": "shopping" - }, - { - "name": "lobste.rs", - "uri_check": "https://lobste.rs/u/{account}", - "e_code": 200, - "e_string": "Joined", - "m_string": "The resource you requested was not found, or the story has been deleted.", - "m_code": 404, - "known": [ - "john", - "bob" - ], - "cat": "tech" - }, - { - "name": "LoLProfile", - "uri_check": "https://lolprofile.net/search/world/{account}-world", - "e_code": 200, - "e_string": "class=\"content sw\">", - "m_string": "We could not find any results, please try again later or check your input.", - "m_code": 200, - "known": [ - "bea", - "wild" - ], - "cat": "gaming" - }, - { - "name": "Lor.sh (Mastodon Instance)", - "uri_check": "https://lor.sh/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://lor.sh/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "dump_stack", - "lamountain" - ], - "cat": "social" - }, - { - "name": "lowcygier.pl", - "uri_check": "https://bazar.lowcygier.pl/user/{account}", - "e_code": 200, - "e_string": "Zarejestrowany", - "m_string": "Błąd 404 - Podana strona nie istnieje", - "m_code": 404, - "known": [ - "armin", - "janek" - ], - "cat": "gaming" - }, - { - "name": "MAGABOOK", - "uri_check": "https://magabook.com/{account}", - "e_code": 200, - "e_string": "Timeline", - "m_string": "", - "m_code": 302, - "known": [ - "KristenSuzanne", - "mikeflbmer" - ], - "cat": "social" - }, - { - "name": "Magix", - "uri_check": "https://www.magix.info/us/users/profile/{account}/", - "e_code": 200, - "e_string": "About me", - "m_string": "Page not found", - "m_code": 200, - "known": [ - "baywolfmusic", - "johnebaker" - ], - "cat": "music" - }, - { - "name": "Malpedia Actors", - "uri_check": "https://malpedia.caad.fkie.fraunhofer.de/actor/{account}", - "e_code": 200, - "e_string": "href=\"/actors\"", - "m_string": "Page not Found.", - "m_code": 404, - "known": [ - "USDoD", - "AeroBlade" - ], - "cat": "tech" - }, - { - "name": "MapMyTracks", - "uri_check": "https://www.mapmytracks.com/{account}", - "e_code": 200, - "e_string": "Daily distance this week", - "m_string": "Outside together", - "m_code": 302, - "known": [ - "ulirad", - "CBSloan" - ], - "cat": "health" - }, - { - "name": "Mapstodon.space (Mastodon Instance)", - "uri_check": "https://mapstodon.space/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://mapstodon.space/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "Autumnhussar", - "jeremy" - ], - "cat": "social" - }, - { - "name": "Maroc_nl", - "uri_check": "https://www.maroc.nl/forums/members/{account}.html", - "e_code": 200, - "e_string": "Bekijk Profiel:", - "m_string": "Deze gebruiker is niet geregistreerd", - "m_code": 200, - "known": [ - "brahim", - "brahim01" - ], - "cat": "social" - }, - { - "name": "Marshmallow", - "uri_check": "https://marshmallow-qa.com/{account}", - "e_code": 200, - "e_string": "さんにメッセージをおくる", - "m_string": "For compensation, here are cats for you.", - "m_code": 404, - "known": [ - "yuino_fox", - "momo" - ], - "cat": "social" - }, - { - "name": "Martech", - "uri_check": "https://martech.org/author/{account}/", - "e_code": 200, - "e_string": "twitter:site", - "m_string": "Page not found", - "m_code": 404, - "known": [ - "mani-karthik", - "james-green" - ], - "cat": "business" - }, - { - "name": "Massage Anywhere", - "uri_check": "https://www.massageanywhere.com/profile/{account}", - "e_code": 200, - "e_string": "<title>MassageAnywhere.com Profile for ", - "m_string": "<title>MassageAnywhere.com: Search Results", - "m_code": 200, - "known": [ - "lorilmccluskey", - "LomiNYC" - ], - "cat": "health" - }, - { - "name": "masto.ai", - "uri_check": "https://masto.ai/@{account}", - "e_code": 200, - "e_string": "@masto.ai) - Mastodon", - "m_string": "The page you are looking for isn't here.", - "m_code": 404, - "known": [ - "rbreich", - "stux" - ], - "cat": "social" - }, - { - "name": "Masto.nyc (Mastodon Instance)", - "uri_check": "https://masto.nyc/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://masto.nyc/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "seano", - "jayjay718" - ], - "cat": "social" - }, - { - "name": "Mastodon API", - "uri_check": "https://mastodon.social/api/v2/search?q={account}&limit=1&type=accounts", - "uri_pretty": "https://mastodon.social/api/v2/search?q={account}&type=accounts", - "e_code": 200, - "e_string": "display_name", - "m_string": "\"accounts\":[]", - "m_code": 404, - "known": [ - "Richard_Littler", - "webbreacher" - ], - "cat": "social" - }, - { - "name": "Mastodon-101010.pl", - "uri_check": "https://101010.pl/@{account}", - "e_code": 200, - "e_string": "@101010.pl", - "m_string": "The page you are looking for isn't here.", - "m_code": 404, - "known": [ - "szekspir", - "xaphanpl" - ], - "cat": "social" - }, - { - "name": "Mastodon-C.IM", - "uri_check": "https://c.im/@{account}", - "e_code": 200, - "e_string": "@c.im) - C.IM", - "m_string": "The page you are looking for isn't here", - "m_code": 404, - "known": [ - "admin", - "paidugroup" - ], - "cat": "social" - }, - { - "name": "Mastodon-Chaos.social", - "uri_check": "https://chaos.social/@{account}", - "e_code": 200, - "e_string": "@chaos.social) - chaos.social", - "m_string": "The page you are looking for isn't here.", - "m_code": 404, - "known": [ - "dictvm", - "sml" - ], - "cat": "social" - }, - { - "name": "Mastodon-climatejustice.rocks", - "uri_check": "https://climatejustice.rocks/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://climatejustice.rocks/@{account}", - "e_code": 200, - "e_string": "username\":", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "paula", - "PaulaToThePeople" - ], - "cat": "social" - }, - { - "name": "Mastodon-Defcon", - "uri_check": "https://defcon.social/@{account}", - "e_code": 200, - "e_string": "- DEF CON Social", - "m_string": "The page you are looking for isn't here.", - "m_code": 404, - "known": [ - "defcon", - "buttersnatcher" - ], - "cat": "social" - }, - { - "name": "Mastodon-mastodon", - "uri_check": "https://mastodon.social/@{account}", - "e_code": 200, - "e_string": "profile:username", - "m_string": "The page you are looking for isn't here.", - "m_code": 404, - "known": [ - "john", - "alex" - ], - "cat": "social" - }, - { - "name": "Mastodon-meow.social", - "uri_check": "https://meow.social/@{account}", - "e_code": 200, - "e_string": "- the mastodon instance for creatures fluffy, scaly and otherwise", - "m_string": "The page you are looking for isn't here.", - "m_code": 404, - "known": [ - "meow", - "novra" - ], - "cat": "social" - }, - { - "name": "Mastodon-mstdn.io", - "uri_check": "https://mstdn.io/@{account}", - "e_code": 200, - "e_string": "@mstdn.io) - Mastodon", - "m_string": "The page you are looking for isn't here.", - "m_code": 404, - "known": [ - "mike", - "greg" - ], - "cat": "social" - }, - { - "name": "Mastodon-pol.social", - "uri_check": "https://pol.social/@{account}", - "e_code": 200, - "e_string": "@pol.social", - "m_string": "The page you are looking for isn't here.", - "m_code": 404, - "known": [ - "ftdl", - "ducensor" - ], - "cat": "social" - }, - { - "name": "Mastodon-rigcz.club", - "uri_check": "https://rigcz.club/@{account}", - "e_code": 200, - "e_string": "@rigcz.club", - "m_string": "The page you are looking for isn't here.", - "m_code": 404, - "known": [ - "blazej", - "adam" - ], - "cat": "social" - }, - { - "name": "Mastodon-social_tchncs", - "uri_check": "https://social.tchncs.de/@{account}", - "e_code": 200, - "e_string": "profile:username", - "m_string": "The page you are looking for isn't here", - "m_code": 301, - "known": [ - "michael", - "frank" - ], - "cat": "social" - }, - { - "name": "Mastodon-Toot.Community", - "uri_check": "https://toot.community/@{account}", - "e_code": 200, - "e_string": "@toot.community) - toot.community", - "m_string": "The page you are looking for isn't here.", - "m_code": 404, - "known": [ - "Johnny", - "jorijn" - ], - "cat": "social" - }, - { - "name": "Mastodon.online", - "uri_check": "https://mastodon.online/@{account}", - "e_code": 200, - "e_string": "@mastodon.online) - Mastodon", - "m_string": "The page you are looking for isn't here.", - "m_code": 404, - "known": [ - "Gargron", - "RDHale" - ], - "cat": "social" - }, - { - "name": "Mastodonbooks.net (Mastodon Instance)", - "uri_check": "https://mastodonbooks.net/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://mastodonbooks.net/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "RogerRemacle", - "eugnick" - ], - "cat": "social" - }, - { - "name": "MCName (Minecraft)", - "uri_check": "https://mcname.info/en/search?q={account}", - "e_code": 200, - "e_string": "card mb-3 text-monospace", - "m_string": "alert alert-success px-0 py-1", - "m_code": 200, - "known": [ - "unrevive", - "nxtuny" - ], - "cat": "gaming" - }, - { - "name": "MCUUID (Minecraft)", - "uri_check": "https://playerdb.co/api/player/minecraft/{account}", - "uri_pretty": "https://mcuuid.net/?q={account}", - "e_code": 200, - "e_string": "Successfully found player by given ID.", - "m_string": "minecraft.api_failure", - "m_code": 200, - "known": [ - "smithy", - "bob" - ], - "cat": "gaming" - }, - { - "name": "Medium", - "uri_check": "https://medium.com/@{account}/about", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "Medium member since", - "m_string": "Out of nothing, something", - "m_code": 404, - "known": [ - "zulie", - "jessicalexicus" - ], - "cat": "news" - }, - { - "name": "medyczka.pl", - "uri_check": "http://medyczka.pl/user/{account}", - "e_code": 200, - "e_string": "Lista uzytkownikow", - "m_string": "This user has not registered and therefore does not have a profile to view.", - "m_code": 200, - "known": [ - "test", - "janek" - ], - "cat": "health" - }, - { - "name": "meet me", - "uri_check": "https://www.meetme.com/{account}", - "e_code": 200, - "e_string": "<title>Meet people like ", - "m_string": "<title>MeetMe - Chat and Meet New People</title", - "m_code": 302, - "known": [ - "john", - "marsha" - ], - "cat": "dating" - }, - { - "name": "Metacritic", - "uri_check": "https://www.metacritic.com/user/{account}/", - "e_code": 200, - "e_string": "class=\"c-pageProfile-wrapper\"", - "m_string": "class=\"c-error404\"", - "m_code": 404, - "known": [ - "Mcguy", - "goldzweig" - ], - "cat": "hobby" - }, - { - "name": "Minds", - "uri_check": "https://www.minds.com/api/v3/register/validate?username={account}", - "uri_pretty": "https://www.minds.com/{account}/", - "e_code": 200, - "e_string": "\"valid\":false", - "m_string": "\"valid\":true", - "m_code": 200, - "known": [ - "gigan996", - "mindsgaming" - ], - "cat": "social" - }, - { - "name": "Minecraft List", - "uri_check": "https://minecraftlist.com/players/{account}", - "e_code": 200, - "e_string": "-->was seen on<!--", - "m_string": "0 Minecraft servers recently", - "m_code": 200, - "known": [ - "fear837", - "dream" - ], - "cat": "gaming" - }, - { - "name": "mintme", - "uri_check": "https://www.mintme.com/token/{account}", - "e_code": 200, - "e_string": "token | mintMe", - "m_string": "Page not found", - "m_code": 404, - "known": [ - "john", - "crypto" - ], - "cat": "finance" - }, - { - "name": "Mistrzowie", - "uri_check": "https://mistrzowie.org/user/{account}", - "e_code": 200, - "e_string": "Profil użytkownika", - "m_string": "Nie znaleziono użytkownika o podanym loginie.", - "m_code": 200, - "known": [ - "test", - "janek" - ], - "cat": "images" - }, - { - "name": "Mix", - "uri_check": "https://mix.com/{account}/", - "e_code": 200, - "e_string": "<title>@", - "m_string": "The best content from the open web, personalized.", - "m_code": 302, - "known": [ - "test", - "mixpicks" - ], - "cat": "social" - }, - { - "name": "Mixcloud", - "uri_check": "https://api.mixcloud.com/{account}/", - "uri_pretty": "https://www.mixcloud.com/{account}/", - "e_code": 200, - "e_string": "\"username\":", - "m_string": "\"error\":", - "m_code": 404, - "known": [ - "DjHunnyBee", - "vegarecords" - ], - "cat": "music" - }, - { - "name": "Mixi", - "uri_check": "https://mixi.jp/view_community.pl?id={account}", - "e_code": 200, - "e_string": "| mixiコミュニティ", - "m_string": "データがありません", - "m_code": 200, - "known": [ - "2854333", - "19123" - ], - "cat": "social" - }, - { - "name": "Mixlr", - "uri_check": "https://api.mixlr.com/users/{account}", - "uri_pretty": "https://mixlr.com/{account}/", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"error\":\"Resource not found\"", - "m_code": 404, - "known": [ - "test", - "john" - ], - "cat": "music" - }, - { - "name": "Mmorpg", - "uri_check": "https://forums.mmorpg.com/profile/{account}", - "e_code": 200, - "e_string": "MMORPG.com Forums", - "m_string": "404 Not Not_Found", - "m_code": 404, - "known": [ - "TheDalaiBomba", - "MadLovin" - ], - "cat": "gaming" - }, - { - "name": "MobileGTA.net", - "uri_check": "https://www.mobilegta.net/en/user/{account}", - "e_code": 200, - "e_string": "userpage_user", - "m_string": "

404 Not Found", - "m_code": 200, - "known": [ - "daniel", - "franco" - ], - "cat": "gaming" - }, - { - "name": "Mod DB", - "uri_check": "https://www.moddb.com/html/scripts/autocomplete.php?a=username&q={account}", - "uri_pretty": "https://www.moddb.com/members/{account}", - "e_code": 200, - "e_string": "\"available\":false", - "m_string": "\"available\":true", - "m_code": 200, - "known": [ - "sprinklesoup", - "emargy" - ], - "cat": "gaming" - }, - { - "name": "MODX.im", - "uri_check": "https://modx.evo.im/profile/{account}/", - "e_code": 200, - "e_string": "class=\"profile\"", - "m_string": "class=\"content-error\"", - "m_code": 404, - "known": [ - "Grinyaha", - "kymage" - ], - "cat": "tech" - }, - { - "name": "Monkeytype", - "uri_check": "https://api.monkeytype.com/users/{account}/profile", - "uri_pretty": "https://monkeytype.com/profile/{account}", - "e_code": 200, - "e_string": "\"message\":\"Profile retrieved\"", - "m_string": "\"message\":\"User not found\"", - "m_code": 404, - "known": [ - "rocket", - "risenrelic" - ], - "cat": "coding" - }, - { - "name": "Moto Trip", - "uri_check": "https://moto-trip.com/profil/{account}", - "e_code": 200, - "e_string": "

Profil de ", - "m_string": "

Page introuvable

", - "m_code": 404, - "known": [ - "aesthetics", - "pif" - ], - "cat": "hobby" - }, - { - "name": "Motokiller", - "uri_check": "https://mklr.pl/user/{account}", - "e_code": 200, - "e_string": "Zamieszcza materiały od:", - "m_string": "Nie znaleziono użytkownika o podanym loginie.", - "m_code": 200, - "known": [ - "test", - "janek" - ], - "cat": "images" - }, - { - "name": "Moxfield", - "uri_check": "https://api2.moxfield.com/v1/users/{account}", - "uri_pretty": "https://www.moxfield.com/users/{account}", - "e_code": 200, - "e_string": "\"userName\":", - "m_string": "\"status\":404", - "m_code": 404, - "known": [ - "gamer", - "Carlos01" - ], - "cat": "gaming" - }, - { - "name": "mssg.me", - "uri_check": "https://{account}.mssg.me/", - "e_code": 200, - "e_string": "property=\"og:title\"", - "m_string": "id=\"page_404\"", - "m_code": 404, - "known": [ - "drrry", - "david" - ], - "cat": "social" - }, - { - "name": "Muck Rack", - "uri_check": "https://muckrack.com/{account}", - "e_code": 200, - "e_string": "on Muck Rack", - "m_string": "Oh no! Page not found.", - "m_code": 404, - "known": [ - "john" - ], - "cat": "news" - }, - { - "name": "Musician.social (Mastodon Instance)", - "uri_check": "https://musician.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://musician.social/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "Alizar", - "weisjohan" - ], - "cat": "social" - }, - { - "name": "musictraveler", - "uri_check": "https://www.musictraveler.com/en/users/{account}/", - "e_code": 200, - "e_string": "on Music Traveler", - "m_string": "Page Not found", - "m_code": 404, - "known": [ - "dave", - "sarah" - ], - "cat": "music" - }, - { - "name": "MUYZORRAS", - "uri_check": "https://www.muyzorras.com/usuarios/{account}", - "e_code": 200, - "e_string": "og:title", - "m_string": "Error 404", - "m_code": 404, - "known": [ - "anuel", - "esteban" - ], - "cat": "xx NSFW xx" - }, - { - "name": "my_instants", - "uri_check": "https://www.myinstants.com/en/profile/{account}/", - "e_code": 200, - "e_string": " | Myinstants", - "m_string": "Page not found", - "m_code": 404, - "known": [ - "daniel01", - "dave" - ], - "cat": "music" - }, - { - "name": "MyAnimeList", - "uri_check": "https://myanimelist.net/profile/{account}", - "e_code": 200, - "e_string": "Profile - MyAnimeList.net", - "m_string": "404 Not Found", - "m_code": 404, - "known": [ - "test", - "admin" - ], - "cat": "social" - }, - { - "name": "MyBuilder.com", - "uri_check": "https://www.mybuilder.com/profile/view/{account}", - "e_code": 200, - "e_string": "feedback", - "m_string": "Whoops! You broke our site!", - "m_code": 404, - "known": [ - "blue", - "john" - ], - "cat": "social" - }, - { - "name": "MyFitnessPal Author", - "uri_check": "https://blog.myfitnesspal.com/author/{account}/", - "e_code": 200, - "e_string": "About the Author", - "m_string": "<title>Page not found ", - "m_code": 404, - "known": [ - "lauren-krouse", - "julia-malacoff" - ], - "cat": "health" - }, - { - "name": "MyFitnessPal Community", - "uri_check": "https://community.myfitnesspal.com/en/profile/{account}", - "e_code": 200, - "e_string": ">Last Active<", - "m_string": "User Not Found", - "m_code": 404, - "known": [ - "malibu927", - "L1zardQueen" - ], - "cat": "health" - }, - { - "name": "MyLot", - "uri_check": "https://www.mylot.com/{account}", - "e_code": 200, - "e_string": "on myLot", - "m_string": " / Whoops!", - "m_code": 404, - "known": [ - "Tampa_girl7" - ], - "cat": "social" - }, - { - "name": "MYM", - "uri_check": "https://mym.fans/{account}", - "e_code": 200, - "e_string": "class=\"page profile\"", - "m_string": "class=\"page page-404\"", - "m_code": 404, - "known": [ - "Unmissabl", - "Nicolasmauranmedium" - ], - "cat": "social" - }, - { - "name": "MyNickname", - "uri_check": "https://mynickname.com/en/search?q={account}", - "e_code": 200, - "e_string": "nickname found:

", - "m_string": "

Nickname not found. Try searching for similar nicknames.

", - "m_code": 200, - "known": [ - "tw1st", - "0xDEFACED" - ], - "cat": "misc" - }, - { - "name": "myportfolio", - "uri_check": "https://{account}.myportfolio.com/work", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "class=\"page-title", - "m_string": "Adobe Portfolio | Build your own personalized website", - "m_code": 302, - "known": [ - "artkonina", - "fox" - ], - "cat": "misc" - }, - { - "name": "MySpace", - "uri_check": "https://myspace.com/{account}", - "e_code": 200, - "e_string": "", - "m_string": "", - "m_code": 404, - "known": [ - "alice", - "bob" - ], - "cat": "social" - }, - { - "name": "Myspreadshop", - "uri_check": "https://myspreadshop.de/{account}/shopData/list", - "uri_pretty": "https://{account}.myspreadshop.com", - "e_code": 200, - "e_string": "siteName", - "m_string": "not found", - "m_code": 404, - "known": [ - "arukori", - "honey" - ], - "cat": "business" - }, - { - "name": "myWishBoard", - "uri_check": "https://mywishboard.com/@{account}", - "e_code": 200, - "e_string": "class=\"MwbUserHeader\"", - "m_string": "class=\"MwbError\"", - "m_code": 404, - "known": [ - "ke7_2024", - "alekseevvasil" - ], - "cat": "shopping" - }, - { - "name": "naija_planet", - "uri_check": "https://naijaplanet.com/{account}", - "e_code": 200, - "e_string": "dating Profile, ", - "m_string": "- NaijaPlanet!", - "m_code": 200, - "known": [ - "daniel01", - "wales73" - ], - "cat": "dating" - }, - { - "name": "nairaland", - "uri_check": "https://www.nairaland.com/{account}", - "e_code": 200, - "e_string": "s Profile", - "m_string": "404: Page Not Found", - "m_code": 301, - "known": [ - "amakaone", - "seun" - ], - "cat": "news" - }, - { - "name": "NaturalNews", - "uri_check": "https://naturalnews.com/author/{account}/", - "e_code": 200, - "e_string": "All posts by", - "m_string": "The page you are looking for cannot be found or is no longer available.", - "m_code": 200, - "known": [ - "jdheyes", - "healthranger" - ], - "cat": "political" - }, - { - "name": "Naver", - "uri_check": "https://blog.naver.com/{account}", - "e_code": 200, - "e_string": " : 네이버 블로그", - "m_string": "페이지를 찾을 수 없습니다", - "m_code": 500, - "known": [ - "bob", - "blue" - ], - "cat": "social" - }, - { - "name": "Neocities", - "uri_check": "https://neocities.org/site/{account}", - "e_code": 200, - "e_string": "noindex, follow", - "m_string": "- Not Found", - "m_code": 404, - "known": [ - "fauux", - "sadgrl" - ], - "cat": "social" - }, - { - "name": "netvibes", - "uri_check": "https://www.netvibes.com/{account}", - "e_code": 200, - "e_string": "userId", - "m_string": "Page not found", - "m_code": 404, - "known": [ - "nebkacrea", - "cdiljda" - ], - "cat": "social" - }, - { - "name": "Newgrounds", - "uri_check": "https://{account}.newgrounds.com/", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "user-header-name", - "m_string": "Whoops, that's a swing and a miss!", - "m_code": 404, - "known": [ - "john", - "bob" - ], - "cat": "gaming" - }, - { - "name": "newmeet", - "uri_check": "https://www.newmeet.com/en/profile/{account}/", - "e_code": 200, - "e_string": "

The profile of", - "m_string": "Chat with , , , - ", - "m_code": 200, - "known": [ - "Harmonie06", - "Bach007" - ], - "cat": "dating" - }, - { - "name": "Nifty Gateway", - "uri_check": "https://api.niftygateway.com/user/profile-and-offchain-nifties-by-url/?profile_url={account}", - "uri_pretty": "https://www.niftygateway.com/profile/{account}/", - "e_code": 200, - "e_string": ""didSucceed": true", - "m_string": ""didSucceed": false", - "m_code": 400, - "known": [ - "kobej", - "exolorian" - ], - "cat": "social" - }, - { - "name": "Nightbot", - "uri_check": "https://api.nightbot.tv/1/channels/t/{account}", - "uri_pretty": "https://nightbot.tv/t/{account}/commands", - "e_code": 200, - "e_string": "\"status\":200", - "m_string": "\"status\":404", - "m_code": 404, - "known": [ - "saevid", - "proxyfox" - ], - "cat": "social" - }, - { - "name": "nihbuatjajan", - "uri_check": "https://www.nihbuatjajan.com/{account}", - "e_code": 200, - "e_string": ") | Nih buat jajan", - "m_string": "Nih Buat Jajan", - "m_code": 302, - "known": [ - "banyusadewa", - "danirachmat" - ], - "cat": "social" - }, - { - "name": "Nitecrew (Mastodon Instance)", - "uri_check": "https://nitecrew.rip/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://nitecrew.rip/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "Myxx", - "honey" - ], - "cat": "social" - }, - { - "name": "nnru", - "uri_check": "https://{account}.www.nn.ru", - "strip_bad_char": ".", - "e_code": 200, - "e_string": " ", - "m_string": "<title>Ошибка 404 -", - "m_code": 404, - "known": [ - "lena", - "slava" - ], - "cat": "social" - }, - { - "name": "NotABug", - "uri_check": "https://notabug.org/{account}", - "e_code": 200, - "e_string": "class=\"user profile\"", - "m_string": "alt=\"404\"", - "m_code": 404, - "known": [ - "notabug", - "hp", - "zPlus" - ], - "cat": "coding" - }, - { - "name": "Note", - "uri_check": "https://note.com/{account}", - "e_code": 200, - "e_string": "フォロワー", - "m_string": "お探しのページが見つかりません。", - "m_code": 404, - "known": [ - "honey", - "yui" - ], - "cat": "social" - }, - { - "name": "npm", - "uri_check": "https://www.npmjs.com/~{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "<h1>not found</h1>", - "m_code": 404, - "known": [ - "npm", - "rich_harris" - ], - "cat": "coding" - }, - { - "name": "oglaszamy24h.pl", - "uri_check": "https://oglaszamy24h.pl/profil,{account}", - "e_code": 200, - "e_string": "Profil użytkownika:", - "m_string": "Nieprawidłowy link, w bazie danych nie istnieje użytkownik o podanym loginie", - "m_code": 404, - "known": [ - "kowal", - "janek" - ], - "cat": "shopping" - }, - { - "name": "ok.ru", - "uri_check": "https://ok.ru/{account}", - "e_code": 200, - "e_string": "| OK", - "m_string": "class=\"p404_t", - "m_code": 404, - "known": [ - "john", - "aleksandrvasillev" - ], - "cat": "social" - }, - { - "name": "okidoki", - "uri_check": "https://m.okidoki.ee/ru/users/{account}/", - "e_code": 200, - "e_string": "Пользователь", - "m_string": "Страница не найдена", - "m_code": 404, - "known": [ - "nastya3", - "nastya" - ], - "cat": "misc" - }, - { - "name": "omg.lol", - "uri_check": "https://api.omg.lol/address/{account}/info", - "uri_pretty": "https://{account}.omg.lol", - "strip_bad_char": "@.", - "e_code": 200, - "e_string": "\"success\": true", - "m_string": "\"success\": false", - "m_code": 200, - "known": [ - "cwa", - "adam" - ], - "cat": "social" - }, - { - "name": "OnlySearch (OnlyFans)", - "uri_check": "https://onlysearch.co/api/search?keyword={account}", - "uri_pretty": "https://onlysearch.co/profiles?keyword={account}", - "e_code": 200, - "e_string": "\"hits\":[{", - "m_string": "\"hits\":[]", - "m_code": 200, - "known": [ - "miaimani", - "milaamour" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Opencollective", - "uri_check": "https://opencollective.com/{account}", - "e_code": 200, - "e_string": "- Open Collective", - "m_string": "Not Found", - "m_code": 200, - "known": [ - "john", - "bob" - ], - "cat": "finance" - }, - { - "name": "OpenSource", - "uri_check": "https://opensource.com/users/{account}", - "e_code": 200, - "e_string": "\"contentID\":", - "m_string": "\"errorCode\": \"404\"", - "m_code": 404, - "known": [ - "wuweijie", - "alansmithee" - ], - "cat": "tech" - }, - { - "name": "OpenStreetMap", - "uri_check": "https://www.openstreetmap.org/user/{account}", - "e_code": 200, - "e_string": "Mapper since:", - "m_string": "does not exist", - "m_code": 404, - "known": [ - "kemkim", - "MapmasterBit" - ], - "cat": "social" - }, - { - "name": "OpenStreetMap Wiki", - "uri_check": "https://wiki.openstreetmap.org/w/api.php?action=query&format=json&list=users&ususers={account}", - "uri_pretty": "https://wiki.openstreetmap.org/wiki/User:{account}", - "e_code": 200, - "e_string": "\"userid\":", - "m_string": "\"missing\":\"\"", - "m_code": 200, - "known": [ - "kemkim", - "john" - ], - "cat": "social" - }, - { - "name": "Oper.ru", - "uri_check": "https://oper.ru/visitors/info.php?t={account}", - "e_code": 200, - "e_string": "Информация о пользователе", - "m_string": "Нет такого пользователя", - "m_code": 200, - "known": [ - "Goblin", - "Баир Иринчеев" - ], - "cat": "tech" - }, - { - "name": "OPGG", - "uri_check": "https://eune.op.gg/summoners/eune/{account}", - "e_code": 200, - "e_string": "- Summoner Stats - League of Legends", - "m_string": "Guide - OP.GG", - "m_code": 200, - "known": [ - "xin", - "carlos01" - ], - "cat": "gaming" - }, - { - "name": "Orbys", - "uri_check": "https://orbys.net/{account}", - "e_code": 200, - "e_string": "profile_user_image", - "m_string": "The page you are looking for cannot be found.", - "m_code": 404, - "known": [ - "txmustang302" - ], - "cat": "social" - }, - { - "name": "Origins.Habbo.com", - "uri_check": "https://origins.habbo.com/api/public/users?name={account}", - "e_code": 200, - "e_string": "uniqueId", - "m_string": "not-found", - "m_code": 404, - "known": [ - "john", - "jane" - ], - "cat": "gaming" - }, - { - "name": "Origins.Habbo.com.br", - "uri_check": "https://origins.habbo.com.br/api/public/users?name={account}", - "e_code": 200, - "e_string": "uniqueId", - "m_string": "not-found", - "m_code": 404, - "known": [ - "carlos", - "pedro" - ], - "cat": "gaming" - }, - { - "name": "Origins.Habbo.es", - "uri_check": "https://origins.habbo.es/api/public/users?name={account}", - "e_code": 200, - "e_string": "uniqueId", - "m_string": "not-found", - "m_code": 404, - "known": [ - "carlos", - "mary" - ], - "cat": "gaming" - }, - { - "name": "osu!", - "uri_check": "https://osu.ppy.sh/users/{account}", - "e_code": 302, - "e_string": "", - "m_string": "User not found! ;_;", - "m_code": 404, - "known": [ - "stretches", - "spiken8" - ], - "cat": "gaming" - }, - { - "name": "Our Freedom Book", - "uri_check": "https://www.ourfreedombook.com/{account}", - "e_code": 200, - "e_string": "meta property=\"og:", - "m_string": "Sorry, page not found", - "m_code": 302, - "known": [ - "DaveLipsky", - "StarlaJene" - ], - "cat": "social" - }, - { - "name": "ow.ly", - "uri_check": "http://ow.ly/user/{account}", - "e_code": 200, - "e_string": "Images", - "m_string": "404 error", - "m_code": 404, - "known": [ - "StopAdMedia", - "jokervendetti" - ], - "cat": "social" - }, - { - "name": "palnet", - "uri_check": "https://www.palnet.io/@{account}/", - "e_code": 200, - "e_string": "class=\"profile-cover\"", - "m_string": "Unknown user account!", - "m_code": 404, - "known": [ - "trincowski-pt", - "anggreklestari" - ], - "cat": "social" - }, - { - "name": "Parler", - "uri_check": "https://parler.com/user/{account}", - "e_code": 200, - "e_string": "People to Follow", - "m_string": "join Parler today", - "m_code": 302, - "known": [ - "DineshDsouza", - "SeanHannity" - ], - "cat": "social" - }, - { - "name": "Parler archived posts", - "uri_check": "http://archive.org/wayback/available?url=https://parler.com/profile/{account}/posts", - "uri_pretty": "https://web.archive.org/web/2/https://parler.com/profile/{account}/posts", - "e_code": 200, - "e_string": "\"archived_snapshots\": {\"closest\"", - "m_string": "\"archived_snapshots\": {}", - "m_code": 200, - "known": [ - "JoePags", - "dineshdsouza" - ], - "cat": "archived" - }, - { - "name": "Parler archived profile", - "uri_check": "http://archive.org/wayback/available?url=https://parler.com/profile/{account}", - "uri_pretty": "https://web.archive.org/web/2/https://parler.com/profile/{account}", - "e_code": 200, - "e_string": "\"archived_snapshots\": {\"closest\"", - "m_string": "\"archived_snapshots\": {}", - "m_code": 200, - "known": [ - "JoePags", - "dineshdsouza" - ], - "cat": "archived" - }, - { - "name": "Pastebin", - "uri_check": "https://pastebin.com/u/{account}", - "e_code": 200, - "e_string": "class=\"user-view\"", - "m_string": "Not Found (#404)", - "m_code": 404, - "known": [ - "test", - "john" - ], - "cat": "tech" - }, - { - "name": "patch", - "uri_check": "https://patch.com/users/{account}", - "e_code": 200, - "e_string": "<title>Patch User Profile", - "m_string": "<title>Page not found", - "m_code": 404, - "known": [ - "dave", - "bob" - ], - "cat": "news" - }, - { - "name": "PatientsLikeMe", - "uri_check": "https://www.patientslikeme.com/members/{account}", - "e_code": 200, - "e_string": "s profile | PatientsLikeMe", - "m_string": "", - "m_code": 302, - "known": [ - "thjuland", - "Pedro0703", - "Hydropioneer" - ], - "cat": "health" - }, - { - "name": "Patreon", - "uri_check": "https://www.patreon.com/{account}", - "e_code": 200, - "e_string": "full_name\":", - "m_string": "errorCode\": 404,", - "m_code": 404, - "known": [ - "mubix", - "doughboys" - ], - "cat": "finance" - }, - { - "name": "Patriots Win", - "uri_check": "https://patriots.win/u/{account}/", - "e_code": 200, - "e_string": "nav-user active register", - "m_string": "An error occurred", - "m_code": 500, - "known": [ - "r3deleven", - "MemeFactory" - ], - "cat": "political" - }, - { - "name": "Patronite", - "uri_check": "https://patronite.pl/{account}", - "e_code": 200, - "e_string": "Zostań Patronem", - "m_string": "Nie znaleźliśmy strony której szukasz.", - "m_code": 404, - "known": [ - "radio357", - "radionowyswiat" - ], - "cat": "finance" - }, - { - "name": "Paypal", - "uri_check": "https://www.paypal.com/paypalme/{account}", - "e_code": 200, - "e_string": "userInfo", - "m_string": "PayPal.MeFollowers", - "m_string": "Sorry, this page doesn’t exist", - "m_code": 404, - "known": [ - "john", - "test" - ], - "cat": "video" - }, - { - "name": "Pewex", - "uri_check": "https://retro.pewex.pl/user/{account}", - "e_code": 200, - "e_string": "Zamieszcza eksponaty od:", - "m_string": "Nie znaleziono użytkownika o podanym loginie.", - "m_code": 200, - "known": [ - "test", - "ania" - ], - "cat": "misc" - }, - { - "name": "Picsart", - "uri_check": "https://api.picsart.com/users/show/{account}.json", - "uri_pretty": "https://picsart.com/u/{account}", - "e_code": 200, - "e_string": "\"status\":\"success\"", - "m_string": "\"status\":\"error\"", - "m_code": 200, - "known": [ - "john", - "john404" - ], - "cat": "art" - }, - { - "name": "Piekielni", - "uri_check": "https://piekielni.pl/user/{account}", - "e_code": 200, - "e_string": "Zamieszcza historie od:", - "m_string": "Nie znaleziono użytkownika o podanym loginie.", - "m_code": 200, - "known": [ - "test", - "janek" - ], - "cat": "misc" - }, - { - "name": "Pikabu", - "uri_check": "https://pikabu.ru/ajax.php", - "uri_pretty": "https://pikabu.ru/@{account}", - "post_body": "route=signup/check-username&username={account}", - "headers": { - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" - }, - "e_code": 200, - "e_string": "\"result\":false", - "m_string": "\"result\":true", - "m_code": 200, - "known": [ - "igor01", - "serguei" - ], - "cat": "social", - "protection": [ - "ddos-guard" - ] - }, - { - "name": "Pillowfort", - "uri_check": "https://www.pillowfort.social/{account}/json/?p=1", - "uri_pretty": "https://www.pillowfort.social/{account}", - "e_code": 200, - "e_string": "\"posts\":", - "m_string": "(404)", - "m_code": 404, - "known": [ - "MissMoonified", - "lunasdestiny" - ], - "cat": "social" - }, - { - "name": "PinkBike", - "uri_check": "https://www.pinkbike.com/u/{account}/", - "e_code": 200, - "e_string": "on Pinkbike", - "m_string": "I couldn't find the page you were looking for", - "m_code": 404, - "known": [ - "whistlermountainbikepark", - "paulhanson" - ], - "cat": "hobby" - }, - { - "name": "Pinterest", - "uri_check": "https://www.pinterest.com/{account}/", - "e_code": 200, - "e_string": " - Profile | Pinterest", - "m_string": "id=\"home-main-title", - "m_code": 301, - "known": [ - "test123", - "frickcollection" - ], - "cat": "social" - }, - { - "name": "pixelfed.social", - "uri_check": "https://pixelfed.social/{account}", - "e_code": 200, - "e_string": "on pixelfed", - "m_string": "pixelfed", - "m_code": 404, - "known": [ - "sarah", - "john" - ], - "cat": "social" - }, - { - "name": "Playstation Network", - "uri_check": "https://psnprofiles.com/xhr/search/users?q={account}", - "uri_pretty": "https://psnprofiles.com/{account}", - "e_code": 200, - "e_string": "
", - "m_string": "We couldn't find anything ", - "m_code": 200, - "known": [ - "SlimShaggy18", - "ikemenzi" - ], - "cat": "gaming" - }, - { - "name": "Plink", - "uri_check": "https://plink.gg/user/{account}", - "e_code": 200, - "e_string": "class=\"user-page\"", - "m_string": "PLINK - 404 Page not found", - "m_code": 404, - "known": [ - "CryptonianTV", - "xacstonyjx" - ], - "cat": "gaming" - }, - { - "name": "Plurk", - "uri_check": "https://www.plurk.com/{account}", - "e_code": 200, - "e_string": "Profile views", - "m_string": "Register your plurk account", - "m_code": 200, - "known": [ - "test" - ], - "cat": "social" - }, - { - "name": "Poe.com", - "uri_check": "https://poe.com/profile/{account}", - "e_code": 200, - "e_string": "\"__isNode\":\"PoeUser\"", - "m_string": "\"user\":null", - "m_code": 200, - "known": [ - "spdustin", - "PromptCase" - ], - "cat": "tech" - }, - { - "name": "Pokec", - "uri_check": "https://pokec.azet.sk/{account}", - "e_code": 200, - "e_string": "idReportedUser", - "m_string": "Neexistujúci používateľ", - "m_code": 404, - "known": [ - "tobias", - "brahim1" - ], - "cat": "social" - }, - { - "name": "pokemonshowdown", - "uri_check": "https://pokemonshowdown.com/users/{account}", - "e_code": 200, - "e_string": "Official ladder", - "m_string": " (Unregistered)", - "m_code": 404, - "known": [ - "red", - "blue" - ], - "cat": "gaming" - }, - { - "name": "Pokerstrategy", - "uri_check": "http://www.pokerstrategy.net/user/{account}/profile/", - "e_code": 200, - "e_string": "User profile for", - "m_string": "Sorry, the requested page couldn't be found!", - "m_code": 404, - "known": [ - "john", - "bob" - ], - "cat": "gaming" - }, - { - "name": "Polarsteps", - "uri_check": "https://api.polarsteps.com/users/byusername/{account}", - "uri_pretty": "https://www.polarsteps.com/{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "404 Not Found", - "m_code": 404, - "known": [ - "EngelBos", - "GunnarEndlich" - ], - "cat": "hobby" - }, - { - "name": "Polchat.pl", - "uri_check": "https://polczat.pl/forum/profile/{account}/", - "e_code": 200, - "e_string": "Historia wpisów", - "m_string": "Wybrany użytkownik nie istnieje.", - "m_code": 200, - "known": [ - "admin", - "Lesik" - ], - "cat": "social" - }, - { - "name": "policja2009", - "uri_check": "http://www.policja2009.fora.pl/search.php?search_author={account}", - "e_code": 200, - "e_string": "Autor", - "m_string": "Nie znaleziono tematów ani postów pasujących do Twoich kryteriów", - "m_code": 200, - "known": [ - "Pvwel", - "janek" - ], - "cat": "misc" - }, - { - "name": "Poll Everywhere", - "uri_check": "https://pollev.com/proxy/api/users/{account}", - "uri_pretty": "https://pollev.com/{account}", - "e_code": 200, - "e_string": "name", - "m_string": "ResourceNotFound", - "m_code": 404, - "known": [ - "josh", - "jsmith" - ], - "cat": "tech" - }, - { - "name": "polygon", - "uri_check": "https://www.polygon.com/users/{account}", - "e_code": 200, - "e_string": "- Polygon", - "m_string": "404 Not found", - "m_code": 404, - "known": [ - "nicodeyo", - "Nicole_Clark" - ], - "cat": "gaming" - }, - { - "name": "popl", - "uri_check": "https://poplme.co/{account}", - "e_code": 200, - "e_string": "MuiTypography-root MuiTypography-body1 css-kj7pvm", - "m_string": "Profile not found", - "m_code": 200, - "known": [ - "rpelite", - "Ee0af3d822", - "ashleymetzger" - ], - "cat": "business" - }, - { - "name": "Pornhub Porn Stars", - "uri_check": "https://www.pornhub.com/pornstar/{account}", - "e_code": 200, - "e_string": "Pornstar Rank", - "m_string": "", - "m_code": 301, - "known": [ - "riley-reid", - "alex-adams" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Pornhub Users", - "uri_check": "https://www.pornhub.com/users/{account}", - "e_code": 200, - "e_string": "s Profile - Pornhub.com", - "m_string": "Error Page Not Found", - "m_code": 404, - "known": [ - "test123" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Poshmark", - "uri_check": "https://poshmark.com/closet/{account}", - "e_code": 200, - "e_string": " is using Poshmark to sell items from their closet.", - "m_string": "Page not found - Poshmark", - "m_code": 404, - "known": [ - "alice", - "bob" - ], - "cat": "shopping" - }, - { - "name": "postcrossing", - "uri_check": "https://www.postcrossing.com/user/{account}", - "e_code": 200, - "e_string": ", from", - "m_string": "- Postcrossing", - "m_code": 404, - "known": [ - "Vladimir", - "olga3" - ], - "cat": "social" - }, - { - "name": "Poweredbygay.social (Mastodon Instance)", - "uri_check": "https://poweredbygay.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://poweredbygay.social/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "aggiepm", - "eplumley1976" - ], - "cat": "social" - }, - { - "name": "Pr0gramm", - "uri_check": "https://pr0gramm.com/api/profile/info?name={account}", - "uri_pretty": "https://pr0gramm.com/user/{account}", - "e_code": 200, - "e_string": "\"user\":", - "m_string": "\"code\":404", - "m_code": 404, - "known": [ - "kaizernero", - "Giga1337" - ], - "cat": "social", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Pravda.me", - "uri_check": "https://pravda.me/@{account}", - "e_code": 200, - "e_string": "Российская социальная сеть (by mastodon)", - "m_string": "The page you are looking for isn't here.", - "m_code": 404, - "known": [ - "tass", - "rt_russian" - ], - "cat": "social" - }, - { - "name": "Privacy Guides", - "uri_check": "https://discuss.privacyguides.net/u/{account}.json", - "uri_pretty": "https://discuss.privacyguides.net/u/{account}/summary", - "e_code": 200, - "e_string": "assign_path", - "m_string": "The requested URL or resource could not be found.", - "m_code": 404, - "known": [ - "jonah", - "dngray" - ], - "cat": "tech" - }, - { - "name": "Producthunt", - "uri_check": "https://www.producthunt.com/@{account}", - "e_code": 200, - "e_string": "s profile on Product Hunt", - "m_string": "Product Hunt - All newest Products", - "m_code": 404, - "known": [ - "alex", - "jack" - ], - "cat": "business" - }, - { - "name": "PromoDJ", - "uri_check": "https://promodj.com/ajax/register.html?lang=en", - "uri_pretty": "https://promodj.com/{account}", - "post_body": "kind=nick&value={account}", - "headers": { - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" - }, - "e_code": 200, - "e_string": "Address you entered is already taken", - "m_string": "The address is free, it's great;)", - "m_code": 200, - "known": [ - "sekoy", - "vovasmallny" - ], - "cat": "music" - }, - { - "name": "Pronouns.Page", - "uri_check": "https://pronouns.page/api/profile/get/{account}?version=2", - "uri_pretty": "https://pronouns.page/@{account}", - "e_code": 200, - "e_string": "username", - "m_string": "\"profiles\": {}", - "m_code": 304, - "known": [ - "cannabis_cervi", - "user" - ], - "cat": "social" - }, - { - "name": "Pronouny", - "uri_check": "https://pronouny.xyz/api/users/profile/username/{account}", - "uri_pretty": "https://pronouny.xyz/users/{account}", - "e_code": 200, - "e_string": "\"username\":", - "m_string": "That user doesn't exist", - "m_code": 400, - "known": [ - "donna", - "honey" - ], - "cat": "social" - }, - { - "name": "Prose", - "uri_check": "https://prose.astral.camp/{account}/", - "e_code": 200, - "e_string": "blog-title", - "m_string": "Are you sure it was ever here?", - "m_code": 404, - "known": [ - "endeavorance", - "overthinkification" - ], - "cat": "blog" - }, - { - "name": "prv.pl", - "uri_check": "https://www.prv.pl/osoba/{account}", - "e_code": 200, - "e_string": "LOGIN", - "m_string": "Użytkownik nie istnieje.", - "m_code": 200, - "known": [ - "test", - "test2" - ], - "cat": "tech" - }, - { - "name": "Public.com", - "uri_check": "https://public.com/@{account}", - "e_code": 200, - "e_string": "\"publicId\":", - "m_string": "<title>404 - Page Not Found", - "m_code": 404, - "known": [ - "igor1", - "david2" - ], - "cat": "finance" - }, - { - "name": "pypi", - "uri_check": "https://pypi.org/user/{account}/", - "e_code": 200, - "e_string": "Profile of", - "m_string": "Page Not Found (404) · PyPI", - "m_code": 404, - "known": [ - "dev", - "pydude" - ], - "cat": "coding" - }, - { - "name": "QUEER PL", - "uri_check": "https://queer.pl/user/{account}", - "e_code": 200, - "e_string": "Ostatnio on-line", - "m_string": "Strona nie została znaleziona", - "m_code": 404, - "known": [ - "claudii", - "kowalski" - ], - "cat": "social" - }, - { - "name": "quitter.pl", - "uri_check": "https://quitter.pl/api/v1/accounts/{account}", - "uri_pretty": "https://quitter.pl/users/{account}", - "e_code": 200, - "e_string": "avatar_static", - "m_string": "\"error\":", - "m_code": 404, - "known": [ - "smok", - "mik" - ], - "cat": "social" - }, - { - "name": "Quizlet", - "uri_check": "https://quizlet.com/webapi/3.2/users/check-username?username={account}", - "uri_pretty": "https://quizlet.com/user/{account}/sets", - "e_code": 200, - "e_string": "\"identifier\":\"username_is_taken\"", - "m_string": "\"success\":true", - "m_code": 200, - "known": [ - "Rita426", - "Muyao_531" - ], - "cat": "hobby", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Quora", - "uri_check": "https://www.quora.com/profile/{account}", - "e_code": 200, - "e_string": "Credentials", - "m_string": "Page Not Found", - "m_code": 301, - "known": [ - "John-Galan-5", - "Alex-Clay" - ], - "cat": "social" - }, - { - "name": "Raddle.me", - "uri_check": "https://raddle.me/user/{account}", - "e_code": 200, - "e_string": "sidebar__title", - "m_string": "404 Not Found", - "m_code": 404, - "known": [ - "zephyr", - "Archaplain" - ], - "cat": "social" - }, - { - "name": "RaidForums - Archive", - "uri_check": "https://rf-archive.com/users.php?s_tag={account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "[]", - "m_code": 200, - "known": [ - "pompompurin", - "DexterM1" - ], - "cat": "archived" - }, - { - "name": "Rant.li", - "uri_check": "https://rant.li/{account}/", - "e_code": 200, - "e_string": "blog-title", - "m_string": "Are you sure it was ever here?", - "m_code": 404, - "known": [ - "baretri", - "arinbasu" - ], - "cat": "blog" - }, - { - "name": "Rarible", - "uri_check": "https://rarible.com/marketplace/api/v4/urls/{account}", - "uri_pretty": "https://rarible.com/{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"success\":false", - "m_code": 404, - "known": [ - "lokikot", - "vintagemozart" - ], - "cat": "tech" - }, - { - "name": "RblxTrade", - "uri_check": "https://rblx.trade/api/v1/user/get-by-username?username={account}", - "uri_pretty": "https://rblx.trade/p/{account}", - "e_code": 200, - "e_string": "\"userId\":", - "m_string": "\"success\":false", - "m_code": 400, - "known": [ - "webbreacher", - "SonOfSevenless" - ], - "cat": "gaming" - }, - { - "name": "redbubble", - "uri_check": "https://www.redbubble.com/people/{account}/shop", - "e_code": 200, - "e_string": "Shop | Redbubble", - "m_string": "This is a lost cause.", - "m_code": 404, - "known": [ - "john", - "blue" - ], - "cat": "shopping" - }, - { - "name": "Reddit", - "uri_check": "https://www.reddit.com/user/{account}/about/.json", - "uri_pretty": "https://www.reddit.com/user/{account}", - "e_code": 200, - "e_string": "total_karma", - "m_string": "Not Found", - "m_code": 404, - "known": [ - "koavf", - "alabasterheart" - ], - "cat": "social" - }, - { - "name": "REDGIFS", - "uri_check": "https://api.redgifs.com/v1/users/{account}", - "uri_pretty": "https://www.redgifs.com/users/{account}", - "e_code": 200, - "e_string": "followers", - "m_string": "user account not found for ", - "m_code": 404, - "known": [ - "alexbreecooper", - "Jose-Roberto-Rasi" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Refsheet", - "uri_check": "https://refsheet.net/{account}", - "e_code": 200, - "e_string": "og:title", - "m_string": "That's unfortunate. Where did it go?", - "m_code": 404, - "known": [ - "razzyaurealis", - "saki" - ], - "cat": "hobby" - }, - { - "name": "Replit", - "uri_check": "https://replit.com/@{account}", - "e_code": 200, - "e_string": "\"__typename\":\"User\"", - "m_string": "\"statusCode\":404", - "m_code": 404, - "known": [ - "wuweijie", - "alansmithee" - ], - "cat": "coding" - }, - { - "name": "Researchgate", - "uri_check": "https://www.researchgate.net/profile/{account}", - "e_code": 200, - "e_string": " | ", - "m_string": "20+ million researchers on ResearchGate", - "m_code": 301, - "known": [ - "Tafara-Mwareya", - "Jose-Roberto-Rasi" - ], - "cat": "hobby" - }, - { - "name": "resumes_actorsaccess", - "uri_check": "https://resumes.actorsaccess.com/{account}", - "e_code": 200, - "e_string": "- Resume | Actors Access", - "m_string": "File was not found on this SERVER", - "m_code": 200, - "known": [ - "veronicashelby", - "sarahstipe" - ], - "cat": "social" - }, - { - "name": "Revolut", - "uri_check": "https://revolut.me/api/web-profile/{account}", - "uri_pretty": "https://revolut.me/{account}", - "e_code": 200, - "e_string": "\"firstName\"", - "m_string": "\"User not found\"", - "m_code": 404, - "known": [ - "theaswdc", - "honey" - ], - "cat": "finance" - }, - { - "name": "risk.ru", - "uri_check": "https://risk.ru/people/{account}", - "e_code": 200, - "e_string": "— Люди — Risk.ru", - "m_string": "404 — Risk.ru", - "m_code": 404, - "known": [ - "igor1", - "olga" - ], - "cat": "hobby" - }, - { - "name": "Roblox", - "uri_check": "https://auth.roblox.com/v1/usernames/validate?username={account}&birthday=2019-12-31T23:00:00.000Z", - "uri_pretty": "https://www.roblox.com/search/users?keyword={account}", - "e_code": 200, - "e_string": "Username is already in use", - "m_string": "Username is valid", - "m_code": 200, - "known": [ - "LeetPawn", - "elephant459" - ], - "cat": "gaming" - }, - { - "name": "RoutineHub", - "uri_check": "https://routinehub.co/user/{account}", - "e_code": 200, - "e_string": "Downloads: ", - "m_string": "A community for Apple Shortcuts", - "m_code": 200, - "known": [ - "zachary7829", - "JonathanSetzer" - ], - "cat": "social" - }, - { - "name": "rsi", - "uri_check": "https://robertsspaceindustries.com/citizens/{account}", - "e_code": 200, - "e_string": "CITIZEN DOSSIER", - "m_string": "404 NAVIGATING UNCHARTED TERRITORY", - "m_code": 404, - "known": [ - "alpHackeronee", - "Quantum_Physicist" - ], - "cat": "gaming" - }, - { - "name": "ru_123rf", - "uri_check": "https://ru.123rf.com/profile_{account}", - "e_code": 200, - "e_string": "userID", - "m_string": "Фотобанк 123RF - Стоковые Фото, Векторы, Видеоролики. Подписка на Фото. Royalty Free контент<", - "m_code": 302, - "known": [ - "ruslan", - "olga" - ], - "cat": "hobby" - }, - { - "name": "RubyGems.org", - "uri_check": "https://rubygems.org/profiles/{account}", - "e_code": 200, - "e_string": "class=\"profile__header\"", - "m_string": "alt=\"404 error\"", - "m_code": 404, - "known": [ - "awscloud", - "bsm" - ], - "cat": "coding" - }, - { - "name": "RumbleChannel", - "uri_check": "https://rumble.com/c/{account}", - "e_code": 200, - "e_string": "href=https://rumble.com/c/", - "m_string": "404 error, this page does not exist", - "m_code": 404, - "known": [ - "SaltyCracker", - "GGreenwald" - ], - "cat": "political" - }, - { - "name": "RumbleUser", - "uri_check": "https://rumble.com/user/{account}", - "e_code": 200, - "e_string": "href=https://rumble.com/user/", - "m_string": "404 error, this page does not exist", - "m_code": 404, - "known": [ - "SimonParkes", - "djmrmusic" - ], - "cat": "political" - }, - { - "name": "RuneScape", - "uri_check": "https://apps.runescape.com/runemetrics/profile/profile?user={account}", - "uri_pretty": "https://apps.runescape.com/runemetrics/app/overview/player/{account}", - "e_code": 200, - "e_string": "\"name\":", - "m_string": "\"error\":\"NO_PROFILE\"", - "m_code": 200, - "known": [ - "Thomas", - "Wahisietel" - ], - "cat": "hobby" - }, - { - "name": "RuTracker.org", - "uri_check": "https://rutracker.org/forum/profile.php?mode=viewprofile&u={account}", - "e_code": 200, - "e_string": "Профиль пользователя", - "m_string": "Пользователь не найден", - "m_code": 200, - "known": [ - "Rutracker", - "Feo156" - ], - "cat": "misc" - }, - { - "name": "ruVoIP.net", - "uri_check": "https://ruvoip.net/members/{account}/", - "e_code": 200, - "e_string": "id=\"user-xprofile\"", - "m_string": "Error 404 - Not Found", - "m_code": 200, - "known": [ - "dominique", - "demon" - ], - "cat": "tech" - }, - { - "name": "Salon24", - "uri_check": "https://www.salon24.pl/u/{account}/", - "e_code": 200, - "e_string": "<span>Obserwujących</span>", - "m_string": "<title>Salon24 - Blogi, wiadomości, opinie i komentarze", - "m_code": 301, - "known": [ - "matuzalem", - "niewiarygodne" - ], - "cat": "blog" - }, - { - "name": "Scammer.info", - "uri_check": "https://scammer.info/u/{account}.json", - "uri_pretty": "https://scammer.info/u/{account}", - "e_code": 200, - "e_string": "avatar_template", - "m_string": "The requested URL or resource could not be found", - "m_code": 404, - "known": [ - "AngelFat", - "lecter" - ], - "cat": "misc" - }, - { - "name": "Scored", - "uri_check": "https://scored.co/api/v2/user/about.json?user={account}", - "uri_pretty": "https://scored.co/u/{account}", - "e_code": 200, - "e_string": "\"status\":true", - "m_string": "\"status\":false", - "m_code": 200, - "known": [ - "LowEnergyFaggot", - "libsaremental" - ], - "cat": "social" - }, - { - "name": "ScoutWiki", - "uri_check": "https://en.scoutwiki.org/User:{account}", - "e_code": 200, - "e_string": "NewPP limit report", - "m_string": "is not registered", - "m_code": 301, - "known": [ - "Mlh_nl", - "Benjism89" - ], - "cat": "social" - }, - { - "name": "Scratch", - "uri_check": "https://api.scratch.mit.edu/accounts/checkusername/{account}/", - "uri_pretty": "https://scratch.mit.edu/users/{account}/", - "e_code": 200, - "e_string": "\"msg\":\"username exists\"", - "m_string": "\"msg\":\"valid username\"", - "m_code": 200, - "known": [ - "griffpatch", - "-Zaire-" - ], - "cat": "coding" - }, - { - "name": "secure_donation", - "uri_check": "https://secure.donationpay.org/{account}/", - "e_code": 200, - "e_string": "| DonationPay", - "m_string": "secure.donationpay.org", - "m_code": 404, - "known": [ - "rareimpact", - "safc" - ], - "cat": "finance" - }, - { - "name": "sedisp@ce", - "uri_check": "https://sedispace.com/@{account}", - "e_code": 200, - "e_string": "Membre depuis -", - "m_string": "- Page non trouvée!", - "m_code": 302, - "known": [ - "mamadou", - "konate" - ], - "cat": "social" - }, - { - "name": "Seneporno", - "uri_check": "https://seneporno.com/user/{account}", - "e_code": 200, - "e_string": "Dernier Login", - "m_string": "Unexpected error! Please contact us and tell us more how you got to this page!", - "m_code": 301, - "known": [ - "Kalsobbc", - "Boymariste" - ], - "cat": "xx NSFW xx" - }, - { - "name": "sentimente", - "uri_check": "https://www.sentimente.com/amp/{account}.html", - "e_code": 200, - "e_string": "Chat online with", - "m_string": "HTTP Error code: 404. Resource not found", - "m_code": 404, - "known": [ - "david01", - "brahim01" - ], - "cat": "dating" - }, - { - "name": "SEOClerks", - "uri_check": "https://www.seoclerks.com/user/{account}", - "e_code": 200, - "e_string": "
", - "m_string": "SEO Marketplace", - "m_code": 302, - "known": [ - "Vfmseo", - "gokudadon" - ], - "cat": "social" - }, - { - "name": "setlist.fm", - "uri_check": "https://www.setlist.fm/user/{account}", - "e_code": 200, - "e_string": "s setlist.fm | setlist.fm", - "m_string": "Sorry, the page you requested doesn't exist", - "m_code": 404, - "known": [ - "bendobrin", - "michi" - ], - "cat": "music" - }, - { - "name": "Sexworker", - "uri_check": "https://sexworker.com/api/profile/{account}", - "uri_pretty": "https://sexworker.com/{account}", - "e_code": 200, - "e_string": "profilePictureUrl", - "m_string": "This user does not exist.", - "m_code": 404, - "known": [ - "sakii_nightshade", - "annajean2319" - ], - "cat": "xx NSFW xx" - }, - { - "name": "SFD", - "uri_check": "https://www.sfd.pl/profile/{account}", - "e_code": 200, - "e_string": "Tematy użytkownika", - "m_string": "Brak aktywnego profilu na forum", - "m_code": 404, - "known": [ - "janek", - "admin" - ], - "cat": "health" - }, - { - "name": "Shesfreaky", - "uri_check": "https://www.shesfreaky.com/profile/{account}/", - "e_code": 200, - "e_string": "s Profile - ShesFreaky", - "m_string": "", - "m_code": 302, - "known": [ - "tata23", - "fitzsta" - ], - "cat": "xx NSFW xx" - }, - { - "name": "shopify", - "uri_check": "https://{account}.myshopify.com", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "home", - "m_string": "Sorry, this shop is currently unavailable.", - "m_code": 404, - "known": [ - "john", - "daniel" - ], - "cat": "shopping" - }, - { - "name": "Showup.tv", - "uri_check": "https://showup.tv/profile/{account}", - "headers": { - "Cookie": "accept_rules=true;" - }, - "e_code": 200, - "e_string": "O mnie", - "m_string": "Darmowe", - "m_code": 404, - "known": [ - "LunaVee", - "Jane_Frou" - ], - "cat": "xx NSFW xx" - }, - { - "name": "shutterstock", - "uri_check": "https://www.shutterstock.com/g/{account}", - "e_code": 200, - "e_string": "| Shutterstock", - "m_string": "Well, this is unexpected...", - "m_code": 404, - "known": [ - "john", - "bob" - ], - "cat": "images" - }, - { - "name": "SimplePlanes", - "uri_check": "https://www.simpleplanes.com/u/{account}", - "e_code": 200, - "e_string": "<h5>joined", - "m_string": "<title>SimplePlanes Airplanes", - "m_code": 302, - "known": [ - "realSavageMan", - "Jundroo", - "john" - ], - "cat": "gaming" - }, - { - "name": "skeb", - "uri_check": "https://skeb.jp/@{account}", - "e_code": 200, - "e_string": ") | Skeb", - "m_string": "Skeb - Request Box", - "m_code": 503, - "known": [ - "eipuru_", - "sime064" - ], - "cat": "art" - }, - { - "name": "SlackHoles", - "uri_check": "https://slackholes.com/actor/{account}/", - "e_code": 200, - "e_string": "Pussy and Ass Sizes", - "m_string": "It looks like nothing was found at this location", - "m_code": 404, - "known": [ - "alexbreecooper", - "roxy-raye" - ], - "cat": "xx NSFW xx" - }, - { - "name": "slant", - "uri_check": "https://www.slant.co/users/{account}", - "e_code": 200, - "e_string": "s Profile - Slant", - "m_string": "404 - Page Not Found - Slant", - "m_code": 404, - "known": [ - "bob", - "john" - ], - "cat": "shopping" - }, - { - "name": "slides", - "uri_check": "https://slides.com/{account}", - "e_code": 200, - "e_string": "Presentations by", - "m_string": "You may have mistyped the address", - "m_code": 404, - "known": [ - "arunthomas" - ], - "cat": "social" - }, - { - "name": "Slideshare", - "uri_check": "https://www.slideshare.net/{account}", - "e_code": 200, - "e_string": "data-testid=\"report-button\"", - "m_string": "id=\"username-available\"", - "m_code": 200, - "known": [ - "rebeccaskeeles", - "john" - ], - "cat": "social" - }, - { - "name": "SmashRun", - "uri_check": "https://smashrun.com/{account}/", - "e_code": 200, - "e_string": "Miles run overall", - "m_string": "no Smashrunner with the username", - "m_code": 404, - "known": [ - "john.young" - ], - "cat": "health" - }, - { - "name": "smelsy", - "uri_check": "https://www.smelsy.com/profile/{account}", - "e_code": 200, - "e_string": "Smelsy -", - "m_string": "Server Error", - "m_code": 500, - "known": [ - "mohamed01", - "ahmed" - ], - "cat": "misc" - }, - { - "name": "SmugMug", - "uri_check": "https://{account}.smugmug.com", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "schema.org/Person", - "m_string": "schema.org/Thing", - "m_code": 404, - "known": [ - "wow", - "jill" - ], - "cat": "images" - }, - { - "name": "smule", - "uri_check": "https://www.smule.com/api/profile/?handle={account}", - "uri_pretty": "https://www.smule.com/{account}", - "e_code": 200, - "e_string": "account_id", - "m_string": "code\": 65", - "m_code": 400, - "known": [ - "cgrrose", - "John___Anish" - ], - "cat": "music" - }, - { - "name": "Snapchat", - "uri_check": "https://www.snapchat.com/@{account}", - "e_code": 200, - "e_string": "is on Snapchat!", - "m_string": "NOT_FOUND", - "m_code": 200, - "known": [ - "djkhaled305", - "mileycyrus" - ], - "cat": "social" - }, - { - "name": "Snipfeed", - "uri_check": "https://snipfeed.co/{account}", - "e_code": 200, - "e_string": "creatorLink", - "m_string": "Oops, you hit a dead end!", - "m_code": 404, - "known": [ - "mycherrycrush", - "honey" - ], - "cat": "misc" - }, - { - "name": "soc.citizen4.eu", - "uri_check": "https://soc.citizen4.eu/profile/{account}/profile", - "e_code": 200, - "e_string": "@soc.citizen4.eu", - "m_string": "Nie znaleziono", - "m_code": 404, - "known": [ - "admin", - "miklo" - ], - "cat": "social" - }, - { - "name": "social.bund.de", - "uri_check": "https://social.bund.de/@{account}", - "e_code": 200, - "e_string": "@social.bund.de) - social.bund.de", - "m_string": "The page you are looking for isn't here.", - "m_code": 404, - "known": [ - "bfdi", - "bmdv" - ], - "cat": "social" - }, - { - "name": "social_msdn", - "uri_check": "https://social.msdn.microsoft.com/profile/{account}", - "e_code": 200, - "e_string": "Member Since", - "m_string": "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.", - "m_code": 404, - "known": [ - "edoardo", - "microsoftfan" - ], - "cat": "social" - }, - { - "name": "sofurry", - "uri_check": "https://{account}.sofurry.com", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "'s Profile | SoFurry", - "m_string": "SoFurry - Error | SoFurry", - "m_code": 404, - "known": [ - "reeden-landshey", - "tigerzero" - ], - "cat": "art" - }, - { - "name": "solo.to", - "uri_check": "https://solo.to/{account}", - "e_code": 200, - "e_string": "create your own page", - "m_string": "The page you're looking for isn't here.", - "m_code": 404, - "known": [ - "saruei", - "yui" - ], - "cat": "social" - }, - { - "name": "SoundCloud", - "uri_check": "https://soundcloud.com/{account}", - "e_code": 200, - "e_string": "SoundCloud", - "m_string": "sounds", - "m_code": 404, - "known": [ - "test123" - ], - "cat": "music" - }, - { - "name": "Soup", - "uri_check": "https://www.soup.io/author/{account}", - "e_code": 200, - "e_string": "Author at Soup.io", - "m_string": "Soup.io - News, Sports, Entertainment, TV, Tech, Gaming", - "m_code": 301, - "known": [ - "john", - "cristina" - ], - "cat": "blog" - }, - { - "name": "Sourceforge", - "uri_check": "https://sourceforge.net/user/username/{account}", - "uri_pretty": "https://sourceforge.net/u/{account}/profile", - "e_code": 400, - "e_string": "\"error\": \"invalid\"", - "m_string": "\"success\": 1", - "m_code": 200, - "known": [ - "alice", - "bob" - ], - "cat": "coding", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Speaker Deck", - "uri_check": "https://speakerdeck.com/{account}/", - "e_code": 200, - "e_string": ") on Speaker Deck", - "m_string": "User Not Found - Speaker Deck", - "m_code": 404, - "known": [ - "petecheslock", - "turbosmart45" - ], - "cat": "social" - }, - { - "name": "speedrun", - "uri_check": "https://www.speedrun.com/user/{account}/", - "e_code": 200, - "e_string": "Runs - ", - "m_string": "speedrun.com", - "m_code": 404, - "known": [ - "mike", - "chris" - ], - "cat": "gaming" - }, - { - "name": "SpiceWorks", - "uri_check": "https://community.spiceworks.com/people/{account}", - "e_code": 200, - "e_string": "Portfolio of IT Projects - Spiceworks", - "m_string": "Page Not Found", - "m_code": 404, - "known": [ - "spicerex", - "rod-it" - ], - "cat": "tech" - }, - { - "name": "SPOJ", - "uri_check": "https://www.spoj.com/users/{account}/", - "e_code": 200, - "e_string": "<h3>Activity over the last year</h3>", - "m_string": "<strong>Innopolis Open 2018</strong>", - "m_code": 200, - "known": [ - "defrager", - "xilinx" - ], - "cat": "coding" - }, - { - "name": "sporcle", - "uri_check": "https://www.sporcle.com/user/{account}/people/", - "e_code": 200, - "e_string": "'s Sporcle Friends", - "m_string": "This Sporcle user cannot be found.", - "m_code": 301, - "known": [ - "Test", - "lolshortee" - ], - "cat": "gaming" - }, - { - "name": "Sports Tracker", - "uri_check": "https://api.sports-tracker.com/apiserver/v1/user/name/{account}", - "uri_pretty": "https://sports-tracker.com/view_profile/{account}", - "e_code": 200, - "e_string": "\"uuid\":", - "m_string": "\"code\":\"404\"", - "m_code": 200, - "known": [ - "petriola", - "adisonthadat" - ], - "cat": "health" - }, - { - "name": "Spotify", - "uri_check": "https://open.spotify.com/user/{account}", - "e_code": 200, - "e_string": "content=\"profile\"", - "m_string": "Page not found", - "m_code": 404, - "known": [ - "kexp_official", - "mkbhd" - ], - "cat": "music", - "protection": [ - "other" - ] - }, - { - "name": "StackOverflow", - "uri_check": "https://stackoverflow.com/users/filter?search={account}", - "e_code": 200, - "e_string": "grid--item user-info", - "m_string": "No users matched your search.", - "m_code": 200, - "known": [ - "vonc", - "bergi" - ], - "cat": "coding", - "protection": [ - "cloudflare" - ] - }, - { - "name": "StackShare", - "uri_check": "https://stackshare.io/{account}", - "e_code": 200, - "e_string": "class='user-container'", - "m_string": "Sorry, we couldn't find that page :(", - "m_code": 404, - "known": [ - "gordonpn68492", - "Alan-Liang" - ], - "cat": "tech" - }, - { - "name": "Statuspage", - "uri_check": "https://{account}.statuspage.io/api/v2/status.json", - "uri_pretty": "https://{account}.statuspage.io/", - "e_code": 200, - "e_string": "updated_at", - "m_string": "<html><body>You are being <a href=\"https://www.statuspage.io\">redirected</a>.</body></html>", - "m_code": 302, - "known": [ - "8713981tpdlg", - "gaming", - "coinbase" - ], - "cat": "tech" - }, - { - "name": "Steam", - "uri_check": "https://steamcommunity.com/id/{account}", - "e_code": 200, - "e_string": "g_rgProfileData =", - "m_string": "Steam Community :: Error", - "m_code": 200, - "known": [ - "test" - ], - "cat": "gaming" - }, - { - "name": "SteamGifts", - "uri_check": "https://www.steamgifts.com/user/{account}", - "e_code": 200, - "e_string": "\"identifier\":", - "m_string": "", - "m_code": 301, - "known": [ - "AbsurdPoncho", - "Wolod1402" - ], - "cat": "gaming" - }, - { - "name": "Steemit", - "uri_check": "https://signup.steemit.com/api/check_username", - "uri_pretty": "https://steemit.com/@{account}", - "post_body": "{\"username\":\"{account}\"}", - "headers": { - "Content-Type": "application/json" - }, - "e_code": 200, - "e_string": "\"type\":\"error_api_username_used\"", - "m_string": "\"success\":true", - "m_code": 200, - "known": [ - "petlover", - "zalat" - ], - "cat": "social" - }, - { - "name": "steller", - "uri_check": "https://steller.co/{account}", - "e_code": 200, - "e_string": " on Steller", - "m_string": "", - "m_code": 404, - "known": [ - "jeannnn", - "havwoods" - ], - "cat": "shopping" - }, - { - "name": "StoryCorps", - "uri_check": "https://archive.storycorps.org/user/{account}/", - "e_code": 200, - "e_string": "archive author", - "m_string": "We're sorry, but the page", - "m_code": 404, - "known": [ - "jthorstad", - "paul-swider" - ], - "cat": "blog" - }, - { - "name": "Strava", - "uri_check": "https://www.strava.com/athletes/{account}", - "e_code": 301, - "e_string": "/athletes/", - "m_string": "\"page\":\"/404\"", - "m_code": 404, - "known": [ - "jane", - "adam" - ], - "cat": "social" - }, - { - "name": "StreamElements", - "uri_check": "https://api.streamelements.com/kappa/v2/channels/{account}", - "uri_pretty": "https://streamelements.com/{account}", - "e_code": 200, - "e_string": "\"providerId\"", - "m_string": "error", - "m_code": 404, - "known": [ - "honey", - "dude" - ], - "cat": "finance" - }, - { - "name": "StreamLabs", - "uri_check": "https://streamlabs.com/api/v6/user/{account}", - "uri_pretty": "https://streamlabs.com/{account}/tip", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "Unauthorized", - "m_code": 401, - "known": [ - "veibae", - "cutie_cori" - ], - "cat": "finance" - }, - { - "name": "Stripchat", - "uri_check": "https://stripchat.com/api/front/users/checkUsername?username={account}", - "uri_pretty": "https://stripchat.com/{account}", - "e_code": 400, - "e_string": "\"error\":\"This username already exists\"", - "m_string": "[]", - "m_code": 200, - "known": [ - "DulcieRichard", - "Katie-Mili" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Subscribestar", - "uri_check": "https://subscribestar.adult/{account}", - "e_code": 200, - "e_string": "CREATOR STATS", - "m_string": "WE ARE SORRY, THE PAGE YOU REQUESTED CANNOT BE FOUND", - "m_code": 404, - "known": [ - "missmoonified", - "honey" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Substack", - "uri_check": "https://substack.com/@{account}", - "e_code": 200, - "e_string": "| Substack", - "m_string": "" on Substack", - "m_code": 200, - "known": [ - "janellehardacre", - "janeclairebradley" - ], - "cat": "social" - }, - { - "name": "sukebei.nyaa.si", - "uri_check": "https://sukebei.nyaa.si/user/{account}", - "e_code": 200, - "e_string": "'s torrents", - "m_string": "404 Not Found", - "m_code": 404, - "known": [ - "kouhy76", - "Rektr0" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Suzuri", - "uri_check": "https://suzuri.jp/{account}", - "e_code": 200, - "e_string": "Items", - "m_string": "Push Space-key", - "m_code": 404, - "known": [ - "itochanxxx", - "alex" - ], - "cat": "business" - }, - { - "name": "szmer.info", - "uri_check": "https://szmer.info/u/{account}", - "e_code": 200, - "e_string": "Joined", - "m_string": "Code: Couldn't find that username or email.", - "m_code": 200, - "known": [ - "przeczzpreczem", - "Xavier" - ], - "cat": "social" - }, - { - "name": "tabletoptournament", - "uri_check": "https://www.tabletoptournaments.net/eu/player/{account}", - "e_code": 200, - "e_string": "- Player Profile | T³ - TableTop Tournaments", - "m_string": "No player with the nickname", - "m_code": 200, - "known": [ - "Lars01", - "john" - ], - "cat": "misc" - }, - { - "name": "Tagged", - "uri_check": "https://secure.tagged.com/{account}", - "e_code": 200, - "e_string": "s Profile", - "m_string": "Tagged - The social network for meeting new people", - "m_code": 302, - "known": [ - "Samantha", - "Robert" - ], - "cat": "social" - }, - { - "name": "TamTam", - "uri_check": "https://tamtam.chat/{account}", - "e_code": 200, - "e_string": "deeplink=tamtam://chat/", - "m_string": "ТамТам", - "m_code": 302, - "known": [ - "blue", - "John" - ], - "cat": "social" - }, - { - "name": "Tanuki.pl", - "uri_check": "https://tanuki.pl/profil/{account}", - "e_code": 200, - "e_string": "Dołączył", - "m_string": "Nie ma takiego użytkownika", - "m_code": 404, - "known": [ - "ania", - "avellana" - ], - "cat": "hobby" - }, - { - "name": "TAPiTAG", - "uri_check": "https://account.tapitag.co/tapitag/api/v1/{account}", - "uri_pretty": "https://account.tapitag.co/{account}", - "e_code": 200, - "e_string": "User details are Showing", - "m_string": "The rf number is not valid", - "m_code": 200, - "known": [ - "JonathanWallace", - "gearoidconsidine" - ], - "cat": "business" - }, - { - "name": "Tappy", - "uri_check": "https://api.tappy.tech/api/profile/username/{account}", - "uri_pretty": "https://www.tappy.tech/{account}", - "e_code": 200, - "e_string": "user_id", - "m_string": "Profile of username Not Found", - "m_code": 200, - "known": [ - "alexborrelli", - "domocann" - ], - "cat": "business" - }, - { - "name": "Taringa", - "uri_check": "https://www.taringa.net/{account}", - "e_code": 200, - "e_string": " en Taringa!", - "m_string": "Colectiva en Taringa!", - "m_code": 301, - "known": [ - "jocaxav", - "engendrometal" - ], - "cat": "social" - }, - { - "name": "Taringa Archived Profile", - "uri_check": "https://archive.org/wayback/available?url=https://www.taringa.net/{account}", - "uri_pretty": "https://web.archive.org/web/2/taringa.net/{account}", - "e_code": 200, - "e_string": "\"archived_snapshots\": {\"closest\"", - "m_string": "\"archived_snapshots\": {}", - "m_code": 200, - "known": [ - "farantic", - "elrubius" - ], - "cat": "archived" - }, - { - "name": "taskrabbit", - "uri_check": "https://www.taskrabbit.com/profile/{account}/about", - "e_code": 200, - "e_string": "’s Profile", - "m_string": "", - "m_code": 302, - "known": [ - "john", - "sam" - ], - "cat": "business" - }, - { - "name": "Teamtreehouse", - "uri_check": "https://teamtreehouse.com/{account}", - "e_code": 200, - "e_string": "Member Since", - "m_string": "Oops, Something went missing", - "m_code": 404, - "known": [ - "john" - ], - "cat": "coding" - }, - { - "name": "Teddygirls", - "uri_check": "https://teddysgirls.net/models/{account}", - "e_code": 200, - "e_string": ";s exclusive page to subscribe to her", - "m_string": "The page you were looking for doesn't exist", - "m_code": 404, - "known": [ - "jaycee-starr", - "chubbychick94" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Teespring", - "uri_check": "https://commerce.teespring.com/v1/stores?slug={account}", - "uri_pretty": "https://{account}.creator-spring.com", - "e_code": 200, - "e_string": "sellerToken", - "m_string": "{\"errors\":{\"store\":[\"not found\"]}}", - "m_code": 404, - "known": [ - "missmoonified", - "honey" - ], - "cat": "business" - }, - { - "name": "Teknik", - "uri_check": "https://user.teknik.io/{account}", - "e_code": 200, - "e_string": "Public Key", - "m_string": "The user does not exist", - "m_code": 200, - "known": [ - "red", - "bob" - ], - "cat": "tech" - }, - { - "name": "Telegram", - "uri_check": "https://t.me/{account}", - "e_code": 200, - "e_string": "tgme_page_title", - "m_string": "noindex, nofollow", - "m_code": 200, - "known": [ - "alice", - "giovanni" - ], - "cat": "social" - }, - { - "name": "Teletype", - "uri_check": "https://teletype.in/@{account}", - "e_code": 200, - "e_string": "class=\"layout__content m_main blog\"", - "m_string": "class=\"error\"", - "m_code": 404, - "known": [ - "mart11", - "anotherj" - ], - "cat": "blog" - }, - { - "name": "Tellonym", - "uri_check": "https://api.tellonym.me/profiles/name/{account}", - "uri_pretty": "https://tellonym.me/{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"code\":\"NOT_FOUND\"", - "m_code": 404, - "known": [ - "jane", - "jimmy" - ], - "cat": "social", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Tenor", - "uri_check": "https://tenor.com/users/{account}", - "e_code": 200, - "e_string": "class=\"ProfilePage page\"", - "m_string": "class=\"error-page container page\"", - "m_code": 404, - "known": [ - "maggie342", - "d33jay23" - ], - "cat": "images" - }, - { - "name": "TETR.IO", - "uri_check": "https://ch.tetr.io/api/users/{account}", - "uri_pretty": "https://ch.tetr.io/u/{account}", - "e_code": 200, - "e_string": "\"success\":true", - "m_string": "\"success\":false", - "m_code": 404, - "known": [ - "icly", - "5han" - ], - "cat": "gaming" - }, - { - "name": "TF2 Backpack Examiner", - "uri_check": "http://www.tf2items.com/id/{account}/", - "e_code": 200, - "e_string": "TF2 Backpack -", - "m_string": "", - "m_code": 302, - "known": [ - "test" - ], - "cat": "gaming" - }, - { - "name": "thegatewaypundit", - "uri_check": "https://www.thegatewaypundit.com/author/{account}/", - "e_code": 200, - "e_string": "summary", - "m_string": "Not found, error 404", - "m_code": 404, - "known": [ - "patti", - "joehoft" - ], - "cat": "political" - }, - { - "name": "theguardian", - "uri_check": "https://www.theguardian.com/profile/{account}", - "e_code": 200, - "e_string": "<h2 class=\"dcr-1ln6kec\">", - "m_string": "<title>Page Not Found | The Guardian", - "m_code": 404, - "known": [ - "minna-salami", - "johnnaughton" - ], - "cat": "news" - }, - { - "name": "themeforest", - "uri_check": "https://themeforest.net/user/{account}", - "e_code": 200, - "e_string": "s profile on ThemeForest", - "m_string": "Page Not Found | ThemeForest", - "m_code": 301, - "known": [ - "john", - "bob" - ], - "cat": "art" - }, - { - "name": "Thetattooforum", - "uri_check": "https://www.thetattooforum.com/members/{account}/", - "e_code": 200, - "e_string": "Insert This Gallery", - "m_string": "We’re sorry", - "m_code": 500, - "known": [ - "mixdop", - "modifyielts" - ], - "cat": "art" - }, - { - "name": "thoughts", - "uri_check": "https://thoughts.com/members/{account}/", - "e_code": 200, - "e_string": "Page not found", - "m_code": 404, - "known": [ - "myownpersonalthoughts", - "danwions" - ], - "cat": "hobby" - }, - { - "name": "Threads.net", - "uri_check": "https://www.threads.net/@{account}", - "e_code": 200, - "e_string": ") on Threads", - "m_string": "Threads", - "m_code": 200, - "known": [ - "s_novoselov", - "oliveralexanderdk" - ], - "cat": "social" - }, - { - "name": "TikTok", - "uri_check": "https://www.tiktok.com/oembed?url=https://www.tiktok.com/@{account}", - "uri_pretty": "https://www.tiktok.com/@{account}?lang=en", - "e_code": 200, - "e_string": "author_url", - "m_string": "Something went wrong", - "m_code": 400, - "known": [ - "gordonramsayofficial", - "pookiebear73" - ], - "cat": "social" - }, - { - "name": "Tilde.zone (Mastodon Instance)", - "uri_check": "https://tilde.zone/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://tilde.zone/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "ben", - "lunatic" - ], - "cat": "social" - }, - { - "name": "Tinder", - "uri_check": "https://tinder.com/@{account}", - "e_code": 200, - "e_string": ") | Tinder", - "m_string": "Tinder | Dating, Make Friends & Meet New People", - "m_code": 200, - "known": [ - "Alexey", - "peter", - "john" - ], - "cat": "dating" - }, - { - "name": "Tindie", - "uri_check": "https://www.tindie.com/accounts/check_username/", - "uri_pretty": "https://www.tindie.com/stores/{account}/", - "post_body": "username={account}", - "headers": { - "Content-Type": "application/x-www-form-urlencoded" - }, - "e_code": 200, - "e_string": "\"errors\": [\"Username taken!\"]", - "m_string": "\"valid\": true", - "m_code": 200, - "known": [ - "tehrabbitt", - "dekunukem" - ], - "cat": "shopping" - }, - { - "name": "TipeeeStream", - "uri_check": "https://www.tipeeestream.com/v3.0/pages/{account}", - "uri_pretty": "https://www.tipeeestream.com/{account}/", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"message\":\"Not found\"", - "m_code": 404, - "known": [ - "gagzzz", - "larebouille" - ], - "cat": "finance" - }, - { - "name": "Tooting.ch (Mastodon Instance)", - "uri_check": "https://tooting.ch/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://tooting.ch/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "mikebeganyi", - "Zugi" - ], - "cat": "social" - }, - { - "name": "Topcoder", - "uri_check": "https://api.topcoder.com/v5/members/{account}", - "uri_pretty": "https://profiles.topcoder.com/{account}", - "e_code": 200, - "e_string": "\"userId\":", - "m_string": "\"message\":\"Member with handle:", - "m_code": 404, - "known": [ - "chinvib66", - "mwakanosya" - ], - "cat": "coding" - }, - { - "name": "toyhou.se", - "uri_check": "https://toyhou.se/{account}", - "e_code": 200, - "e_string": "display-user", - "m_string": "We can't find that page!", - "m_code": 404, - "known": [ - "22RII", - "honey" - ], - "cat": "hobby" - }, - { - "name": "tradingview", - "uri_check": "https://www.tradingview.com/u/{account}/", - "e_code": 200, - "e_string": "— Trading Ideas &", - "m_string": "Page not found — TradingView", - "m_code": 404, - "known": [ - "liam", - "john" - ], - "cat": "finance" - }, - { - "name": "trakt", - "uri_check": "https://trakt.tv/users/{account}", - "e_code": 200, - "e_string": "s profile - Trakt", - "m_string": "The page you were looking for doesn't exist (404) - Trakt.tv", - "m_code": 404, - "known": [ - "john", - "anne" - ], - "cat": "video" - }, - { - "name": "TRAKTRAIN", - "uri_check": "https://traktrain.com/{account}", - "e_code": 200, - "e_string": "id=\"userId\"", - "m_string": "class=\"title-404\"", - "m_code": 404, - "known": [ - "terrotuga", - "fr4ud" - ], - "cat": "music" - }, - { - "name": "Trello", - "uri_check": "https://trello.com/1/Members/{account}", - "uri_pretty": "https://trello.com/{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "

Oh no! 404!

", - "m_code": 404, - "known": [ - "naranjasan", - "jane" - ], - "cat": "social", - "protection": [ - "other" - ] - }, - { - "name": "tripadvisor", - "uri_check": "https://www.tripadvisor.com/Profile/{account}", - "e_code": 200, - "e_string": "Contributions", - "m_string": "This page is on vacation", - "m_code": 404, - "known": [ - "john", - "peter" - ], - "cat": "social" - }, - { - "name": "TruckersMP", - "uri_check": "https://truckersmp.com/user/search?search={account}", - "e_code": 200, - "e_string": "class=\"team-v2\"", - "m_string": "

Could not find any member using these credentials

", - "m_code": 200, - "known": [ - "JohnnySOBA", - "Vasya_Run" - ], - "cat": "gaming" - }, - { - "name": "TruckersMP.Ru", - "uri_check": "https://truckersmp.ru/{account}", - "e_code": 200, - "e_string": "class=\"b-user-page\"", - "m_string": "class=\"b-handler-error-404\"", - "m_code": 404, - "known": [ - "ramanbardashevich", - "Sanya193Rus" - ], - "cat": "gaming" - }, - { - "name": "Truth Social", - "uri_check": "https://truthsocial.com/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://truthsocial.com/@{account}", - "e_code": 200, - "e_string": "\"id\":", - "m_string": "\"error\":\"Record not found\"", - "m_code": 404, - "known": [ - "realdonaldtrump", - "ScottAdamsTruth" - ], - "cat": "social" - }, - { - "name": "TryHackMe", - "uri_check": "https://tryhackme.com/api/user/exist/{account}", - "uri_pretty": "https://tryhackme.com/r/p/{account}", - "e_code": 200, - "e_string": "\"success\":true", - "m_string": "\"success\":false", - "m_code": 200, - "known": [ - "user", - "goyalyuval15" - ], - "cat": "tech" - }, - { - "name": "Tryst", - "uri_check": "https://tryst.link/escort/{account}", - "e_code": 200, - "e_string": "Caters to
", - "m_string": "Page not found", - "m_code": 404, - "known": [ - "lpatterson32", - "kansasgirl69" - ], - "cat": "xx NSFW xx" - }, - { - "name": "tumblr", - "uri_check": "https://{account}.tumblr.com", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "avatar", - "m_string": "There's nothing here", - "m_code": 404, - "known": [ - "test", - "test1" - ], - "cat": "images" - }, - { - "name": "tunefind", - "uri_check": "https://www.tunefind.com/api-request/account/profile?userName={account}", - "uri_pretty": "https://www.tunefind.com/user/profile/{account}", - "e_code": 200, - "e_string": "\"user-stats-engagement\":", - "m_string": "\"code\":\"not_found\"", - "m_code": 404, - "known": [ - "baywolfmusic", - "mrcerny18", - "4evryng" - ], - "cat": "music" - }, - { - "name": "Twitcasting", - "uri_check": "https://twitcasting.tv/{account}", - "e_code": 200, - "e_string": "Live History", - "m_string": "Not Found", - "m_code": 302, - "known": [ - "yuno___nico", - "2_t0_" - ], - "cat": "social" - }, - { - "name": "Twitch", - "uri_check": "https://twitchtracker.com/{account}", - "uri_pretty": "https://twitch.tv/{account}/", - "e_code": 200, - "e_string": "Overview</a>", - "m_string": "<title>404 Page Not Found", - "m_code": 404, - "known": [ - "summit1g", - "cohhcarnage" - ], - "cat": "gaming" - }, - { - "name": "Twitter archived profile", - "uri_check": "http://archive.org/wayback/available?url=https://twitter.com/{account}", - "uri_pretty": "https://web.archive.org/web/2/https://twitter.com/{account}", - "e_code": 200, - "e_string": "\"archived_snapshots\": {\"closest\"", - "m_string": "\"archived_snapshots\": {}", - "m_code": 200, - "known": [ - "jack", - "dineshdsouza" - ], - "cat": "archived" - }, - { - "name": "Twitter archived tweets", - "uri_check": "http://archive.org/wayback/available?url=https://twitter.com/{account}/status/*", - "uri_pretty": "https://web.archive.org/web/*/https://twitter.com/{account}/status/*", - "e_code": 200, - "e_string": "\"archived_snapshots\": {\"closest\"", - "m_string": "\"archived_snapshots\": {}", - "m_code": 200, - "known": [ - "jack", - "dineshdsouza" - ], - "cat": "archived" - }, - { - "name": "twoplustwo", - "uri_check": "https://forumserver.twoplustwo.com/ajax.php?do=usersearch", - "uri_pretty": "https://forumserver.twoplustwo.com/search.php", - "post_body": "securitytoken=guest&do=usersearch&fragment={account}", - "e_code": 200, - "e_string": "userid=", - "m_string": "", - "m_code": 404, - "known": [ - "redsox", - "adam" - ], - "cat": "hobby" - }, - { - "name": "twpro", - "uri_check": "https://twpro.jp/{account}", - "e_code": 200, - "e_string": "おとなりさん", - "m_string": "をご確認ください。", - "m_code": 404, - "known": [ - "wsise47", - "tsukiusa630" - ], - "cat": "social" - }, - { - "name": "Ubisoft", - "uri_check": "https://discussions.ubisoft.com/user/{account}", - "e_code": 200, - "e_string": "| Ubisoft Discussion Forums", - "m_string": "You seem to have stumbled upon a page that does not exist.", - "m_code": 404, - "known": [ - "fizzle_fuze", - "th05324" - ], - "cat": "gaming" - }, - { - "name": "Udemy", - "uri_check": "https://www.udemy.com/user/{account}/", - "e_code": 200, - "e_string": "| Udemy", - "m_string": "Online Courses - Learn Anything, On Your Schedule | Udemy", - "m_code": 301, - "known": [ - "stephane-maarek", - "lizbrown3" - ], - "cat": "tech" - }, - { - "name": "UEF CONNECT", - "uri_check": "https://uefconnect.uef.fi/en/{account}/", - "e_code": 200, - "e_string": "profile-page-header__info", - "m_string": "Page not found - UEFConnect", - "m_code": 404, - "known": [ - "heli.mutanen", - "mette.heiskanen" - ], - "cat": "business" - }, - { - "name": "uid", - "uri_check": "http://uid.me/{account}", - "e_code": 200, - "e_string": "- uID.me", - "m_string": "Page not found", - "m_code": 404, - "known": [ - "john", - "peter" - ], - "cat": "social" - }, - { - "name": "Ultimate Guitar", - "uri_check": "https://www.ultimate-guitar.com/u/{account}", - "e_code": 200, - "e_string": " | Ultimate-Guitar.Com", - "m_string": "Oops! We couldn't find that page.", - "m_code": 410, - "known": [ - "LYNX-Music", - "Mikhailo", - "MeGaDeth2314" - ], - "cat": "hobby" - }, - { - "name": "Ultras Diary", - "uri_check": "http://ultrasdiary.pl/u/{account}/", - "e_code": 200, - "e_string": "Mecze wyjazdowe:", - "m_string": "Ile masz wyjazdów?", - "m_code": 404, - "known": [ - "janek", - "kowal" - ], - "cat": "hobby" - }, - { - "name": "Unlisted Videos", - "uri_check": "https://unlistedvideos.com/search.php?user={account}", - "e_code": 200, - "e_string": "Date submitted", - "m_string": "content=\"\"/>", - "m_code": 200, - "known": [ - "emudshit", - "hirumaredx" - ], - "cat": "archived" - }, - { - "name": "unsplash", - "uri_check": "https://unsplash.com/@{account}", - "e_code": 200, - "e_string": "| Unsplash Photo Community", - "m_string": "Hm, the page you were looking for doesn't seem to exist anymore.", - "m_code": 404, - "known": [ - "john", - "alex" - ], - "cat": "images" - }, - { - "name": "Untappd", - "uri_check": "https://untappd.com/user/{account}/", - "e_code": 200, - "e_string": "class=\"cont user_profile\"", - "m_string": "class=\"search_404\"", - "m_code": 404, - "known": [ - "Welcomenetguy", - "patpatcarney" - ], - "cat": "social" - }, - { - "name": "USA Life", - "uri_check": "https://usa.life/{account}", - "e_code": 200, - "e_string": "Please log in to like, share and comment", - "m_string": "Sorry, page not found", - "m_code": 302, - "known": [ - "abaynes79", - "not1face" - ], - "cat": "social" - }, - { - "name": "utip.io", - "uri_check": "https://utip.io/creator/profile/{account}", - "uri_pretty": "https://utip.io/{account}", - "e_code": 200, - "e_string": "\"userName\"", - "m_string": "Not a valid web service key", - "m_code": 404, - "known": [ - "honey", - "chloe" - ], - "cat": "finance" - }, - { - "name": "uwu.ai", - "uri_check": "https://{account}.uwu.ai/", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "property=\"twitter:card\"", - "m_string": "Sorry, the requested page could not be found.", - "m_code": 404, - "known": [ - "elite", - "citruciel" - ], - "cat": "social" - }, - { - "name": "Uwumarket", - "uri_check": "https://uwumarket.us/collections/{account}", - "e_code": 200, - "e_string": "collection-hero__text-wrapper", - "m_string": "Page not found", - "m_code": 404, - "known": [ - "saki", - "aicandii" - ], - "cat": "business" - }, - { - "name": "vapenews", - "uri_check": "https://vapenews.ru/profile/{account}", - "e_code": 200, - "e_string": "Профиль", - "m_string": "404", - "m_code": 404, - "known": [ - "igor", - "vladimir" - ], - "cat": "hobby" - }, - { - "name": "Venmo", - "uri_check": "https://account.venmo.com/u/{account}", - "e_code": 200, - "e_string": "profileInfo_username__", - "m_string": "Sorry, the page you requested does not exist!", - "m_code": 404, - "known": [ - "John-Goolsby-8", - "kate-mura" - ], - "cat": "finance" - }, - { - "name": "Vero", - "uri_check": "https://vero.co/{account}", - "e_code": 200, - "e_string": "name=\"username", - "m_string": "

Not Found

", - "m_code": 200, - "known": [ - "alex", - "johnny" - ], - "cat": "art" - }, - { - "name": "vibilagare", - "uri_check": "https://www.vibilagare.se/users/{account}", - "e_code": 200, - "e_string": "Profil på vibilagare.se", - "m_string": "Sidan hittades inte |", - "m_code": 404, - "known": [ - "lars01", - "sven" - ], - "cat": "misc" - }, - { - "name": "VIEWBUG", - "uri_check": "https://www.viewbug.com/member/{account}", - "e_code": 200, - "e_string": "class=\"top-profile-since\"", - "m_string": "id=\"missing-this\"", - "m_code": 404, - "known": [ - "soulcraft", - "aychmb" - ], - "cat": "hobby" - }, - { - "name": "Vimeo", - "uri_check": "https://vimeo.com/{account}", - "e_code": 200, - "e_string": "og:type", - "m_string": "VimeUhOh", - "m_code": 404, - "known": [ - "john", - "alice" - ], - "cat": "video" - }, - { - "name": "Vine", - "uri_check": "https://vine.co/api/users/profiles/vanity/{account}", - "uri_pretty": "https://vine.co/{account}", - "e_code": 200, - "e_string": "userId", - "m_string": "That record does not exist", - "m_code": 404, - "known": [ - "TomHarlock", - "Seks" - ], - "cat": "video" - }, - { - "name": "VIP-blog", - "uri_check": "http://{account}.vip-blog.com", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "blog : ", - "m_string": "Blog inexistant", - "m_code": 200, - "known": [ - "sarah", - "brahim01" - ], - "cat": "blog" - }, - { - "name": "VirusTotal", - "uri_check": "https://www.virustotal.com/ui/users/{account}", - "uri_pretty": "https://www.virustotal.com/gui/user/{account}", - "headers": { - "Accept-Ianguage": "en-US", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0", - "X-Tool": "vt-ui-main", - "X-VT-Anti-Abuse-Header": "MTAxOTFwMDcxOTEtWkc5dWRDQmlaU0JsZG2scy5xNzE4Mjc1NDI0LjUzMw==" - }, - "e_code": 200, - "e_string": "\"data\"", - "m_string": "\"code\": \"NotFoundError\"", - "m_code": 404, - "known": [ - "cyber", - "cybersecstu" - ], - "cat": "misc" - }, - { - "name": "visnesscard", - "uri_check": "https://my.visnesscard.com/Home/GetCard/{account}", - "uri_pretty": "https://my.visnesscard.com/{account}", - "e_code": 200, - "e_string": "end_point", - "m_string": "card_id\": 0", - "m_code": 200, - "known": [ - "Lisa-Gordon", - "Bill-Schaeffer" - ], - "cat": "business" - }, - { - "name": "Vivino", - "uri_check": "https://www.vivino.com/users/{account}", - "e_code": 200, - "e_string": "", - "m_string": "Page not found", - "m_code": 404, - "known": [ - "test", - "admin" - ], - "cat": "video" - }, - { - "name": "VK", - "uri_check": "https://vk.com/{account}", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux i686; rv:125.0) Gecko/20100101 Firefox/125.0" - }, - "e_code": 200, - "e_string": "content=\"profile\"", - "m_string": "404 Not Found", - "m_code": 404, - "known": [ - "ches_ches", - "mike.kidlazy" - ], - "cat": "social" - }, - { - "name": "Vkl.world (Mastodon Instance)", - "uri_check": "https://vkl.world/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://vkl.world/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "king", - "aniver" - ], - "cat": "social" - }, - { - "name": "Vmst.io (Mastodon Instance)", - "uri_check": "https://vmst.io/api/v1/accounts/lookup?acct={account}", - "uri_pretty": "https://vmst.io/@{account}", - "e_code": 200, - "e_string": "display_name", - "m_string": "Record not found", - "m_code": 404, - "known": [ - "vmstan", - "honestdave" - ], - "cat": "social" - }, - { - "name": "Voice123", - "uri_check": "https://voice123.com/api/providers/search/{account}", - "uri_pretty": "https://voice123.com/{account}", - "e_code": 200, - "e_string": "user_id", - "m_string": "[]", - "m_code": 200, - "known": [ - "dottovuu", - "maheshsaha1992" - ], - "cat": "hobby" - }, - { - "name": "Voices.com", - "uri_check": "https://www.voices.com/profile/{account}/", - "e_code": 200, - "e_string": "Last Online

", - "m_string": "Try going back to the previous page or see below for more options", - "m_code": 301, - "known": [ - "briankirchoff", - "bryankopta" - ], - "cat": "business" - }, - { - "name": "vsco", - "uri_check": "https://vsco.co/{account}/gallery", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" - }, - "e_code": 200, - "e_string": "permaSubdomain", - "m_string": "\"error\":\"site_not_found\"}", - "m_code": 404, - "known": [ - "sam", - "becca" - ], - "cat": "social" - }, - { - "name": "W3Schools", - "uri_check": "https://pathfinder-api.kai.w3spaces.com/public-profile-api/{account}", - "e_code": 200, - "e_string": "\"userId\":", - "m_string": "\"message\":\"Profile does not exists or not visible\"", - "m_code": 404, - "known": [ - "test", - "admin" - ], - "cat": "tech" - }, - { - "name": "Wakatime", - "uri_check": "https://wakatime.com/@{account}", - "e_code": 200, - "e_string": ") - WakaTime", - "m_string": "404: Not Found", - "m_code": 404, - "known": [ - "jake", - "alimirzayev" - ], - "cat": "coding" - }, - { - "name": "Warmerise", - "uri_check": "https://warmerise.com/profile/{account}", - "e_code": 200, - "e_string": "<div id='profile_photo", - "m_string": "<h2>Page Not Found", - "m_code": 404, - "known": [ - "alfrevid", - "thepro" - ], - "cat": "gaming" - }, - { - "name": "warriorforum", - "uri_check": "https://www.warriorforum.com/members/{account}.html", - "e_code": 200, - "e_string": "Last Activity:", - "m_string": "Oops | Warrior Forum -", - "m_code": 400, - "known": [ - "alex", - "discrat" - ], - "cat": "hobby" - }, - { - "name": "watchmemore.com", - "uri_check": "https://api.watchmemore.com/api4/profile/{account}/", - "uri_pretty": "https://watchmemore.com/{account}/", - "e_code": 200, - "e_string": "displayName", - "m_string": "notExists", - "m_code": 400, - "known": [ - "medroxy", - "nodjev" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Watchmyfeed", - "uri_check": "https://watchmyfeed.com/{account}", - "e_code": 200, - "e_string": "SEND ME A TIP", - "m_string": "", - "m_code": 302, - "known": [ - "jennifer-ann", - "shay-loveless" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Wattpad", - "uri_check": "https://www.wattpad.com/api/v3/users/{account}", - "uri_pretty": "https://www.wattpad.com/user/{account}", - "e_code": 200, - "e_string": "\"username\":", - "m_string": "\"error_code\":", - "m_code": 400, - "known": [ - "newadult", - "Test123" - ], - "cat": "social", - "protection": [ - "other" - ] - }, - { - "name": "waytohey", - "uri_check": "https://waytohey.com/{account}", - "e_code": 200, - "e_string": "Send message</span>", - "m_string": "Unfortunately, this page doesn't exist.", - "m_code": 404, - "known": [ - "igor", - "anna" - ], - "cat": "social" - }, - { - "name": "Weasyl", - "uri_check": "https://www.weasyl.com/~{account}", - "e_code": 200, - "e_string": "profile — Weasyl", - "m_string": "This user doesn't seem to be in our database.", - "m_code": 404, - "known": [ - "weasyl", - "test" - ], - "cat": "images" - }, - { - "name": "Weblancer", - "uri_check": "https://www.weblancer.net/users/{account}/", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" - }, - "e_code": 200, - "e_string": "\"user\":", - "m_string": "\"page\":\"/404\"", - "m_code": 404, - "known": [ - "kevin", - "WebArtyom" - ], - "cat": "social" - }, - { - "name": "Weblate", - "uri_check": "https://hosted.weblate.org/user/{account}/", - "e_code": 200, - "e_string": "class=\"user-page text-center\"", - "m_string": "

Page Not Found

", - "m_code": 404, - "known": [ - "login836039", - "Datura0808" - ], - "cat": "hobby" - }, - { - "name": "weebly", - "uri_check": "https://{account}.weebly.com/", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "
", - "m_string": "404 - Page Not Found", - "m_code": 404, - "known": [ - "dave", - "john" - ], - "cat": "misc" - }, - { - "name": "wego", - "uri_check": "https://wego.social/{account}", - "e_code": 200, - "e_string": "Following</span>", - "m_string": "Sorry, page not found!", - "m_code": 302, - "known": [ - "mmish2", - "Lisa_M_S" - ], - "cat": "political" - }, - { - "name": "weheartit", - "uri_check": "https://weheartit.com/{account}", - "e_code": 200, - "e_string": " on We Heart It", - "m_string": " (404)", - "m_code": 404, - "known": [ - "alice", - "bob" - ], - "cat": "social" - }, - { - "name": "Weibo", - "uri_check": "https://weibo.com/ajax/profile/info?custom={account}", - "uri_pretty": "https://weibo.com/{account}", - "e_code": 200, - "e_string": "\"user\":", - "m_string": "

400 Bad Request

", - "m_code": 400, - "known": [ - "guoailun12", - "fbb0916" - ], - "cat": "social" - }, - { - "name": "WeTransfer", - "uri_check": "https://{account}.wetransfer.com", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "workspaceName", - "m_string": "", - "m_code": 307, - "known": [ - "mark", - "joe" - ], - "cat": "misc" - }, - { - "name": "Wikidot", - "uri_check": "http://www.wikidot.com/user:info/{account}", - "e_code": 200, - "e_string": "

", - "m_string": "
User does not exist.
", - "m_code": 200, - "known": [ - "jack", - "allen" - ], - "cat": "social" - }, - { - "name": "Wikimapia", - "uri_check": "https://wikimapia.org/user/register/?check=username&value={account}", - "uri_pretty": "https://wikimapia.org/user/tools/users_rating/?username={account}", - "e_code": 200, - "e_string": "\"ok\":false", - "m_string": "\"ok\":true", - "m_code": 200, - "known": [ - "bubnilka", - "Teresa" - ], - "cat": "social" - }, - { - "name": "Wikipedia", - "uri_check": "https://meta.wikimedia.org/w/api.php?action=query&format=json&list=globalallusers&aguprefix={account}&agulimit=100", - "uri_pretty": "https://en.wikipedia.org/wiki/User:{account}", - "e_code": 200, - "e_string": "{\"id\":", - "m_string": ":[]}}", - "m_code": 200, - "known": [ - "sector051", - "webbreacher" - ], - "cat": "news" - }, - { - "name": "Wimkin-PublicProfile", - "uri_check": "https://wimkin.com/{account}", - "e_code": 200, - "e_string": "is on WIMKIN", - "m_string": " The page you are looking for cannot be found.", - "m_code": 404, - "known": [ - "alex", - "smith", - "boomer" - ], - "cat": "political" - }, - { - "name": "Wireclub", - "uri_check": "https://www.wireclub.com/users/{account}", - "e_code": 200, - "e_string": "Chat With", - "m_string": "People - Wireclub", - "m_code": 301, - "known": [ - "deae", - "cheerfulsarcasm", - "braydenskiresort" - ], - "cat": "social", - "protection": [ - "other" - ] - }, - { - "name": "Wishlistr", - "uri_check": "https://www.wishlistr.com/sign-up/?rs=checkUserName&rsargs[]={account}", - "uri_pretty": "https://www.wishlistr.com/{account}/", - "e_code": 200, - "e_string": "+:var res = \"", - "m_string": "+:var res = parseInt(0);", - "m_code": 200, - "known": [ - "bodymodgrrrl", - "kethistle" - ], - "cat": "shopping" - }, - { - "name": "wordnik", - "uri_check": "https://www.wordnik.com/users/{account}", - "e_code": 200, - "e_string": "Welcome,", - "m_string": "Wordnik: Page Not Found", - "m_code": 404, - "known": [ - "elle", - "john" - ], - "cat": "gaming" - }, - { - "name": "WordPress.com (Deleted)", - "uri_check": "https://public-api.wordpress.com/rest/v1.1/sites/{account}.wordpress.com", - "uri_pretty": "https://{account}.wordpress.com", - "e_code": 403, - "e_string": "\"message\":\"API calls to this endpoint have been disabled.\"", - "m_string": "\"error\":\"unknown_blog\"", - "m_code": 404, - "known": [ - "ahegyes", - "santinamichelle" - ], - "cat": "blog" - }, - { - "name": "WordPress.com (Private)", - "uri_check": "https://public-api.wordpress.com/rest/v1.1/sites/{account}.wordpress.com", - "uri_pretty": "https://{account}.wordpress.com", - "e_code": 403, - "e_string": "\"message\":\"User cannot access this private blog.\"", - "m_string": "\"error\":\"unknown_blog\"", - "m_code": 404, - "known": [ - "webbreacher", - "mary" - ], - "cat": "blog" - }, - { - "name": "WordPress.com (Public)", - "uri_check": "https://public-api.wordpress.com/rest/v1.1/sites/{account}.wordpress.com", - "uri_pretty": "https://{account}.wordpress.com", - "e_code": 200, - "e_string": "\"ID\":", - "m_string": "\"error\":\"unknown_blog\"", - "m_code": 404, - "known": [ - "dukeupress", - "krolowasuperstarblog" - ], - "cat": "blog" - }, - { - "name": "WordPress.org (Forums)", - "uri_check": "https://login.wordpress.org/wp-json/wporg/v1/username-available/{account}", - "uri_pretty": "https://wordpress.org/support/users/{account}/", - "e_code": 200, - "e_string": "\"error\":\"That username is already in use.", - "m_string": "\"available\":true", - "m_code": 200, - "known": [ - "jane", - "david" - ], - "cat": "blog" - }, - { - "name": "WordPress.org (Profiles)", - "uri_check": "https://login.wordpress.org/wp-json/wporg/v1/username-available/{account}", - "uri_pretty": "https://profiles.wordpress.org/{account}/", - "e_code": 200, - "e_string": "\"error\":\"That username is already in use.", - "m_string": "\"available\":true", - "m_code": 200, - "known": [ - "toszcze", - "mattsson" - ], - "cat": "blog" - }, - { - "name": "Wowhead", - "uri_check": "https://www.wowhead.com/user={account}", - "e_code": 200, - "e_string": " Profile - Wowhead", - "m_string": "Error - Wowhead", - "m_code": 404, - "known": [ - "Ashelia", - "Zizarz" - ], - "cat": "gaming" - }, - { - "name": "Wykop", - "uri_check": "https://wykop.pl/ludzie/{account}", - "e_code": 200, - "e_string": "Profil:", - "m_string": "Wystąpił błąd 404.", - "m_code": 404, - "known": [ - "test", - "test2" - ], - "cat": "social" - }, - { - "name": "X", - "uri_check": "https://api.x.com/i/users/username_available.json?username={account}", - "uri_pretty": "https://x.com/{account}", - "e_code": 200, - "e_string": "\"reason\":\"taken\"", - "m_string": "\"reason\":\"available\"", - "m_code": 200, - "known": [ - "WebBreacher", - "OSINT_Tactical" - ], - "cat": "social" - }, - { - "name": "Xakep.ru", - "uri_check": "https://xakep.ru/author/{account}/", - "e_code": 200, - "e_string": "authorBlock-avatar", - "m_string": "Страница не найдена", - "m_code": 404, - "known": [ - "tr3harder", - "stariy" - ], - "cat": "tech" - }, - { - "name": "Xanga", - "uri_check": "http://{account}.xanga.com/", - "strip_bad_char": ".", - "e_code": 200, - "e_string": "s Xanga Site | Just", - "m_string": "", - "m_code": 302, - "known": [ - "john" - ], - "cat": "blog" - }, - { - "name": "Xbox Gamertag", - "uri_check": "https://www.xboxgamertag.com/search/{account}", - "e_code": 200, - "e_string": "Games Played", - "m_string": "Gamertag doesn't exist", - "m_code": 404, - "known": [ - "Spiken8", - "john" - ], - "cat": "gaming" - }, - { - "name": "xHamster", - "uri_check": "https://xhamster.com/users/{account}", - "e_code": 200, - "e_string": "s profile | xHamster", - "m_string": "User not found", - "m_code": 404, - "known": [ - "john", - "tonystark85" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Xing", - "uri_check": "https://www.xing.com/profile/{account}", - "e_code": 200, - "e_string": "", - "m_string": "Bad request", - "m_code": 400, - "known": [ - "john", - "mumrra" - ], - "cat": "xx NSFW xx" - }, - { - "name": "XVIDEOS-models", - "uri_check": "https://www.xvideos.com/models/{account}", - "e_code": 200, - "e_string": "Total video views", - "m_string": "THIS PROFILE DOESN'T EXIST", - "m_code": 404, - "known": [ - "vvalencourt3", - "tiffany-tyler" - ], - "cat": "xx NSFW xx" - }, - { - "name": "XVIDEOS-profiles", - "uri_check": "https://www.xvideos.com/profiles/{account}", - "e_code": 200, - "e_string": "page - XVIDEOS.COM", - "m_string": "THIS PROFILE DOESN'T EXIST", - "m_code": 404, - "known": [ - "nympho-nailer", - "dpadicto", - "bkg" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Yahoo! JAPAN Auction", - "uri_check": "https://auctions.yahoo.co.jp/follow/list/{account}", - "e_code": 200, - "e_string": "出品者", - "m_string": "Yahoo! JAPAN IDが無効です。", - "m_code": 500, - "known": [ - "fltr14502003" - ], - "cat": "shopping" - }, - { - "name": "yapishu", - "uri_check": "https://yapishu.net/user/{account}", - "e_code": 200, - "e_string": "for_profile", - "m_string": "Not Found (#404)", - "m_code": 404, - "known": [ - "roman", - "semion" - ], - "cat": "hobby" - }, - { - "name": "Yazawaj", - "uri_check": "https://www.yazawaj.com/profile/{account}", - "e_code": 200, - "e_string": "profile-description", - "m_string": "<title>nodata", - "m_code": 302, - "known": [ - "monya14555d", - "LordMohy" - ], - "cat": "dating" - }, - { - "name": "YesWeHack", - "uri_check": "https://api.yeswehack.com/hunters/{account}", - "uri_pretty": "https://yeswehack.com/hunters/{account}", - "e_code": 200, - "e_string": "\"username\":", - "m_string": "\"code\":404", - "m_code": 404, - "known": [ - "xel", - "rabhi" - ], - "cat": "tech" - }, - { - "name": "YouNow", - "uri_check": "https://api.younow.com/php/api/broadcast/info/user={account}", - "uri_pretty": "https://www.younow.com/{account}", - "e_code": 200, - "e_string": "\"userId\":", - "m_string": "\"errorMsg\":\"No users found\"", - "m_code": 200, - "known": [ - "lydia_tan33", - "RavJagz" - ], - "cat": "social", - "protection": [ - "other" - ] - }, - { - "name": "youpic", - "uri_check": "https://youpic.com/photographer/{account}", - "e_code": 200, - "e_string": "<meta name=\"og:title\"", - "m_string": "<title>YouPic — Not Found", - "m_code": 404, - "known": [ - "photodude", - "mike" - ], - "cat": "hobby" - }, - { - "name": "YouTube Channel", - "uri_check": "https://www.youtube.com/c/{account}/about", - "e_code": 200, - "e_string": "joinedDateText", - "m_string": "404 Not Found", - "m_code": 404, - "known": [ - "OvylarockTHR", - "OSINTDojo" - ], - "cat": "video" - }, - { - "name": "YouTube User", - "uri_check": "https://www.youtube.com/user/{account}/about", - "e_code": 200, - "e_string": "joinedDateText", - "m_string": "<title>404 Not Found", - "m_code": 404, - "known": [ - "MicahHoffman", - "theosintcuriousproject" - ], - "cat": "video" - }, - { - "name": "YouTube User2", - "uri_check": "https://www.youtube.com/@{account}", - "e_code": 200, - "e_string": "canonicalBaseUrl", - "m_string": "<title>404 Not Found", - "m_code": 404, - "known": [ - "tactical-systems", - "CybersecurityMeg" - ], - "cat": "video" - }, - { - "name": "Zbiornik", - "uri_check": "https://mini.zbiornik.com/{account}", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" - }, - "e_code": 200, - "e_string": "INFO", - "m_string": "", - "m_code": 301, - "known": [ - "69uzytkownik69", - "Soif" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Zenn", - "uri_check": "https://zenn.dev/{account}", - "e_code": 200, - "e_string": "
", - "m_string": "
404
", - "m_code": 404, - "known": [ - "john", - "blue" - ], - "cat": "coding" - }, - { - "name": "Zepeto", - "uri_check": "https://gw-napi.zepeto.io/profiles/{account}", - "uri_pretty": "https://web.zepeto.me/share/user/profile/{account}?language=en", - "e_code": 200, - "e_string": "zepetoId\":", - "m_string": "errorCode\":", - "m_code": 200, - "known": [ - "joe", - "james" - ], - "cat": "social" - }, - { - "name": "zhihu", - "uri_check": "https://api.zhihu.com/books/people/{account}/publications?offset=0&limit=5", - "uri_pretty": "https://www.zhihu.com/people/{account}", - "e_code": 200, - "e_string": "\"is_start\": true", - "m_string": "\"name\": \"NotFoundException\"", - "m_code": 404, - "known": [ - "lushnis", - "kan-shu-jiao-hua-shai-tai-yang" - ], - "cat": "social" - }, - { - "name": "Zillow", - "uri_check": "https://www.zillow.com/profile/{account}/", - "e_code": 200, - "e_string": "- Real Estate Agent", - "m_string": "", - "m_code": 302, - "known": [ - "JOHN-L-SULLIVAN", - "Maggie-Alegria" - ], - "cat": "shopping" - }, - { - "name": "zmarsa.com", - "uri_check": "https://zmarsa.com/uzytkownik/{account}", - "e_code": 200, - "e_string": "Statystyki", - "m_string": "Error 404 - zMarsa.com<", - "m_code": 404, - "known": [ - "janek", - "test" - ], - "cat": "xx NSFW xx" - }, - { - "name": "Znanija", - "uri_check": "https://znanija.com/graphql/ru?operationName=NickAvailability&query=query NickAvailability($nick:String!){nickAvailability(nick:$nick){isAvailable}}&variables={\"nick\":\"{account}\"}", - "uri_pretty": "https://www.google.com/search?q=site:znanija.com+intext:{username}", - "e_code": 200, - "e_string": "\"isAvailable\":false", - "m_string": "\"isAvailable\":true", - "m_code": 200, - "known": [ - "ila817674", - "abduabubakir42" - ], - "cat": "misc", - "protection": [ - "cloudflare" - ] - }, - { - "name": "Zomato", - "uri_check": "https://www.zomato.com/{account}/reviews", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" - }, - "e_code": 200, - "e_string": "Activity</h4>", - "m_string": "This is a 404 page and we think it's fairly clear", - "m_code": 404, - "known": [ - "john", - "jess" - ], - "cat": "social" - }, - { - "name": "zoomitir", - "uri_check": "https://www.zoomit.ir/user/{account}/", - "e_code": 301, - "e_string": "", - "m_string": "<title>خطای ۴۰۴ - صفحه یافت نشد", - "m_code": 404, - "known": [ - "rezaghezi", - "hosssssein" - ], - "cat": "tech" - }, - { - "name": "Чатовка.net", - "uri_check": "https://chatovka.net/search?user_nick=+{account}&user_sex_m=on&user_sex_f=on", - "e_code": 200, - "e_string": "href=\"/user/", - "m_string": "По Вашему запросу люди не найдены.", - "m_code": 200, - "known": [ - "ФорматА4", - "Alinka1313" - ], - "cat": "social" - } - ] -} \ No newline at end of file diff --git a/data/sites/cupidcr4wl.json b/data/sites/cupidcr4wl.json deleted file mode 100644 index 21967cf..0000000 --- a/data/sites/cupidcr4wl.json +++ /dev/null @@ -1,1897 +0,0 @@ -{ - "websites": { - "Cash App": { - "url": "https://cash.app/${username}", - "check_text": [ - "on Cash App" - ], - "not_found_text": [ - "Page Not Found" - ], - "category": "payment and gifting" - }, - "Venmo": { - "url": "https://account.venmo.com/u/{username}", - "check_text": [ - "robots" - ], - "not_found_text": [ - "Venmo | Page Not Found" - ], - "category": "payment and gifting" - }, - "Buy Me A Coffee": { - "url": "https://buymeacoffee.com/{username}", - "check_text": [ - "og:title" - ], - "not_found_text": [ - "Not found" - ], - "category": "payment and gifting" - }, - "Linktree": { - "url": "https://linktr.ee/{username}", - "check_text": [ - "og:title" - ], - "not_found_text": [ - ":404" - ], - "category": "social" - }, - "Milkshake": { - "url": "https://msha.ke/{username}/", - "check_text": [ - "Milkshake Website Builder" - ], - "not_found_text": [ - "Well, this is awkward..." - ], - "category": "social" - }, - "Get All My Links": { - "url": "https://getallmylinks.com/{username}", - "check_text": [ - "GetAllMyLinks" - ], - "not_found_text": [ - "<title>GetAllMyLinks - 404" - ], - "category": "social" - }, - "All My Links": { - "url": "https://allmylinks.com/{username}", - "check_text": [ - "| AllMyLinks", - "profile-username profile-page" - ], - "not_found_text": [ - "Not Found" - ], - "category": "social" - }, - "Bybio": { - "url": "https://bybio.co/{username}", - "check_text": [ - "BYBIO" - ], - "not_found_text": [ - "404 not found", - "Bybio" - ], - "category": "social" - }, - "Reddit": { - "url": "https://www.reddit.com/user/{username}/", - "check_text": [ - "shreddit-profile-trophy-list", - "karma", - "cake day", - "posted yet" - ], - "not_found_text": [ - "sorry, nobody on reddit goes by that name.", - ">This account may have been banned or the username is incorrect.</p>" - ], - "category": "social" - }, - "Snapchat": { - "url": "https://snapchat.com/add/{username}", - "check_text": [ - "Header_displayNameText", - "Add me on snapchat!" - ], - "not_found_text": [ - "NoContent_title", - "Sorry," - ], - "category": "social" - }, - "Telegram": { - "url": "https://t.me/{username}", - "check_text": [ - "tgme_profile_title", - "tgme_page_extra" - ], - "not_found_text": [ - "noindex, nofollow", - "a new era of messaging" - ], - "category": "social" - }, - "Tumblr": { - "url": "https://www.tumblr.com/{username}", - "check_text": [ - "follow", - "posts" - ], - "not_found_text": [ - "whatever you were looking for" - ], - "category": "social" - }, - "Deviantart": { - "url": "https://www.deviantart.com/{username}", - "check_text": [ - "favourites", - "gallery" - ], - "not_found_text": [ - "llama not found" - ], - "category": "social" - }, - "Wattpad": { - "url": "https://www.wattpad.com/user/{username}", - "check_text": [ - "rss -" - ], - "not_found_text": [ - "wattpad - where stories live" - ], - "category": "social" - }, - "Fur Affinity": { - "url": "https://www.furaffinity.net/user/{username}", - "check_text": [ - "<title>Userpage of" - ], - "not_found_text": [ - "<title>System Error" - ], - "category": "social" - }, - "Fancentro": { - "url": "https://fancentro.com/{username}", - "check_text": [ - "Subscribe", - ">followers", - "modelSlug" - ], - "not_found_text": [ - "Porn Videos" - ], - "category": "social" - }, - "Clapper App": { - "url": "https://www.clapperapp.com/{username}", - "check_text": [ - "following", - "followers", - "likes" - ], - "not_found_text": [ - "couldn't find this account" - ], - "category": "social" - }, - "Tinder": { - "url": "https://www.tinder.com/@{username}", - "check_text": [ - "(@{username}) | Tinder", - "TinderPage Not Found", - "Tinder | Dating, Make Friends &" - ], - "category": "dating and hook-up" - }, - "Fab Swingers": { - "url": "https://www.fabswingers.com/profile/{username}", - "check_text": [ - "

Looking For

", - "

Meeting

" - ], - "not_found_text": [ - "

The user you tried to view doesn't seem to be on the site any more

" - ], - "category": "dating and hook-up" - }, - "Swapfinder": { - "url": "https://swapfinder.com/profile/{username}", - "check_text": [ - "Profile on Swapfinder.com" - ], - "not_found_text": [ - "Swapfinder.com", - "Swapfinder - Where singles come out to play!" - ], - "category": "dating and hook-up" - }, - "Date-Fans": { - "url": "https://date-fans.com/profile/{username}", - "check_text": [ - "| Date-Fans" - ], - "not_found_text": [ - "DateFans" - ], - "category": "dating and hook-up" - }, - "Tagged": { - "url": "https://www.tagged.com/{username}", - "check_text": [ - "https://tagged.com/{username}", - "robots" - ], - "not_found_text": [ - "Tagged makes it easy", - "meet New People", - "verify-v1" - ], - "category": "dating and hook-up" - }, - "live.Xdating": { - "url": "https://live.xdating.com/{username}/bio", - "check_text": [ - "followers" - ], - "not_found_text": [ - "error, page not found" - ], - "category": "dating and hook-up" - }, - "FriendFinder-X": { - "url": "https://www.friendfinder-x.com/profile/{username}", - "check_text": [ - ">Profile</a>" - ], - "not_found_text": [ - "https://adultfriendfinder.com/p/register.cgi", - "Sign up for free at AdultFriendFinder", - "register, sign up, join, AdultFriendFinder", - "The World's Largest Casual Personals Site." - ], - "category": "dating and hook-up" - }, - "BDSM Singles": { - "url": "https://www.bdsmsingles.com/members/{username}", - "check_text": [ - "<title>Profile" - ], - "not_found_text": [ - "bdsmsingles.com/?language" - ], - "category": "dating and hook-up" - }, - "Find A Femdom": { - "url": "https://app.findafemdom.com/members/{username}", - "check_text": [ - "<title>Profile" - ], - "not_found_text": [ - "findafemdom.com/?language" - ], - "category": "dating and hook-up" - }, - "Inmate Classified (search)": { - "url": "https://www.inmate.com/?s={username}&post_type=inmate", - "check_text": [ - "profile-block Male" - ], - "not_found_text": [ - "search-no-results" - ], - "category": "dating and hook-up" - }, - "Women Behind Bars (search)": { - "url": "https://womenbehindbars.com/?s={username}", - "check_text": [ - "</span> Read More" - ], - "not_found_text": [ - "<p>Sorry, but nothing" - ], - "category": "dating and hook-up" - }, - "Inmate Passions": { - "url": "https://inmatepassions.com/dating/{username}/", - "check_text": [ - "<title>Inmate Passions:" - ], - "not_found_text": [ - "<strong>WHAT?" - ], - "category": "dating and hook-up" - }, - "Tasty Slips (underwear sales)": { - "url": "https://tastyslips.com/en/vendors/{username}", - "check_text": [ - ">About me</h2>" - ], - "not_found_text": [ - "The website was not found. Feel free to check out tastyslips.com", - "<title>Not found - TastySlips" - ], - "category": "fetish" - }, - "SoMyMy (underwear sales)": { - "url": "https://somymy.com/{username}", - "check_text": [ - ">Last seen", - ">Items of" - ], - "not_found_text": [ - ">Sorry, that page is not found!

" - ], - "category": "fetish" - }, - "UBIUSB (underwear sales)": { - "url": "https://ubisub.com/profile/{username}/", - "check_text": [ - "Follow", - ">Age:", - ">About" - ], - "not_found_text": [ - ">ohh! page not found

" - ], - "category": "fetish" - }, - "Fetish Finder": { - "url": "https://app.fetishfinder.com/sellerProfile/{username}", - "check_text": [ - ">Photos
", - ">Videos

", - "Follow" - ], - "not_found_text": [ - "

Something went wrong

" - ], - "category": "fetish" - }, - "Feet Finder": { - "url": "https://app.feetfinder.com/sellerProfile/{username}", - "check_text": [ - ">Photos", - ">Videos", - "Follow" - ], - "not_found_text": [ - "

Something went wrong

" - ], - "category": "fetish" - }, - "Sinful Feet": { - "url": "https://sinfulfeet.com/models/{username}.html", - "check_text": [ - "SinfulFeet | " - ], - "not_found_text": [ - "Page not found" - ], - "category": "fetish" - }, - "Foot Fetish Beauties": { - "url": "https://footfetishbeauties.com/tour/models/{username}.html", - "check_text": [ - "<TITLE>FootFetishBeauties" - ], - "not_found_text": [ - "Page not found" - ], - "category": "fetish" - }, - "Fetish.com": { - "url": "https://www.fetish.com/p/{username}/", - "check_text": [ - ">Send message</span>", - "<h3>Interested in", - "About me", - "This profile is only visible for users who are logged in</h2>" - ], - "not_found_text": [ - "<title>404 Not Found" - ], - "category": "fetish" - }, - "XXXfollow": { - "url": "https://www.xxxfollow.com/{username}", - "check_text": [ - "</b>Views</div>", - "</b>Followers</div>", - "</b>Likes</div>" - ], - "not_found_text": [ - "<title>XXX follow - Free TikTok Porn (formerly Xfollow)" - ], - "category": "adult video and photo" - }, - "WatchMyGF": { - "url": "https://www.watchmygf.me/girls/{username}/", - "check_text": [ - "Age:", - "Name:", - ">Subscribe" - ], - "not_found_text": [ - "Page is not found: deleted or never existed" - ], - "category": "adult video and photo" - }, - "VR PORN": { - "url": "https://vrporn.com/pornstars/{username}/", - "check_text": [ - ">Follow" - ], - "not_found_text": [ - "We're sorry, but this page wasn't found.

", - "pornstar-item-name ranking" - ], - "category": "adult video and photo" - }, - "badoink vr": { - "url": "https://badoinkvr.com/vr-pornstar/{username}/", - "check_text": [ - "Measurements:
", - ">Height:", - ">Eyes:" - ], - "not_found_text": [ - "This page does not exist" - ], - "category": "adult video and photo" - }, - "Wankz VR": { - "url": "https://www.wankzvr.com/{username}", - "check_text": [ - ">Birthplace:", - ">Age:", - ">Height:" - ], - "not_found_text": [ - "Oops 404, we couldn't find the page you're looking for" - ], - "category": "adult video and photo" - }, - "SexLikeReal": { - "url": "https://www.sexlikereal.com/pornstars/{username}", - "check_text": [ - ">Date of birth", - ">Country of Origin", - ">Weight" - ], - "not_found_text": [ - ">Sorry... Requested page doesn't exist." - ], - "category": "adult video and photo" - }, - "Babepedia": { - "url": "https://www.babepedia.com/babe/{username}", - "check_text": [ - ">Add to favorites", - ">Body type:" - ], - "not_found_text": [ - "Sorry, she wasn't found in our database.", - "There's no exact match in our database." - ], - "category": "adult video and photo" - }, - "Tranny Videosx": { - "url": "https://trannyvideosx.com/user/{username}", - "check_text": [ - "Last Login:", - "Joined:" - ], - "not_found_text": [ - "Error", - "This user does not exist." - ], - "category": "adult video and photo" - }, - "Pornzog": { - "url": "https://pornzog.com/pornstar/{username}/", - "check_text": [ - ">Aliases:", - ">Birth Date:", - ">Hair Color:" - ], - "not_found_text": [ - "UUUPS there is no content matching your query.", - ">Not Found" - ], - "category": "adult video and photo" - }, - "Tube Galore (pornstars)": { - "url": "https://www.tubegalore.com/pornstar/{username}", - "check_text": [ - "results found", - "1" - ], - "not_found_text": [ - "404 not found" - ], - "category": "adult video and photo" - }, - "Tube Galore (channels)": { - "url": "https://www.tubegalore.com/source/{username}", - "check_text": [ - "results found", - "1" - ], - "not_found_text": [ - "404 not found" - ], - "category": "adult video and photo" - }, - "Shesfreaky": { - "url": "https://www.shesfreaky.com/profile/{username}/", - "check_text": [ - "views

" - ], - "not_found_text": [ - "

The requested file was not found on this server.

" - ], - "category": "adult video and photo" - }, - "Playboy App": { - "url": "https://www.playboy.com/app/{username}", - "check_text": [ - "exclusive content on Playboy | The Playboy Club" - ], - "not_found_text": [ - "<title>Not Found" - ], - "category": "adult video and photo" - }, - "RealGfPorn (user)": { - "url": "https://www.realgfporn.com/user/{username}", - "check_text": [ - "Profile - Real Girlfriend Porn" - ], - "not_found_text": [ - "404 - page not found" - ], - "category": "adult video and photo" - }, - "BabesDirectory": { - "url": "https://babesdirectory.online/profile/{username}", - "check_text": [ - "BIO, Wiki, News" - ], - "not_found_text": [ - "Babe not found 404" - ], - "category": "adult video and photo" - }, - "Boobpedia": { - "url": "https://www.boobpedia.com/wiki/index.php?title=Special:Search&profile=all&search={username}&fulltext=1", - "check_text": [ - "Page title matches" - ], - "not_found_text": [ - "There were no results matching the query." - ], - "category": "adult video and photo" - }, - "Fansify": { - "url": "https://fansify.co.uk/{username}", - "check_text": [ - "'s profile" - ], - "not_found_text": [ - "Fansify | Join" - ], - "category": "adult video and photo" - }, - "Pornhub (pornstars)": { - "url": "https://www.pornhub.com/pornstar/{username}", - "check_text": [ - "<div id=\"avatarPicture\">", - "Subscribers:", - "Video Views:", - "Gender:" - ], - "not_found_text": [ - "This account doesn’t exist", - "Try searching for another.", - "Error Page Not Found", - "<title>Page Not Found", - "Top Pornstars and Models In Full-Length Free Sex Videos" - ], - "category": "adult video and photo" - }, - "Pornhub (models)": { - "url": "https://www.pornhub.com/model/{username}", - "check_text": [ - "Model Rank </div>", - "add friend" - ], - "not_found_text": [ - "This account doesn’t exist", - "Try searching for another.", - "Error Page Not Found", - "<title>Page Not Found", - "Top Pornstars and Models In Full-Length Free Sex Videos" - ], - "category": "adult video and photo" - }, - "Pornhub (users)": { - "url": "https://www.pornhub.com/users/{username}", - "check_text": [ - "<title>{username}", - "Profile - Pornhub.com" - ], - "not_found_text": [ - "This account doesn’t exist", - "Try searching for another.", - "Error Page Not Found", - "Page Not Found" - ], - "category": "adult video and photo" - }, - "Pornhub (channels)": { - "url": "https://www.pornhub.com/channels/{username}", - "check_text": [ - "{username}", - "Profile - Pornhub.com", - "joined" - ], - "not_found_text": [ - "This account doesn’t exist", - "Try searching for another.", - "Error Page Not Found", - "Page Not Found" - ], - "category": "adult video and photo" - }, - "XVIDEOS (pornstars)": { - "url": "https://www.xvideos.com/pornstars/{username}", - "check_text": [ - "{username} - Channel page - XVIDEOS.COM", - "Check out {username}", - "body--profile profile-page" - ], - "not_found_text": [ - "This account doesn’t exist", - "Try searching for another.", - "Error Page Not Found", - "Page Not Found", - "Not found - XVIDEOS.COM", - "body--http-status http-error-page status-404" - ], - "category": "adult video and photo" - }, - "XVIDEOS (users/channels)": { - "url": "https://www.xvideos.com/{username}", - "check_text": [ - "{username} - Channel page - XVIDEOS.COM", - "Check out {username}", - "body--profile profile-page" - ], - "not_found_text": [ - "This account doesn’t exist", - "Try searching for another.", - "Error Page Not Found", - "Page Not Found", - "Not found - XVIDEOS.COM", - "body--http-status http-error-page status-404" - ], - "category": "adult video and photo" - }, - "XVIDEOS (profiles)": { - "url": "https://www.xvideos.com/profiles/{username}", - "check_text": [ - "{username} - Channel page - XVIDEOS.COM", - "Check out {username}", - "body--profile profile-page" - ], - "not_found_text": [ - "This account doesn’t exist", - "Try searching for another.", - "Error Page Not Found", - "Page Not Found", - "Not found - XVIDEOS.COM", - "body--http-status http-error-page status-404" - ], - "category": "adult video and photo" - }, - "XVIDEOS Red": { - "url": "https://www.xvideos.red/{username}", - "check_text": [ - "video views", - "Subscribe", - "Videos" - ], - "not_found_text": [ - "Learn more" - ], - "category": "adult video and photo" - }, - "Redtube (pornstars)": { - "url": "https://www.redtube.com/pornstar/{username}", - "check_text": [ - "index, follow", - "Bio" - ], - "not_found_text": [ - "This account doesn’t exist", - "Try searching for another.", - "Error Page Not Found", - "Page Not Found" - ], - "category": "adult video and photo" - }, - "Redtube (users)": { - "url": "https://www.redtube.com/users/{username}", - "check_text": [ - "{username}'s Profile - RedTube", - "noindex, follow" - ], - "not_found_text": [ - "This account doesn’t exist", - "Try searching for another.", - "Error Page Not Found", - "Page Not Found", - "body--http-status http-error-page status-404" - ], - "category": "adult video and photo" - }, - "Redtube (channels)": { - "url": "https://www.redtube.com/channels/{username}", - "check_text": [ - "{username} Channel Page: Free Porn Movies | Redtube", - "index, follow" - ], - "not_found_text": [ - "This account doesn’t exist", - "Try searching for another.", - "Error Page Not Found", - "Page Not Found", - "body--http-status http-error-page status-404" - ], - "category": "adult video and photo" - }, - "XNXX (pornstars)": { - "url": "https://www.xnxx.com/pornstar/{username}", - "check_text": [ - "Model page" - ], - "not_found_text": [ - "This account doesn’t exist", - "Try searching for another.", - "Error Page Not Found", - "Page Not Found", - "body--http-status http-error-page status-404", - "THIS PROFILE DOESN", - "Unknown profile" - ], - "category": "adult video and photo" - }, - "XNXX (porn-maker)": { - "url": "https://www.xnxx.com/porn-maker/{username}", - "check_text": [ - "Porn Maker" - ], - "not_found_text": [ - "This account doesn’t exist", - "Try searching for another.", - "Error Page Not Found", - "Page Not Found", - "body--http-status http-error-page status-404", - "THIS PROFILE DOESN", - "Unknown profile" - ], - "category": "adult video and photo" - }, - "XHAMSTER (users)": { - "url": "https://www.xhamster.com/users/{username}", - "check_text": [ - "{username}", - "xHamster" - ], - "not_found_text": [ - "This account doesn’t exist", - "Try searching for another.", - "Error Page Not Found", - "Page Not Found", - "User not found" - ], - "category": "adult video and photo" - }, - "Motherless": { - "url": "https://www.motherless.com/m/{username}", - "check_text": [ - "Add friend" - ], - "not_found_text": [ - "Oh damn!" - ], - "category": "adult video and photo" - }, - "RedGIFs": { - "url": "https://www.redgifs.com/users/{username}", - "check_text": [ - "about" - ], - "not_found_text": [ - "robots" - ], - "category": "adult video and photo" - }, - "Sheer": { - "url": "https://www.sheer.com/{username}", - "check_text": [ - "FOLLOW" - ], - "not_found_text": [ - "404", - "Hmm, something's wrong.", - "Oops, page not found" - ], - "category": "adult video and photo" - }, - "JustFor.Fans": { - "url": "https://justforfans.com/{username}", - "check_text": [ - "Member since" - ], - "not_found_text": [ - "Filter By Gender" - ], - "category": "adult video and photo" - }, - "YouPorn (channels)": { - "url": "https://www.youporn.com/channel/{username}/", - "check_text": [ - "ranking" - ], - "not_found_text": [ - "Free Videos From" - ], - "category": "adult video and photo" - }, - "YouPorn (pornstars)": { - "url": "https://www.youporn.com/pornstar/{username}/", - "check_text": [ - "porn videos" - ], - "not_found_text": [ - "WE TRIED", - "WE REALLY DID", - "404 Page Not Found" - ], - "category": "adult video and photo" - }, - "YouPorn (uservids)": { - "url": "https://www.youporn.com/uservids/{username}/", - "check_text": [ - "free porn videos" - ], - "not_found_text": [ - "WE TRIED", - "WE REALLY DID", - "404 Page Not Found" - ], - "category": "adult video and photo" - }, - "FrolicMe (models)": { - "url": "https://www.frolicme.com/models/{username}/", - "check_text": [ - "naughty content featuring" - ], - "not_found_text": [ - "page not found" - ], - "category": "adult video and photo" - }, - "Fanvue": { - "url": "https://www.fanvue.com/{username}", - "check_text": [ - "posts", - "show more" - ], - "not_found_text": [ - "page not found" - ], - "category": "adult video and photo" - }, - "AdmireMe.VIP": { - "url": "https://admireme.vip/{username}/", - "check_text": [ - "subscribe for", - "post count" - ], - "not_found_text": [ - "page not found" - ], - "category": "adult video and photo" - }, - "Tube8 (pornstars)": { - "url": "https://www.tube8.com/pornstar/{username}/", - "check_text": [ - "Porn Videos and XXX Movies | Tube8.com" - ], - "not_found_text": [ - "404 Page Not Found" - ], - "category": "adult video and photo" - }, - "Tube8 (channels)": { - "url": "https://www.tube8.com/channel/{username}/", - "check_text": [ - "Channel for Free Porn | Tube8.com" - ], - "not_found_text": [ - "Porn Channels" - ], - "category": "adult video and photo" - }, - "Raw White Meat": { - "url": "https://rawwhitemeat.com/video_tag/{username}/", - "check_text": [ - "post-title", - ">Height:", - ">Age:" - ], - "not_found_text": [ - "Page Not Found" - ], - "category": "adult video and photo" - }, - "My POV Fam": { - "url": "https://mypovfam.com/video_tag/{username}/", - "check_text": [ - "post-title" - ], - "not_found_text": [ - "Page Not Found" - ], - "category": "adult video and photo" - }, - "Pevert POV": { - "url": "https://pervertpov.com/video_tag/{username}/", - "check_text": [ - "post-title" - ], - "not_found_text": [ - "Page Not Found" - ], - "category": "adult video and photo" - }, - "Sluts Around Town": { - "url": "https://slutsaroundtown.com/video_tag/{username}/", - "check_text": [ - "post-title", - ">Age:", - ">Height:" - ], - "not_found_text": [ - "Page Not Found" - ], - "category": "adult video and photo" - }, - "Passions Only": { - "url": "https://passionsonly.com/video_tag/{username}/", - "check_text": [ - "post-title" - ], - "not_found_text": [ - "Page Not Found" - ], - "category": "adult video and photo" - }, - "MiLFUCKD": { - "url": "https://milfuckd.com/performers/{username}/", - "check_text": [ - "JOIN NOW TO SEE MORE</span>", - ">Videos Featuring" - ], - "not_found_text": [ - "Page Not Found" - ], - "category": "adult video and photo" - }, - "Clip Page": { - "url": "https://clip.page/{username}", - "check_text": [ - "Customs</button>", - "></i> Custom" - ], - "not_found_text": [ - "Not Found" - ], - "category": "adult video and photo" - }, - "Faphouse": { - "url": "https://faphouse.com/models/{username}", - "check_text": [ - "Porn Videos | Faphouse", - "Followers" - ], - "not_found_text": [ - "Error", - "Not found" - ], - "category": "adult video and photo" - }, - "TNAFlix": { - "url": "https://www.tnaflix.com/profile/{username}", - "check_text": [ - "Pornstar - TNAFLIX.COM" - ], - "not_found_text": [ - "404 - Not Found" - ], - "category": "adult video and photo" - }, - "Virtual Taboo": { - "url": "https://virtualtaboo.com/pornstars/{username}", - "check_text": [ - "Birthday:", - "VR Porn Star Videos: New Sex Scenes | VirtualTaboo" - ], - "not_found_text": [ - "

404: Page not found

" - ], - "category": "adult video and photo" - }, - "Tik.Porn": { - "url": "https://tik.porn/{username}", - "check_text": [ - "
Views
", - "
Followers
" - ], - "not_found_text": [ - ">Page Not Found | Tik.Porn" - ], - "category": "adult video and photo" - }, - "PornHat (Models)": { - "url": "https://www.pornhat.com/models/{username}/", - "check_text": [ - "free HD porn videos - PornHat" - ], - "not_found_text": [ - "Page Not Found" - ], - "category": "adult video and photo" - }, - "PornHat (Channels)": { - "url": "https://www.pornhat.com/sites/{username}/", - "check_text": [ - "free HD porn videos - PornHat" - ], - "not_found_text": [ - "Page Not Found" - ], - "category": "adult video and photo" - }, - "PornMD": { - "url": "https://www.pornmd.com/pornstar/{username}", - "check_text": [ - "Videos and Porn Movies :: PornMD" - ], - "not_found_text": [ - "Oops! We could not find the requested page." - ], - "category": "adult video and photo" - }, - "Yuvutu (search)": { - "url": "http://www.yuvutu.com/modules.php?name=Video&op=search&keywords={username}", - "check_text": [ - ">1" - ], - "not_found_text": [ - "0 result(s)" - ], - "category": "adult video and photo" - }, - "Yuvutu (profile)": { - "url": "http://www.yuvutu.com/{username}", - "check_text": [ - "personal info", - ">Height:
" - ], - "not_found_text": [ - ">Members" - ], - "category": "adult video and photo" - }, - "Adultism": { - "url": "https://www.adultism.com/profile/{username}", - "check_text": [ - ">Location:", - ">Member since:" - ], - "not_found_text": [ - "No such member :(", - " Not Found - Adultism" - ], - "category": "adult video and photo" - }, - "Cams Reviews": { - "url": "https://www.cams.reviews/?search={username}", - "check_text": [ - "webcam models that match your search." - ], - "not_found_text": [ - ">No Webcam Models Found.", - "is not in our database." - ], - "category": "camming" - }, - "Kink Live": { - "url": "https://www.kinklive.com/models/bios/{username}/about.php", - "check_text": [ - "Reviews ", - "
Last Online:
" - ], - "not_found_text": [ - "The performer's bio you requested is not available.", - "Alert!" - ], - "category": "camming" - }, - "Chaturbate": { - "url": "https://chaturbate.com/{username}/", - "check_text": [ - "live on Chaturbate!", - ">Bio", - "Last Broadcast:", - "Room is currently offline", - "I am:" - ], - "not_found_text": [ - "

HTTP 404 - Page Not Found", - "Pornstar Free Cams" - ], - "category": "camming" - }, - "Webcam-Archiver": { - "url": "https://webcam-archiver.com/search/?query={username}", - "check_text": [ - "Download", - ">Big Preview" - ], - "not_found_text": [ - "

0 Result's" - ], - "category": "camming" - }, - "Masturbate and Chill": { - "url": "https://www.live.masturbateandchill.com/en/chat/{username}#!", - "check_text": [ - "Free Live Sex Chat With" - ], - "not_found_text": [ - "<title>www.live.masturbateandchill.com" - ], - "category": "camming" - }, - "Jerkmate (pornstars)": { - "url": "https://jerkmate.com/pornstar/{username}", - "check_text": [ - "jerkmate.com/pornstar" - ], - "not_found_text": [ - "page not found - 404" - ], - "category": "camming" - }, - "Jerkmate (cams)": { - "url": "https://jerkmate.com/cam/{username}", - "check_text": [ - "cam profile:" - ], - "not_found_text": [ - "page not found - 404", - "Sex Chat with Adult Cam Models | Jerkmate", - "We're sorry, the page you're looking for was not found.

", - ">Live Cam Girls" - ], - "category": "camming" - }, - "Camlust": { - "url": "https://camlust.com/en/models/{username}", - "check_text": [ - "in Free Chat Roulette", - "Live Skype sex show with" - ], - "not_found_text": [ - "page not found", - "

Top models

" - ], - "category": "camming" - }, - "Xpanded": { - "url": "https://xpanded.com/girls?search_profilename={username}", - "check_text": [ - ">Xpanded TV", - " page to see call options

" - ], - "not_found_text": [ - "but we were unable to find" - ], - "category": "camming" - }, - "MyFreeCams": { - "url": "https://profiles.myfreecams.com/{username}", - "check_text": [ - "profile_avatar", - "status_label" - ], - "not_found_text": [ - "Search by Username" - ], - "category": "camming" - }, - "Babestation Cams (performer)": { - "url": "https://babestationcams.com/performer/{username}", - "check_text": [ - "Babestation Cams" - ], - "not_found_text": [ - "Not Found" - ], - "category": "camming" - }, - "ChatMate": { - "url": "https://chatmate.com/chat-video/{username}", - "check_text": [ - "Chat & Interact with" - ], - "not_found_text": [ - "<title>Page Not Found - 404" - ], - "category": "camming" - }, - "CamSoda": { - "url": "https://camsoda.com/{username}", - "check_text": [ - "bio" - ], - "not_found_text": [ - "Error, page not found" - ], - "category": "camming" - }, - "CamWithHer (users)": { - "url": "https://camwithher.com/{username}", - "check_text": [ - "Free Live Nude Sex Show", - "bio" - ], - "not_found_text": [ - "page not found" - ], - "category": "camming" - }, - "Xcams": { - "url": "https://www.xcams.com/profile/{username}/", - "check_text": [ - "years old" - ], - "not_found_text": [ - "not found" - ], - "category": "camming" - }, - "Xlovecam": { - "url": "https://www.xlovecam.com/en/model/{username}/", - "check_text": [ - "years old", - "about me" - ], - "not_found_text": [ - "error 404" - ], - "category": "camming" - }, - "Soul Cams": { - "url": "https://www.soulcams.com/profile/{username}", - "check_text": [ - "Live cam | Soulcams.com", - "About me
", - "Follow me" - ], - "not_found_text": [ - "SoulCams" - ], - "category": "camming" - }, - "XV Cams": { - "url": "https://www.xvcams.com/models/bios/{username}/about.php", - "check_text": [ - "Webcam Bio - Naked Pics, Adult Videos, Sex Chat" - ], - "not_found_text": [ - "The performer's bio you requested is not available." - ], - "category": "camming" - }, - "CamSextacy": { - "url": "https://www.camsextacy.com/{username}", - "check_text": [ - "Cam: Free Live Nude Sex Show & Chat - CamSextacy" - ], - "not_found_text": [ - ">Error, page not found" - ], - "category": "camming" - }, - "Mynt Models (NY, DAL, LA)": { - "url": "https://www.myntmodels.com/escort-model/{username}/", - "check_text": [ - "Measurements:", - "

Age:" - ], - "not_found_text": [ - "Page Not Found" - ], - "category": "escort" - }, - "TS-Dating (International)": { - "url": "https://www.ts-dating.com/model/{username}", - "check_text": [ - ">Location:<span", - ">Name: <span", - ">Age: <span" - ], - "not_found_text": [ - "404 - PAGE NOT FOUND" - ], - "category": "escort" - }, - "Mccoys Guide (US)": { - "url": "https://www.mccoysguide.com/services/escorts/united-states-of-america?search={username}&order=updated", - "check_text": [ - "/assets/advertiser_accounts/", - "<h6>Escorts</h6>" - ], - "not_found_text": [ - "No search results found" - ], - "category": "escort" - }, - "Naughty Ads (International)": { - "url": "https://www.naughtyads.com.au/escort/{username}", - "check_text": [ - "call-button", - "sms-button", - "Quick Facts</label>" - ], - "not_found_text": [ - "Oops, something went wrong...</h3>" - ], - "category": "escort" - }, - "Cowboys4Angels": { - "url": "https://cowboys4angels.com/cowboys/{username}/", - "check_text": [ - "<h1>About", - "View His Rates</div>" - ], - "not_found_text": [ - "Page not found" - ], - "category": "escort" - }, - "Models-World": { - "url": "https://models-world.com/profile/{username}/", - "check_text": [ - "- Located in" - ], - "not_found_text": [ - "<title>MODELS WORLD" - ], - "category": "escort" - }, - "Eros Escorts": { - "url": "https://erosescorts.net/{username}/", - "check_text": [ - "Escort Profile -" - ], - "not_found_text": [ - "<title>Escorts directory" - ], - "category": "escort" - }, - "Grazia (International)": { - "url": "https://grazia-escort.com/en/models/{username}/", - "check_text": [ - "book now" - ], - "not_found_text": [ - "<title>Grazia" - ], - "category": "escort" - }, - "Perla Di Mare (International)": { - "url": "https://www.perla-di-mare.eu/escort/{username}/", - "check_text": [ - "located in" - ], - "not_found_text": [ - "nothing found" - ], - "category": "escort" - }, - "Ava Escorts (International)": { - "url": "https://avaescorts.com/search-results?escort_name={username}&agency_id=&escort_type=&root_category=&city_county=Enter+City&age=&hair_color=&languages=&price=&type=&x=0&y=0", - "check_text": [ - "/>Outcall Only<br", - "/>Incall/Outcall<br", - "/>Incall Only<br" - ], - "not_found_text": [ - "escorts found (0)" - ], - "category": "escort" - }, - "Private Delights": { - "url": "https://privatedelights.ch/profile/{username}", - "check_text": [ - "<title>Reviews for", - "Verified Provider", - "Unverified Provider", - "Joined:", - ">work</i>" - ], - "not_found_text": [ - "search-section", - "0 providers found.", - "No page" - ], - "category": "escort" - }, - "The Erotic Review": { - "url": "https://www.theeroticreview.com/reviews/newreviewsList.asp?Name={username}", - "check_text": [ - "matches.</span>", - ">Name</div>" - ], - "not_found_text": [ - "<p>No records were found.</p>" - ], - "category": "escort" - }, - "Rent.Men": { - "url": "https://rent.men/{username}", - "check_text": [ - "Current location" - ], - "not_found_text": [ - "404", - "Ooops...", - "The requested page can not be found." - ], - "category": "escort" - }, - "HOT": { - "url": "https://hot.com/us/escorts?q={username}", - "check_text": [ - ">model "" - ], - "not_found_text": [ - "Your request does not match any item.", - "Try changing your request", - "</span> does not match" - ], - "category": "escort" - }, - "Eros.com": { - "url": "https://eros.com/search/text?sch={username}&loc=", - "check_text": [ - "United States" - ], - "not_found_text": [ - "No results" - ], - "category": "escort" - }, - "tryst.link": { - "url": "https://tryst.link/escort/{username}", - "check_text": [ - "#photos" - ], - "not_found_text": [ - "<h1>Page not found</h1>", - "The page you were looking for couldn't be found." - ], - "category": "escort" - }, - "5escorts": { - "url": "https://www.5escorts.com/search/?keyword={username}&category=ads", - "check_text": [ - "/ads/details/" - ], - "not_found_text": [ - "Could not find what you were looking for?" - ], - "category": "escort" - }, - "Sweet Passion Escort": { - "url": "https://www.sweet-passion-escort.de/en/models/{username}", - "check_text": [ - "book", - "Sedcard" - ], - "not_found_text": [ - "Could not find what you were looking for?", - "<title>Escort Damen" - ], - "category": "escort" - }, - "Open Adult Directory BDSM Search": { - "url": "https://openadultdirectory.com/oad_search.php?kw={username}&dir=bdsm", - "check_text": [ - "results" - ], - "not_found_text": [ - "Your search returned no matches.", - "Page Not Found" - ], - "category": "escort" - }, - "Open Adult Directory Escorts Search": { - "url": "https://openadultdirectory.com/oad_search.php?kw={username}&dir=escorts", - "check_text": [ - "results" - ], - "not_found_text": [ - "Your search returned no matches.", - "Page Not Found" - ], - "category": "escort" - }, - "International Fetish Escort (Frankfurt, Germany)": { - "url": "https://www.international-fetish-escort.com/en/escort-models/{username}/", - "check_text": [ - "about me" - ], - "not_found_text": [ - "404", - "oops" - ], - "category": "escort" - }, - "Exotic RW (Rwanda, Africa)": { - "url": "https://www.exoticrw.com/escort/{username}/", - "check_text": [ - " | Best Rwanda Escorts" - ], - "not_found_text": [ - "<title>Best Rwanda Escorts" - ], - "category": "escort" - }, - "Exotic Mali (Mali, Africa)": { - "url": "https://www.exoticmali.com/escort/{username}/", - "check_text": [ - " - Escorte Mali" - ], - "not_found_text": [ - "<title>Escorte Mali" - ], - "category": "escort" - }, - "Exotic Malawi (Malawi, Africa)": { - "url": "https://www.exoticmalawi.com/escort/{username}/", - "check_text": [ - " - Escorts in Malawi" - ], - "not_found_text": [ - "<title>Escorts in Malawi" - ], - "category": "escort" - }, - "Exotic Ethiopia (Ethiopia, Africa)": { - "url": "https://www.exoticethiopia.com/escort/{username}/", - "check_text": [ - ", Ethiopian Escort for Massage" - ], - "not_found_text": [ - "<title>Ethiopian Escorts" - ], - "category": "escort" - }, - "Exotic Botswana (Botswana, Africa)": { - "url": "https://www.exoticbotswana.com/escort/{username}/", - "check_text": [ - ", Botswana Escort for Massage" - ], - "not_found_text": [ - "<title>Botswana Escorts" - ], - "category": "escort" - }, - "Blue Label Escort (Frankfurt, Germany)": { - "url": "https://bluelabel-escort.com/en/models/{username}/", - "check_text": [ - "Hair colour:</span>", - "Category:</span>", - "Height:</span>" - ], - "not_found_text": [ - "faq" - ], - "category": "escort" - }, - "Felines Escort": { - "url": "https://www.felinesescort.com/en/escort-girl/{username}", - "check_text": [ - "photos", - "about" - ], - "not_found_text": [ - "page not found" - ], - "category": "escort" - }, - "Aphrodite Agency (Europe)": { - "url": "https://www.aphrodite-agency.com/en/models/{username}", - "check_text": [ - "more about" - ], - "not_found_text": [ - "meet high class escorts" - ], - "category": "escort" - }, - "Society Service Escorts (Holland & Belgium)": { - "url": "https://www.societyservice.com/escort/{username}", - "check_text": [ - "profile" - ], - "not_found_text": [ - "find your perfect", - "we are sorry" - ], - "category": "escort" - }, - "Society Service Gigolos (Holland & Belgium)": { - "url": "https://www.societyservice.com/gigolo/{username}", - "check_text": [ - "profile" - ], - "not_found_text": [ - "find your perfect" - ], - "category": "escort" - }, - "SouthernGFE": { - "url": "https://www.southerngfe.com/escorts/search?searchword={username}", - "check_text": [ - "title='{username}", - "Results 1" - ], - "not_found_text": [ - "Your search does not return any result." - ], - "category": "escort" - }, - "1Baiser": { - "url": "https://en.1baiser.com/search?q={username}", - "check_text": [ - "Model </span></h2>" - ], - "not_found_text": [ - "No results were found" - ], - "category": "escort" - }, - "Figgmi (Switzerland)": { - "url": "https://figgmi.ch/de/escorts/{username}/", - "check_text": [ - "| escort in" - ], - "not_found_text": [ - "error 404" - ], - "category": "escort" - }, - "Telaviv-Escort (Telaviv)": { - "url": "https://telaviv-escort.com/model/{username}", - "check_text": [ - "<td>Ethnicity:</td>", - "<td>Age:</td>", - "<td>Availability:</td>" - ], - "not_found_text": [ - "404 not found" - ], - "category": "escort" - }, - "Austin Escort Models (Austin, TX)": { - "url": "https://austinescortmodels.com/model/{username}", - "check_text": [ - "<td>Ethnicity:</td>", - "<td>Age:</td>", - "<td>Availability:</td>" - ], - "not_found_text": [ - "404 not found" - ], - "category": "escort" - }, - "Dallas Escort State (Dallas, TX)": { - "url": "https://dallasescortstate.com/model/{username}", - "check_text": [ - "<td>Ethnicity:</td>", - "<td>Age:</td>", - "<td>Availability:</td>" - ], - "not_found_text": [ - "404 not found" - ], - "category": "escort" - }, - "What Happens In Vegas Stays (Las Vegas, NV)": { - "url": "https://www.whathappensinvegasstays.com/?s={username}", - "check_text": [ - "search-results" - ], - "not_found_text": [ - "Nothing Found</h1>" - ], - "category": "escort" - }, - "Party Girls LV (Las Vegas, NV)": { - "url": "https://partygirlslv.com/?s={username}&post_type=model", - "check_text": [ - ">Search Results for:" - ], - "not_found_text": [ - "Nothing Found</h1>" - ], - "category": "escort" - }, - "Vegas Girls Gone Wild (Las Vegas, NV)": { - "url": "https://vegasgirlsgonewild.com/escort/{username}/", - "check_text": [ - "Vegas Girls Gone Wild" - ], - "not_found_text": [ - "Page not found" - ], - "category": "escort" - }, - "Florida Escort Models (Florida, US)": { - "url": "https://floridaescortmodels.com/model/{username}", - "check_text": [ - "Ethnicity:", - "Age:", - "Availability:" - ], - "not_found_text": [ - "404 not found" - ], - "category": "escort" - }, - "EscortHub (International)": { - "url": "https://escorthub.org/escort/{username}/", - "check_text": [ - "escort from", - "- EscortHub" - ], - "not_found_text": [ - "

404

", - "

page not found

" - ], - "category": "escort" - }, - "Dior Escorts (London, UK)": { - "url": "https://www.diorescorts.com/gallery/{username}", - "check_text": [ - ">Age:", - ">Gender:", - ">Availability :" - ], - "not_found_text": [ - ">Sorry Page not found :( (404)" - ], - "category": "escort" - }, - "Cheshire Companions (UK)": { - "url": "https://www.cheshirecompanions.com/escorts/{username}", - "check_text": [ - "
Age
", - "
Height
" - ], - "not_found_text": [ - "404 | Chesire Companions " - ], - "category": "escort" - }, - "Candy Shop Escorts (Manchester, ENG)": { - "url": "https://candyshopescorts.co.uk/escorts/{username}", - "check_text": [ - "
Age
", - "
Height
" - ], - "not_found_text": [ - "The page you are looking for doesn't exist or has been moved." - ], - "category": "escort" - }, - "Scarlet Blue (International)": { - "url": "https://scarletblue.com.au/search/?search=true&escortname={username}", - "check_text": [ - "profile-quickstats--details", - ">Age:" - ], - "not_found_text": [ - "No Escorts found - Please select different options" - ], - "category": "escort" - }, - "Naughty Ads (Australia)": { - "url": "https://www.naughtyads.com.au/escorts/australia?search={username}", - "check_text": [ - "escort-profile-image", - "escort-price" - ], - "not_found_text": [ - "No listings found for this search" - ], - "category": "escort" - }, - "New Zealand Girls (New Zealand)": { - "url": "https://www.newzealandgirls.co.nz/all/nzgirls.php?keyword={username}&go_keyword=Go%21", - "check_text": [ - "Stunning Escorts in New Zealand" - ], - "not_found_text": [ - "Your search returned no results, please try another search." - ], - "category": "escort" - }, - "Adult Look (International)": { - "url": "https://www.adultlook.com/search/?query={username}&rq={username}&advanced=1", - "check_text": [ - "results found" - ], - "not_found_text": [ - "No results found to show" - ], - "category": "escort" - }, - "KittyAds (International)": { - "url": "https://www.kittyads.com/{username}", - "check_text": [ - "Escort Profile:", - "Contact Info" - ], - "not_found_text": [ - "Page Not Found" - ], - "category": "escort" - }, - "Exotic-Africa (Africa)": { - "url": "https://www.exotic-africa.com/escort/{username}/", - "check_text": [ - "<h4>Contact info:</h4>", - "<h4>Services:</h4>" - ], - "not_found_text": [ - ">VIP Escorts</h3>", - "<h3>page not found</h3>" - ], - "category": "escort" - } - } -} diff --git a/data/sites/detectdee.json b/data/sites/detectdee.json deleted file mode 100644 index 173f773..0000000 --- a/data/sites/detectdee.json +++ /dev/null @@ -1,9793 +0,0 @@ -{ - "github": { - "url": "https://github.com", - "nameCheck": "^[a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*$", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "header": { - "a": "x" - }, - "url": "https://github.com/%s", - "existUsername": "piaolin", - "nonExistUsername": "4554456464646546654", - "userPage": "https://github.com/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "gitlab": { - "url": "https://gitlab.com/", - "nameCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://gitlab.com/%s", - "existUsername": "blue", - "nonExistUsername": "noonewouldeverusethis7", - "userPage": "https://gitlab.com/%s", - "type": "username" - }, - { - "nonExistRegex": "\\[\\]", - "existRegex": "web_url", - "url": "https://gitlab.com/api/v4/users?username=%s", - "existUsername": "blue", - "nonExistUsername": "noonewouldeverusethis7", - "userPage": "https://gitlab.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "gitee": { - "url": "https://gitee.com", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://gitee.com/%s", - "existUsername": "log4j", - "nonExistUsername": "4554456464646546654", - "userPage": "https://gitee.com/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "googleplay": { - "url": "https://play.google.com", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "We're sorry, the requested URL was not found on this server.", - "existRegex": "Copyright The Closure Library Authors", - "url": "https://play.google.com/store/apps/developer?id=%s", - "existUsername": "Apple", - "nonExistUsername": "GitHubeeeeee", - "userPage": "https://play.google.com/store/apps/developer?id=%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "githubblog": { - "url": "https://github.io", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://%s.github.io", - "existUsername": "kongkongye", - "nonExistUsername": "kongkongyeeeee", - "userPage": "https://%s.github.io", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "v2ex": { - "url": "https://v2ex.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://v2ex.com/member/%s", - "existUsername": "kongkongye", - "nonExistUsername": "kongkongyeeeee", - "userPage": "https://v2ex.com/member/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "zhihu": { - "url": "https://www.zhihu.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "url": "https://www.zhihu.com/people/%s", - "existUsername": "bule", - "nonExistRegex": "404 - \\\\u77e5\\\\u4e4e", - "existRegex": "查看详细资料", - "nonExistUsername": "buleeeeeeeeeeeee", - "userPage": "https://www.zhihu.com/people/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "freebuf": { - "url": "https://www.freebuf.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://www.freebuf.com/author/%s", - "existUsername": "Alpha_h4ck", - "nonExistUsername": "Alpha_h4ckeeeeeee", - "userPage": "https://www.freebuf.com/author/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "bugbank": { - "url": "https://www.bugbank.cn/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://www.bugbank.cn/api/user/%s", - "existUsername": "carry_pan", - "nonExistUsername": "carry_panxzxxxxx", - "userPage": "https://www.bugbank.cn/u/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "hackerone": { - "url": "https://hackerone.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://hackerone.com/%s?type=user", - "existUsername": "ooooooo_q", - "nonExistUsername": "ooooooo_qaaaaaaa", - "userPage": "https://hackerone.com/%s?type=user", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "vulbox": { - "url": "https://www.vulbox.com/", - "type": "CyberSecurity", - "isNSFW": false, - "sleep": 3, - "detect": [ - { - "existRegex": "true", - "url": "https://vapi.vulbox.com/openapi/account/exist", - "body": { - "field": "username", - "value": "%s", - "mobile_code": null - }, - "header": { - "Content-Type": "application/json;charset=UTF-8", - "Origin": "https://www.vulbox.com", - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "existUsername": "ooooooo_q", - "nonExistUsername": "ooooooo_qaaaaaaa", - "userPage": "https://www.vulbox.com/whitehats/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "bugku": { - "url": "https://www.bugku.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "\\\\u62b1\\\\u6b49\\\\uff0c\\\\u60a8\\\\u6307\\\\u5b9a\\\\u7684\\\\u7528\\\\u6237\\\\u7a7a\\\\u95f4\\\\u4e0d\\\\u5b58\\\\u5728", - "existRegex": "的个人资料", - "url": "https://www.bugku.com/space-username-%s.html", - "existUsername": "Jimmy", - "nonExistUsername": "ooooooo_qaaaaaaa", - "userPage": "https://www.bugku.com/space-username-%s.html", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "newbugku": { - "url": "https://new.bugku.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://new.bugku.com/users/profile/%s", - "existUsername": "gabriel", - "nonExistUsername": "ooooooo_qaaaaaaa", - "userPage": "https://new.bugku.com/users/profile/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "52pojie": { - "url": "https://www.52pojie.cn/", - "type": "CyberSecurity", - "isNSFW": false, - "sleep": 1, - "detect": [ - { - "nonExistRegex": "succeed", - "existRegex": "showWindow", - "url": "https://www.52pojie.cn/forum.php?mod=ajax&inajax=yes&infloat=register&handlekey=register&ajaxmenu=1&action=checkusername&username=%s", - "existUsername": "youga777", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://www.52pojie.cn/home.php?mod=space&username=%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "youtube": { - "url": "https://www.youtube.com/", - "type": "Video", - "isNSFW": false, - "sleep": 1, - "detect": [ - { - "nonExistRegex": "404 Not Found", - "url": "https://www.youtube.com/user/%s", - "headers": { - "Cookie": "CONSENT=YES+cb.20210418-17-p0.it+FX+917; " - }, - "existUsername": "pewdiepie", - "nonExistUsername": "youga777888", - "userPage": "https://www.youtube.com/user/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "wikipedia": { - "url": "https://www.wikipedia.org/", - "type": "Blog", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://en.wikipedia.org/wiki/User:%s", - "existUsername": "Jack", - "nonExistUsername": "youga777888", - "userPage": "https://en.wikipedia.org/wiki/User:%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "wordpress": { - "url": "https://wordpress.com/", - "type": "Blog", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "wordpress.com</em> doesn't exist", - "url": "https://%s.wordpress.com/", - "existUsername": "Hoadlck", - "nonExistUsername": "youga777888", - "userPage": "https://%s.wordpress.com/", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "reddit": { - "url": "https://www.reddit.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "Sorry, nobody on Reddit goes by that name.", - "url": "https://www.reddit.com/user/%s", - "existUsername": "blue", - "headers": { - "accept-language": "en-US,en;q=0.9" - }, - "nonExistUsername": "youga777888", - "userPage": "https://www.reddit.com/user/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "aqniu": { - "url": "https://www.aqniu.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "没有使用此用户名或电子邮件地址的账户。", - "existRegex": "未能发送电子邮件。您的主机可能未获正确配置。", - "url": "https://www.aqniu.com/wp-login.php?action=lostpassword", - "existUsername": "liuchaoyang", - "nonExistUsername": "youga777888", - "header": { - "Content-Type": "application/x-www-form-urlencoded" - }, - "body": "user_login=%s&redirect_to=&wp-submit=%%E8%%8E%%B7%%E5%%8F%%96%%E6%%96%%B0%%E5%%AF%%86%%E7%%A0%%81", - "userPage": "https://www.aqniu.com/author/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "quora": { - "url": "https://www.quora.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "existRegex": "Answers\": false, \"Questions\": false, \"Posts\":", - "url": "https://www.quora.com/profile/%s", - "existUsername": "Laura-Mitchell-5", - "nonExistUsername": "youga777888", - "userPage": "https://www.quora.com/profile/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "virustotal": { - "url": "https://www.virustotal.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://www.virustotal.com/ui/users/%s/avatar", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "userPage": "https://www.virustotal.com/gui/user/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "ES" - } - }, - "twitter": { - "url": "https://twitter.com/", - "type": "Social", - "isNSFW": false, - "nameCheck": "^[a-zA-Z0-9_]{1,15}$", - "sleep": 3, - "detect": [ - { - "nonExistRegex": "<div class=\"error-panel\"><span>User ", - "url": "https://nitter.net/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "userPage": "https://twitter.com/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "twitch": { - "url": "https://www.twitch.tv/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://m.twitch.tv/%s", - "existUsername": "jenny", - "nonExistUsername": "youga777888", - "userPage": "https://www.twitch.tv/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "tryhackme": { - "url": "https://tryhackme.com/", - "type": "CyberSecurity", - "isNSFW": false, - "nameCheck": "^[a-zA-Z0-9.]{1,16}$", - "detect": [ - { - "nonExistRegex": "{\"success\":false}", - "url": "https://tryhackme.com/api/user/exist/%s", - "existUsername": "ashu", - "nonExistUsername": "youga777888", - "userPage": "https://tryhackme.com/p/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IS" - } - }, - "tiktok": { - "url": "https://tiktok.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://tiktok.com/@%s", - "existUsername": "red", - "nonExistUsername": "youga777888", - "userPage": "https://tiktok.com/@%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "KY" - } - }, - "telegram": { - "url": "https://t.me/", - "type": "Social", - "isNSFW": false, - "nameCheck": "^[a-zA-Z0-9_]{5,32}$", - "detect": [ - { - "nonExistRegex": "<meta property=\"og:description\" content=\"\">", - "url": "https://t.me/%s", - "existUsername": "piaolin", - "nonExistUsername": "youga777888", - "userPage": "https://t.me/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "steamgroup": { - "url": "https://steamcommunity.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "No group could be retrieved for the given URL", - "url": "https://steamcommunity.com/groups/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "userPage": "https://steamcommunity.com/groups/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "sublimeforum": { - "url": "https://forum.sublimetext.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://forum.sublimetext.com/u/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "userPage": "https://forum.sublimetext.com/u/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "spotify": { - "url": "https://open.spotify.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://open.spotify.com/user/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "headers": { - "user-agent": "PostmanRuntime/7.29.2" - }, - "userPage": "https://open.spotify.com/user/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "SE" - } - }, - "sourceforge": { - "url": "https://sourceforge.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://sourceforge.net/u/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "userPage": "https://sourceforge.net/u/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "snapchat": { - "url": "https://www.snapchat.com/", - "type": "Social", - "isNSFW": false, - "nameCheck": "^[a-z][a-z-_.]{3,15}", - "detect": [ - { - "statusCode": "200", - "url": "https://www.snapchat.com/add/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "userPage": "https://www.snapchat.com/add/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "rubygems": { - "url": "https://rubygems.org/", - "type": "Programmer", - "isNSFW": false, - "nameCheck": "^[a-zA-Z][a-zA-Z0-9_-]{1,40}", - "detect": [ - { - "statusCode": "200", - "url": "https://rubygems.org/profiles/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "userPage": "https://rubygems.org/profiles/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "pypi": { - "url": "https://pypi.org/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://pypi.org/user/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "userPage": "https://pypi.org/user/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "quizlet": { - "url": "https://quizlet.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://quizlet.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://quizlet.com/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "pastebin": { - "url": "https://pastebin.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "Pastebin.com - Not Found ", - "url": "https://pastebin.com/u/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://pastebin.com/u/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IS" - } - }, - "packagist": { - "url": "https://packagist.org/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "reason=vendor_not_found", - "url": "https://packagist.org/packages/%s/", - "existUsername": "psr", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://packagist.org/packages/%s/", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "oracle": { - "url": "https://community.oracle.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://community.oracle.com/people/%s", - "existUsername": "dev", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://community.oracle.com/people/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "opensource": { - "url": "https://opensource.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://opensource.com/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://opensource.com/users/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "nextcloud": { - "url": "https://nextcloud.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://help.nextcloud.com/u/%s/summary", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://help.nextcloud.com/u/%s/summary", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "minecraft": { - "url": "https://minecraft.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "Couldn't find any profile with name", - "url": "https://api.mojang.com/users/profiles/minecraft/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://api.mojang.com/users/profiles/minecraft/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "tft": { - "url": "https://lolchess.gg/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "No search results", - "url": "https://lolchess.gg/profile/na/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://lolchess.gg/profile/na/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "gitbook": { - "url": "https://gitbook.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://%s.gitbook.io/", - "existUsername": "gitbook", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://%s.gitbook.io/", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "hackernews": { - "url": "https://news.ycombinator.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "No such user.", - "url": "https://news.ycombinator.com/user?id=%s", - "existUsername": "gitbook", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://news.ycombinator.com/user?id=%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "hackerrank": { - "url": "https://hackerrank.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "Something went wrong", - "url": "https://hackerrank.com/%s", - "existUsername": "satznova", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://hackerrank.com/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "leetcode": { - "url": "https://leetcode.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://leetcode.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://leetcode.com/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "leetcode-cn": { - "url": "https://leetcode.cn/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "抱歉!我们找不到您想访问的页面", - "url": "https://leetcode.cn/u/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://leetcode.cn/u/%s/", - "type": "username", - "status": false - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "9gag": { - "url": "https://www.9gag.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://www.9gag.com/u/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://www.9gag.com/u/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "csdn": { - "url": "https://blog.csdn.net/", - "type": "Blog", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://blog.csdn.net/%s", - "existUsername": "OneFlow_Official", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://blog.csdn.net/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "cnblogs": { - "url": "https://www.cnblogs.com/", - "type": "Blog", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://www.cnblogs.com/%s/", - "existUsername": "LyShark", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://www.cnblogs.com/%s/", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "oschina": { - "url": "https://my.oschina.net/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://my.oschina.net/%s", - "existUsername": "kisswu", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://my.oschina.net/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "segmentfault": { - "url": "https://segmentfault.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "微信扫码登录", - "existRegex": "粉丝数", - "url": "https://segmentfault.com/u/%s", - "existUsername": "h_jm", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://segmentfault.com/u/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "trello": { - "url": "https://trello.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "model not found", - "url": "https://trello.com/1/Members/%s", - "existUsername": "h_jm", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36" - }, - "userPage": "https://trello.com/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "AU" - } - }, - "seebug": { - "url": "https://www.seebug.org/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://www.seebug.org/accounts/profile/%s", - "existUsername": "kikay_lee", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "Cookie": "__jsluid_s=eea1cbf32a1f7e963c1aa33e29d33fb8; __jsl_clearance_s=1682778037.072|0|7DZXEgV4Oiq%2BI312i0Rr0bpHAUQ%3D" - }, - "userPage": "https://www.seebug.org/accounts/profile/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "sec-wiki": { - "url": "https://www.sec-wiki.com/", - "type": "CyberSecurity", - "isNSFW": false, - "sleep": 3, - "detect": [ - { - "statusCode": "200", - "url": "https://www.sec-wiki.com/user/view/%s", - "existUsername": "re4lity", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.sec-wiki.com/user/view/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "secrss": { - "url": "https://www.secrss.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "404 Not Found", - "existRegex": "登录", - "url": "https://www.secrss.com/articles?author=%s", - "existUsername": "ISACA", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.secrss.com/articles?author=%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "bugcrowd": { - "url": "https://bugcrowd.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "statusCode": "200", - "url": "https://bugcrowd.com/%s", - "existUsername": "MuhammadKhizerJaved", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://bugcrowd.com/%s", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "track": { - "url": "https://bbs.zkaq.cn/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "existRegex": "用户中心", - "nonExistRegex": "不存在该用户", - "url": "https://bbs.zkaq.cn/u/%s.html", - "existUsername": "nocircle", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://bbs.zkaq.cn/u/%s.html", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "mozhe": { - "url": "https://www.mozhe.cn/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "nonExistRegex": "\\\\u53ef\\\\u4ee5\\\\u4f7f\\\\u7528", - "url": "https://www.mozhe.cn/check/nickname/exist", - "existUsername": "openkali", - "nonExistUsername": "youga777888", - "body": "nickname=%s&_token=UMXd6Cx41xzTBoZqU70SxTcOkc8heH7FomvsjOkN", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "Cookie": "mozhe-xsrf-token=eyJpdiI6InNNeXlxZjY0VktmXC9pcTBCeXU3d0VRPT0iLCJ2YWx1ZSI6IjdOUVF0OG5lSU92SmI3N1doVjZFY2dLUGZwUTFqS2tpQm9KMnVjS0NvRXRrWFlsUjN5RURUMnZQWmxRSCtDOVg1Wk45em9SWTg5cWxBMkNOdkl5TnVBPT0iLCJtYWMiOiJhM2ZkMmQ3YWRhZTkzNWYzMTI2ZTUzNzUxNTZjNzMyYTc1N2I0ZjQ5YzQ0MGY4M2Y2ZDhhMTcyZTRkZmUzOWY2In0%3D; mz_session=eyJpdiI6IlcrQU9FNlVPZ21Rak9nS2s5VzdsZ1E9PSIsInZhbHVlIjoidWVpNzc1ME9ad3RkQWFjRDV6RnRFWTJOQ1A3eG8wd0t6WVVMcEtMUlwvcEhOcmRvY1BEYkl5S0pjSEJTNGozT05cL2FOZDh4bUJtR1BoQ3hobitDV29yUT09IiwibWFjIjoiZDgwNmU5YTMzYWM2ODI5NTljMzFmNWE2ZjQ1NzUyYzY4MjIwYTkwMjMyMDFmMzU1MzJjNTQyNmY2ZGUxMDY1ZSJ9; Hm_lvt_9e72691775fe3271a38b32ad33975d5e=1682861764; Hm_lpvt_9e72691775fe3271a38b32ad33975d5e=1682861764", - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8", - "X-Requested-With": "XMLHttpRequest" - }, - "userPage": "https://www.mozhe.cn/", - "type": "username", - "status": false - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "jarvisoj": { - "url": "https://www.jarvisoj.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "existRegex": "This username has been used!!", - "url": "https://www.jarvisoj.com/api/register.json", - "existUsername": "kira", - "nonExistUsername": "youga777888", - "body": "email=155785154@qq.com&username=%s&organize=1&mobilephone=1&countryid=7&captcha=J871&agree=true&checkid=5e3f986d-0584-47d6-ad5b-cec7c825876b", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" - }, - "userPage": "https://www.jarvisoj.com/scoreboard", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "vulfocus": { - "url": "https://vulfocus.cn/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "existRegex": "\\\\u8be5\\\\u7528\\\\u6237\\\\u5df2\\\\u88ab\\\\u6ce8\\\\u518c", - "url": "https://vulfocus.cn/api/user/register/", - "existUsername": "qianxiao324", - "nonExistUsername": "youga777888", - "body": "{\"username\":\"%s\",\"password\":\"123456\",\"email\":\"1@qq.com\",\"checkpass\":\"123456\",\"captcha_code\":\"1111\",\"hashkey\":\"f73d55f51cb61f2a69d085cea36b1ff11da052f3\"}", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "Content-Type": "application/json" - }, - "userPage": "https://vulfocus.cn/#/userrank/list", - "type": "username" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "iteye": { - "url": "https://www.iteye.com/", - "type": "Programmer", - "isNSFW": false, - "sleep": 2, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.iteye.com/blog/user/%s", - "existUsername": "kristy-yy", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.iteye.com/blog/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "unsplash": { - "url": "https://unsplash.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://unsplash.com/@%s", - "existUsername": "jenny", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://unsplash.com/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CA" - } - }, - "seebug-paper": { - "url": "https://paper.seebug.org/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://paper.seebug.org/users/author/?nickname=%s", - "existUsername": "Y4tacker", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://paper.seebug.org/users/author/?nickname=%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "douban": { - "url": "https://www.douban.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.douban.com/people/%s/", - "existUsername": "michellemou", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.douban.com/people/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "infoq": { - "url": "https://www.infoq.cn/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.infoq.cn/u/%s/", - "existUsername": "tiamozhang", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.infoq.cn/u/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "threatpost": { - "url": "https://threatpost.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://threatpost.com/author/%s/", - "existUsername": "natenelson", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://threatpost.com/author/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "infosecurity-magazine": { - "url": "https://www.infosecurity-magazine.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.infosecurity-magazine.com/profile/%s/", - "existUsername": "alessandro-mascellino", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.infosecurity-magazine.com/profile/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "xsssql": { - "url": "http://www.xsssql.com/", - "type": "CyberSecurity", - "isNSFW": false, - "sleep": 3, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "http://www.xsssql.com/article/author/%s", - "existUsername": "weblcx", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "http://www.xsssql.com/article/author/%s", - "status": false - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "studygolang": { - "url": "https://studygolang.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "位会员加入了 Go语言中文网。", - "existRegex": "注册时间", - "url": "https://studygolang.com/user/%s", - "existUsername": "polaris", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://studygolang.com/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "0x00sec": { - "url": "https://0x00sec.org/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://0x00sec.org/u/%s", - "existUsername": "risklimit", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://0x00sec.org/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "NL" - } - }, - "ruby-china": { - "url": "https://ruby-china.org/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://ruby-china.org/%s", - "existUsername": "Rei", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://ruby-china.org/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "tttang": { - "url": "https://tttang.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "404 Not Found", - "existRegex": "列表", - "url": "https://tttang.com/user/%s", - "existUsername": "巴斯.zznQ", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://tttang.com/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "t00ls": { - "url": "https://www.t00ls.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "用户名已经被他人使用", - "url": "https://www.t00ls.com/ajax.php?infloat=register&handlekey=register&action=checkusername&username=%s&inajax=1&ajaxtarget=returnmessage4", - "existUsername": "Bypass", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.t00ls.com/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "90sec": { - "url": "https://forum.90sec.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "true", - "existRegex": "false", - "url": "https://forum.90sec.com/u/check_username?username=%s&email=", - "existUsername": "admin05", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "X-Requested-With": "XMLHttpRequest" - }, - "userPage": "https://forum.90sec.com/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "thehackerworld": { - "url": "https://www.thehackerworld.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.thehackerworld.com/profile/%s/", - "existUsername": "1-this-cht", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.thehackerworld.com/profile/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "sspai": { - "url": "https://sspai.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "用户数据不存在", - "existRegex": "id", - "url": "https://sspai.com/api/v1/information/user/activity/page/get?limit=10&offset=0&slug=%s", - "existUsername": "waychane", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://sspai.com/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "ld246": { - "url": "https://ld246.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "404 Not Found!", - "existRegex": "在线时长", - "url": "https://ld246.com/member/%s", - "existUsername": "hyggge", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://ld246.com/member/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "qyer": { - "url": "https://bbs.qyer.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "510001", - "url": "https://bbs.qyer.com/qcross/passport/register/mobile/checkname", - "existUsername": "fbird22", - "nonExistUsername": "youga777888", - "body": "username=%s", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "Content-Type": "application/x-www-form-urlencoded;charset=UTF-8" - }, - "userPage": "https://bbs.qyer.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "jandan": { - "url": "http://jandan.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "http://jandan.net/p/author/%s", - "existUsername": "Diehard", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "http://jandan.net/p/author/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "ifanr": { - "url": "https://www.ifanr.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "共发表了", - "url": "https://www.ifanr.com/author/%s", - "existUsername": "aifan", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.ifanr.com/author/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "twle": { - "url": "https://www.twle.cn/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "Member Not Found", - "existRegex": "加入于", - "url": "https://www.twle.cn/member/%s", - "existUsername": "yufei", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.twle.cn/member/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "chouti": { - "url": "https://dig.chouti.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "收到进入热榜消息", - "existRegex": "nickSignInAudit", - "url": "https://dig.chouti.com/users/profile?jid=%s", - "existUsername": "meigancai", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://dig.chouti.com/publish/links/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "gaoloumi": { - "url": "https://gaoloumi.cc/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "succeed", - "existRegex": "logging", - "url": "https://gaoloumi.cc/forum.php?mod=ajax&inajax=yes&infloat=register&handlekey=register&ajaxmenu=1&action=checkusername&username=%s", - "existUsername": "billy_2009", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://gaoloumi.cc/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "zol": { - "url": "https://my.zol.com.cn/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "user-namebox", - "url": "https://my.zol.com.cn/%s/", - "existUsername": "lo62ir", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://my.zol.com.cn/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "producthunt": { - "url": "https://www.producthunt.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.producthunt.com/@%s", - "existUsername": "aaronoleary", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.producthunt.com/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "yystv": { - "url": "https://www.yystv.cn/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "email, phone", - "nonExistRegex": "[20404|20407]", - "url": "https://www.yystv.cn/account/send_forget_passw", - "nonExistUsername": "youga777888", - "body": "name=%s&verify=", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" - }, - "userPage": "https://www.yystv.cn/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "bilibili": { - "url": "https://www.bilibili.com", - "type": "Video", - "isNSFW": false, - "detect": [ - { - "type": "google", - "searchUrl": "https://www.google.com/search?q=%s", - "search": "site:space.bilibili.com%%20%%22%s%%22" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "ichunqiu": { - "url": "https://www.ichunqiu.com", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "google", - "searchUrl": "https://www.google.com/search?q=%s", - "search": "site:www.ichunqiu.com.com%%20%%22%s%%22" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "eastmoney": { - "url": "https://www.eastmoney.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "google", - "searchUrl": "https://www.google.com/search?q=%s", - "search": "site:eastmoney.com%%20%%22%s%%22" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "threatbook": { - "url": "https://x.threatbook.com", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "google", - "searchUrl": "https://www.google.com/search?q=%s", - "search": "site:x.threatbook.com%%20%%22%s%%22" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "baidu-zhidao": { - "url": "https://zhidao.baidu.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "google", - "searchUrl": "https://www.google.com/search?q=%s", - "search": "site:zhidao.baidu.com%%20%%22%s%%22" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "baidu-tieba": { - "url": "https://tieba.baidu.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "google", - "searchUrl": "https://www.google.com/search?q=%s", - "search": "site:tieba.baidu.com%%20%%22%s%%22" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "anquanke": { - "url": "https://www.anquanke.com", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "google", - "searchUrl": "https://www.google.com/search?q=%s", - "search": "site:www.anquanke.com%%20%%22%s%%22" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "secpulse": { - "url": "https://www.secpulse.com", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "google", - "searchUrl": "https://www.google.com/search?q=%s", - "search": "site:www.secpulse.com%%20%%22%s%%22%%20inurl:author" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "xz": { - "url": "https://xz.aliyun.com", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "google", - "searchUrl": "https://www.google.com/search?q=%s", - "search": "site:xz.aliyun.com%%20%%22%s%%22" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "butian": { - "url": "https://forum.butian.net", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "google", - "searchUrl": "https://www.google.com/search?q=%s", - "search": "site:forum.butian.net%%20%%22%s%%22" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "eastmoney-src": { - "url": "https://security.eastmoney.com", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "google", - "searchUrl": "https://www.google.com/search?q=%s", - "search": "site:security.eastmoney.com%%20%%22%s%%22" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "ywhack": { - "url": "https://forum.ywhack.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "用户名已经被他人使用", - "url": "https://forum.ywhack.com/ajax.php?infloat=register&handlekey=register&action=checkusername&username=%s&inajax=1&ajaxtarget=returnmessage4", - "existUsername": "admin", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://forum.ywhack.com/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "huoxian": { - "url": "https://zone.huoxian.cn/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "phone", - "existRegex": "true", - "url": "https://6p9ocl.authing.cn/api/v2/users/find?key=%s&type=phone&userPoolId=61dbe991401e129d640b1da6", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "ttps://zone.huoxian.cn/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "3dnews": { - "url": "http://forum.3dnews.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "stats_mini", - "url": "http://forum.3dnews.ru/member.php?username=%s", - "existUsername": "", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "http://forum.3dnews.ru/member.php?username=%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "7cups": { - "url": "https://www.7cups.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.7cups.com/@%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.7cups.com/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "8tracks": { - "url": "https://8tracks.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "This page has vanished", - "url": "https://8tracks.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://8tracks.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "apclips": { - "url": "https://apclips.com/", - "type": "Video", - "isNSFW": true, - "detect": [ - { - "type": "username", - "nonExistRegex": "Amateur Porn Content Creators", - "url": "https://apclips.com/%s", - "existUsername": "onlybbyraq", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://apclips.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "about-me": { - "url": "https://about.me/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://about.me/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://about.me/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "academia-edu": { - "url": "https://www.academia.edu/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://independent.academia.edu/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://independent.academia.edu/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "airbit": { - "url": "https://airbit.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://airbit.com/%s", - "existUsername": "airbit", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://airbit.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "airliners": { - "url": "https://www.airliners.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.airliners.net/user/%s/profile/photos", - "existUsername": "yushinlin", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.airliners.net/user/%s/profile/photos" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "alik-cz": { - "url": "https://www.alik.cz/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.alik.cz/u/%s", - "existUsername": "julian", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.alik.cz/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CZ" - } - }, - "amino": { - "url": "https://aminoapps.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://aminoapps.com/u/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://aminoapps.com/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "anilist": { - "url": "https://anilist.co/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://anilist.co/graphql", - "body": { - "query": "query($id:Int,$name:String){User(id:$id,name:$name){id name previousNames{name updatedAt}avatar{large}bannerImage about isFollowing isFollower donatorTier donatorBadge createdAt moderatorRoles isBlocked bans options{profileColor restrictMessagesToFollowing}mediaListOptions{scoreFormat}statistics{anime{count meanScore standardDeviation minutesWatched episodesWatched genrePreview:genres(limit:10,sort:COUNT_DESC){genre count}}manga{count meanScore standardDeviation chaptersRead volumesRead genrePreview:genres(limit:10,sort:COUNT_DESC){genre count}}}stats{activityHistory{date amount level}}favourites{anime{edges{favouriteOrder node{id type status(version:2)format isAdult bannerImage title{userPreferred}coverImage{large}startDate{year}}}}manga{edges{favouriteOrder node{id type status(version:2)format isAdult bannerImage title{userPreferred}coverImage{large}startDate{year}}}}characters{edges{favouriteOrder node{id name{userPreferred}image{large}}}}staff{edges{favouriteOrder node{id name{userPreferred}image{large}}}}studios{edges{favouriteOrder node{id name}}}}}}", - "variables": { - "name": "%s" - } - }, - "existUsername": "Josh", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "Content-Type": "application/json;charset=UTF-8" - }, - "userPage": "https://anilist.co/user/%s/", - "status": false - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IS" - } - }, - "appledeveloper": { - "url": "https://developer.apple.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://developer.apple.com/forums/profile/%s", - "existUsername": "lio24d", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://developer.apple.com/forums/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "artstation": { - "url": "https://www.artstation.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.artstation.com/%s", - "existUsername": "Blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.artstation.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "asciinema": { - "url": "https://asciinema.org", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://asciinema.org/~%s", - "existUsername": "red", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://asciinema.org/~%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "askfedora": { - "url": "https://ask.fedoraproject.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://ask.fedoraproject.org/u/%s", - "existUsername": "red", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://ask.fedoraproject.org/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "audiojungle": { - "url": "https://audiojungle.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://audiojungle.net/user/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://audiojungle.net/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "AU" - } - }, - "autofrage": { - "url": "https://www.autofrage.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.autofrage.net/nutzer/%s", - "existUsername": "autofrage", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.autofrage.net/nutzer/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "blip-fm": { - "url": "https://blip.fm/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://blip.fm/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://blip.fm/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "bandcamp": { - "url": "https://www.bandcamp.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.bandcamp.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.bandcamp.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "behance": { - "url": "https://www.behance.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.behance.net/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.behance.net/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "bezuzyteczna": { - "url": "https://bezuzyteczna.pl", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://bezuzyteczna.pl/uzytkownicy/%s", - "existUsername": "Jackson", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://bezuzyteczna.pl/uzytkownicy/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "PL" - } - }, - "biggerpockets": { - "url": "https://www.biggerpockets.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.biggerpockets.com/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.biggerpockets.com/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "bikemap": { - "url": "https://www.bikemap.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.bikemap.net/en/u/%s/routes/created/", - "existUsername": "bikemap", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.bikemap.net/en/u/%s/routes/created/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "AT" - } - }, - "biohacking": { - "url": "https://forum.dangerousthings.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://forum.dangerousthings.com/u/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://forum.dangerousthings.com/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "bitbucket": { - "url": "https://bitbucket.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://bitbucket.org/%s/", - "existUsername": "white", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://bitbucket.org/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "AU" - } - }, - "bitwardenforum": { - "url": "https://bitwarden.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://community.bitwarden.com/u/%s/summary", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://community.bitwarden.com/u/%s/summary" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "blogger": { - "url": "https://www.blogger.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.blogspot.com", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.blogspot.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "bongacams": { - "url": "https://pt.bongacams.com", - "type": "Social", - "isNSFW": true, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://pt.bongacams.com/profile/%s", - "existUsername": "asuna-black", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://pt.bongacams.com/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "bookcrossing": { - "url": "https://www.bookcrossing.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.bookcrossing.com/mybookshelf/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.bookcrossing.com/mybookshelf/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "bravecommunity": { - "url": "https://community.brave.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://community.brave.com/u/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://community.brave.com/u/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "buymeacoffee": { - "url": "https://www.buymeacoffee.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://buymeacoff.ee/%s", - "existUsername": "red", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://buymeacoff.ee/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "buzzfeed": { - "url": "https://buzzfeed.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://buzzfeed.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://buzzfeed.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "cnet": { - "url": "https://www.cnet.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.cnet.com/profiles/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.cnet.com/profiles/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "ctan": { - "url": "https://ctan.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://ctan.org/author/%s", - "existUsername": "briggs", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://ctan.org/author/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "caddycommunity": { - "url": "https://caddy.community/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://caddy.community/u/%s/summary", - "existUsername": "taako_magnusen", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://caddy.community/u/%s/summary" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "cartalkcommunity": { - "url": "https://community.cartalk.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://community.cartalk.com/u/%s/summary", - "existUsername": "always_fixing", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://community.cartalk.com/u/%s/summary" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "championat": { - "url": "https://www.championat.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.championat.com/user/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.championat.com/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "chaos": { - "url": "https://chaos.social/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://chaos.social/@%s", - "existUsername": "ordnung", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://chaos.social/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "chaturbate": { - "url": "https://chaturbate.com", - "type": "Social", - "isNSFW": true, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://chaturbate.com/%s", - "existUsername": "cute18cute", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://chaturbate.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "choicecommunity": { - "url": "https://choice.community/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://choice.community/u/%s/summary", - "existUsername": "gordon", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://choice.community/u/%s/summary" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "clapper": { - "url": "https://clapperapp.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://clapperapp.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://clapperapp.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "cloudflarecommunity": { - "url": "https://community.cloudflare.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://community.cloudflare.com/u/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://community.cloudflare.com/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "clubhouse": { - "url": "https://www.clubhouse.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.clubhouse.com/@%s", - "existUsername": "waniathar", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.clubhouse.com/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IS" - } - }, - "codeforces": { - "url": "https://codeforces.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "solved for all time", - "url": "https://codeforces.com/profile/%s", - "existUsername": "tourist", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://codeforces.com/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IE" - } - }, - "codepen": { - "url": "https://codepen.io/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://codepen.io/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://codepen.io/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "coderwall": { - "url": "https://coderwall.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://coderwall.com/%s", - "existUsername": "hacker", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://coderwall.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "codewars": { - "url": "https://www.codewars.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.codewars.com/users/%s", - "existUsername": "example", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.codewars.com/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "coinvote": { - "url": "https://coinvote.cc/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://coinvote.cc/profile/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://coinvote.cc/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "colourlovers": { - "url": "https://www.colourlovers.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.colourlovers.com/lover/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.colourlovers.com/lover/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "coroflot": { - "url": "https://coroflot.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.coroflot.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.coroflot.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "crevado": { - "url": "https://crevado.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.crevado.com", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.crevado.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IS" - } - }, - "crowdin": { - "url": "https://crowdin.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://crowdin.com/profile/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://crowdin.com/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "cryptomatorforum": { - "url": "https://community.cryptomator.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://community.cryptomator.org/u/%s", - "existUsername": "michael", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://community.cryptomator.org/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "devcommunity": { - "url": "https://dev.to/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://dev.to/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://dev.to/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "dailymotion": { - "url": "https://www.dailymotion.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.dailymotion.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.dailymotion.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "deviantart": { - "url": "https://deviantart.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.deviantart.com", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.deviantart.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "discogs": { - "url": "https://www.discogs.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.discogs.com/user/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.discogs.com/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "discuss-elastic": { - "url": "https://discuss.elastic.co/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://discuss.elastic.co/u/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://discuss.elastic.co/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "disqus": { - "url": "https://disqus.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://disqus.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://disqus.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "dockerhub": { - "url": "https://hub.docker.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://hub.docker.com/v2/orgs/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://hub.docker.com/u/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "eintrachtfrankfurtforum": { - "url": "https://community.eintracht.de/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://community.eintracht.de/fans/%s", - "existUsername": "mmammu", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://community.eintracht.de/fans/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "envatoforum": { - "url": "https://forums.envato.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://forums.envato.com/u/%s", - "existUsername": "enabled", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://forums.envato.com/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "AU" - } - }, - "erome": { - "url": "https://www.erome.com/", - "type": "Social", - "isNSFW": true, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.erome.com/%s", - "existUsername": "bob", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.erome.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "etsy": { - "url": "https://www.etsy.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.etsy.com/shop/%s", - "existUsername": "JennyKrafts", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.etsy.com/shop/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "exposure": { - "url": "https://exposure.co/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.exposure.co/", - "existUsername": "jonasjacobsson", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.exposure.co/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "eyeem": { - "url": "https://www.eyeem.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.eyeem.com/u/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.eyeem.com/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "f3-cool": { - "url": "https://f3.cool/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://f3.cool/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://f3.cool/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "fameswap": { - "url": "https://fameswap.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://fameswap.com/user/%s", - "existUsername": "fameswap", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://fameswap.com/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IS" - } - }, - "fandom": { - "url": "https://www.fandom.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.fandom.com/u/%s", - "existUsername": "Jungypoo", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.fandom.com/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CA" - } - }, - "finanzfrage": { - "url": "https://www.finanzfrage.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.finanzfrage.net/nutzer/%s", - "existUsername": "finanzfrage", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.finanzfrage.net/nutzer/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "flickr": { - "url": "https://www.flickr.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.flickr.com/people/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.flickr.com/people/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "flightradar24": { - "url": "https://www.flightradar24.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://my.flightradar24.com/%s", - "existUsername": "jebbrooks", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://my.flightradar24.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "flipboard": { - "url": "https://flipboard.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://flipboard.com/@%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://flipboard.com/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "fortnitetracker": { - "url": "https://fortnitetracker.com/challenges", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://fortnitetracker.com/profile/all/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://fortnitetracker.com/profile/all/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IS" - } - }, - "fosstodon": { - "url": "https://fosstodon.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://fosstodon.org/@%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://fosstodon.org/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IS" - } - }, - "freesound": { - "url": "https://freesound.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://freesound.org/people/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://freesound.org/people/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "ES" - } - }, - "gamespot": { - "url": "https://www.gamespot.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.gamespot.com/profile/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.gamespot.com/profile/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CA" - } - }, - "genius-artists": { - "url": "https://genius.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://genius.com/artists/%s", - "existUsername": "genius", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://genius.com/artists/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "genius-users": { - "url": "https://genius.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://genius.com/%s", - "existUsername": "genius", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://genius.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "gesundheitsfrage": { - "url": "https://www.gesundheitsfrage.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.gesundheitsfrage.net/nutzer/%s", - "existUsername": "gutefrage", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.gesundheitsfrage.net/nutzer/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "getmyuni": { - "url": "https://getmyuni.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.getmyuni.com/user/%s", - "existUsername": "Upneet.Grover17", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.getmyuni.com/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "giantbomb": { - "url": "https://www.giantbomb.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.giantbomb.com/profile/%s/", - "existUsername": "bob", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.giantbomb.com/profile/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CA" - } - }, - "giphy": { - "url": "https://giphy.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://giphy.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://giphy.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "goodreads": { - "url": "https://www.goodreads.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.goodreads.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.goodreads.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "gradle": { - "url": "https://gradle.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://plugins.gradle.org/u/%s", - "existUsername": "jetbrains", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://plugins.gradle.org/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "gravatar": { - "url": "http://en.gravatar.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "http://en.gravatar.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "http://en.gravatar.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "gunsandammo": { - "url": "https://gunsandammo.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://forums.gunsandammo.com/profile/%s", - "existUsername": "adam", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://forums.gunsandammo.com/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "gutefrage": { - "url": "https://www.gutefrage.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.gutefrage.net/nutzer/%s", - "existUsername": "gutefrage", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.gutefrage.net/nutzer/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "hackthebox": { - "url": "https://forum.hackthebox.eu/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://forum.hackthebox.eu/profile/%s", - "existUsername": "angar", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://forum.hackthebox.eu/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "EU" - } - }, - "hackaday": { - "url": "https://hackaday.io/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://hackaday.io/%s", - "existUsername": "adam", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://hackaday.io/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "harvardscholar": { - "url": "https://scholar.harvard.edu/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://scholar.harvard.edu/%s", - "existUsername": "ousmanekane", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://scholar.harvard.edu/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "hashnode": { - "url": "https://hashnode.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://hashnode.com/@%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://hashnode.com/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "hubpages": { - "url": "https://hubpages.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://hubpages.com/@%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://hubpages.com/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "icq": { - "url": "https://icq.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://icq.im/%s/en", - "existUsername": "Micheal", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://icq.im/%s/en" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "irl": { - "url": "https://www.irl.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.irl.com/%s", - "existUsername": "hacker", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.irl.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "icons8community": { - "url": "https://community.icons8.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://community.icons8.com/u/%s/summary", - "existUsername": "thefourCraft", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://community.icons8.com/u/%s/summary" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "imgup-cz": { - "url": "https://imgup.cz/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://imgup.cz/%s", - "existUsername": "adam", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://imgup.cz/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CZ" - } - }, - "imgur": { - "url": "https://imgur.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://api.imgur.com/account/v1/accounts/%s?client_id=546c25a59c58ad7", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://imgur.com/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IS" - } - }, - "instructables": { - "url": "https://www.instructables.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.instructables.com/member/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.instructables.com/member/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "intigriti": { - "url": "https://app.intigriti.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "We didn't find what you're looking for", - "url": "https://app.intigriti.com/profile/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://app.intigriti.com/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "ionicforum": { - "url": "https://forum.ionicframework.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://forum.ionicframework.com/u/%s", - "existUsername": "theblue222", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://forum.ionicframework.com/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "issuu": { - "url": "https://issuu.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://issuu.com/%s", - "existUsername": "jenny", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://issuu.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "itch-io": { - "url": "https://itch.io/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.itch.io/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.itch.io/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "jellyfinweblate": { - "url": "https://translate.jellyfin.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://translate.jellyfin.org/user/%s/", - "existUsername": "EraYaN", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://translate.jellyfin.org/user/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CA" - } - }, - "jimdo": { - "url": "https://jimdosite.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.jimdosite.com", - "existUsername": "jenny", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.jimdosite.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "joplinforum": { - "url": "https://discourse.joplinapp.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://discourse.joplinapp.org/u/%s", - "existUsername": "laurent", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://discourse.joplinapp.org/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "keakr": { - "url": "https://www.keakr.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.keakr.com/en/profile/%s", - "existUsername": "beats", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.keakr.com/en/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "kaggle": { - "url": "https://www.kaggle.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.kaggle.com/%s", - "existUsername": "dansbecker", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.kaggle.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "keybase": { - "url": "https://keybase.io/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://keybase.io/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://keybase.io/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "lor": { - "url": "https://linux.org.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.linux.org.ru/people/%s/profile", - "existUsername": "red", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.linux.org.ru/people/%s/profile" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "launchpad": { - "url": "https://launchpad.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://launchpad.net/~%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://launchpad.net/~%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "lesswrong": { - "url": "https://www.lesswrong.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.lesswrong.com/users/@%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.lesswrong.com/users/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "linktree": { - "url": "https://linktr.ee/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://linktr.ee/%s", - "existUsername": "anne", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://linktr.ee/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "EE" - } - }, - "livejournal": { - "url": "https://www.livejournal.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.livejournal.com", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.livejournal.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "lobsters": { - "url": "https://lobste.rs/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://lobste.rs/u/%s", - "existUsername": "jcs", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://lobste.rs/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "lottiefiles": { - "url": "https://lottiefiles.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://lottiefiles.com/%s", - "existUsername": "lottiefiles", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://lottiefiles.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "lushstories": { - "url": "https://www.lushstories.com/", - "type": "Social", - "isNSFW": true, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.lushstories.com/profile/%s", - "existUsername": "chris_brown", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.lushstories.com/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "mmorpgforum": { - "url": "https://forums.mmorpg.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://forums.mmorpg.com/profile/%s", - "existUsername": "goku", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://forums.mmorpg.com/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "SE" - } - }, - "memrise": { - "url": "https://www.memrise.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.memrise.com/user/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.memrise.com/user/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "mixcloud": { - "url": "https://www.mixcloud.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.mixcloud.com/%s/", - "existUsername": "jenny", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.mixcloud.com/%s/", - "status": false - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "modelhub": { - "url": "https://www.modelhub.com/", - "type": "Social", - "isNSFW": true, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.modelhub.com/%s/videos", - "existUsername": "secretcrush", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.modelhub.com/%s/videos" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "monkeytype": { - "url": "https://monkeytype.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://api.monkeytype.com/users/%s/profile", - "existUsername": "Lost_Arrow", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://monkeytype.com/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "motorradfrage": { - "url": "https://www.motorradfrage.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.motorradfrage.net/nutzer/%s", - "existUsername": "gutefrage", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.motorradfrage.net/nutzer/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "munzee": { - "url": "https://www.munzee.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.munzee.com/m/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.munzee.com/m/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "myanimelist": { - "url": "https://myanimelist.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://myanimelist.net/profile/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://myanimelist.net/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "myminifactory": { - "url": "https://www.myminifactory.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.myminifactory.com/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.myminifactory.com/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "myspace": { - "url": "https://myspace.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://myspace.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://myspace.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "naver": { - "url": "https://naver.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://blog.naver.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://blog.naver.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "needrom": { - "url": "https://www.needrom.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.needrom.com/author/%s/", - "existUsername": "needrom", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.needrom.com/author/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "newgrounds": { - "url": "https://newgrounds.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.newgrounds.com", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.newgrounds.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CA" - } - }, - "nextcloudforum": { - "url": "https://nextcloud.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://help.nextcloud.com/u/%s/summary", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://help.nextcloud.com/u/%s/summary" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "nightbot": { - "url": "https://nightbot.tv/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://api.nightbot.tv/1/channels/t/%s", - "existUsername": "green", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://nightbot.tv/t/%s/commands" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "nintendolife": { - "url": "https://www.nintendolife.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.nintendolife.com/users/%s", - "existUsername": "goku", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.nintendolife.com/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "notabug-org": { - "url": "https://notabug.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://notabug.org/%s", - "existUsername": "red", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://notabug.org/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "NL" - } - }, - "nyaa-si": { - "url": "https://nyaa.si/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://nyaa.si/user/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://nyaa.si/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "si" - } - }, - "ogusers": { - "url": "https://ogu.gg/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://ogu.gg/%s", - "existUsername": "ogusers", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://ogu.gg/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - }, - "status": false - }, - "openstreetmap": { - "url": "https://www.openstreetmap.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.openstreetmap.org/user/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.openstreetmap.org/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "oraclecommunity": { - "url": "https://community.oracle.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://community.oracle.com/people/%s", - "existUsername": "dev", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://community.oracle.com/people/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "patreon": { - "url": "https://www.patreon.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.patreon.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.patreon.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "periscope": { - "url": "https://www.periscope.tv/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.periscope.tv/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.periscope.tv/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "pinkbike": { - "url": "https://www.pinkbike.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.pinkbike.com/u/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.pinkbike.com/u/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "playstore": { - "url": "https://play.google.com/store", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://play.google.com/store/apps/developer?id=%s", - "existUsername": "Facebook", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://play.google.com/store/apps/developer?id=%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "pokemonshowdown": { - "url": "https://pokemonshowdown.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://pokemonshowdown.com/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://pokemonshowdown.com/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "polarsteps": { - "url": "https://polarsteps.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://polarsteps.com/%s", - "existUsername": "james", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://polarsteps.com/%s", - "status": false - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IS" - } - }, - "polygon": { - "url": "https://www.polygon.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.polygon.com/users/%s", - "existUsername": "swiftstickler", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.polygon.com/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "pornhub": { - "url": "https://pornhub.com/", - "type": "Social", - "isNSFW": true, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://pornhub.com/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://pornhub.com/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "promodj": { - "url": "http://promodj.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "http://promodj.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "http://promodj.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "rajce-net": { - "url": "https://www.rajce.idnes.cz/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.rajce.idnes.cz/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.rajce.idnes.cz/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CZ" - } - }, - "rateyourmusic": { - "url": "https://rateyourmusic.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://rateyourmusic.com/~%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://rateyourmusic.com/~%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "rcloneforum": { - "url": "https://forum.rclone.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://forum.rclone.org/u/%s", - "existUsername": "ncw", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://forum.rclone.org/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CA" - } - }, - "redtube": { - "url": "https://www.redtube.com/", - "type": "Social", - "isNSFW": true, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.redtube.com/users/%s", - "existUsername": "hacker", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.redtube.com/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "redbubble": { - "url": "https://www.redbubble.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.redbubble.com/people/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.redbubble.com/people/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "reisefrage": { - "url": "https://www.reisefrage.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.reisefrage.net/nutzer/%s", - "existUsername": "reisefrage", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.reisefrage.net/nutzer/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "replit-com": { - "url": "https://replit.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://replit.com/@%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://replit.com/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "royalcams": { - "url": "https://royalcams.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://royalcams.com/profile/%s", - "existUsername": "asuna-black", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://royalcams.com/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "rumble": { - "url": "https://rumble.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://rumble.com/user/%s", - "existUsername": "John", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://rumble.com/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CA" - } - }, - "swapd": { - "url": "https://swapd.co/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://swapd.co/u/%s", - "existUsername": "swapd", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://swapd.co/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IS" - } - }, - "sbazar-cz": { - "url": "https://www.sbazar.cz/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.sbazar.cz/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.sbazar.cz/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CZ" - } - }, - "scratch": { - "url": "https://scratch.mit.edu/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://scratch.mit.edu/users/%s", - "existUsername": "griffpatch", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://scratch.mit.edu/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "shitpostbot5000": { - "url": "https://www.shitpostbot.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.shitpostbot.com/user/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.shitpostbot.com/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "shpock": { - "url": "https://www.shpock.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.shpock.com/shop/%s/items", - "existUsername": "user", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.shpock.com/shop/%s/items" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "AT" - } - }, - "sketchfab": { - "url": "https://sketchfab.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://sketchfab.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://sketchfab.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "slack": { - "url": "https://slack.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.slack.com", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.slack.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "slant": { - "url": "https://www.slant.co/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.slant.co/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.slant.co/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IS" - } - }, - "slideshare": { - "url": "https://slideshare.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://slideshare.net/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://slideshare.net/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "slides": { - "url": "https://slides.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://slides.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://slides.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "smugmug": { - "url": "https://smugmug.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.smugmug.com", - "existUsername": "winchester", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.smugmug.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "soundcloud": { - "url": "https://soundcloud.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://soundcloud.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://soundcloud.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "splice": { - "url": "https://splice.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://splice.com/%s", - "existUsername": "splice", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://splice.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "splits-io": { - "url": "https://splits.io", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://splits.io/users/%s", - "existUsername": "cambosteve", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://splits.io/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "sporcle": { - "url": "https://www.sporcle.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.sporcle.com/user/%s/people", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.sporcle.com/user/%s/people" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "sportlerfrage": { - "url": "https://www.sportlerfrage.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.sportlerfrage.net/nutzer/%s", - "existUsername": "sportlerfrage", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.sportlerfrage.net/nutzer/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "sportsru": { - "url": "https://www.sports.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.sports.ru/profile/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.sports.ru/profile/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "tldrlegal": { - "url": "https://tldrlegal.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://tldrlegal.com/users/%s/", - "existUsername": "kevin", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://tldrlegal.com/users/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "traktrain": { - "url": "https://traktrain.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://traktrain.com/%s", - "existUsername": "traktrain", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://traktrain.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "tellonym-me": { - "url": "https://tellonym.me/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://tellonym.me/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://tellonym.me/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "tenor": { - "url": "https://tenor.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://tenor.com/users/%s", - "existUsername": "red", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://tenor.com/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "themeforest": { - "url": "https://themeforest.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://themeforest.net/user/%s", - "existUsername": "user", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://themeforest.net/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "AU" - } - }, - "tnaflix": { - "url": "https://www.tnaflix.com/", - "type": "Social", - "isNSFW": true, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.tnaflix.com/profile/%s", - "existUsername": "hacker", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.tnaflix.com/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CY" - } - }, - "tradingview": { - "url": "https://www.tradingview.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.tradingview.com/u/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.tradingview.com/u/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "trakt": { - "url": "https://www.trakt.tv/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.trakt.tv/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.trakt.tv/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "trashboxru": { - "url": "https://trashbox.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://trashbox.ru/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://trashbox.ru/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "trawelling": { - "url": "https://traewelling.de/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://traewelling.de/@%s", - "existUsername": "lassestolley", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://traewelling.de/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "tuna": { - "url": "https://tuna.voicemod.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://tuna.voicemod.net/user/%s", - "existUsername": "bob", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://tuna.voicemod.net/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "ES" - } - }, - "tweakers": { - "url": "https://tweakers.net", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://tweakers.net/gallery/%s", - "existUsername": "femme", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://tweakers.net/gallery/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "NL" - } - }, - "ultimate-guitar": { - "url": "https://ultimate-guitar.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://ultimate-guitar.com/u/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://ultimate-guitar.com/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "vsco": { - "url": "https://vsco.co/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://vsco.co/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://vsco.co/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "vero": { - "url": "https://vero.co/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://vero.co/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://vero.co/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "vimeo": { - "url": "https://vimeo.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://vimeo.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://vimeo.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "wicgforum": { - "url": "https://discourse.wicg.io/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://discourse.wicg.io/u/%s/summary", - "existUsername": "stefano", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://discourse.wicg.io/u/%s/summary" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "warriorforum": { - "url": "https://www.warriorforum.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.warriorforum.com/members/%s.html", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.warriorforum.com/members/%s.html" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "wattpad": { - "url": "https://www.wattpad.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.wattpad.com/user/%s", - "existUsername": "Dogstho7951", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.wattpad.com/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "webnode": { - "url": "https://www.webnode.cz/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.webnode.cz/", - "existUsername": "radkabalcarova", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.webnode.cz/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CZ" - } - }, - "weblate": { - "url": "https://hosted.weblate.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://hosted.weblate.org/user/%s/", - "existUsername": "adam", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://hosted.weblate.org/user/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CZ" - } - }, - "weebly": { - "url": "https://weebly.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.weebly.com/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.weebly.com/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "whonixforum": { - "url": "https://forums.whonix.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://forums.whonix.org/u/%s/summary", - "existUsername": "red", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://forums.whonix.org/u/%s/summary" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "windy": { - "url": "https://windy.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://community.windy.com/user/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://community.windy.com/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CZ" - } - }, - "wix": { - "url": "https://wix.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.wix.com", - "existUsername": "support", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.wix.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "wolframalphaforum": { - "url": "https://community.wolfram.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://community.wolfram.com/web/%s/home", - "existUsername": "unico", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://community.wolfram.com/web/%s/home" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "wykop": { - "url": "https://www.wykop.pl", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.wykop.pl/ludzie/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.wykop.pl/ludzie/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "PL" - } - }, - "xboxgamertag": { - "url": "https://xboxgamertag.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://xboxgamertag.com/search/%s", - "existUsername": "red", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://xboxgamertag.com/search/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "GB" - } - }, - "xvideos": { - "url": "https://xvideos.com/", - "type": "Social", - "isNSFW": true, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://xvideos.com/profiles/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://xvideos.com/profiles/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CZ" - } - }, - "yandexmusic": { - "url": "https://music.yandex", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://music.yandex/users/%s/playlists", - "existUsername": "ya.playlist", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://music.yandex/users/%s/playlists" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "youpic": { - "url": "https://youpic.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://youpic.com/photographer/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://youpic.com/photographer/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "youporn": { - "url": "https://youporn.com", - "type": "Social", - "isNSFW": true, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://youporn.com/uservids/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://youporn.com/uservids/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "youtubechannel": { - "url": "https://www.youtube.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.youtube.com/c/%s", - "existUsername": "mkbhd", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.youtube.com/c/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "youtubeuser": { - "url": "https://www.youtube.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.youtube.com/user/%s", - "existUsername": "pewdiepie", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.youtube.com/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "akniga": { - "url": "https://akniga.org/profile/blue/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://akniga.org/profile/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://akniga.org/profile/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "IS" - } - }, - "authorstream": { - "url": "http://www.authorstream.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "http://www.authorstream.com/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "http://www.authorstream.com/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "chaos-social": { - "url": "https://chaos.social/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://chaos.social/@%s", - "existUsername": "rixx", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://chaos.social/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "couchsurfing": { - "url": "https://www.couchsurfing.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.couchsurfing.com/people/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.couchsurfing.com/people/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "d3ru": { - "url": "https://d3.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://d3.ru/user/%s/posts", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://d3.ru/user/%s/posts" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "dating-ru": { - "url": "http://dating.ru", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "http://dating.ru/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "http://dating.ru/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "drive2": { - "url": "https://www.drive2.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.drive2.ru/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.drive2.ru/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "egpu": { - "url": "https://egpu.io/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://egpu.io/forums/profile/%s/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://egpu.io/forums/profile/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "ebio-gg": { - "url": "https:/ebio.gg", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://ebio.gg/@%s", - "existUsername": "dev", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://ebio.gg/@%s", - "status": false - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "eintracht": { - "url": "https://eintracht.de", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://community.eintracht.de/fans/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://community.eintracht.de/fans/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "fixya": { - "url": "https://www.fixya.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.fixya.com/users/%s", - "existUsername": "adam", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.fixya.com/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "fl": { - "url": "https://www.fl.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.fl.ru/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.fl.ru/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "geocaching": { - "url": "https://www.geocaching.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.geocaching.com/p/default.aspx?u=%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.geocaching.com/p/default.aspx?u=%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "gfycat": { - "url": "https://gfycat.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://gfycat.com/@%s", - "existUsername": "Test", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://gfycat.com/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "habr": { - "url": "https://habr.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://habr.com/ru/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://habr.com/ru/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "hackster": { - "url": "https://www.hackster.io", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.hackster.io/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.hackster.io/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "irecommend": { - "url": "https://irecommend.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://irecommend.ru/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://irecommend.ru/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "jbzd": { - "url": "https://jbzd.com.pl/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://jbzd.com.pl/uzytkownik/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://jbzd.com.pl/uzytkownik/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "PL" - } - }, - "kwork": { - "url": "https://www.kwork.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://kwork.ru/user/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://kwork.ru/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "last-fm": { - "url": "https://last.fm/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://last.fm/user/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://last.fm/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "UK" - } - }, - "leasehackr": { - "url": "https://forum.leasehackr.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://forum.leasehackr.com/u/%s/summary/", - "existUsername": "adam", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://forum.leasehackr.com/u/%s/summary/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "livelib": { - "url": "https://www.livelib.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.livelib.ru/reader/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.livelib.ru/reader/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "mastodon-cloud": { - "url": "https://mastodon.cloud/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://mastodon.cloud/@%s", - "existUsername": "TheAdmin", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://mastodon.cloud/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "JP" - } - }, - "mastodon-social": { - "url": "https://chaos.social/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://mastodon.social/@%s", - "existUsername": "Gargron", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://mastodon.social/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "mastodon-technology": { - "url": "https://mastodon.xyz/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://mastodon.technology/@%s", - "existUsername": "ashfurrow", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://mastodon.technology/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "mastodon-xyz": { - "url": "https://mastodon.xyz/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://mastodon.xyz/@%s", - "existUsername": "TheKinrar", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://mastodon.xyz/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "mercadolivre": { - "url": "https://www.mercadolivre.com.br", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.mercadolivre.com.br/perfil/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.mercadolivre.com.br/perfil/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "BR" - } - }, - "moikrug": { - "url": "https://moikrug.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://moikrug.ru/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://moikrug.ru/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "mstdn-io": { - "url": "https://mstdn.io/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://mstdn.io/@%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://mstdn.io/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "nairaland-com": { - "url": "https://www.nairaland.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.nairaland.com/%s", - "existUsername": "red", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.nairaland.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "nnru": { - "url": "https://www.nn.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.www.nn.ru/", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.www.nn.ru/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "note": { - "url": "https://note.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://note.com/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://note.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "npm": { - "url": "https://www.npmjs.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.npmjs.com/~%s", - "existUsername": "kennethsweezy", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.npmjs.com/~%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "osu!": { - "url": "https://osu.ppy.sh/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://osu.ppy.sh/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://osu.ppy.sh/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "AU" - } - }, - "pikabu": { - "url": "https://pikabu.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://pikabu.ru/@%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://pikabu.ru/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "pr0gramm": { - "url": "https://pr0gramm.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "304", - "url": "https://api.polarsteps.com/users/byusername/%s", - "existUsername": "Guschtl", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://pr0gramm.com/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "queer-af": { - "url": "https://queer.af/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://queer.af/@%s", - "existUsername": "erincandescent", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://queer.af/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "satsisru": { - "url": "https://satsis.info/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://satsis.info/user/%s", - "existUsername": "red", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://satsis.info/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "UA" - } - }, - "sessionize": { - "url": "https://sessionize.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://sessionize.com/%s", - "existUsername": "jason-mayes", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://sessionize.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "HR" - } - }, - "skyrock": { - "url": "https://skyrock.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://%s.skyrock.com/", - "existUsername": "red", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://%s.skyrock.com/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "FR" - } - }, - "social-tchncs": { - "url": "https://social.tchncs.de/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://social.tchncs.de/@%s", - "existUsername": "Milan", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://social.tchncs.de/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "DE" - } - }, - "spletnik": { - "url": "https://spletnik.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://spletnik.ru/user/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://spletnik.ru/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "svidbook": { - "url": "https://www.svidbook.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.svidbook.ru/user/%s", - "existUsername": "green", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.svidbook.ru/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "toster": { - "url": "https://www.toster.ru/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.toster.ru/user/%s/answers", - "existUsername": "adam", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.toster.ru/user/%s/answers" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "RU" - } - }, - "uid": { - "url": "https://uid.me/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "http://uid.me/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "http://uid.me/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "wiki-vg": { - "url": "https://wiki.vg/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://wiki.vg/User:%s", - "existUsername": "Auri", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://wiki.vg/User:%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "wykop-pl": { - "url": "https://wykop.pl", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.wykop.pl/ludzie/%s", - "existUsername": "janusz-nowak", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.wykop.pl/ludzie/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "PL" - } - }, - "xhamster": { - "url": "https://xhamster.com", - "type": "Social", - "isNSFW": true, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://xhamster.com/users/%s", - "existUsername": "blue", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://xhamster.com/users/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CY" - } - }, - "znanylekarz-pl": { - "url": "https://znanylekarz.pl", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.znanylekarz.pl/%s", - "existUsername": "janusz-nowak", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.znanylekarz.pl/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "PL" - } - }, - "newsmth": { - "url": "https://www.newsmth.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "0500", - "existRegex": "face_url", - "url": "https://www.newsmth.net/nForum/user/query/%s.json", - "existUsername": "TDK1", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "X-Requested-With": "XMLHttpRequest" - }, - "userPage": "https://www.newsmth.net/nForum/user/query/%s.json" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "bbspku": { - "url": "https://bbs.pku.edu.cn/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "avatar_frame", - "url": "https://bbs.pku.edu.cn/v2/ajax/get_userinfo_by_names.php", - "existUsername": "moony", - "nonExistUsername": "youga777888", - "body": "names=\%5B\%22%s\%22\%5D", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "X-Requested-With": "XMLHttpRequest" - }, - "userPage": "https://bbs.pku.edu.cn/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "fishpi": { - "url": "https://fishpi.cn/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://fishpi.cn/member/%s", - "existUsername": "csfwff", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://fishpi.cn/member/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "ali213": { - "url": "https://game.ali213.net/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "抱歉,您指定的用户空间不存在", - "url": "https://game.ali213.net/space-username-%s.html", - "existUsername": "freedomboy1979", - "nonExistUsername": "youga777888", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://game.ali213.net/space-username-%s.html" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "4399": { - "url": "https://www.4399.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "用户名已被注册", - "nonExistRegex": "0", - "url": "https://ptlogin.4399.com/ptlogin/isExist.do?username=%s&appId=u4399®Mode=reg_normal&v=2", - "existUsername": "123123", - "nonExistUsername": "1231pixn123", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.4399.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "7k7k": { - "url": "https://web.7k7k.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "\\\\u7528\\\\u6237\\\\u5df2\\\\u5b58\\\\u5728\\\\uff01", - "nonExistRegex": "\\\\u7528\\\\u6237\\\\u540d\\\\u53ef\\\\u7528\\\\uff01", - "url": "https://web.7k7k.com/source/core_Post.php", - "existUsername": "123123", - "nonExistUsername": "1231pixn123", - "body": "param=%s&name=name", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8", - "X-Requested-With": "XMLHttpRequest" - }, - "userPage": "https://web.7k7k.com/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "doc88": { - "url": "https://www.doc88.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "1", - "nonExistRegex": "0", - "url": "https://www.doc88.com/member.php?act=check&username=%s", - "existUsername": "123123", - "nonExistUsername": "12x31pixn123", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.doc88.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "huazhu": { - "url": "https://m.huazhu.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "phone", - "nonExistRegex": "未找到与该手机号绑定的账户", - "url": "https://m.huazhu.com/api/public/sendCodeNoLogin?param=%s", - "body": "{}", - "existUsername": "123123", - "nonExistUsername": "13188554520", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "Content-Type": "application/json" - }, - "userPage": "https://m.huazhu.com", - "status": false - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "1point3acres": { - "url": "https://www.1point3acres.com", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "alert_error", - "url": "https://www.1point3acres.com/bbs/space-username-%s.html", - "existUsername": "luckymeteor666", - "nonExistUsername": "luckymeta123eor666", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.1point3acres.com/bbs/space-username-%s.html" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "okjike": { - "url": "https://web.okjike.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "phone", - "nonExistRegex": "Expected a value of type", - "url": "https://web-api.okjike.com/api/graphql", - "body": "{\"operationName\":\"GetSmsCode\",\"variables\":{\"mobilePhoneNumber\":\"%s\",\"areaCode\":\"+86\"},\"query\":\"mutation GetSmsCode($mobilePhoneNumber: String!, $areaCode: String!) {\\n getSmsCode(action: PHONE_MIX_LOGIN, mobilePhoneNumber: $mobilePhoneNumber, areaCode: $areaCode) {\\n action\\n __typename\\n }\\n}\\n\"}\n", - "existUsername": "123123", - "nonExistUsername": "13188554520", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "Content-Type": "application/json" - }, - "userPage": "https://web.okjike.com/", - "sleep": 10 - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - - "cstis": { - "url": "https://cstis.cn", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "email", - "nonExistRegex": "\\\\u6b64\\\\u90ae\\\\u7bb1\\\\u4e0d\\\\u5b58\\\\u5728", - "url": "https://cstis.cn/ts/getcode?email=%s&type=2", - "nonExistUsername": "13188554520@qq.com", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://cstis.cn/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "dzone": { - "url": "https://dzone.com", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "exists", - "url": "https://dzone.com/services/widget/users-registration/validateUsername", - "existUsername": "Jade_Rubick", - "nonExistUsername": "Jade_Rubickaa", - "body": "{\"username\":\"%s\"}", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "Content-Type": "application/json", - "Accept": "application/json, text/plain, */*", - "Cookie": "TH_CSRF=8995242996830184179", - "X-Th-Csrf": "8995242996830184179" - }, - "userPage": "https://dzone.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "dalao": { - "url": "https://dalao.net/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "password", - "nonExistRegex": "email", - "url": "https://dalao.net/user-login.htm", - "existUsername": "不讲李", - "nonExistUsername": "Jade_Rubickaa", - "body": "email=%s&password=4297f44b13955235245b2497399d7a93", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8", - "X-Requested-With": "XMLHttpRequest" - }, - "userPage": "https://dalao.net/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "medium": { - "url": "https://medium.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "<h2 class=\"fs b ft fu fv fw fx\"><span class=\"fn\">404</span></h2>", - "url": "https://medium.com/@%s", - "existUsername": "james_73717", - "nonExistUsername": "james_737171", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://medium.com/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - - "matters": { - "url": "https://matters.town/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "styles_errorMessage", - "url": "https://matters.town/@%s", - "existUsername": "LuzWu222", - "nonExistUsername": "LuzWu2221", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://matters.town/@%s", - "sleep": 3 - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "0xffff": { - "url": "https://0xffff.one/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://0xffff.one/u/%s", - "existUsername": "ryan4yin", - "nonExistUsername": "ryan4yin1x", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://0xffff.one/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "optzmx": { - "url": "http://www.optzmx.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "email", - "nonExistRegex": "succeed", - "url": "http://www.optzmx.com/forum.php?mod=ajax&inajax=yes&infloat=register&handlekey=register&ajaxmenu=1&action=checkemail&email=%s", - "existUsername": "admin@admin.com", - "nonExistUsername": "admin@admin.com", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "http://www.optzmx.com/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "qsnctf": { - "url": "https://bbs.qsnctf.com/", - "type": "CyberSecurity", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "该用户名已注册,请更换用户名", - "url": "https://bbs.qsnctf.com/forum.php?mod=ajax&inajax=yes&infloat=register&handlekey=register&ajaxmenu=1&action=checkusername&username=%s", - "existUsername": "6Fgenshin", - "nonExistUsername": "6Fgenshin12331", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://bbs.qsnctf.com" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "cnodejs": { - "url": "https://cnodejs.org/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://cnodejs.org/user/%s", - "existUsername": "leapon", - "nonExistUsername": "leaponasdf", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://cnodejs.org/user/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "react-china": { - "url": "http://react-china.org/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "http://react-china.org/u/%s", - "existUsername": "makshow", - "nonExistUsername": "makshow123", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "http://react-china.org/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - - "xiaozhuanlan": { - "url": "https://xiaozhuanlan.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "404 - 小专栏", - "url": "https://xiaozhuanlan.com/u/%s", - "existUsername": "biudesign", - "nonExistUsername": "biudesignasdf", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://xiaozhuanlan.com/u/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN" - } - }, - "classcentral": { - "url": "https://www.classcentral.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.classcentral.com/@%s", - "existUsername": "jack", - "nonExistUsername": "jackrose", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "Accept-Language": "en-US,en;q=0.9" - }, - "userPage": "https://www.classcentral.com/@%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - - "pinterest": { - "url": "https://www.pinterest.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "existRegex": "pinterestapp:followers", - - "url": "https://www.pinterest.com/%s/", - "existUsername": "hardlysamie", - "nonExistUsername": "hardlysasdfamie", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.pinterest.com/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - - "opensea": { - "url": "https://opensea.io/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://opensea.io/%s", - "existUsername": "BYOPContracts", - "nonExistUsername": "BYOPContracasdfts", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://opensea.io/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - - "instagram": { - "url": "https://www.instagram.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.instagram.com/api/v1/users/web_profile_info/?username=%s", - "existUsername": "zengshuohui", - "nonExistUsername": "zengshuohuxixasdf", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", - "X-Ig-App-Id": "936619743392459" - }, - "userPage": "https://www.instagram.com/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "rottentomatoes": { - "url": "https://www.rottentomatoes.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.rottentomatoes.com/critics/%s/movies", - "existUsername": "kimber-myers", - "nonExistUsername": "kimber-myxxxers", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.rottentomatoes.com/critics/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - - "openclipart": { - "url": "https://openclipart.org/", - "type": "Socail", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "This artist does not exist", - "url": "https://openclipart.org/artist/%s", - "existUsername": "revzack", - "nonExistUsername": "revzackasd", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://openclipart.org/artist/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - - "thenextweb": { - "url": "https://thenextweb.com/", - "type": "Programmer", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://thenextweb.com/author/%s", - "existUsername": "linnea", - "nonExistUsername": "linnea123", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://thenextweb.com/author/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - - "theverge": { - "url": "https://www.theverge.com/", - "type": "Socail", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.theverge.com/authors/%s", - "existUsername": "", - "nonExistUsername": "", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.theverge.com/authors/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - - "engadget": { - "url": "https://www.engadget.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.engadget.com/about/editors/%s/", - "existUsername": "igor-bonifacic", - "nonExistUsername": "igor-bonifacicxx", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.engadget.com/about/editors/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - - "techcrunch": { - "url": "https://techcrunch.com/", - "type": "CyberSecurity", - "isNSFW": false, - "sleep": 3, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://techcrunch.com/author/%s/", - "existUsername": "zack-whittaker", - "nonExistUsername": "zack-whittakerasdf", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://techcrunch.com/author/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - - "kickstarter": { - "url": "https://www.kickstarter.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.kickstarter.com/profile/%s", - "existUsername": "microcosmpublishing", - "nonExistUsername": "microcosmpublishingasdf", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.kickstarter.com/profile/%s", - "status": false - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - - "freepik": { - "url": "https://www.freepik.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://www.freepik.com/author/%s", - "existUsername": "rawpixel-com", - "nonExistUsername": "rawpixel-comasdf", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.freepik.com/author/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "gettyimages": { - "url": "https://www.gettyimages.hk/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "nonExistRegex": "返回結果為零", - "url": "https://www.gettyimages.hk/search/photographer?photographer=%s", - "existUsername": "Klaus Vedfelt", - "nonExistUsername": "Klaus Vedfeltaaa", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://www.gettyimages.hk/search/photographer?photographer=%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "CN-HK" - } - }, - - - "wikivoyage": { - "url": "https://en.wikivoyage.org/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://en.wikivoyage.org/wiki/User:%s", - "existUsername": "Veracious", - "nonExistUsername": "Veraciousasdf", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://en.wikivoyage.org/wiki/User:%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - "arstechnica": { - "url": "https://arstechnica.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://arstechnica.com/author/%s/", - "existUsername": "stephenclark", - "nonExistUsername": "stephenclarkasdf", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://arstechnica.com/author/%s/" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - }, - - "dribbble": { - "url": "https://dribbble.com/", - "type": "Social", - "isNSFW": false, - "detect": [ - { - "type": "username", - "statusCode": "200", - "url": "https://dribbble.com/%s", - "existUsername": "odamastudio", - "nonExistUsername": "odamastudioxasd", - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" - }, - "userPage": "https://dribbble.com/%s" - } - ], - "login": { - "url": "", - "successRegex": "" - }, - "whois": { - "RegistrantCountry": "US" - } - } -} \ No newline at end of file diff --git a/data/sites/dh.json b/data/sites/dh.json deleted file mode 100644 index 3898586..0000000 --- a/data/sites/dh.json +++ /dev/null @@ -1,76365 +0,0 @@ -{ - "project": "darkHal Security Group - AUTARCH", - "version": "1.1", - "description": "Master sites database for username OSINT with detection patterns", - "total_sites": 8701, - "stats": { - "by_category": { - "forum": 5214, - "other": 1467, - "social": 438, - "tech": 332, - "gaming": 299, - "wiki": 217, - "art": 192, - "adult": 179, - "news": 89, - "shopping": 63, - "finance": 55, - "music": 54, - "professional": 36, - "video": 22, - "dating": 20, - "health": 9, - "torrent": 7, - "sports": 5, - "food": 3 - }, - "by_source": { - "snoop": 4322, - "maigret": 2872, - "social_analyzer": 584, - "blackbird": 421, - "sherlock": 173, - "cupidcr4wl": 142, - "detectdee": 73, - "reveal_my_name": 66, - "nexfil": 48 - }, - "by_error_type": { - "message": 4371, - "status_code": 2938, - "redirection": 938, - "response_url": 150 - } - }, - "sources": [ - "snoop", - "maigret", - "social_analyzer", - "blackbird", - "sherlock", - "cupidcr4wl", - "detectdee", - "reveal_my_name", - "nexfil" - ], - "categories": [ - "forum", - "other", - "social", - "tech", - "gaming", - "wiki", - "art", - "adult", - "news", - "shopping", - "finance", - "music", - "professional", - "video", - "dating", - "health", - "torrent", - "sports", - "food" - ], - "detection_fields": { - "error_type": "Detection method: status_code, message, response_url", - "error_code": "HTTP status code expected when user NOT found (e.g., 404)", - "error_string": "String present in response when user NOT found", - "match_code": "HTTP status code expected when user IS found (e.g., 200)", - "match_string": "String present in response when user IS found" - }, - "sites": [ - { - "name": "0-3.RU", - "url": "http://0-3.ru/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "0k.clan.su", - "url": "http://0k.clan.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "0x00sec", - "url": "https://0x00sec.org/u/{}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "0xffff", - "url": "https://0xffff.one/u/{}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "1001facts.ru", - "url": "http://1001facts.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "1001mem.ru", - "url": "http://1001mem.ru/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u042d\u0442\u043e\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442, \u0438\u043b\u0438 \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d." - }, - { - "name": "1001tracklists", - "url": "https://www.1001tracklists.com/user/{}/index.html", - "category": "music", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Sorry, the requested user is not valid!", - "match_string": "Info Page" - }, - { - "name": "101010.pl", - "url": "https://101010.pl/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "101vzvod.ucoz.ru", - "url": "http://101vzvod.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "101xp.com", - "url": "https://forum-ru.101xp.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "11x2", - "url": "https://11x2.com/user/home/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "123rf", - "url": "https://ru.123rf.com/profile_{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "1337x", - "url": "https://1337x.to/user/{}/", - "category": "torrent", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Bad Username.", - "match_string": "Join Date" - }, - { - "name": "1337x", - "url": "https://www.1337x.to/user/{}/", - "category": "torrent", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "Error something went wrong." - }, - { - "name": "1337x", - "url": "http://1337x.to/user/{}/", - "category": "torrent", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Error something went wrong" - }, - { - "name": "162nord.org", - "url": "http://162nord.org/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "1911forum", - "url": "https://www.1911forum.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "1Baiser", - "url": "https://en.1baiser.com/search?q={}", - "category": "dating", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "No results were found", - "match_string": "Model " - }, - { - "name": "1klas.3dn.ru", - "url": "http://1klas.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "1point3acres", - "url": "https://www.1point3acres.com/bbs/space-username-{}.html", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "1x", - "url": "https://1x.com/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "1x.com \u2022 In Pursuit of the Sublime", - "match_string": " onload=" - }, - { - "name": "1xforum", - "url": "https://1xforum.com/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "21buttons", - "url": "https://www.21buttons.com/buttoner/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "not-found__main", - "match_string": "profile-info" - }, - { - "name": "23hq", - "url": "http://www.23hq.com/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "my-modal", - "match_string": "frame" - }, - { - "name": "24", - "url": "https://24.wikia.com/wiki/User:{}", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "247CTF", - "url": "https://247ctf.com/progress/{}", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 302, - "error_string": "

Redirecting...

", - "match_code": 200, - "match_string": "property=\"og:url\"" - }, - { - "name": "247sports", - "url": "https://247sports.com/user/{}/", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "247sports", - "url": "https://247sports.com/User/{}/", - "category": "gaming", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "247Sports", - "match_code": 200, - "match_string": "3DMir.ru - ", - "match_string": "
" - }, - { - "name": "3dnews", - "url": "http://forum.3dnews.ru//member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "3DNews", - "url": "https://forum.3dnews.tech/member.php?username={}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d", - "match_code": 200, - "match_string": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u043f\u0440\u043e\u0444\u0438\u043b\u044f:" - }, - { - "name": "3DNews", - "url": "http://forum.3dnews.ru/member.php?username={}", - "category": "social", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", - "match_code": 200, - "match_string": "\u0424\u043e\u0440\u0443\u043c 3DNews - \u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u043f\u0440\u043e\u0444\u0438\u043b\u044f:" - }, - { - "name": "3dtoday", - "url": "https://3dtoday.ru/blogs/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "3glaz.org", - "url": "http://3glaz.org/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "3rm", - "url": "https://3rm.info/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "42km", - "url": "http://www.42km.ru/c?name={}&x=0&y=0&country_id=1&town_id=0&sex=0&grade_id=0", - "category": "sports", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" - }, - { - "name": "4399", - "url": "https://ptlogin.4399.com/ptlogin/isExist.do?username={}&appId=u4399®Mode=reg_normal&v=2", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "440101.3dn.ru", - "url": "http://440101.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "4948.ru", - "url": "http://4948.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "4allforum", - "url": "https://4allforum.ru/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f" - }, - { - "name": "4cheat", - "url": "https://4cheat.ru/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "4gameforum", - "url": "https://4gameforum.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "4gameforum", - "url": "https://4gameforum.com/members/?username={}", - "category": "gaming", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "
" - }, - { - "name": "4pda", - "url": "https://4pda.ru/forum/index.php?act=search&source=pst&noform=1&username={}", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0412\u0430\u0448 \u043f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432." - }, - { - "name": "4pda", - "url": "https://4pda.to/forum/index.php?act=search&source=pst&noform=1&username={}", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0412\u0430\u0448 \u043f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432." - }, - { - "name": "4stor", - "url": "https://4stor.ru/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "4x4_tomsk", - "url": "http://4x4.tomsk.ru/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "500px", - "url": "https://500px.com/p/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "No message available" - }, - { - "name": "50cc.com.ua", - "url": "http://50cc.com.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "52pojie", - "url": "https://www.52pojie.cn/forum.php?mod=ajax&inajax=yes&infloat=register&handlekey=register&ajaxmenu=1&action=checkusername&username={}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "5escorts", - "url": "https://www.5escorts.com/search/?keyword={}&category=ads", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Could not find what you were looking for?", - "match_string": "/ads/details/" - }, - { - "name": "5i8.ucoz.ru", - "url": "http://5i8.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "5level.ucoz.net", - "url": "http://5level.ucoz.net/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "63148.com.ua", - "url": "http://63148.com.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "655iap.ucoz.ru", - "url": "http://655iap.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "74507.ucoz.ru", - "url": "http://74507.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "78-3.do.am", - "url": "http://78-3.do.am/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "7Cups", - "url": "https://www.7cups.com/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "7Cups", - "url": "https://7cups.com/@{}", - "category": "social", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "Not Found", - "match_string": "Profile - 7 Cups" - }, - { - "name": "7dach", - "url": "https://7dach.ru/profile/{}", - "category": "food", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "7x.net.ua", - "url": "http://7x.net.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "7ya", - "url": "https://blog.7ya.ru/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "8tracks.com", - "url": "https://8tracks.com/{}", - "category": "music", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "This page has vanished, or perhaps it never even existed...", - "match_string": "Following" - }, - { - "name": "90sec", - "url": "https://forum.90sec.com/u/check_username?username={}&email=", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "96.moy.su", - "url": "http://96.moy.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "999.md", - "url": "https://999.md/ru/profile/{}", - "category": "finance", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "error-404-page", - "match_string": "user-profile" - }, - { - "name": "99designs.com", - "url": "https://99designs.com/profiles/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "mobile-only", - "match_string": "profileUrl" - }, - { - "name": "9GAG", - "url": "https://www.9gag.com/u/{}", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "9Gag", - "url": "https://9gag.com/u/{}", - "category": "news", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "There's nothing here", - "match_string": "og:title" - }, - { - "name": "9interi.3dn.ru", - "url": "http://9interi.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "aaha_chat", - "url": "https://www.aahachat.org/profile/{}/", - "category": "social", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 301, - "error_string": "Aaha Chat Rooms - ", - "match_code": 200, - "match_string": "og:title" - }, - { - "name": "Aahachat", - "url": "https://aahachat.org/profile/{}/", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "full-profile" - }, - { - "name": "Aback", - "url": "https://aback.com.ua/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d." - }, - { - "name": "abc-accounting.ucoz.net", - "url": "http://abc-accounting.ucoz.net/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "abho.ru", - "url": "http://abho.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Abirvalg", - "url": "https://abirvalg.net/forum/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Able2know", - "url": "https://able2know.org/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Abordazh", - "url": "https://abordazh.com/forum/users/?PAGE_NAME=user_list&user_name={}&date_last_visit1=&date_last_visit2=&sort=NUM_POSTS&set_filter=%D0%A4%D0%B8%D0%BB%D1%8C%D1%82%D1%80", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "</script>\n<script>\nvar bx_basketT0kNhm" - }, - { - "name": "About.me", - "url": "https://about.me/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Aboutcar", - "url": "http://aboutcar.ru/members/{}.html", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "AboutUS", - "url": "https://aboutus.com/User:{}", - "category": "wiki", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "is not registered" - }, - { - "name": "Academia.edu", - "url": "https://independent.academia.edu/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "accounts.eclipse.org", - "url": "https://accounts.eclipse.org/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "ACF", - "url": "https://support.advancedcustomfields.com/forums/users/{}/", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "Page Not Found", - "match_code": 200, - "match_string": "<title>ACF Support" - }, - { - "name": "Acomics", - "url": "https://acomics.ru/-{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "actikom.ucoz.ru", - "url": "http://actikom.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "actual-porn.org", - "url": "http://actual-porn.org/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "adblockplus.org", - "url": "https://adblockplus.org/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "No suitable matches were found.", - "match_string": "searchresults" - }, - { - "name": "admin-soft.ucoz.ru", - "url": "http://admin-soft.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "AdmireMe.Vip", - "url": "https://admireme.vip/{}", - "category": "adult", - "source": "sherlock", - "nsfw": true, - "error_type": "message", - "error_string": "Page Not Found" - }, - { - "name": "AdmireMe.VIP", - "url": "https://admireme.vip/{}/", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "status_code", - "error_code": 404, - "error_string": "<title>Page Not Found |", - "match_code": 200, - "match_string": "creator-stat subscriber" - }, - { - "name": "Adore", - "url": "https://adore.one/en/users/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profile-images" - }, - { - "name": "Adult Look (International)", - "url": "https://www.adultlook.com/search/?query={}&rq={}&advanced=1", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "No results found to show", - "match_string": "results found</span>" - }, - { - "name": "Adult_Forum", - "url": "https://adultforum.gr/{}-glamour-escorts/", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "status_code", - "error_code": 404, - "error_string": "Page not found - Adult Forum Gr", - "match_code": 200, - "match_string": "Glamour Escorts " - }, - { - "name": "Adultdvdtalk", - "url": "https://www.adultdvdtalk.com/profile/{}", - "category": "adult", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "AdultFriendFinder", - "url": "https://adultfriendfinder.com/profile/{}", - "category": "adult", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<select name=\"REG_sex\" >" - }, - { - "name": "Adultism", - "url": "https://adultism.com/profile/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": true, - "error_type": "message", - "match_string": "\"nick\"" - }, - { - "name": "AdvancedCustomFields", - "url": "https://support.advancedcustomfields.com/forums/users/{}", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Sorry, page not found" - }, - { - "name": "Advego", - "url": "https://advego.com/profile/{}/author/", - "category": "professional", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "ADVFN", - "url": "https://uk.advfn.com/forum/profile/{}", - "category": "finance", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "ADVFN ERROR - Page Not Found", - "match_code": 200, - "match_string": "Profile | ADVFN" - }, - { - "name": "Aelita", - "url": "http://iaelita.ru/profile/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "aetherhub", - "url": "https://aetherhub.com/User/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Affiliatefix", - "url": "https://www.affiliatefix.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Affiliatefix", - "url": "https://www.affiliatefix.com/members/?username={}", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "aflam", - "url": "https://www.aflam4you.net/profile.html?u={}", - "category": "other", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 302, - "error_string": "Plz Visit", - "match_code": 200, - "match_string": ") on \u0628\u062b \u062d\u064a \u0648 \u0645\u0628\u0627\u0634\u0631" - }, - { - "name": "AfreecaTV", - "url": "http://bjapi.afreecatv.com/api/{}/station", - "category": "video", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Blog does not exist.", - "match_string": "profile_text" - }, - { - "name": "afsoc.ucoz.ru", - "url": "http://afsoc.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Afterellen", - "url": "https://forums.afterellen.com/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found" - }, - { - "name": "AG", - "url": "https://ag.ru/@{}", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "profile-head__name__single-word__name\"></div></div></h1></div>" - }, - { - "name": "Agniyogaineverydaylife_CLOSEDEAD", - "url": "http://agniyogaineverydaylife.bestforums.org/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Agro", - "url": "https://agro-ua.org.ua/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "ahera.ru", - "url": "http://ahera.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "aikido-mariupol.ucoz.ru", - "url": "http://aikido-mariupol.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Airbit", - "url": "https://airbit.com/{}", - "category": "music", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Airline_Pilot_Life", - "url": "https://airlinepilot.life/u/{}.json", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "he requested URL or resource could not be found.", - "match_code": 200, - "match_string": "primary_group_name" - }, - { - "name": "airlinepilot.life", - "url": "https://airlinepilot.life/u/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Airliners", - "url": "https://www.airliners.net/user/{}/profile/photos", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Airliners", - "url": "https://www.airliners.net/user/{}/profile", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "An Error Occurred", - "match_code": 200, - "match_string": "'s Profile | Airliners Members | Airliners.net" - }, - { - "name": "Airliners", - "url": "https://airliners.net/user/{}/profile/photos", - "category": "art", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "user-follower-button" - }, - { - "name": "Akbrny", - "url": "https://akbrny.com/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profile-social" - }, - { - "name": "Akforum", - "url": "https://akforum.ru/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "akniga", - "url": "https://akniga.org/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "aktualno.lv", - "url": "http://aktualno.lv/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Alabay", - "url": "https://alabay.forum24.ru/?32-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" - }, - { - "name": "Albicla", - "url": "https://albicla.com/{}/post/1", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "404 Nie znaleziono u\u017cytkownika", - "match_code": 500, - "match_string": "500 Post tymczasowo niedost\u0119pny" - }, - { - "name": "aleks2.ru", - "url": "http://aleks2.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Alexgyver", - "url": "https://community.alexgyver.ru/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Alexgyver", - "url": "https://community.alexgyver.ru/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "algowiki-project.org", - "url": "https://algowiki-project.org/en/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "ali213", - "url": "https://game.ali213.net/space-username-{}.html", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "Aliensoup", - "url": "https://aliensoup.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "aliensoup.com", - "url": "https://aliensoup.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "alik", - "url": "https://www.alik.cz/u/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "<title>Vizitka nenalezena", - "match_code": 200, - "match_string": "Vizitka \u2013 Al\u00edk.cz" - }, - { - "name": "Alik", - "url": "https://alik.cz/u/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "user-" - }, - { - "name": "alikgor.at.ua", - "url": "http://alikgor.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "alimero.ru", - "url": "https://alimero.ru/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "alisaclub.ru", - "url": "http://alisaclub.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Aliveshoes", - "url": "https://aliveshoes.com/brand/{}", - "category": "shopping", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "og:title" - }, - { - "name": "alka-mine.at.ua", - "url": "http://alka-mine.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "All Things Worn", - "url": "https://www.allthingsworn.com/profile/{}", - "category": "adult", - "source": "sherlock", - "nsfw": true, - "error_type": "message", - "error_string": "Sell Used Panties" - }, - { - "name": "all-gta.info", - "url": "http://all-gta.info/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "All-mods", - "url": "https://all-mods.ru/author/{}/", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "AllegroSeller", - "url": "https://allegro.pl/uzytkownik/{}_pl/sklep", - "category": "shopping", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "geo.captcha-delivery.com" - }, - { - "name": "allesovercrypto", - "url": "https://allesovercrypto.nl/user/{}", - "category": "finance", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "De opgevraagde pagina kon niet gevonden worden.", - "match_code": 200, - "match_string": "Favoriete coins" - }, - { - "name": "Alleywatch", - "url": "https://alleywatch.com/profile/{}/", - "category": "tech", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "author-photo" - }, - { - "name": "allgaz", - "url": "https://forum.allgaz.ru/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Allhockey", - "url": "https://allhockey.ru/blog/{}", - "category": "sports", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Alliance-prod", - "url": "https://alliance-prod.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "alliedmods", - "url": "https://forums.alliedmods.net//member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "AllKPop", - "url": "https://www.allkpop.com/profile/{}", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "allmobile.vo.uz", - "url": "http://allmobile.vo.uz/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "allmus.ucoz.ru", - "url": "http://allmus.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "allmylinks", - "url": "https://allmylinks.com/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Page not found" - }, - { - "name": "Alloannonces", - "url": "https://www.alloannonces.ma/{}/", - "category": "social", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Page non defini", - "match_code": 200, - "match_string": "Vendeurs/Agents" - }, - { - "name": "Allods", - "url": "https://allods.mail.ru/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Allods", - "url": "https://forum.allods.ru/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "AllRecipes", - "url": "https://www.allrecipes.com/cook/{}", - "category": "food", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Page Not Found.", - "match_string": "Saved Items & Collections" - }, - { - "name": "AllTheLyrics", - "url": "https://www.allthelyrics.com/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Allthelyrics", - "url": "https://www.allthelyrics.com/forum/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "This user has not registered and therefore does not have a profile to view." - }, - { - "name": "AllTheSoft", - "url": "http://www.allthesoft.com/member/{}.html", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Allthingsworn", - "url": "https://allthingsworn.com/profile/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": true, - "error_type": "message", - "match_string": "profileOptions" - }, - { - "name": "AllTrails", - "url": "https://www.alltrails.com/members/{}", - "category": "sports", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "You are being", - "match_string": "Profile" - }, - { - "name": "Alltrails", - "url": "https://alltrails.com/members/{}", - "category": "sports", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "User could not be found", - "match_string": "Member Since" - }, - { - "name": "Alltrails", - "url": "https://www.alltrails.com/members/{}/lists", - "category": "sports", - "source": "nexfil", - "nsfw": false - }, - { - "name": "alpanf.ucoz.ru", - "url": "http://alpanf.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Alpmsu", - "url": "https://www.alpmsu.ru/forum/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u043a\u043e\u0434 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - }, - { - "name": "AlternativeTo", - "url": "https://alternativeto.net/user/{}", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "404: This page could not be found" - }, - { - "name": "Alura", - "url": "https://cursos.alura.com.br/user/{}", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "\"error\":\"Not Found\"", - "match_code": 200, - "match_string": "Perfil de" - }, - { - "name": "Alushta24", - "url": "https://alushta24.org/user/{}/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "amateurvoyeurforum.com", - "url": "https://www.amateurvoyeurforum.com/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "amax-sb.ru", - "url": "http://amax-sb.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Amazfitwatchfaces", - "url": "https://amazfitwatchfaces.com/forum/memberlist.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Server error" - }, - { - "name": "Amazon", - "url": "https://amazon.com/author/{}", - "category": "shopping", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Sorry! We couldn't find that page", - "match_string": "authorName" - }, - { - "name": "Ameba", - "url": "https://profile.ameba.jp/ameba/{}/", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Ameblo", - "url": "https://ameblo.jp/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "THROW_NOT_FOUND_EXCEPTION", - "match_string": "profile" - }, - { - "name": "Americanthinker", - "url": "https://www.americanthinker.com/author/{}/", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<title>American Thinker", - "match_string": "Articles:" - }, - { - "name": "aminoapp", - "url": "https://aminoapps.com/u/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Aminus3", - "url": "https://{}.aminus3.com/", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Expires", - "match_string": "image/ico" - }, - { - "name": "Amirite", - "url": "https://www.amirite.com/user/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "amp.flipboard.com", - "url": "https://amp.flipboard.com/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Amperka", - "url": "http://forum.amperka.ru/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Amplitude", - "url": "https://community.amplitude-studios.com/profile/{}/rewards", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "{}", - "match_string": "og:site_name" - }, - { - "name": "Anobii", - "url": "https://anobii.com/{}/profile", - "category": "news", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "No route found for", - "match_string": "profile-" - }, - { - "name": "Anonup", - "url": "https://anonup.com/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Page not found!", - "match_string": "Following" - }, - { - "name": "Anphabe", - "url": "https://anphabe.com/profile/{}", - "category": "tech", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profile/{username}" - }, - { - "name": "anschula.ucoz.ru", - "url": "http://anschula.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "antalya.ucoz.ru", - "url": "http://antalya.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Antichat", - "url": "https://forum.antichat.ru//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Antichat", - "url": "https://forum.antichat.club/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found. Please enter a member's entire name." - }, - { - "name": "antihack.ucoz.net", - "url": "http://antihack.ucoz.net/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Antipunk", - "url": "https://antipunk.com/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Antique-bottles", - "url": "https://www.antique-bottles.net/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Antiquers", - "url": "https://www.antiquers.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Antiquers", - "url": "https://www.antiquers.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Antiscam", - "url": "https://antiscam.ru/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "antiscam.space", - "url": "https://antiscam.space/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "antivirus.moy.su", - "url": "http://antivirus.moy.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Antiwomen", - "url": "https://antiwomen.ru/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" - }, - { - "name": "antizombie.ucoz.ru", - "url": "http://antizombie.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Antwiki", - "url": "https://antwiki.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Ap-pro", - "url": "https://ap-pro.ru/search/?q={}&quick=1&type=core_members", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "0 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432" - }, - { - "name": "Aparat", - "url": "https://www.aparat.com/{}", - "category": "video", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "404 - Page Not Found", - "match_string": "Profile" - }, - { - "name": "Aparat", - "url": "https://www.aparat.com/{}/", - "category": "video", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Aparat", - "url": "https://www.aparat.com/api/fa/v1/user/user/information/username/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "class=\"error-body\"", - "match_code": 200, - "match_string": "\"id\":" - }, - { - "name": "APClips", - "url": "https://apclips.com/{}", - "category": "adult", - "source": "sherlock", - "nsfw": true, - "error_type": "message", - "error_string": "Amateur Porn Content Creators" - }, - { - "name": "apelmon.od.ua", - "url": "http://apelmon.od.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Apex Legends", - "url": "https://api.tracker.gg/api/v2/apex/standard/profile/origin/{}", - "category": "gaming", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "CollectorResultStatus::NotFound", - "match_code": 200, - "match_string": "platformInfo" - }, - { - "name": "ApexLegends", - "url": "https://apex.tracker.gg/apex/profile/origin/{}/overview", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "PLAYER NOT FOUND", - "match_string": "Overview" - }, - { - "name": "Aphrodite Agency (Europe)", - "url": "https://www.aphrodite-agency.com/en/models/{}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "meet high class escorts", - "match_string": "more about" - }, - { - "name": "Apne", - "url": "https://apne.co/member/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "userdetails" - }, - { - "name": "App", - "url": "https://app.realunify.com/users/{}", - "category": "other", - "source": "nexfil", - "nsfw": false - }, - { - "name": "app.airnfts.com", - "url": "https://app.airnfts.com/creators/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "user-not-found-div", - "match_string": "username" - }, - { - "name": "app.clan.su", - "url": "http://app.clan.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "app.samsungfood.com", - "url": "https://app.samsungfood.com/u/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": ">User not found
", - "match_string": "alternateName" - }, - { - "name": "Appearoo", - "url": "http://appearoo.com/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Appian", - "url": "https://community.appian.com/members/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Working...
\u0412 \u0431\u0430\u0437\u0435 \u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - }, - { - "name": "Aptoide", - "url": "https://{}.en.aptoide.com/", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "status_code", - "match_string": "BreadcrumbList" - }, - { - "name": "AptoideAPP", - "url": "https://{}.en.aptoide.com/app", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "content=\"noindex, nofollow\"/>Error 404", - "match_string": ">Profile" - }, - { - "name": "Archive_predistoria", - "url": "http://archive.predistoria.org/index.php?name=Forums&file=profile&mode=viewprofile&u={}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - }, - { - "name": "ArchiveOfOurOwn", - "url": "https://archiveofourown.org/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Archives", - "url": "https://archives.bulbagarden.net/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Archlinux", - "url": "https://archlinux.org.ru/forum/users/{}/", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "ArchWiki", - "url": "https://wiki.archlinux.org/api.php?action=query&format=json&list=users&ususers={}&usprop=cancreate&formatversion=2&errorformat=html&errorsuselocal=true&uselang=en", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\"missing\":true", - "match_code": 200, - "match_string": "\"userid\":" - }, - { - "name": "Arcolinuxforum", - "url": "https://arcolinuxforum.com/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Information" - }, - { - "name": "Arduino", - "url": "https://projecthub.arduino.cc/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Arduino Project Hub", - "match_string": "Arduino Project Hub" - }, - { - "name": "Arduino (Forum)", - "url": "https://forum.arduino.cc/u/{}.json", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "\"error_type\":\"not_found\"", - "match_code": 200, - "match_string": "\"id\":" - }, - { - "name": "Arduino Forum", - "url": "https://forum.arduino.cc/u/{}/summary", - "category": "forum", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "are.na", - "url": "https://www.are.na/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Are.na home", - "match_string": "Profile--view" - }, - { - "name": "AreKamrbb", - "url": "https://are.kamrbb.ru/?x=find&f={}#top", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u043c\u044b \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0448\u043b\u0438 \u0434\u043b\u044f \u0432\u0430\u0441.." - }, - { - "name": "Arhrock", - "url": "https://arhrock.info/forum/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "aribut.ru", - "url": "http://aribut.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Ariva", - "url": "https://www.ariva.de/profil/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Armavir", - "url": "http://phorum.armavir.ru/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Armchairgm", - "url": "https://armchairgm.fandom.com/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Armorgames", - "url": "https://armorgames.com/user/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Armtorg", - "url": "https://armtorg.ru/forum/memberlist.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043f\u043e \u0437\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u043a\u0440\u0438\u0442\u0435\u0440\u0438\u044f\u043c" - }, - { - "name": "Army", - "url": "https://army.ca/forums/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "army-rus.ucoz.ru", - "url": "http://army-rus.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "armyboots.ucoz.ru", - "url": "http://armyboots.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Armycarus", - "url": "http://armycarus.do.am/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "Arrse", - "url": "https://www.arrse.co.uk//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Arrse", - "url": "https://www.arrse.co.uk/community/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Arsenal-mania", - "url": "https://arsenal-mania.com/forum/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found. Please enter a member's entire name." - }, - { - "name": "Arsmate", - "url": "https://arsmate.com/{}", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "status_code", - "error_code": 404, - "error_string": "error-link mt-5", - "match_code": 200, - "match_string": "far fa-user-circle mr-1" - }, - { - "name": "Arstechnica", - "url": "https://arstechnica.com/civis/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "arstechnica", - "url": "https://arstechnica.com/author/{}/", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "art-color.my1.ru", - "url": "http://art-color.my1.ru/index/8-0-{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "art-nata.my1.ru", - "url": "http://art-nata.my1.ru/index/8-0-{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "ArtBreeder", - "url": "https://www.artbreeder.com/{}", - "category": "art", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Not found:", - "match_code": 200, - "match_string": "" - }, - { - "name": "artfol.me", - "url": "https://artfol.me/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "This user does not exist", - "match_string": "About" - }, - { - "name": "artinvestment", - "url": "https://forum.artinvestment.ru//member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Artist", - "url": "https://artist.ru/user/{}/", - "category": "art", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Artistsnclients", - "url": "https://artistsnclients.com/people/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "artmilitaire.ru", - "url": "http://artmilitaire.ru/index/8-0-{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Artpersona", - "url": "http://artpersona.org/cb/userprofile/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u042d\u0442\u043e\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043b\u0438\u0431\u043e \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442, \u043b\u0438\u0431\u043e \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d." - }, - { - "name": "Artstation", - "url": "https://www.artstation.com/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Artstation", - "url": "https://artstation.com/{}", - "category": "art", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "Page not found" - }, - { - "name": "Artsy", - "url": "https://www.artsy.net/artist/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Aruba_CLOSEDEAD", - "url": "https://www.aruba.com/forum/members/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "This user has not registered and therefore does not have a profile to vie" - }, - { - "name": "Ascend4", - "url": "https://ascend4.org/User:{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Asciinema", - "url": "https://asciinema.org/~{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "asecurity.do.am", - "url": "http://asecurity.do.am/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Asianwiki", - "url": "https://asianwiki.com/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Ask Fedora", - "url": "https://ask.fedoraproject.org/u/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "AskFM", - "url": "https://ask.fm/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Well, apparently not anymore." - }, - { - "name": "Askubuntu", - "url": "https://askubuntu.com/users/filter?search={}&filter=Month&tab=Reputation", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "No users matched your search" - }, - { - "name": "Askvoprosy", - "url": "https://askvoprosy.com/polzovateli/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<title>" - }, - { - "name": "Aspirantura_spb", - "url": "http://www.aspirantura.spb.ru/forum/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "asquero.com", - "url": "https://asquero.com/user/dashboard/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Find The Best Learning Resources", - "match_string": "Tutorials" - }, - { - "name": "Astra-club", - "url": "http://www.astra-club.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Astraclub", - "url": "http://astraclub.ru/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "Astraclub", - "url": "https://astraclub.ru/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "Astralinux", - "url": "https://forum.astralinux.ru/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Astralinux_CLOSEDEAD", - "url": "https://forum.astralinux.ru/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "Astro-talks", - "url": "http://www.astro-talks.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Astro-talks", - "url": "https://www.astro-talks.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Astrogalaxy", - "url": "https://astrogalaxy.ru/forum/phpBB2/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Atc", - "url": "http://www.atc.az/forum/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Account Suspended" - }, - { - "name": "Atcoder", - "url": "https://atcoder.jp/users/{}", - "category": "tech", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Atlanticcouncil", - "url": "https://www.atlanticcouncil.org/expert/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "atm-club.moy.su", - "url": "http://atm-club.moy.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Au", - "url": "https://au.ru/user/{}/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d</title" - }, - { - "name": "Audi-bel", - "url": "http://www.audi-bel.com/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Audiojungle", - "url": "https://audiojungle.net/user/{}", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Aufeminin", - "url": "https://www.aufeminin.com/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Aussiehomebrewer", - "url": "https://aussiehomebrewer.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "aussiehomebrewer.com", - "url": "https://aussiehomebrewer.com/members/{}.1/", - "category": "food", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Austin Escort Models (Austin, TX)", - "url": "https://austinescortmodels.com/model/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "404 not found", - "match_string": "<td>Ethnicity:</td>" - }, - { - "name": "AustralianFrequentflyer", - "url": "https://www.australianfrequentflyer.com.au/community/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "australianfrequentflyer.com.au", - "url": "https://www.australianfrequentflyer.com.au/community//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "author.today", - "url": "https://author.today/u/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "authorSTREAM", - "url": "http://www.authorstream.com/author/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "authorSTREAM", - "url": "http://www.authorstream.com/{}/", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Authorstream", - "url": "https://authorstream.com/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "We apologize for this inconvenience", - "match_string": "subheading" - }, - { - "name": "auto63.ru", - "url": "http://auto63.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "autocb.ucoz.ru", - "url": "http://autocb.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Autofrage", - "url": "https://www.autofrage.net/nutzer/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Autokadabra", - "url": "http://autokadabra.ru/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Autolada", - "url": "https://www.autolada.ru/profile.php?mode=viewprofile&u={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<title> :: AUTOLADA.RU", - "match_string": "postdetails" - }, - { - "name": "Autolenta", - "url": "https://community.autolenta.ru/profile/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "Automania", - "url": "https://automania.ru/author/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Go to the homepage", - "match_string": "\u041f\u043e\u0441\u0442\u044b \u043e\u0442 " - }, - { - "name": "autosila.at.ua", - "url": "http://autosila.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "autotob.ru", - "url": "http://autotob.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "av.3dn.ru", - "url": "http://av.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Ava Escorts (International)", - "url": "https://avaescorts.com/search-results?escort_name={}&agency_id=&escort_type=&root_category=&city_county=Enter+City&age=&hair_color=&languages=&price=&type=&x=0&y=0", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "escorts found (0)", - "match_string": "/>Outcall Only<br" - }, - { - "name": "avangard-basket.at.ua", - "url": "http://avangard-basket.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Avforums", - "url": "https://www.avforums.com/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found." - }, - { - "name": "Avforums", - "url": "https://avforums.com/members/{}", - "category": "forum", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "logged-in to do that" - }, - { - "name": "avia-forum.ucoz.ru", - "url": "http://avia-forum.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "aviabaza-meria.ucoz.ru", - "url": "http://aviabaza-meria.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "aviaforum.ucoz.ru", - "url": "http://aviaforum.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "aviahistory.ucoz.ru", - "url": "http://aviahistory.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "AvidCommunity", - "url": "https://community.avid.com/members/{}/default.aspx", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "User Not Found", - "match_string": "My Announcements" - }, - { - "name": "Avizo", - "url": "https://www.avizo.cz/{}/", - "category": "shopping", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "avon-kiev.at.ua", - "url": "http://avon-kiev.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "avon-registry.com.ua", - "url": "http://avon-registry.com.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Avsim", - "url": "https://www.avsim.com/search/?q={}&quick=1", - "category": "gaming", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "0 results" - }, - { - "name": "avto-box.at.ua", - "url": "http://avto-box.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Avto-forum", - "url": "https://avto-forum.name/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Avto-forum.name", - "url": "https://avto-forum.name/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "avto.dzerghinsk.org", - "url": "http://avto.dzerghinsk.org/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "avtoexamen.com", - "url": "http://avtoexamen.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Avtoforum", - "url": "https://avtoforum.org/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Avtolyubiteli", - "url": "https://forum.avtolyubiteli.com/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Avtomarket", - "url": "https://avtomarket.ru/u/{}/", - "category": "shopping", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u0422\u0430\u043a\u043e\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "AW", - "url": "https://aw.by/forum/profile.php?mode=viewprofile&u={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - }, - { - "name": "awd.ru", - "url": "https://forum.awd.ru/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e.", - "match_string": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043f\u043e\u0438\u0441\u043a\u0430:" - }, - { - "name": "AWS Skills Profile", - "url": "https://skillsprofile.skillbuilder.aws/user/{}/", - "category": "tech", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "shareProfileAccepted\":false" - }, - { - "name": "azhack.ucoz.net", - "url": "http://azhack.ucoz.net/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "azovmore.dn.ua", - "url": "http://azovmore.dn.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "azovmore.ucoz.ru", - "url": "http://azovmore.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "B17", - "url": "https://www.b17.ru/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "babepedia", - "url": "https://www.babepedia.com/user/{}", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "status_code", - "error_code": 404, - "error_string": "Profile not found", - "match_code": 200, - "match_string": "'s Page" - }, - { - "name": "Babepedia", - "url": "https://babepedia.com/user/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": true, - "error_type": "message", - "match_string": "Username:" - }, - { - "name": "Babepedia", - "url": "https://www.babepedia.com/babe/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Sorry, she wasn't found in our database.", - "match_string": ">Add to favorites" - }, - { - "name": "BabesDirectory", - "url": "https://babesdirectory.online/profile/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Babe not found 404", - "match_string": "BIO, Wiki, News" - }, - { - "name": "Babestation Cams (performer)", - "url": "https://babestationcams.com/performer/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "<title>Not Found", - "match_string": "Babestation Cams" - }, - { - "name": "Baby", - "url": "https://forum.baby.ru/u/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Baby", - "url": "https://baby.ru/u/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "error404", - "match_string": "user-header" - }, - { - "name": "Baby.ru", - "url": "https://www.baby.ru/u/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "error-page__title", - "match_string": "user-name" - }, - { - "name": "Babyblog", - "url": "https://babyblog.ru/user/info/{}", - "category": "news", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "diary-header" - }, - { - "name": "Babyblog", - "url": "https://www.babyblog.ru/user/info/{}", - "category": "news", - "source": "nexfil", - "nsfw": false - }, - { - "name": "BabyBlog.ru", - "url": "https://www.babyblog.ru/user/{}", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Babyboom", - "url": "https://www.babyboom.pl/forum/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "babyboom.pl", - "url": "http://www.babyboom.pl/forum//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Babycenter", - "url": "https://www.babycenter.in/profile/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "babymama.ucoz.ru", - "url": "http://babymama.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "BabyPips", - "url": "https://forums.babypips.com/u/{}.json", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "The requested URL or resource could not be found", - "match_code": 200, - "match_string": "user_badges" - }, - { - "name": "Babyplan", - "url": "https://www.babyplan.ru/search/?q={}&type=core_members", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "0 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432" - }, - { - "name": "BabyRu", - "url": "https://www.baby.ru/u/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0438\u0441\u043a\u0430\u043b\u0438, \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430" - }, - { - "name": "BackdoorSdslabs", - "url": "https://backdoor.sdslabs.co/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "No such user exists" - }, - { - "name": "badoink vr", - "url": "https://badoinkvr.com/vr-pornstar/{}/", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "This page does not exist", - "match_string": "Measurements:" - }, - { - "name": "Badoo", - "url": "https://badoo.com/profile/{}", - "category": "dating", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "baggi.ucoz.ru", - "url": "http://baggi.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bahaipedia", - "url": "https://bahaipedia.org/Wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Bahaipedia", - "url": "https://bahaipedia.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Baidu", - "url": "https://tieba.baidu.com/home/main?un={}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "error_404_iframe", - "match_string": "user_name" - }, - { - "name": "Balancer", - "url": "https://www.balancer.ru/tools/search/result/?q={}r&s=t", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" - }, - { - "name": "Ballofspray", - "url": "https://www.ballofspray.com/search/?q={}&quick=1&type=core_members", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "0 results" - }, - { - "name": "baltnethub.3dn.ru", - "url": "http://baltnethub.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bandcamp", - "url": "https://www.bandcamp.com/{}", - "category": "music", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bandcamp", - "url": "https://bandcamp.com/{}", - "category": "music", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "

Sorry, that something isn\u2019t here.

", - "match_code": 200, - "match_string": " collection | Bandcamp" - }, - { - "name": "Bandlab", - "url": "https://www.bandlab.com/api/v1.3/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "find any matching element, it might be deleted", - "match_string": "genres" - }, - { - "name": "Bandlab", - "url": "https://bandlab.com/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profile-header" - }, - { - "name": "banki.ru", - "url": "https://banki.ru/blog/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Baraza_africa", - "url": "https://baraza.africa/u/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "couldnt_find_that_username_or_email" - }, - { - "name": "Barca", - "url": "http://www.barca.ru/forum/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0424\u043e\u0440\u0443\u043c" - }, - { - "name": "Barcamania", - "url": "https://www.barcamania.com/users/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Barnacl", - "url": "https://barnacl.es/u/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "barnaul-forum.ru", - "url": "http://barnaul-forum.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "baseball-reference.com", - "url": "https://baseball-reference.com/bullpen/User:{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Basecamphq", - "url": "https://{}.basecamphq.com/login", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bash", - "url": "https://bash.cyberciti.biz/guide/User:{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "bashtanka.at.ua", - "url": "http://bashtanka.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "bashteplovent.ucoz.ru", - "url": "http://bashteplovent.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Basistar", - "url": "https://basistar.de/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Bassclub", - "url": "https://bassclub.ru/forum/search/?q={}&type=core_members", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "0 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432" - }, - { - "name": "Battlefield", - "url": "https://battlelog.battlefield.com/bf4/ru/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "404" - }, - { - "name": "Battleraprus", - "url": "https://battleraprus.fandom.com/ru/wiki/%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "baykovoshkola.ucoz.ru", - "url": "http://baykovoshkola.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bayoushooter", - "url": "https://www.bayoushooter.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bayoushooter", - "url": "https://bayoushooter.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Baza-knig", - "url": "https://baza-knig.ink/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bazar.cz", - "url": "https://www.bazar.cz/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Bb_chip", - "url": "https://bb.chip.icu/u/{}", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "bbclub.ucoz.ru", - "url": "http://bbclub.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "bbpress.org", - "url": "https://bbpress.org/forums/profile/{}/", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "bbs.evony.com", - "url": "http://bbs.evony.com/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "bbs.huami.com", - "url": "https://bbs.huami.com/home.php?username={}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u63d0\u793a\u4fe1\u606f - huami\u8bba\u575b - Powered by Discuz!" - }, - { - "name": "Bbshave", - "url": "https://bbshave.ru/profile/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442." - }, - { - "name": "bce-tyt.ru", - "url": "http://bce-tyt.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bdoutdoors", - "url": "https://www.bdoutdoors.com/forums/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found" - }, - { - "name": "BDSM Singles", - "url": "https://www.bdsmsingles.com/members/{}", - "category": "dating", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "bdsmsingles.com/?language", - "match_string": "Profile" - }, - { - "name": "BDSMLR", - "url": "https://{}.bdsmlr.com", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "message", - "error_code": 200, - "error_string": "This blog doesn't exist.", - "match_code": 200, - "match_string": "login" - }, - { - "name": "bdsmsingles", - "url": "https://www.bdsmsingles.com/members/{}/", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "status_code", - "error_code": 302, - "error_string": "BDSM Singles", - "match_code": 200, - "match_string": "<title>Profile" - }, - { - "name": "beacons.ai", - "url": "https://beacons.ai/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "https://beacons.ai/bw_logo_full.png", - "match_string": "https://cdn.beacons.ai/profile_pictures" - }, - { - "name": "beatl.ucoz.ru", - "url": "http://beatl.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "BeatStars", - "url": "https://www.beatstars.com/{}", - "category": "music", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Page not found", - "match_string": "Stats" - }, - { - "name": "Beatstars", - "url": "https://beatstars.com/{}", - "category": "music", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "member-profile" - }, - { - "name": "Beautyheaven", - "url": "https://www.beautyheaven.com.au/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Bebee", - "url": "https://us.bebee.com/bee/{}", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Beeg", - "url": "https://beeg.com/people/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": true, - "error_type": "message", - "match_string": "Suggest Edits" - }, - { - "name": "Beep", - "url": "https://beep.by/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "BEER", - "url": "https://\u0431\u0438\u0440.\u0440\u0444/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "Beerintheevening", - "url": "http://www.beerintheevening.com/user_profile.shtml?username={}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "User does not exist." - }, - { - "name": "BeerMoneyForum", - "url": "https://www.beermoneyforum.com/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found." - }, - { - "name": "Behance", - "url": "https://www.behance.net/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Behance", - "url": "https://behance.net/{}", - "category": "art", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "Oops! We can\u2019t find that page", - "match_string": "\"name\":\"" - }, - { - "name": "Belmos", - "url": "https://www.belmos.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Bentbox", - "url": "https://bentbox.co/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "This user is currently not available", - "match_string": "id=\"followingUser\"" - }, - { - "name": "Bento", - "url": "https://bento.me/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": ">Available!</div>", - "match_code": 200, - "match_string": "href=\"https://bento.me/explore\"" - }, - { - "name": "berea.ucoz.ru", - "url": "http://berea.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "bestclips.ws", - "url": "http://bestclips.ws/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bestfantasybooks", - "url": "http://bestfantasybooks.com/forums/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found" - }, - { - "name": "Bestweapon", - "url": "https://bestweapon.ru/author.php?author={}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "</script><br><table class='border-blog'><tr><td><div class='avatar'" - }, - { - "name": "Bestweapon", - "url": "https://bestweapon.net/author.php?author={}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "/script><br><table class='border-blog'><tr><td><div" - }, - { - "name": "Beta", - "url": "https://beta.cent.co/{}/", - "category": "other", - "source": "nexfil", - "nsfw": false - }, - { - "name": "Betalist", - "url": "https://betalist.com/@{}", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "betawiki.net", - "url": "https://betawiki.net/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bethepro", - "url": "https://bethepro.com/members/{}/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "beyond3d", - "url": "https://forum.beyond3d.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bezuzyteczna", - "url": "https://bezuzyteczna.pl/uzytkownicy/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bgforum", - "url": "https://bgforum.ru/user/{}/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041e\u0448\u0438\u0431\u043a\u0430 / \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - }, - { - "name": "Bibsonomy", - "url": "https://www.bibsonomy.org/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "big-game.ucoz.ru", - "url": "http://big-game.ucoz.ru/index/8-0-{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bigfooty", - "url": "https://www.bigfooty.com/forum/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "bigfooty.com", - "url": "https://www.bigfooty.com/forum//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Biggerpockets", - "url": "https://www.biggerpockets.com/users/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Page not found", - "match_string": "| BiggerPockets" - }, - { - "name": "Biggerpockets", - "url": "https://biggerpockets.com/users/{}", - "category": "forum", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "header-info" - }, - { - "name": "Bigmmc", - "url": "http://bigmmc.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "BIGO Live", - "url": "https://www.bigo.tv/user/{}", - "category": "gaming", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "userInfo:{}", - "match_code": 200, - "match_string": "userInfo:{nickName" - }, - { - "name": "Bigsoccer", - "url": "https://www.bigsoccer.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bigsoccer", - "url": "https://www.bigsoccer.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Bikemap", - "url": "https://www.bikemap.net/en/u/{}/routes/created/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bikepost", - "url": "https://bikepost.ru/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "BikeRadar", - "url": "https://forum.bikeradar.com/profile/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Biketrials", - "url": "http://www.biketrials.ru/live/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "Billkiene", - "url": "https://www.billkiene.com/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Billkiene", - "url": "https://www.billkiene.com/forums/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "This user has not registered and therefore does not have a profile to view." - }, - { - "name": "Bimpos", - "url": "https://ask.bimpos.com/user/{}", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Page not found", - "match_code": 200, - "match_string": "User " - }, - { - "name": "BinarySearch", - "url": "https://binarysearch.com/@/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "{}" - }, - { - "name": "Binarysearch", - "url": "https://binarysearch.io/@/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "Profile not found" - }, - { - "name": "binhot.3dn.ru", - "url": "http://binhot.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bio Sites", - "url": "https://bio.site/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "This site no longer exists", - "match_code": 200, - "match_string": "section\":{\"handles" - }, - { - "name": "biohack", - "url": "https://forum.biohack.me/index.php?p=/profile/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "biolink", - "url": "https://bio.link/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "The page you\u2019re looking for doesn\u2019t exist", - "match_code": 200, - "match_string": "profile:username" - }, - { - "name": "Biosector01", - "url": "https://biosector01.com/wiki/User:{}", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "birza-truda", - "url": "http://birza-truda.ru/akter/nachinayushchiy-akter/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041d\u0435\u0442 \u0437\u0430\u043f\u0438\u0441\u0435\u0439!" - }, - { - "name": "Bit", - "url": "https://bit.dev/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "FOLLOWERS" - }, - { - "name": "Bit.ly", - "url": "https://bit.ly/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "BitBucket", - "url": "https://bitbucket.org/{}/", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bitbucket", - "url": "https://bitbucket.org/!api/2.0/repositories/{}?page=1&pagelen=25&sort=-updated_on&q=&fields=-values.owner%2C-values.workspace", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "No workspace with identifier", - "match_code": 200, - "match_string": "full_name" - }, - { - "name": "BitBucket", - "url": "https://bitbucket.org/{}/workspace/repositories/", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bitbucket", - "url": "https://bitbucket.org/{}", - "category": "tech", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "That link has no power here", - "match_string": "\"uuid\"" - }, - { - "name": "Bitchute", - "url": "https://www.bitchute.com/channel/{}", - "category": "video", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bitchute", - "url": "https://www.bitchute.com/channel/{}/", - "category": "news", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "404 - Page not found", - "match_code": 200, - "match_string": "subscribers" - }, - { - "name": "bitcoin.it", - "url": "https://bitcoin.it/wiki/User:{}", - "category": "finance", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "BitCoinForum", - "url": "https://bitcoinforum.com/profile/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The user whose profile you are trying to view does not exist." - }, - { - "name": "Bitpapa", - "url": "https://bitpapa.com/user/{}", - "category": "shopping", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "><title>" - }, - { - "name": "bitpapa.com", - "url": "https://bitpapa.com/ru/user/{}", - "category": "shopping", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "/static/page-crash.svg", - "match_string": "lbcUsername" - }, - { - "name": "bittube", - "url": "https://bittube.video/c/{}/videos", - "category": "video", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "

We are sorry but it seems", - "match_code": 200, - "match_string": "- BitTube" - }, - { - "name": "Bitwarden", - "url": "https://community.bitwarden.com/u/{}/summary", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Oops!", - "match_string": " Profile" - }, - { - "name": "BlackHatProTools", - "url": "https://www.blackhatprotools.info/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Blast", - "url": "https://www.blast.hk/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Blast", - "url": "https://www.blast.hk/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Blazemonger", - "url": "https://blazemonger.com/GG/User:{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "BleachFandom", - "url": "https://bleach.fandom.com/ru/wiki/%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Blender", - "url": "https://blender.community/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Blender3d", - "url": "https://blender3d.com.ua/forums/users/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Blenderartists", - "url": "https://blenderartists.org/u/{}", - "category": "art", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "BLIP.fm", - "url": "https://blip.fm/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "bliphoto", - "url": "https://www.blipfoto.com/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<title>Your photo journal | Blipfoto", - "match_string": "biography" - }, - { - "name": "Blitz Tactics", - "url": "https://blitztactics.com/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "That page doesn't exist" - }, - { - "name": "Blizzard_WOW", - "url": "https://us.forums.blizzard.com/en/wow/u/{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "World of Warcraft Forums" - }, - { - "name": "Blogger", - "url": "https://{}.blogspot.com", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Blogger (by GAIA id)", - "url": "https://www.blogger.com/profile/{}", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "/edit-profile.g", - "match_string": ">" - }, - { - "name": "Blue-systems", - "url": "https://support.blue-systems.com/u/{}/summary", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bluesky", - "url": "https://bsky.app/profile/{}.bsky.social", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Oops!", - "match_string": ".bsky.social on Bluesky" - }, - { - "name": "Bluesky 1", - "url": "https://bsky.app/profile/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "

", - "match_code": 200, - "match_string": "on Bluesky" - }, - { - "name": "Bluesky 2", - "url": "https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor={}.bsky.social", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 400, - "error_string": "\"message\":\"Profile not found\"", - "match_code": 200, - "match_string": "\"handle\":\"" - }, - { - "name": "bluesystem", - "url": "http://forum.bluesystem.online/profile.php?mode=viewprofile&u={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "images/avatars/default_avatars/22.gif" - }, - { - "name": "Bluevies", - "url": "https://bluevies.miraheze.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "BMW_club", - "url": "http://m-power.ru/forum/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "Board_asm32", - "url": "https://board.asm32.info/!userinfo/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Board_scryde", - "url": "https://board.scryde.net/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "BoardGameGeek", - "url": "https://boardgamegeek.com/user/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\t\tUser not found", - "match_string": "username" - }, - { - "name": "BoardGameGeek", - "url": "https://api.geekdo.com/api/accounts/validate/username?username={}", - "category": "gaming", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\"isValid\":true", - "match_code": 200, - "match_string": "\"message\":\"Sorry, this username is already taken.\"" - }, - { - "name": "Boardgamegeek", - "url": "https://www.boardgamegeek.com/user/{}", - "category": "gaming", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "[]" - }, - { - "name": "boards.theforce.net", - "url": "https://boards.theforce.net/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Boards_theforce", - "url": "https://boards.theforce.net/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Bobrdobr", - "url": "https://bobrdobr.ru/people/{}/", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430.", - "match_string": "\u0417\u0430\u043a\u043b\u0430\u0434\u043a\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - }, - { - "name": "Bobvoyeur", - "url": "https://www.bobvoyeur.com/profil/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "content=\"profile\"/>", - "match_string": "Informa\u00e7\u00e3o e p\u00e1gina" - }, - { - "name": "BongaCams", - "url": "https://pt.bongacams.com/profile/{}", - "category": "adult", - "source": "sherlock", - "nsfw": true, - "error_type": "status_code" - }, - { - "name": "Bongacams", - "url": "https://bongacams.com/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": true, - "error_type": "message", - "match_string": "last_login" - }, - { - "name": "Boobpedia", - "url": "https://www.boobpedia.com/wiki/index.php?title=Special:Search&profile=all&search={}&fulltext=1", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "There were no results matching the query.", - "match_string": "Page title matches" - }, - { - "name": "Book-torrent-site", - "url": "https://book-torrent.site/user/{}/", - "category": "torrent", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "bookafly.com", - "url": "https://bookafly.com/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bookandreader", - "url": "https://www.bookandreader.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bookandreader", - "url": "https://www.bookandreader.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Bookcrossing", - "url": "https://www.bookcrossing.com/mybookshelf/{}/", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bookcrossing", - "url": "https://www.bookcrossing.com/mybookshelf/{}", - "category": "news", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Sorry, we were unable to locate the content that you requested.", - "match_code": 200, - "match_string": "Recent Book Activity" - }, - { - "name": "Bookcrossing", - "url": "https://bookcrossing.com/mybookshelf/{}", - "category": "news", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "Sorry, we were unable", - "match_string": "-profile" - }, - { - "name": "Bookmate", - "url": "https://ru.bookmate.com/authors/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Sorry! We couldn\u2019t find what you were looking for" - }, - { - "name": "Bookmix", - "url": "https://bookmix.ru/users/index.phtml?ginv=&keyword={}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u043e\u0438\u0441\u043a\u0430" - }, - { - "name": "Booknode", - "url": "https://booknode.com/profil/{}", - "category": "other", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "<title>Page non trouv\u00e9e", - "match_code": 200, - "match_string": "<title>Profil de" - }, - { - "name": "bookz.su", - "url": "http://bookz.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "BoomInfo", - "url": "https://boominfo.ru/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f." - }, - { - "name": "Boominfo", - "url": "https://boominfo.org/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "boominfo.org", - "url": "https://boominfo.org/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Boosty", - "url": "https://boosty.to/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<title>", - "match_string": "Boosty " - }, - { - "name": "Boosty", - "url": "https://api.boosty.to/v1/blog/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "\"error\":\"blog_not_found\"", - "match_code": 200, - "match_string": "\"id\":" - }, - { - "name": "BOOTH", - "url": "https://{}.booth.pm/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Borisoglebsk", - "url": "http://www.borisoglebsk.net/modules.php?name=Forums&file=profile&mode=viewprofile&u={}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - }, - { - "name": "Borsch.gallery", - "url": "https://borsch.gallery/hudozhniki/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "bot-cs.at.ua", - "url": "http://bot-cs.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Botanichka", - "url": "https://www.botanichka.ru/members/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bowhuntery", - "url": "https://bowhuntery.ru/userlist.php?username={}&show_group=-1", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" - }, - { - "name": "Boxing", - "url": "http://boxing.ru/forum/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "brainscale.net", - "url": "https://brainscale.net/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bratsk Forum", - "url": "http://forum.bratsk.org/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "BraveCommunity", - "url": "https://community.brave.com/u/{}/", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Breach Forums", - "url": "https://breached.vc/User-{}", - "category": "tech", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "The member you specified is either invalid or doesn't exist.", - "match_code": 200, - "match_string": "Time Spent Online" - }, - { - "name": "BreachSta.rs Forum", - "url": "https://breachsta.rs/profile/{}", - "category": "forum", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "Error - BreachStars" - }, - { - "name": "breakers.tv", - "url": "https://breakers.tv/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Channel you are looking for doesn't exist", - "match_string": " followers" - }, - { - "name": "Brickset", - "url": "https://brickset.com/profile/{}", - "category": "other", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "{name}", - "match_code": 200, - "match_string": "Member since:" - }, - { - "name": "Brickset", - "url": "https://forum.brickset.com/profile/{}", - "category": "forum", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "User Not Found", - "match_code": 200, - "match_string": "Activity" - }, - { - "name": "Bridgemoscow", - "url": "https://bridgemoscow.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Bridgewinners", - "url": "https://bridgewinners.com/profile/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Error!" - }, - { - "name": "Britishcat", - "url": "http://www.britishcat.ru/forumnew/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "Browncafe", - "url": "https://www.browncafe.com/community/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "browncafe.com", - "url": "http://www.browncafe.com/community//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Brusheezy", - "url": "https://www.brusheezy.com/members/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "masthead", - "match_string": "username" - }, - { - "name": "Brute", - "url": "https://brute.su/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "brute.pw", - "url": "https://brute.pw/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "budo52.ru", - "url": "http://budo52.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Budo_community", - "url": "https://budo.community/index.php?app=core&module=search&do=search&andor_type=and&search_author={}&search_app_filters[forums][sortKey]=date&search_content=both&search_app_filters[forums][noPreview]=1&search_app_filters[forums][pCount]=&search_app_filters[forums][pViews]=&search_app_filters[forums][sortKey]=date&search_app_filters[forums][sortDir]=0&search_app_filters[forums][searchInKey]=&search_term=&search_app=forums&search_app_filters[forums][searchInKey]=&search_app_filters[forums][sortKey]=posts&search_app_filters[forums][sortDir]=0", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432." - }, - { - "name": "Bugaga", - "url": "https://bugaga.ru/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "bugbank", - "url": "https://www.bugbank.cn/api/user/{}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "bugbounty", - "url": "https://bugbounty.gg/members/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bugcrowd", - "url": "https://bugcrowd.com/{}", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": ">Bugcrowd | Error", - "match_string": "s researcher profile on Bugcrowd" - }, - { - "name": "BugCrowd", - "url": "https://bugcrowd.com/{}/profile_widgets", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "class='cc-error-page__msg'", - "match_code": 200, - "match_string": "\"widgets\":" - }, - { - "name": "bugku", - "url": "https://www.bugku.com/space-username-{}.html", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "Build_opensuse", - "url": "https://build.opensuse.org/users/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Bukkit", - "url": "https://bukkit.org//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bukkit", - "url": "https://bukkit.org/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found" - }, - { - "name": "Bulbanews", - "url": "https://bulbanews.bulbagarden.net/wiki/User:{}", - "category": "news", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "bulbapedia.bulbagarden.net", - "url": "https://bulbapedia.bulbagarden.net/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "bulbapp.com", - "url": "https://bulbapp.com/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "bull-baza.at.ua", - "url": "http://bull-baza.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Bunpro", - "url": "https://community.bunpro.jp/u/{}.json", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "The requested URL or resource could not be found.", - "match_code": 200, - "match_string": "username" - }, - { - "name": "buyforex.ucoz.ru", - "url": "http://buyforex.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "BuyMeACoffee", - "url": "https://buymeacoff.ee/{}", - "category": "shopping", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Buymeacoffee", - "url": "https://www.buymeacoffee.com/{}", - "category": "finance", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Buymeacoffee", - "url": "https://buymeacoffee.com/{}", - "category": "finance", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "seem to find the page", - "match_string": "creator-csrf" - }, - { - "name": "BuzzFeed", - "url": "https://buzzfeed.com/{}", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "BuzzFeed", - "url": "https://www.buzzfeed.com/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "We can't find the page you're looking for", - "match_code": 200, - "match_string": " on BuzzFeedAuthor: - Buzznet" - }, - { - "name": "Buzznet", - "url": "https://www.buzznet.com/author/{}/", - "category": "news", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "The page you are looking for can't be found.", - "match_code": 200, - "match_string": "Author:" - }, - { - "name": "Bybio", - "url": "https://bybio.co/{}", - "category": "social", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "404 not found", - "match_string": "BYBIO" - }, - { - "name": "Bylkov", - "url": "https://www.bylkov.ru/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "Byond", - "url": "https://www.byond.com/members/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Announcements about BYOND's software and website.", - "match_string": "Shoutbox" - }, - { - "name": "Byxatab", - "url": "https://byxatab.com/user/{}/", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Cad", - "url": "https://cad.ru/ru/forum/index.php?PAGE_NAME=profile_view&UID={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u0424\u043e\u0440\u0443\u043c" - }, - { - "name": "cadaverzian.ucoz.ru", - "url": "http://cadaverzian.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Caddy Community", - "url": "https://caddy.community/u/{}/summary", - "category": "forum", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "caddy.community", - "url": "https://caddy.community/u/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Caduser", - "url": "https://www.caduser.ru/forum/userlist.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "cafecito", - "url": "https://cafecito.app/{}", - "category": "other", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Es posible que el enlace que seleccionaste est\u00e9 roto o que se haya eliminado la p\u00e1gina", - "match_code": 200, - "match_string": " | Cafecito" - }, - { - "name": "Caldina-club", - "url": "https://caldina-club.com/search.php?cache=1&keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "calendly.com", - "url": "https://calendly.com/{}/15min", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The page you are looking for could not be found", - "match_string": "profile" - }, - { - "name": "Calendy", - "url": "https://calendly.com/{}", - "category": "other", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Sorry, but the page you were looking for could not be found.", - "match_code": 200, - "match_string": "og:author" - }, - { - "name": "Cameo", - "url": "https://www.cameo.com/{}", - "category": "shopping", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 301, - "match_code": 200, - "match_string": "aggregateRating" - }, - { - "name": "Cameraprive", - "url": "https://cameraprive.com/br/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": true, - "error_type": "message", - "match_string": "header-profile" - }, - { - "name": "Camlust", - "url": "https://camlust.com/en/models/{}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "page not found", - "match_string": "in Free Chat Roulette" - }, - { - "name": "Cams Reviews", - "url": "https://www.cams.reviews/?search={}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": ">No Webcam Models Found.", - "match_string": "webcam models that match your search." - }, - { - "name": "CamSextacy", - "url": "https://www.camsextacy.com/{}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": ">Error, page not found
", - "match_string": "Cam: Free Live Nude Sex Show & Chat - CamSextacy" - }, - { - "name": "Camsoda", - "url": "https://camsoda.com/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": true, - "error_type": "message", - "match_string": "My Media" - }, - { - "name": "CamWithHer (users)", - "url": "https://camwithher.com/{}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "page not found", - "match_string": "Free Live Nude Sex Show" - }, - { - "name": "Candy Shop Escorts (Manchester, ENG)", - "url": "https://candyshopescorts.co.uk/escorts/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "The page you are looking for doesn't exist or has been moved.", - "match_string": "
Age
" - }, - { - "name": "Canva", - "url": "https://canva.com/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "CapFriendly", - "url": "https://www.capfriendly.com/users/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "
No results found
" - }, - { - "name": "Capfriendly", - "url": "https://capfriendly.com/users/{}", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "No results found" - }, - { - "name": "CapitalcityCombats", - "url": "http://capitalcity.combats.com/inf.pl?{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430" - }, - { - "name": "Car Talk Community", - "url": "https://community.cartalk.com/u/{}/summary", - "category": "forum", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Car72", - "url": "https://www.car72.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f" - }, - { - "name": "Caravaning", - "url": "http://caravaning.in.ua/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Caravanistan", - "url": "https://caravanistan.com/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "No suitable matches were found." - }, - { - "name": "caravelgames", - "url": "http://forum.caravelgames.com/member.php?Action=viewprofile&username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Guest" - }, - { - "name": "Carbonmade", - "url": "https://{}.carbonmade.com", - "category": "professional", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Carbonmade", - "url": "https://{}.carbonmade.com/", - "category": "professional", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "site not found", - "match_code": 200, - "match_string": "s online portfolio" - }, - { - "name": "CardingForum", - "url": "https://cardingforum.co/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found" - }, - { - "name": "Cardingsite", - "url": "https://cardingsite.cc/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found" - }, - { - "name": "Cardmates", - "url": "https://cardmates.net/profile/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "SimplePlanes Airplanes", - "match_code": 200, - "match_string": "
joined" - }, - { - "name": "Sinful Feet", - "url": "https://sinfulfeet.com/models/{}.html", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Page not found", - "match_string": "SinfulFeet | " - }, - { - "name": "Sitepoint", - "url": "https://sitepoint.com/community/u/{}", - "category": "tech", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Sitepoint", - "url": "https://sitepoint.com/u/{}", - "category": "tech", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Skeb.jp", - "url": "https://skeb.jp/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Skeb - Request Box", - "match_string": ") | Skeb" - }, - { - "name": "sketchfab.com", - "url": "https://sketchfab.com/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SkodaForum", - "url": "http://www.skodaforum.ru/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "skorozamuj.com", - "url": "http://skorozamuj.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Skyblock", - "url": "https://skyblock.net/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Skybrary", - "url": "https://skybrary.aero/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Skynetzone", - "url": "https://skynetzone.net/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "skynetzone.net", - "url": "https://skynetzone.net/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Skypli", - "url": "https://www.skypli.com/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Nothing found", - "match_string": "profile-box__info" - }, - { - "name": "Skyrimforums", - "url": "https://skyrimforums.org/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Skyrimforums", - "url": "https://skyrimforum.com/forum/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Skyrock", - "url": "https://{}.skyrock.com/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SkyscraperCity", - "url": "https://www.skyscrapercity.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Skyscrapercity", - "url": "https://www.skyscrapercity.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Slack", - "url": "https://{}.slack.com", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SlackHoles", - "url": "https://slackholes.com/actor/{}/", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "status_code", - "error_code": 404, - "error_string": "It looks like nothing was found at this location", - "match_code": 200, - "match_string": "Pussy and Ass Sizes" - }, - { - "name": "sladkiydesert.ucoz.ru", - "url": "http://sladkiydesert.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Slamdunk", - "url": "https://www.slamdunk.ru/search/?&q={}&type=core_members", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "0 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432" - }, - { - "name": "Slant.co", - "url": "https://www.slant.co/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "404 - Page Not Found - Slant", - "match_string": "s Profile - Slant" - }, - { - "name": "Slashdot", - "url": "https://slashdot.org/~{}", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "user you requested does not exist" - }, - { - "name": "Slides", - "url": "https://slides.com/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SlideShare", - "url": "https://www.slideshare.net/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "blankProfile", - "match_string": "user-name" - }, - { - "name": "SlideShare", - "url": "https://slideshare.net/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "<title>Page no longer exists" - }, - { - "name": "Slivap", - "url": "https://slivap.ru/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "slivap.ru", - "url": "https://slivap.ru/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "slivsklad.ru", - "url": "https://slivsklad.ru/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "sloboganec.at.ua", - "url": "http://sloboganec.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sluts Around Town", - "url": "https://slutsaroundtown.com/video_tag/{}/", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Page Not Found", - "match_string": "post-title" - }, - { - "name": "Smallcar", - "url": "https://www.smallcar.ru/talk/profile.php?mode=viewprofile&u={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u00cf\u00f0\u00ee\u00f4\u00e8\u00eb\u00fc \u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00ff <" - }, - { - "name": "smart-lab.ru", - "url": "https://smart-lab.ru/profile/{}/", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "404" - }, - { - "name": "smart-phone.ucoz.ua", - "url": "http://smart-phone.ucoz.ua/index/8-0-{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "smarton.at.ua", - "url": "http://smarton.at.ua/index/8-0-{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "smartplay.ucoz.ru", - "url": "http://smartplay.ucoz.ru/index/8-0-{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Smashcast", - "url": "https://www.smashcast.tv/api/media/live/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Smashrun", - "url": "https://smashrun.com/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "smelsy", - "url": "https://www.smelsy.com/profile/{}", - "category": "other", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 500, - "error_string": "Server Error", - "match_code": 200, - "match_string": "Smelsy -" - }, - { - "name": "SmiHub", - "url": "https://smihub.com/v/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "text-lg mb-3", - "match_string": "profile" - }, - { - "name": "Smite", - "url": "https://smite.gamepedia.com/wiki/User:{}", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Smogon", - "url": "https://www.smogon.com/forums/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found." - }, - { - "name": "smokingmeatforums.com", - "url": "https://smokingmeatforums.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Smolmama", - "url": "https://smolmama.com/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "sms.portalsms.ru", - "url": "http://sms.portalsms.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Smugmug", - "url": "https://{}.smugmug.com/", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SmugMug", - "url": "https://{}.smugmug.com", - "category": "art", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Smule", - "url": "https://www.smule.com/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Smule | Page Not Found (404)", - "match_string": "Profile: " - }, - { - "name": "smule", - "url": "https://www.smule.com/api/profile/?handle={}", - "category": "music", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 400, - "error_string": "code\": 65", - "match_code": 200, - "match_string": "account_id" - }, - { - "name": "Smule", - "url": "https://smule.com/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "The page you are looking", - "match_string": "username:" - }, - { - "name": "Snapchat", - "url": "https://www.snapchat.com/add/{}", - "category": "social", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Snapchat", - "url": "https://www.snapchat.com/@{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "NOT_FOUND", - "match_code": 200, - "match_string": "is on Snapchat!" - }, - { - "name": "Snapchat", - "url": "https://feelinsonice.appspot.com/web/deeplink/snapcode?username={}&size=400&type=SVG", - "category": "social", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "http://www.w3.org/1999/xlink", - "match_code": 200, - "match_string": "</clipPath>" - }, - { - "name": "Snapchat", - "url": "https://snapchat.com/add/{}", - "category": "social", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "NoContent_title", - "match_string": "Header_displayNameText" - }, - { - "name": "Snapchat Stories", - "url": "https://story.snapchat.com/s/{}", - "category": "social", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Not_Found", - "match_code": 200, - "match_string": "is on Snapchat!" - }, - { - "name": "Snbforums", - "url": "https://www.snbforums.com/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found" - }, - { - "name": "snegovaya-pad.ucoz.ru", - "url": "http://snegovaya-pad.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Snicket", - "url": "https://snicket.wikia.com/wiki/User:{}", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "sniperforums.com", - "url": "https://sniperforums.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Snipfeed", - "url": "https://snipfeed.co/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Oops, you hit a dead end!", - "match_code": 200, - "match_string": "creatorLink" - }, - { - "name": "snipplr.com", - "url": "https://snipplr.com/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Snooth", - "url": "https://www.snooth.com/author/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<title>Page not found", - "match_string": "content=\"https://www.snooth.com/author/" - }, - { - "name": "snowblowerforum.com", - "url": "https://snowblowerforum.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Snowjapan", - "url": "https://www.snowjapan.com/community/index.php?/search/&q={}&quick=1&type=core_members", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Found 0 results" - }, - { - "name": "so4ineniya.ucoz.ru", - "url": "http://so4ineniya.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Soberu", - "url": "https://yasobe.ru/na/{}", - "category": "shopping", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Soborno", - "url": "https://soborno.ru/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "soc-life.com", - "url": "http://soc-life.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code", - "match_string": "sc-tabs\"><div>\u041b\u043e\u0433\u0438\u043d:" - }, - { - "name": "socforum.3dn.ru", - "url": "http://socforum.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sochi_profi", - "url": "https://sochi.profi.ru/profile/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Social", - "url": "https://social.msdn.microsoft.com/profile/{}/", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "\"statistics\"" - }, - { - "name": "social.bund.de", - "url": "https://social.bund.de/@{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "<title>The page you are looking for isn't here.", - "match_code": 200, - "match_string": "@social.bund.de) - social.bund.de" - }, - { - "name": "social.msdn.microsoft.com", - "url": "https://social.msdn.microsoft.com/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "social.tchncs.de", - "url": "https://social.tchncs.de/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Social_microsoft", - "url": "https://social.microsoft.com/profile/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "The resource you are looking for has been removed" - }, - { - "name": "Socialblade", - "url": "https://socialblade.com/youtube/user/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "SocialLibremOne", - "url": "https://social.librem.one/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Society Service Escorts (Holland & Belgium)", - "url": "https://www.societyservice.com/escort/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "find your perfect", - "match_string": "profile" - }, - { - "name": "Society Service Gigolos (Holland & Belgium)", - "url": "https://www.societyservice.com/gigolo/{}", - "category": "news", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "find your perfect", - "match_string": "profile" - }, - { - "name": "society6.com", - "url": "https://society6.com/{}/all", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Socioforum", - "url": "https://www.socioforum.su/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Socionics", - "url": "http://www.socionics.org/user/Profile.aspx?username={}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "soft-deniz.ucoz.ru", - "url": "http://soft-deniz.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "soft-wm.3dn.ru", - "url": "http://soft-wm.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "softal.3dn.ru", - "url": "http://softal.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Softboard", - "url": "https://softboard.ru/search/?q={}&quick=1&type=core_members", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "0 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432" - }, - { - "name": "softgame.3dn.ru", - "url": "http://softgame.3dn.ru/index/8-0-{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SoftwareInformer", - "url": "https://users.software.informer.com/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "sofurry", - "url": "https://{}.sofurry.com", - "category": "art", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "SoFurry - Error | SoFurry", - "match_code": 200, - "match_string": "'s Profile | SoFurry" - }, - { - "name": "sokal.ucoz.lv", - "url": "http://sokal.ucoz.lv/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Solaris-club", - "url": "https://solaris-club.net/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "soldati-russian.ru", - "url": "http://soldati-russian.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Solikick", - "url": "https://solikick.com/-{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "This item has been removed or is no longer available", - "match_string": "page_guest_users-view" - }, - { - "name": "solo.to", - "url": "https://solo.to/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "The page you're looking for isn't here.", - "match_code": 200, - "match_string": "create your own page" - }, - { - "name": "Soloby", - "url": "http://www.soloby.ru/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430" - }, - { - "name": "Somersoft", - "url": "https://www.somersoft.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "somersoft.com", - "url": "https://www.somersoft.com//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SoMyMy (underwear sales)", - "url": "https://somymy.com/{}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": ">Sorry, that page is not found!

", - "match_string": ">Last seen" - }, - { - "name": "Sony-club", - "url": "https://www.sony-club.ru/forum/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "sony127.3dn.ru", - "url": "http://sony127.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sony_stratege", - "url": "https://sony.stratege.ru/forums/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0421\u0430\u0439\u0442 \u0437\u0430\u043a\u0440\u044b\u0442" - }, - { - "name": "Soobshestva", - "url": "http://www.soobshestva.ru/forum/user/{}/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SOOP", - "url": "https://www.sooplive.co.kr/station/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sorento_kia-club", - "url": "http://sorento.kia-club.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "soslujivzi.ru", - "url": "http://soslujivzi.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sotoguide", - "url": "https://sotoguide.ru/users/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Soul Cams", - "url": "https://www.soulcams.com/profile/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "SoulCams", - "match_string": "Live cam | Soulcams.com" - }, - { - "name": "SoundCloud", - "url": "https://soundcloud.com/{}", - "category": "music", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Soundex", - "url": "https://soundex.ru/forum/index.php?/search/&q={}&quick=1&type=core_members", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "0 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432" - }, - { - "name": "soundfactory.ucoz.org", - "url": "http://soundfactory.ucoz.org/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Soundgym", - "url": "https://www.soundgym.co/member/profile?m={}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Soup", - "url": "https://www.soup.io/author/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "SourceForge", - "url": "https://sourceforge.net/u/{}/profile", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "match_string": "Personal Tools" - }, - { - "name": "SourceForge", - "url": "https://sourceforge.net/u/{}", - "category": "tech", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sourceforge", - "url": "https://sourceforge.net/user/username/{}", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\"success\": 1", - "match_code": 400, - "match_string": "\"error\": \"invalid\"" - }, - { - "name": "SourceForge", - "url": "https://sourceforge.net/u/{}/profile/", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Page not found" - }, - { - "name": "Sourcewatch", - "url": "https://www.sourcewatch.org/index.php?title=User:{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "southbayriders.com", - "url": "http://www.southbayriders.com/forums//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SouthernGFE", - "url": "https://www.southerngfe.com/escorts/search?searchword={}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Your search does not return any result.", - "match_string": "title='{username}" - }, - { - "name": "Southklad", - "url": "https://southklad.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "southparkz.net", - "url": "http://southparkz.net/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "sovgavan.ru", - "url": "http://sovgavan.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "soylentnews", - "url": "https://soylentnews.org/~{}", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The user you requested does not exist, no matter how much you wish this might be the case." - }, - { - "name": "Sp-shopogoliki", - "url": "https://sp-shopogoliki.ru/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Spaces", - "url": "https://spaces.im/mysite/index/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "match_string": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u043f\u043e\u0434\u0430\u0440\u043e\u043a" - }, - { - "name": "spaceserials.ru", - "url": "http://spaceserials.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Spankpay", - "url": "https://spankpay.me/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "SpankPay.Me", - "match_string": " - SpankPay.Me" - }, - { - "name": "Spark", - "url": "https://spark.ru/startup/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "sparkpeople", - "url": "https://www.sparkpeople.com/mypage.asp?id={}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "We couldn't find that user" - }, - { - "name": "Sparkpeople", - "url": "https://sparkpeople.com/mypage.asp?id={}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "We couldn't find that user", - "match_string": "member_" - }, - { - "name": "Spartak_msk", - "url": "http://spartak.msk.ru/guest/search.php?keywords=&terms=all&author={}", - "category": "art", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u043f\u043e\u0438\u0441\u043a \u0441\u0440\u0430\u0437\u0443" - }, - { - "name": "Spb-projects", - "url": "http://spb-projects.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Speaker Deck", - "url": "https://speakerdeck.com/{}/", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "User Not Found - Speaker Deck", - "match_code": 200, - "match_string": ") on Speaker Deck" - }, - { - "name": "Speakerdeck", - "url": "https://speakerdeck.com/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "User Not Found" - }, - { - "name": "specchiasol.ru", - "url": "http://specchiasol.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Spectrum", - "url": "https://spectrum.chat/users/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "@{username}" - }, - { - "name": "spectrum-z.ru", - "url": "http://spectrum-z.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "speedrun", - "url": "https://www.speedrun.com/user/{}/", - "category": "gaming", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "speedrun.com", - "match_code": 200, - "match_string": "Runs - " - }, - { - "name": "Speedrun", - "url": "https://speedrun.com/user/{}", - "category": "gaming", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "not found." - }, - { - "name": "Speedrun.com", - "url": "https://speedrun.com/users/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Not found - Speedrun", - "match_string": "\"user\":{\"id\":\"" - }, - { - "name": "Spells8", - "url": "https://forum.spells8.com/u/{}", - "category": "forum", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SpiceWorks", - "url": "https://community.spiceworks.com/people/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Spinchat", - "url": "https://www.spinchat.com/hp/{}/", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "spishu.ru", - "url": "http://spishu.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "splatoonwiki.org", - "url": "https://splatoonwiki.org/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Spletenie", - "url": "https://www.spletenie.ru/users/{}/stranamam/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "<title>\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430" - }, - { - "name": "spletnik", - "url": "https://spletnik.ru/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Splice", - "url": "https://splice.com/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Splits.io", - "url": "https://splits.io/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SPOJ", - "url": "https://www.spoj.com/users/{}/", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "Innopolis Open 2018", - "match_code": 200, - "match_string": "

Activity over the last year

" - }, - { - "name": "Sponsr", - "url": "https://sponsr.ru/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sporcle", - "url": "https://www.sporcle.com/user/{}/people", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "sporcle", - "url": "https://www.sporcle.com/user/{}/people/", - "category": "gaming", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 301, - "error_string": "This Sporcle user cannot be found.", - "match_code": 200, - "match_string": "'s Sporcle Friends" - }, - { - "name": "Sporcle", - "url": "https://www.sporcle.com/user/{}/quizzes/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sporcle", - "url": "https://sporcle.com/user/{}/people", - "category": "forum", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "This Sporcle user cannot", - "match_string": "profile-" - }, - { - "name": "Sporewiki", - "url": "https://sporewiki.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Sportbox", - "url": "https://forum.sportbox.ru/index.php?app=members&module=list&app=members&module=list&showall=0&sort_key=members_l_display_name&sort_order=asc&max_results=20&name_box=begins&name={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041d\u0435\u0442 \u0441\u043e\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0439" - }, - { - "name": "Sportlerfrage", - "url": "https://www.sportlerfrage.net/nutzer/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sports", - "url": "https://www.sports.ru/search/?query={}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" - }, - { - "name": "Sports", - "url": "https://sports.ru/profile/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "info-block" - }, - { - "name": "Sports Tracker", - "url": "https://api.sports-tracker.com/apiserver/v1/user/name/{}", - "category": "other", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\"code\":\"404\"", - "match_code": 200, - "match_string": "\"uuid\":" - }, - { - "name": "sports.ru", - "url": "https://www.sports.ru/profile/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sportsjournalists", - "url": "https://www.sportsjournalists.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "sportsjournalists.com", - "url": "http://sportsjournalists.com/forum//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SportsTracker", - "url": "https://www.sports-tracker.com/view_profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\"code\":\"404\"" - }, - { - "name": "Sportstracklive", - "url": "https://www.sportstracklive.com/en/user/{}", - "category": "health", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Spotify", - "url": "https://open.spotify.com/user/{}", - "category": "music", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Spotify_community", - "url": "https://community.spotify.com/t5/forums/searchpage/tab/user?q={}", - "category": "music", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\t\t0 results" - }, - { - "name": "Sprashivai", - "url": "http://sprashivai.ru/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Sprashivai_CLOSEDEAD", - "url": "http://sprashivai.ru/{}?sl", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "spreadshirt.com", - "url": "https://spreadshirt.com/shop/user/{}/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Spreaker", - "url": "https://www.spreaker.com/user/{}", - "category": "other", - "source": "nexfil", - "nsfw": false - }, - { - "name": "Spursarmy", - "url": "https://spursarmy.com/profile/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": ">\u041e\u0448\u0438\u0431\u043a\u0430" - }, - { - "name": "sputnikkey.ru", - "url": "http://sputnikkey.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SPW", - "url": "https://forum.spw.ru/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "spygaming.clan.su", - "url": "http://spygaming.clan.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "SQL", - "url": "https://www.sql.ru/forum/actualsearch.aspx?search=&sin=0&bid=0&a={}&ma=0&dt=-1&s=1&so=1", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" - }, - { - "name": "Sr", - "url": "https://sr.ht/~{}/", - "category": "tech", - "source": "nexfil", - "nsfw": false - }, - { - "name": "Srclog", - "url": "https://srclog.com/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Ssb_wiki", - "url": "https://www.ssbwiki.com/User:{}", - "category": "wiki", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "ssbwiki.com", - "url": "https://ssbwiki.com/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "sspai", - "url": "https://sspai.com/api/v1/information/user/activity/page/get?limit=10&offset=0&slug={}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "sst.hiberworld.com", - "url": "https://sst.hiberworld.com/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "User not found" - }, - { - "name": "sstalkers.ru", - "url": "http://sstalkers.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Stackexchange", - "url": "https://unix.stackexchange.com/users/filter?search={}&filter=Month&tab=Reputation", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "No users matched your search" - }, - { - "name": "StackOverflow", - "url": "https://stackoverflow.com/users/filter?search={}", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "no-search-results", - "match_string": "user-info" - }, - { - "name": "Stackoverflow", - "url": "https://stackoverflow.com/users/?search={}", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "p>No users matched your search" - }, - { - "name": "Stackoverflow_ES", - "url": "https://es.stackoverflow.com/users/filter?search={}&filter=Month&tab=Reputation", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0418\u043c\u044f: " - }, - { - "name": "Stalkerbar", - "url": "https://stalkerbar.at.ua/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "stalkerbar.at.ua", - "url": "http://stalkerbar.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Star Citizen", - "url": "https://robertsspaceindustries.com/citizens/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Star Citizens Community", - "url": "https://robertsspaceindustries.com/community-hub/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Star-girl", - "url": "https://star-girl.ru/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" - }, - { - "name": "Starcitizen", - "url": "https://starcitizen.tools/wiki/User:{}", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Starexclub", - "url": "https://www.starexclub.ru/forum/memberlist.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043f\u043e \u0437\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u043a\u0440\u0438\u0442\u0435\u0440\u0438\u044f\u043c" - }, - { - "name": "starfiles.at.ua", - "url": "http://starfiles.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "starfywiki.org", - "url": "https://starfywiki.org/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "staroverovka.ucoz.ua", - "url": "http://staroverovka.ucoz.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Stars", - "url": "https://stars.avn.com/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": true, - "error_type": "message", - "match_string": "\"profile\"" - }, - { - "name": "Starsonice", - "url": "https://starsonice.borda.ru/?32-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" - }, - { - "name": "Starvault", - "url": "https://starvault.se/mortalforums/members/?username={}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found" - }, - { - "name": "Starwars", - "url": "https://starwars.wikia.com/User:{}", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Statistika", - "url": "http://statistika.ru/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Stats_stackexchange", - "url": "https://stats.stackexchange.com/users/filter?search={}&filter=Month&tab=Reputation", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "No users matched" - }, - { - "name": "Status Cafe", - "url": "https://status.cafe/users/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "Page Not Found" - }, - { - "name": "Statuspage", - "url": "https://{}.statuspage.io/api/v2/status.json", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 302, - "error_string": "You are being redirected.", - "match_code": 200, - "match_string": "updated_at" - }, - { - "name": "stay.ucoz.ru", - "url": "http://stay.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Steam", - "url": "https://steamcommunity.com/id/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified profile could not be found" - }, - { - "name": "Steam (by id)", - "url": "https://steamcommunity.com/profiles/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified profile could not be found" - }, - { - "name": "Steam (Group)", - "url": "https://steamcommunity.com/groups/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "No group could be retrieved for the given URL" - }, - { - "name": "Steam Community (User)", - "url": "https://steamcommunity.com/id/{}/", - "category": "gaming", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "The specified profile could not be found" - }, - { - "name": "steamdb.info", - "url": "https://steamdb.info/calculator/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "error-page", - "match_string": "profileForm" - }, - { - "name": "SteamGifts", - "url": "https://www.steamgifts.com/user/{}", - "category": "gaming", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 301, - "match_code": 200, - "match_string": "\"identifier\":" - }, - { - "name": "Steamid", - "url": "https://steamid.uk/profile/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "
Profile not found
" - }, - { - "name": "Steamidfinder", - "url": "https://steamidfinder.com/lookup/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "could not be found.", - "match_string": "se our custom tools to build a Steam profile badge" - }, - { - "name": "Steemcoinpan", - "url": "https://steemcoinpan.com/@{}", - "category": "social", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "UserProfile__stats" - }, - { - "name": "steemit", - "url": "https://steemit.com/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "NotFound__menu", - "match_string": "profile" - }, - { - "name": "steller.co", - "url": "https://steller.co/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Stereo", - "url": "https://stereo.ru/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Stereo", - "url": "https://stereo.com/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "@{username}" - }, - { - "name": "Sti-club", - "url": "http://www.sti-club.su/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "Stihi.ru", - "url": "https://www.stihi.ru/avtor/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "Stocktwits", - "url": "https://stocktwits.com/{}", - "category": "art", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "(@{username})" - }, - { - "name": "Stoimost", - "url": "https://stoimost.com.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Stoners.social (Mastodon Instance)", - "url": "https://stoners.social/api/v1/accounts/lookup?acct={}", - "category": "social", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Record not found", - "match_code": 200, - "match_string": "display_name" - }, - { - "name": "Stop-narko_info", - "url": "http://stop-narko.info/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "stop-nazi.at.ua", - "url": "http://stop-nazi.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Stopgame", - "url": "https://stopgame.ru/user/{}", - "category": "gaming", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "stopgame.ru", - "url": "https://stopgame.ru/users/profile/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Store_kde", - "url": "https://store.kde.org/u/{}", - "category": "shopping", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Strava | ", - "match_string": "Strava" - }, - { - "name": "Strava", - "url": "https://strava.com/athletes/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "media-body main" - }, - { - "name": "StreamElements", - "url": "https://api.streamelements.com/kappa/v2/channels/{}", - "category": "finance", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "error", - "match_code": 200, - "match_string": "\"providerId\"" - }, - { - "name": "StreamLabs", - "url": "https://streamlabs.com/api/v6/user/{}", - "category": "finance", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 401, - "error_string": "Unauthorized", - "match_code": 200, - "match_string": "\"id\":" - }, - { - "name": "Stripchat", - "url": "https://stripchat.com/api/front/users/checkUsername?username={}", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "message", - "error_code": 200, - "error_string": "[]", - "match_code": 400, - "match_string": "\"error\":\"This username already exists\"" - }, - { - "name": "Stripchat", - "url": "https://stripchat.com/{}", - "category": "adult", - "source": "reveal_my_name", - "nsfw": true, - "error_type": "status_code", - "error_code": 404, - "error_string": "Oops. The page you were looking for doesn't exist", - "match_code": 200, - "match_string": "I Do in My Shows:" - }, - { - "name": "stripchat.global", - "url": "https://stripchat.global/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "
404
", - "match_string": "profile email" - }, - { - "name": "stroy-s-nami.ucoz.com", - "url": "http://stroy-s-nami.ucoz.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "stroyneemvmeste.ucoz.ru", - "url": "http://stroyneemvmeste.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "student-telecom.ru", - "url": "http://student-telecom.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "studentur.com.ua", - "url": "http://studentur.com.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Studfile", - "url": "https://studfile.net/users/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Studwork", - "url": "https://studwork.org/info/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "herdun", - "match_string": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - }, - { - "name": "studygolang", - "url": "https://studygolang.com/user/{}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "Stunited", - "url": "http://stunited.org/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "subaruforester.org", - "url": "https://subaruforester.org/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "subaruoutback.org", - "url": "https://subaruoutback.org/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Subeta", - "url": "https://subeta.net/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Invalid user" - }, - { - "name": "Subforums", - "url": "https://subforums.net/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "subforums.net", - "url": "https://subforums.net/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Subscribestar", - "url": "https://subscribestar.adult/{}", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "status_code", - "error_code": 404, - "error_string": "WE ARE SORRY, THE PAGE YOU REQUESTED CANNOT BE FOUND", - "match_code": 200, - "match_string": "CREATOR STATS" - }, - { - "name": "Substack", - "url": "https://substack.com/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Found. Redirecting to", - "match_string": "profile\\" - }, - { - "name": "Substack", - "url": "https://{}.substack.com/", - "category": "news", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Suedtirolnews", - "url": "https://suedtirolnews.it/user/{}", - "category": "news", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profile-body" - }, - { - "name": "sufficit.ucoz.ru", - "url": "http://sufficit.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sugoidesu", - "url": "https://sugoidesu.net/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sugoidesu", - "url": "https://sugoidesu.net/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Suicidegirls", - "url": "https://www.suicidegirls.com/members/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "sukebei.nyaa.si", - "url": "https://sukebei.nyaa.si/user/{}", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "status_code", - "error_code": 404, - "error_string": "404 Not Found", - "match_code": 200, - "match_string": "'s torrents" - }, - { - "name": "Suomi24", - "url": "https://www.suomi24.fi/profiili/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "super-warez-por.at.ua", - "url": "http://super-warez-por.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Supernaturalwiki", - "url": "https://supernaturalwiki.com/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Superuser", - "url": "https://superuser.com/users?tab=Reputation&filter=all&search={}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "No users matched your search." - }, - { - "name": "Support_mozilla", - "url": "https://support.mozilla.org/en-US/user/{}", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Page Not Found | Mozilla" - }, - { - "name": "survivalistboards.com", - "url": "https://survivalistboards.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Survivefrance", - "url": "https://survivefrance.com/u/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Suunto_Movescount_CLOSEDEAD", - "url": "http://www.movescount.com/ru/members/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "error=4&" - }, - { - "name": "Suzuki-club", - "url": "https://suzuki-club.ru/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Suzuri.jp", - "url": "https://suzuri.jp/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<title>404 | SUZURI", - "match_string": "\u221e SUZURI\uff08\u30b9\u30ba\u30ea\uff09" - }, - { - "name": "svadba-orel.com", - "url": "http://svadba-orel.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "svidbook", - "url": "https://www.svidbook.ru/user/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Svidbook", - "url": "https://www.svidbook.ru/user/{}/", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Svidbook", - "url": "https://svidbook.ru/user/{}", - "category": "social", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "user_profile" - }, - { - "name": "svoimirykami.ucoz.ru", - "url": "http://svoimirykami.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "svtperformance.com", - "url": "https://svtperformance.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Swame", - "url": "https://swame.com/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profile" - }, - { - "name": "Swapd", - "url": "https://swapd.co/u/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Swapfinder", - "url": "https://swapfinder.com/profile/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Swapfinder.com", - "match_string": "Profile on Swapfinder.com" - }, - { - "name": "swedroid.se", - "url": "http://swedroid.se/forum/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sweet Passion Escort", - "url": "https://www.sweet-passion-escort.de/en/models/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Could not find what you were looking for?", - "match_string": "book" - }, - { - "name": "Sweethome3d", - "url": "https://www.sweethome3d.com/support/forum/viewmember;?member={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": " Error" - }, - { - "name": "SwimmingForum", - "url": "http://forumswimming.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Syberpussy", - "url": "https://syberpussy.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "syberpussy.com", - "url": "https://syberpussy.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Syktforum", - "url": "http://syktforum.ru/profile/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u0422\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442." - }, - { - "name": "SyktyvkarOnline", - "url": "http://syktyvkar-online.ru/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "" - }, - { - "name": "symbian9.clan.su", - "url": "http://symbian9.clan.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sysadmins", - "url": "https://sysadmins.ru/member{}.html", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Could not obtain user posts information" - }, - { - "name": "Sysprogs", - "url": "https://sysprogs.com/w/forums/users/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sythe", - "url": "https://www.sythe.org/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Sythe", - "url": "https://www.sythe.org/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found. Please enter a member's entire name." - }, - { - "name": "Szerokikadr.pl", - "url": "https://www.szerokikadr.pl/profil,{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Nie masz jeszcze konta?", - "match_string": "Profil u\u017cytkownika" - }, - { - "name": "Szmer.info", - "url": "https://szmer.info/u/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Code: Couldn't find that username or email.", - "match_string": "Joined" - }, - { - "name": "T-MobileSupport", - "url": "https://support.t-mobile.com/people/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "t00ls", - "url": "https://www.t00ls.com/ajax.php?infloat=register&handlekey=register&action=checkusername&username={}&inajax=1&ajaxtarget=returnmessage4", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "tabletoptournament", - "url": "https://www.tabletoptournaments.net/eu/player/{}", - "category": "gaming", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "No player with the nickname", - "match_code": 200, - "match_string": "- Player Profile | T\u00b3 - TableTop Tournaments" - }, - { - "name": "Tabun", - "url": "https://tabun.everypony.ru/profile/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "tachograph.ucoz.ru", - "url": "http://tachograph.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tagged", - "url": "https://secure.tagged.com/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 302, - "error_string": "Tagged - The social network for meeting new people", - "match_code": 200, - "match_string": "s Profile" - }, - { - "name": "Tagged", - "url": "https://www.tagged.com/{}", - "category": "social", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Tagged makes it easy", - "match_string": "https://tagged.com/{username}" - }, - { - "name": "takr-kiev.ucoz.com", - "url": "http://takr-kiev.ucoz.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "talimger.org", - "url": "http://talimger.org/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Talk", - "url": "https://talk.commonmark.org/u/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Talk", - "url": "https://talk.jekyllrb.com/u/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Talk", - "url": "https://talk.manvfat.com/u/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Talk", - "url": "https://talk.sleepapnea.org/u/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "talk.macpowerusers.com", - "url": "https://talk.macpowerusers.com/u/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "TalkDrugabuse", - "url": "https://talk.drugabuse.com/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found" - }, - { - "name": "Talkingsober", - "url": "https://talkingsober.com/u/{}/summary", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Talks.by", - "url": "https://talks.by/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Talkstats", - "url": "https://www.talkstats.com/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found" - }, - { - "name": "Tamboff", - "url": "http://www.tamboff.ru/forum/profile.php?mode=viewprofile&u={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435" - }, - { - "name": "TamTam", - "url": "https://tamtam.chat/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Pv3WuoqzAb05NxqHCgZ29Z2jmQ", - "match_string": "data-tsid=\"avatar\"" - }, - { - "name": "Tanks", - "url": "https://tanks.mail.ru/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tanuki.pl", - "url": "https://tanuki.pl/profil/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Nie ma takiego u\u017cytkownika", - "match_string": "Do\u0142\u0105czy\u0142" - }, - { - "name": "TAP'D", - "url": "https://tapd.co/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "User does not exist", - "match_string": "\"_id\":" - }, - { - "name": "TAPiTAG", - "url": "https://account.tapitag.co/tapitag/api/v1/{}", - "category": "professional", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "The rf number is not valid", - "match_code": 200, - "match_string": "User details are Showing" - }, - { - "name": "Taplink", - "url": "https://taplink.cc/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tappy", - "url": "https://api.tappy.tech/api/profile/username/{}", - "category": "professional", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "Profile of username Not Found", - "match_code": 200, - "match_string": "user_id" - }, - { - "name": "Taringa", - "url": "https://www.taringa.net/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "problema", - "match_string": "User" - }, - { - "name": "Taringa", - "url": "https://taringa.net/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "user-country" - }, - { - "name": "Taringa Archived Profile", - "url": "https://archive.org/wayback/available?url=https://www.taringa.net/{}", - "category": "other", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\"archived_snapshots\": {}", - "match_code": 200, - "match_string": "\"archived_snapshots\": {\"closest\"" - }, - { - "name": "tarjaturunen.ucoz.ru", - "url": "http://tarjaturunen.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Taskrabbit", - "url": "https://www.taskrabbit.com/profile/{}/about", - "category": "shopping", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "TaskRabbit: Same Day Handyman, Moving & Delivery Services", - "match_string": "\u2019s Profile" - }, - { - "name": "Tasty Slips (underwear sales)", - "url": "https://tastyslips.com/en/vendors/{}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "The website was not found. Feel free to check out tastyslips.com", - "match_string": ">About me" - }, - { - "name": "tatyana-art.ucoz.com", - "url": "http://tatyana-art.ucoz.com/index/8-0-{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "tavr-obrazovanie.ru", - "url": "http://tavr-obrazovanie.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "taxi-belgorod.ucoz.ru", - "url": "http://taxi-belgorod.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tcrf", - "url": "https://tcrf.net/The_Cutting_Room_Floor/User:{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Tddft", - "url": "https://tddft.org/programs/octopus/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "tdo888.at.ua", - "url": "http://tdo888.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Teakdoor", - "url": "https://teakdoor.com/members/{}.html", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "This user has not registered and therefore does not have a profile to view." - }, - { - "name": "team-pros.3dn.ru", - "url": "http://team-pros.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Teampedia", - "url": "https://teampedia.net/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Teamtreehouse", - "url": "https://teamtreehouse.com/{}", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Oops, Something went missing", - "match_code": 200, - "match_string": "Member Since" - }, - { - "name": "teamtreehouse.com", - "url": "https://teamtreehouse.com/profiles/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Bummer! You must be logged in to access this page.", - "match_string": "Member Since" - }, - { - "name": "techcrunch", - "url": "https://techcrunch.com/author/{}/", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "Techdirt", - "url": "https://www.techdirt.com/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Techdirt", - "url": "https://www.techdirt.com/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": " | Techdirt" - }, - { - "name": "Techotopia", - "url": "https://techotopia.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "TechPowerUp", - "url": "https://www.techpowerup.com/forums/members/?username={}", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found" - }, - { - "name": "Techrepublic", - "url": "https://www.techrepublic.com/members/profile/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "techspot.com", - "url": "http://www.techspot.com/community//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Teddygirls", - "url": "https://teddysgirls.net/models/{}", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "status_code", - "error_code": 404, - "error_string": "The page you were looking for doesn't exist", - "match_code": 200, - "match_string": ";s exclusive page to subscribe to her" - }, - { - "name": "TEENUS", - "url": "http://www.teenus.info/kasutaja/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Viimati lisatud", - "match_string": "user-profile" - }, - { - "name": "Teespring", - "url": "https://commerce.teespring.com/v1/stores?slug={}", - "category": "professional", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "{\"errors\":{\"store\":[\"not found\"]}}", - "match_code": 200, - "match_string": "sellerToken" - }, - { - "name": "teflpedia.com", - "url": "https://teflpedia.com/User:{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tek-tips", - "url": "https://www.tek-tips.com/userinfo.cfm?member={}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Teknik", - "url": "https://user.teknik.io/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The user does not exist", - "match_string": "Public Key" - }, - { - "name": "Telaviv-Escort (Telaviv)", - "url": "https://telaviv-escort.com/model/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "404 not found", - "match_string": "Ethnicity:" - }, - { - "name": "Telegram", - "url": "https://t.me/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "" - }, - { - "name": "Telepropusk", - "url": "https://telepropusk.ru/forums/users/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "telescope.ac", - "url": "https://telescope.ac/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": ">Not found", - "match_string": "og:site_name" - }, - { - "name": "Teletype", - "url": "https://teletype.in/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Television_linternaute", - "url": "https://television.linternaute.com/profile/user/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tellonym", - "url": "https://api.tellonym.me/profiles/name/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "\"code\":\"NOT_FOUND\"", - "match_code": 200, - "match_string": "\"id\":" - }, - { - "name": "Tellonym.me", - "url": "https://tellonym.me/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "TemplateMonster", - "url": "https://www.templatemonster.com/authors/{}/", - "category": "professional", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "ErrorPage__title", - "match_string": "profile" - }, - { - "name": "Tenchat", - "url": "https://tenchat.ru/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tenor.com", - "url": "https://tenor.com/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "404 Error", - "match_string": "s GIFs on Tenor" - }, - { - "name": "Teplak", - "url": "http://www.teplak.ru/frm/profile.php?mode=viewprofile&u={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - }, - { - "name": "teplohorosho.ru", - "url": "http://teplohorosho.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Terminator", - "url": "http://terminator-scc.net.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Terminatorium", - "url": "https://terminatorium.borda.ru/?32-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" - }, - { - "name": "Termoshop", - "url": "https://termoshop.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "terralight.ucoz.ru", - "url": "http://terralight.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Terraria Forums", - "url": "https://forums.terraria.org/index.php?search/42798315/&c[users]={}&o=relevance", - "category": "forum", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "The following members could not be found" - }, - { - "name": "Test_pypi", - "url": "https://test.pypi.org/user/{}/", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "page\":0,\"totalMatches\":0" - }, - { - "name": "testwiki.wiki", - "url": "https://testwiki.wiki/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tetongravity", - "url": "https://www.tetongravity.com/forums/member.php/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Please wait" - }, - { - "name": "Tetr.io", - "url": "https://ch.tetr.io/api/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "No such user!", - "match_string": "success\":true" - }, - { - "name": "TETR.IO", - "url": "https://ch.tetr.io/u/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "No such user!" - }, - { - "name": "Texasguntalk", - "url": "https://www.texasguntalk.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Texasguntalk", - "url": "https://www.texasguntalk.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Tf2Items", - "url": "http://www.tf2items.com/id/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "TF2 Backpack Examiner", - "match_string": "TF2 Backpack -" - }, - { - "name": "Tfl.net.pl", - "url": "https://tfl.net.pl/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The page you are looking for isn't here.", - "match_string": "@tfl.net.pl" - }, - { - "name": "tfw2005.com", - "url": "http://www.tfw2005.com/boards//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tfwiki", - "url": "https://tfwiki.net/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "tg.rip", - "url": "https://tg.rip/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "btn_label", - "match_string": "<title>\u0422\u0435\u043b\u0435\u0433\u0440\u0430\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c" - }, - { - "name": "tgi.3dn.ru", - "url": "http://tgi.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Thaicat", - "url": "http://www.thaicat.ru/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "thaicat.ru", - "url": "http://thaicat.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Thatpervert", - "url": "https://thatpervert.com/user/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "Rating: " - }, - { - "name": "The AnswerBank", - "url": "https://www.theanswerbank.co.uk/members/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Welcome to the AnswerBank" - }, - { - "name": "The Erotic Review", - "url": "https://www.theeroticreview.com/reviews/newreviewsList.asp?Name={}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "<p>No records were found.</p>", - "match_string": "matches.</span>" - }, - { - "name": "the-mainboard.com", - "url": "http://the-mainboard.com/index.php/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Theaquariumwiki", - "url": "https://theaquariumwiki.com/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "theatre.my1.ru", - "url": "http://theatre.my1.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Thebeautybrains", - "url": "https://thebeautybrains.com/users/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Thebigboss", - "url": "http://thebigboss.org/author/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Thebuddyforum", - "url": "https://www.thebuddyforum.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "theburningprocess.com", - "url": "http://www.theburningprocess.com//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Thechessforum", - "url": "https://thechessforum.com/profile/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Page Not Found" - }, - { - "name": "Thechive", - "url": "https://thechive.com/author/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Find something else.", - "match_string": "Posts By" - }, - { - "name": "Thechive", - "url": "https://thechive.com/author/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "THEcommunity", - "url": "https://thecommunity.ru/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Thedaftclub", - "url": "https://www.thedaftclub.com/forum/member.php/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "This user has not registered and therefore does not have a profile to view." - }, - { - "name": "Thefastdiet", - "url": "https://thefastdiet.co.uk/forums/users/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Sorry, " - }, - { - "name": "TheFastlaneForum", - "url": "https://www.thefastlaneforum.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Thefastlaneforum", - "url": "https://www.thefastlaneforum.com/community/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Thefirearmsforum", - "url": "https://www.thefirearmsforum.com/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found. Please enter a member's entire name." - }, - { - "name": "Thegatewaypundit", - "url": "https://www.thegatewaypundit.com/author/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Oops! That page can\u2019t be found.", - "match_string": "avatar avatar-50 photo" - }, - { - "name": "TheGuardian", - "url": "https://profile.theguardian.com/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<title>public profile | Identity | The Guardian" - }, - { - "name": "theguardian", - "url": "https://www.theguardian.com/profile/{}", - "category": "news", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Page Not Found | The Guardian", - "match_code": 200, - "match_string": "

" - }, - { - "name": "thehackerworld", - "url": "https://www.thehackerworld.com/profile/{}/", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "Theinfosphere", - "url": "https://theinfosphere.org/User:{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "thelike.ru", - "url": "http://thelike.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Thelion", - "url": "http://www.thelion.com/bin/profile.cgi?c=s&ru_name={}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "We are sorry but the following error has occurred." - }, - { - "name": "ThemeForest", - "url": "https://themeforest.net/user/{}", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "TheMovieDB", - "url": "https://www.themoviedb.org/u/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "thenextweb", - "url": "https://thenextweb.com/author/{}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "TheOdysseyOnline", - "url": "https://www.theodysseyonline.com/user/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Theoutlander", - "url": "http://theoutlander.ru/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "Thephysicsforum", - "url": "https://www.thephysicsforum.com/members/{}.html", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "This user has not registered and therefore does not have a profile to view." - }, - { - "name": "Theplenty", - "url": "https://theplenty.net/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "theprodigy", - "url": "https://forum.theprodigy.ru/index.php?board=13&action=viewprofile&user={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u0447\u0435\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0432\u044b \u043f\u044b\u0442\u0430\u0435\u0442\u0435\u0441\u044c \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c, \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442." - }, - { - "name": "TheSimsResource", - "url": "https://www.thesimsresource.com/members/{}/", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Thesimsresource", - "url": "https://www.thesimsresource.com/artists/{}/", - "category": "art", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Thesimsresource", - "url": "https://thesimsresource.com/members/{}/", - "category": "art", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profile-name" - }, - { - "name": "TheStudentRoom", - "url": "https://www.thestudentroom.co.uk/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Thetattooforum", - "url": "https://www.thetattooforum.com/members/{}/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "We\u2019re sorry", - "match_string": "Insert This Gallery" - }, - { - "name": "theturboforums.com", - "url": "https://www.theturboforums.com/forums//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Thevampirediaries", - "url": "http://thevampirediaries.ru/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "TheVerge", - "url": "https://www.theverge.com/users/{}", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Theverge", - "url": "https://theverge.com/users/{}", - "category": "news", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "404 Not found", - "match_string": "-user-" - }, - { - "name": "theverge", - "url": "https://www.theverge.com/authors/{}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "TheVillage.ru", - "url": "https://www.the-village.ru/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The Village: \u043e\u0448\u0438\u0431\u043a\u0430 404, \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430" - }, - { - "name": "Thewatchforum", - "url": "https://www.thewatchforum.co.uk/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Theweedtube", - "url": "https://theweedtube.com/user/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profileUserName" - }, - { - "name": "thewholesaleforums.co.uk", - "url": "http://www.thewholesaleforums.co.uk//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Thingiverse", - "url": "https://www.thingiverse.com/{}/designs", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "thinkwiki.org", - "url": "https://thinkwiki.org/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Thlaspi", - "url": "https://thlaspi.com/en/user/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "thoughts", - "url": "https://thoughts.com/members/{}/", - "category": "forum", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Page not found", - "match_code": 200, - "match_string": "<span class=\"activity" - }, - { - "name": "thoughts.com", - "url": "http://thoughts.com/members/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<title>Page not found", - "match_string": "user-activity" - }, - { - "name": "threads", - "url": "https://www.threads.net/@{}", - "category": "social", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "<title>Threads \u2022 Log in" - }, - { - "name": "Threads", - "url": "https://www.threads.com/@{}", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Threads" - }, - { - "name": "threatpost", - "url": "https://threatpost.com/author/{}/", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "Tiendanube", - "url": "https://{}.mitiendanube.com/", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "tigerfan.com", - "url": "http://www.tigerfan.com//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tik.Porn", - "url": "https://tik.porn/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": ">Page Not Found | Tik.Porn", - "match_string": "
Views
" - }, - { - "name": "tikbuddy.com", - "url": "https://tikbuddy.com/en/tiktok/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "match_string": "nickName" - }, - { - "name": "TikTok", - "url": "https://www.tiktok.com/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "serverCode\":404", - "match_string": "\"nickname\":" - }, - { - "name": "TikTok", - "url": "https://www.tiktok.com/oembed?url=https://www.tiktok.com/@{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 400, - "error_string": "Something went wrong", - "match_code": 200, - "match_string": "author_url" - }, - { - "name": "TikTok", - "url": "https://www.tiktok.com/@{}?lang=ru-RU", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tiktok", - "url": "https://tiktok.com/@{}", - "category": "social", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "Couldn't find this account", - "match_string": "sign-sg.tiktokcdn.com" - }, - { - "name": "TikTok Online Viewer", - "url": "https://ttonlineviewer.com/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Not Found - TTonlineviewer" - }, - { - "name": "Tilde.zone (Mastodon Instance)", - "url": "https://tilde.zone/api/v1/accounts/lookup?acct={}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Record not found", - "match_code": 200, - "match_string": "display_name" - }, - { - "name": "Tildes", - "url": "https://tildes.net/user/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "timich.ru", - "url": "http://timich.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tinder", - "url": "https://www.tinder.com/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "twitter:title\" content=\"Tinder |" - }, - { - "name": "Tinder", - "url": "https://tinder.com/@{}", - "category": "dating", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "Tinder | Dating, Make Friends & Meet New People", - "match_code": 200, - "match_string": ") | Tinder" - }, - { - "name": "Tinkoff Invest", - "url": "https://tinkoff.ru/invest/social/profile/{}/", - "category": "finance", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "ProductError", - "match_string": "ProfileHeader__nickname" - }, - { - "name": "Tinkoff_Invest", - "url": "https://www.tinkoff.ru/invest/social/profile/{}/", - "category": "finance", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "NoneNone" - }, - { - "name": "TipeeeStream", - "url": "https://www.tipeeestream.com/v3.0/pages/{}", - "category": "finance", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "\"message\":\"Not found\"", - "match_code": 200, - "match_string": "\"id\":" - }, - { - "name": "Tise", - "url": "https://tise.com/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profile?p={username}" - }, - { - "name": "tistory", - "url": "https://{}.tistory.com/", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tiwall", - "url": "https://tiwall.com/u/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "\"user\"" - }, - { - "name": "TJournal", - "url": "https://tjournal.ru/search/v2/subsite/relevant?query={}", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041c\u044b \u0432\u0441\u0435 \u0432\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043b\u0438, \u043d\u043e \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0448\u043b\u0438 :(" - }, - { - "name": "Tkgr", - "url": "http://tkgr.ru/forum/member/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "tks", - "url": "https://forum.tks.ru//member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tl", - "url": "https://tl.net/forum/profile.php?user={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tldrlegal.com", - "url": "https://tldrlegal.com/users/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Page Not Found - TLDRLegal", - "match_string": "s Profile - TLDRLegal" - }, - { - "name": "tlgrm.pro", - "url": "http://tlgrm.pro/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tmbw", - "url": "https://tmbw.net/User:{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "tmk.3dn.ru", - "url": "http://tmk.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tnaflix", - "url": "https://tnaflix.com/profile/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": true, - "error_type": "message", - "error_string": "looking for is lost somewhere", - "match_string": "userProfileHeader" - }, - { - "name": "Tokopedia", - "url": "https://tokopedia.com/{}", - "category": "shopping", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "\"{username}\"" - }, - { - "name": "tokyvideo.com", - "url": "https://tokyvideo.com/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tolkiengateway", - "url": "https://tolkiengateway.net/User:{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Tolyatty", - "url": "http://tolyatty.net/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tom's guide", - "url": "http://forums.tomsguide.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "tom.do.am", - "url": "http://tom.do.am/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "TomsHardware", - "url": "https://forums.tomshardware.com/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found." - }, - { - "name": "Tomtom", - "url": "https://discussions.tomtom.com/en/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "toneto.ucoz.ru", - "url": "http://toneto.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Toot_mstd", - "url": "https://toot.cat/@{}", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tooting.ch (Mastodon Instance)", - "url": "https://tooting.ch/api/v1/accounts/lookup?acct={}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Record not found", - "match_code": 200, - "match_string": "display_name" - }, - { - "name": "top10allservers.ucoz.ru", - "url": "http://top10allservers.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Topcheats", - "url": "https://topcheats.ucoz.com/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "topcheats.ucoz.com", - "url": "http://topcheats.ucoz.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Topcoder", - "url": "https://profiles.topcoder.com/{}/", - "category": "tech", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Topcoder", - "url": "https://api.topcoder.com/v5/members/{}", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "\"message\":\"Member with handle:", - "match_code": 200, - "match_string": "\"userId\":" - }, - { - "name": "Topdb", - "url": "https://topdb.ru/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "Topmate", - "url": "https://topmate.io/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "topreklama.ucoz.com", - "url": "http://topreklama.ucoz.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Topwar", - "url": "https://topwar.ru/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Torrent-soft", - "url": "https://torrent-soft.net/user/{}/", - "category": "torrent", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "torrents-igra.ucoz.ru", - "url": "http://torrents-igra.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "torworld.at.ua", - "url": "http://torworld.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Toster", - "url": "https://qna.habr.com/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "toster", - "url": "https://www.toster.ru/user/{}/answers", - "category": "forum", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "TotalStavki", - "url": "https://totalstavki.ru/forum/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "TotalWar", - "url": "https://forums.totalwar.com/profile/{}", - "category": "gaming", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Not Found", - "match_code": 200, - "match_string": "Total War Forums" - }, - { - "name": "Totseans", - "url": "http://www.totseans.com/bbs/profile/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tottenhamhotspur", - "url": "http://tottenhamhotspur.ru/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Touristlink", - "url": "https://www.touristlink.com/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Members across the World" - }, - { - "name": "Tourney", - "url": "http://www.tourney.ru/forum/userlist.php?username={}&show_group=-1&sort_by=username", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "tovyanskaya.at.ua", - "url": "http://tovyanskaya.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Toxicbun", - "url": "https://toxicbun.com/@{}", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "toyhou.se", - "url": "https://toyhou.se/{}", - "category": "other", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "We can't find that page!", - "match_code": 200, - "match_string": "display-user" - }, - { - "name": "toys22.ru", - "url": "http://toys22.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Toyster", - "url": "https://toyster.ru/forum/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "Tproger", - "url": "https://tproger.ru/author/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "404", - "match_string": "<meta property=\"og:url\" content=\"https://tproger.ru/author/" - }, - { - "name": "track", - "url": "https://bbs.zkaq.cn/u/{}.html", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "TrackmaniaLadder", - "url": "http://en.tm-ladder.com/{}_rech.php", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "player unknown or invalid" - }, - { - "name": "tracr.co", - "url": "https://tracr.co/users/1/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "No search results" - }, - { - "name": "Tradestories", - "url": "https://tradestories.pt/user/{}", - "category": "finance", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "user-info" - }, - { - "name": "TradingView", - "url": "https://www.tradingview.com/u/{}", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<title>Page not found \u2014 TradingView", - "match_string": "tv-profile" - }, - { - "name": "TradingView", - "url": "https://www.tradingview.com/u/{}/", - "category": "tech", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tradingview", - "url": "https://tradingview.com/u/{}", - "category": "finance", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "that page doesn", - "match_string": "data-username" - }, - { - "name": "Trailville", - "url": "https://trailville.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "trailville.com", - "url": "https://www.trailville.com/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "match_string": "wgRelevantUserName" - }, - { - "name": "trainmodels.at.ua", - "url": "http://trainmodels.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Trainsim", - "url": "https://www.trainsim.com//member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Trainsim", - "url": "https://www.trainsim.com/vbts/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "This user has not registered and therefore does not have a profile to view." - }, - { - "name": "trainz-vl.ucoz.ru", - "url": "http://trainz-vl.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Trakt", - "url": "https://www.trakt.tv/users/{}", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "trakt", - "url": "https://trakt.tv/users/{}", - "category": "video", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "The page you were looking for doesn't exist (404) - Trakt.tv", - "match_code": 200, - "match_string": "s profile - Trakt" - }, - { - "name": "Traktrain", - "url": "https://traktrain.com/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tranny Videosx", - "url": "https://trannyvideosx.com/user/{}", - "category": "social", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Error", - "match_string": "Last Login:" - }, - { - "name": "transit-club.com", - "url": "http://transit-club.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Translatewiki", - "url": "https://translatewiki.net/wiki/User:{}", - "category": "wiki", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "TRASHBOX.RU", - "url": "https://trashbox.ru/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "404 \u2014 Not found" - }, - { - "name": "Travelblog", - "url": "https://www.travelblog.org/Bloggers/{}", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Travelfish", - "url": "https://www.travelfish.org/member_popup.php?u={}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Private or invalid" - }, - { - "name": "TravellersPoint", - "url": "https://www.travellerspoint.com/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Wooops. Sorry!" - }, - { - "name": "Travellerspoint", - "url": "https://www.travellerspoint.com/users/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Travellerspoint", - "url": "https://travellerspoint.com/users/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "404 Not Found", - "match_string": "nickname" - }, - { - "name": "Travis", - "url": "https://travis-ci.community/u/{}/summary", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Trawelling", - "url": "https://traewelling.de/@{}", - "category": "social", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "trays.ucoz.net", - "url": "http://trays.ucoz.net/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Trello", - "url": "https://trello.com/{}", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "model not found" - }, - { - "name": "Trello", - "url": "https://trello.com/1/Members/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "

Oh no! 404!

", - "match_code": 200, - "match_string": "\"id\":" - }, - { - "name": "Trello", - "url": "https://trello.com/1/Members/{}?fields=activityBlocked%2CavatarUrl%2Cbio%2CbioData%2Cconfirmed%2CfullName%2CidEnterprise%2CidMemberReferrer%2Cinitials%2CmemberType%2CnonPublic%2Cproducts%2Curl%2Cusername", - "category": "social", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Oh no! 404!", - "match_code": 200, - "match_string": "avatarUrl" - }, - { - "name": "Trello", - "url": "https://trello.com/{}/activity", - "category": "tech", - "source": "nexfil", - "nsfw": false - }, - { - "name": "trepup.com", - "url": "https://trepup.com/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "" - }, - { - "name": "Trictrac", - "url": "https://www.trictrac.net/mur/{}", - "category": "tech", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Trilife", - "url": "https://trilife.ru/search/?q={}&sort=&entity=users&from=&to=", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e" - }, - { - "name": "Trinixy", - "url": "https://trinixy.ru/user/{}/", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "TripAdvisor", - "url": "https://tripadvisor.com/members/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "This page is on vacation\u2026" - }, - { - "name": "tripadvisor", - "url": "https://www.tripadvisor.com/Profile/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "This page is on vacation", - "match_code": 200, - "match_string": "Contributions" - }, - { - "name": "tripit.com", - "url": "https://tripit.com/people/{}#/profile/basic-info", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tripline", - "url": "https://www.tripline.net/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tripoto", - "url": "https://www.tripoto.com/profile/{}", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tripster", - "url": "https://tripster.ru/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Trisquel", - "url": "https://trisquel.info/it/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Trovo", - "url": "https://trovo.live/s/{}/", - "category": "video", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "Uh Ohhh..." - }, - { - "name": "Trp_red", - "url": "https://www.trp.red/follow/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "TruckersMP", - "url": "https://truckersmp.com/user/search?search={}", - "category": "gaming", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "

Could not find any member using these credentials

", - "match_code": 200, - "match_string": "class=\"team-v2\"" - }, - { - "name": "TruckersMP.com", - "url": "https://forum.truckersmp.com/index.php?/search/&q={}&type=core_members", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "There were no results for your search." - }, - { - "name": "TruckersMP.ru", - "url": "https://truckersmp.ru/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "TrueAchievements", - "url": "https://www.trueachievements.com/gamer/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Truelancer", - "url": "https://www.truelancer.com/freelancer/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "This page could not be found.", - "match_string": "https://schema.org/BreadcrumbList" - }, - { - "name": "Truesteamachievements", - "url": "https://truesteamachievements.com/gamer/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Truth Social", - "url": "https://truthsocial.com/api/v1/accounts/lookup?acct={}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "\"error\":\"Record not found\"", - "match_code": 200, - "match_string": "\"id\":" - }, - { - "name": "Truthbook", - "url": "https://forum.truthbook.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sk=t&sd=d&sr=posts&st=0&ch=300&t=0&submit=Search", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "No suitable matches were found." - }, - { - "name": "Truthpodium", - "url": "https://truthpodium.org/@{}", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Trworkshop", - "url": "http://www.trworkshop.net/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f" - }, - { - "name": "TryHackMe", - "url": "https://tryhackme.com/p/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Found. Redirecting to /404", - "match_string": "heatmap-user-activity" - }, - { - "name": "TryHackMe", - "url": "https://tryhackme.com/api/user/exist/{}", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\"success\":false", - "match_code": 200, - "match_string": "\"success\":true" - }, - { - "name": "Tryst", - "url": "https://tryst.link/escort/{}", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "status_code", - "error_code": 404, - "error_string": "<title>Page not found", - "match_code": 200, - "match_string": "Caters to</div>" - }, - { - "name": "TS-Dating (International)", - "url": "https://www.ts-dating.com/model/{}", - "category": "dating", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "404 - PAGE NOT FOUND", - "match_string": ">Location:<span" - }, - { - "name": "tsibulskiy.my1.ru", - "url": "http://tsibulskiy.my1.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Ttrails", - "url": "https://ttrails.ru/users/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "Ttsport", - "url": "https://www.ttsport.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "tttang", - "url": "https://tttang.com/user/{}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "Tube Galore (channels)", - "url": "https://www.tubegalore.com/source/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "404 not found", - "match_string": "results found" - }, - { - "name": "Tube Galore (pornstars)", - "url": "https://www.tubegalore.com/pornstar/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "404 not found", - "match_string": "results found" - }, - { - "name": "Tube8 (channels)", - "url": "https://www.tube8.com/channel/{}/", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "<title>Porn Channels", - "match_string": "Channel for Free Porn | Tube8.com" - }, - { - "name": "Tube8 (pornstars)", - "url": "https://www.tube8.com/pornstar/{}/", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "404 Page Not Found", - "match_string": "Porn Videos and XXX Movies | Tube8.com" - }, - { - "name": "Tula", - "url": "http://tula.net.ru/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tulup", - "url": "https://www.tulup.ru/noindex/userlist.php?search={}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041d\u0435\u0442 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u044f\u044e\u0449\u0438\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u043c \u0437\u0430\u043f\u0440\u043e\u0441\u0430" - }, - { - "name": "Tumblr", - "url": "https://www.tumblr.com/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Not found.", - "match_string": "profile" - }, - { - "name": "tumblr", - "url": "https://{}.tumblr.com/", - "category": "social", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "tumblr", - "url": "https://{}.tumblr.com", - "category": "art", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "There's nothing here", - "match_code": 200, - "match_string": "avatar" - }, - { - "name": "Tumbral", - "url": "https://tumbral.com/blog/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profile-name" - }, - { - "name": "Tuna", - "url": "https://tuna.voicemod.net/user/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tunefind", - "url": "https://www.tunefind.com/user/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Page not found", - "match_string": "Achievements" - }, - { - "name": "tunefind", - "url": "https://www.tunefind.com/api-request/account/profile?userName={}", - "category": "music", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "\"code\":\"not_found\"", - "match_code": 200, - "match_string": "\"user-stats-engagement\":" - }, - { - "name": "Turbina", - "url": "https://turbinatravels.com/authors/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Turkey-info", - "url": "https://turkey-info.ru/forum/memberlist.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043f\u043e \u0437\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u043a\u0440\u0438\u0442\u0435\u0440\u0438\u044f\u043c" - }, - { - "name": "Turpravda", - "url": "https://www.turpravda.ua/profile/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "" - }, - { - "name": "Tutor", - "url": "https://tutor.ru/tutor/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0432\u0432\u0435\u0434\u0435\u043d\u043d\u044b\u0439 \u0432\u0430\u043c\u0438 \u0430\u0434\u0440\u0435\u0441 \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d" - }, - { - "name": "Tutsplus", - "url": "https://tutsplus.com/authors/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tv", - "url": "https://tv.gab.com/channel/{}", - "category": "social", - "source": "nexfil", - "nsfw": false - }, - { - "name": "tv-android.at.ua", - "url": "http://tv-android.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tv-games", - "url": "http://tv-games.ru//member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tv-games", - "url": "http://tv-games.ru/forum/member.php?username={}", - "category": "gaming", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "tv.ucoz.club", - "url": "http://tv.ucoz.club/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "tvigra.clan.su", - "url": "http://tvigra.clan.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "TVTropes", - "url": "https://tvtropes.org/pmwiki/pmwiki.php/Tropers/{}", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Tw_weibo", - "url": "https://tw.weibo.com/{}", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "User " - }, - { - "name": "Twitter", - "url": "https://www.twitter.com/{}", - "category": "social", - "source": "nexfil", - "nsfw": false - }, - { - "name": "Twitter Shadowban", - "url": "https://shadowban.eu/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "exists\": false", - "match_string": "exists\": true" - }, - { - "name": "Twittercommunity", - "url": "https://twittercommunity.com/u/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "twle", - "url": "https://www.twle.cn/member/{}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "Twpro.jp", - "url": "https://twpro.jp/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044\u3002", - "match_string": "\u304a\u3068\u306a\u308a\u3055\u3093" - }, - { - "name": "Twunroll", - "url": "https://twunroll.com/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "article_account" - }, - { - "name": "Typeracer", - "url": "https://data.typeracer.com/pit/profile?user={}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Profile Not Found" - }, - { - "name": "uahack.at.ua", - "url": "http://uahack.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Uaksu", - "url": "https://uaksu.forum24.ru/?32-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d" - }, - { - "name": "Uanime", - "url": "http://uanime.org.ua/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0422\u0435\u043c \u0430\u0431\u043e \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u044c" - }, - { - "name": "Uaodessa", - "url": "https://uaodessa.com/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "uaodessa.com", - "url": "http://uaodessa.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Uazpatriot", - "url": "https://uazpatriot.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Ubisoft", - "url": "https://forums-ru.ubisoft.com/member.php/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "This user has not registered and therefore does not have a profile to view." - }, - { - "name": "Ubisoft", - "url": "https://discussions.ubisoft.com/user/{}", - "category": "gaming", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "You seem to have stumbled upon a page that does not exist.", - "match_code": 200, - "match_string": "| Ubisoft Discussion Forums" - }, - { - "name": "UBIUSB (underwear sales)", - "url": "https://ubisub.com/profile/{}/", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": ">ohh! page not found", - "match_string": "Follow" - }, - { - "name": "ubuntu-mate.community", - "url": "https://ubuntu-mate.community/u/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Uchportal", - "url": "https://www.uchportal.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Ucoz", - "url": "https://forum.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "ucozon.ru", - "url": "http://ucozon.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "ucozzz.ru", - "url": "http://ucozzz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Udemy", - "url": "https://www.udemy.com/user/{}/", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Udemy", - "url": "https://udemy.com/user/{}/", - "category": "tech", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "about-me" - }, - { - "name": "UEF CONNECT", - "url": "https://uefconnect.uef.fi/en/{}/", - "category": "professional", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Page not found - UEFConnect", - "match_code": 200, - "match_string": "profile-page-header__info" - }, - { - "name": "uefconnect", - "url": "https://uefconnect.uef.fi/en/person/{}/", - "category": "professional", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Page not found - UEFConnect", - "match_code": 200, - "match_string": "- UEFConnect" - }, - { - "name": "Uesp", - "url": "https://uesp.net/User:{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "uface.at.ua", - "url": "http://uface.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "ufive.ru", - "url": "http://ufive.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Ufocomm", - "url": "https://www.ufocomm.ru/search/?&q={}&type=core_members", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041d\u0430\u0439\u0434\u0435\u043d\u043e: 0 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432" - }, - { - "name": "uforum.uz", - "url": "https://uforum.uz/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Uft", - "url": "https://uft.me/persons/{}", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "ugri.ucoz.ru", - "url": "http://ugri.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Uid", - "url": "https://uid.me/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "Page not found", - "match_string": "profile_name" - }, - { - "name": "uID.me (by uguid)", - "url": "http://uid.me/uguid/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "uID.me (by username)", - "url": "http://uid.me/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Uiuxdev.social (Mastodon Instance)", - "url": "https://uiuxdev.social/api/v1/accounts/lookup?acct={}", - "category": "social", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Record not found", - "match_code": 200, - "match_string": "display_name" - }, - { - "name": "Ukgameshows", - "url": "https://ukgameshows.com/User:{}", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "uko.at.ua", - "url": "http://uko.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Ukraine-footbal", - "url": "https://ukraine-footbal.at.ua/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e" - }, - { - "name": "ukrelektrik.com", - "url": "http://ukrelektrik.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Ultimate Guitar", - "url": "https://www.ultimate-guitar.com/u/{}", - "category": "other", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 410, - "error_string": "Oops! We couldn't find that page.", - "match_code": 200, - "match_string": " | Ultimate-Guitar.Com" - }, - { - "name": "Ultimate-Guitar", - "url": "https://ultimate-guitar.com/u/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Ultras Diary", - "url": "http://ultrasdiary.pl/u/{}/", - "category": "gaming", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Ile masz wyjazd\u00f3w?", - "match_code": 200, - "match_string": "Mecze wyjazdowe:" - }, - { - "name": "ultrasdiary.pl", - "url": "https://ultrasdiary.pl/u/{}/", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "UltrasDiary – Pami\u0119tnik Kibica", - "match_string": "Mecze wyjazdowe:" - }, - { - "name": "ulub.pl", - "url": "http://ulub.pl/profil/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Strona nie istnieje.", - "match_string": "Muzyka (" - }, - { - "name": "umorbos.at.ua", - "url": "http://umorbos.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "unc.ua", - "url": "https://unc.ua/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Error Site", - "match_string": "page-user_profile" - }, - { - "name": "Uncyclomedia", - "url": "https://uncyclomedia.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Universemc", - "url": "https://universemc.us/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "universemc.us", - "url": "https://universemc.us/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "universocraft", - "url": "https://stats.universocraft.com/stats.php?player={}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "No se ha encontrado ning\u00fan usuario con ese nombre", - "match_string": "\u00daltima conexi\u00f3n" - }, - { - "name": "Unixforum", - "url": "https://unixforum.org/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Unlisted Videos", - "url": "https://unlistedvideos.com/search.php?user={}", - "category": "forum", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "content=\"\"/>", - "match_code": 200, - "match_string": "Date submitted" - }, - { - "name": "unreal.at.ua", - "url": "http://unreal.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Unsorted", - "url": "https://unsorted.me/profile.php?mode=viewprofile&u={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - }, - { - "name": "Unsplash", - "url": "https://unsplash.com/@{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Unsplash", - "url": "https://unsplash.com/@{}/likes", - "category": "art", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "UnstoppableDomains", - "url": "https://ud.me/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "match_string": "reservedForUserId" - }, - { - "name": "Untappd", - "url": "https://untappd.com/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Untappd", - "url": "https://untappd.com/user/{}/", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "class=\"search_404\"", - "match_code": 200, - "match_string": "class=\"cont user_profile\"" - }, - { - "name": "Uoguide", - "url": "https://uoguide.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "upbyte.net", - "url": "http://upbyte.net/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Uphillathlete", - "url": "https://uphillathlete.com/forums/users/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "upwork.com", - "url": "https://upwork.com/fl/{}", - "category": "shopping", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "ural-sloboda.ucoz.ru", - "url": "http://ural-sloboda.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Uralfishing", - "url": "https://www.uralfishing.ru/forum/profile.php?mode=viewprofile&u={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "nowrap=\"nowrap\">" - }, - { - "name": "Uwr1", - "url": "http://uwr1.de/forum/profile/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "uwu.ai", - "url": "https://{}.uwu.ai/", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Sorry, the requested page could not be found.", - "match_code": 200, - "match_string": "property=\"twitter:card\"" - }, - { - "name": "Uwumarket", - "url": "https://uwumarket.us/collections/{}", - "category": "professional", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Page not found", - "match_code": 200, - "match_string": "collection-hero__text-wrapper" - }, - { - "name": "Uzhforum", - "url": "http://www.uzhforum.com/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447 \u043d\u0435 \u0437\u0430\u0440\u0435\u0454\u0441\u0442\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0456 \u043d\u0435 \u043c\u0430\u0454 \u043f\u0440\u043e\u0444\u0456\u043b\u044e, \u044f\u043a\u0438\u0439 \u043c\u043e\u0436\u043d\u0430 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u0443\u0442\u0438." - }, - { - "name": "v-twinforum.com", - "url": "https://v-twinforum.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "v2ex.com", - "url": "https://v2ex.com/member/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "v3de.ru", - "url": "http://v3de.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vadimbondar.ucoz.ru", - "url": "http://vadimbondar.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vadya.ucoz.ru", - "url": "http://vadya.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Valday", - "url": "https://valday.com/forum/profile.php?mode=viewprofile&u={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041b\u0438\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f " - }, - { - "name": "valinor.com.br", - "url": "http://www.valinor.com.br/forum//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "valleykrosava.ucoz.ru", - "url": "http://valleykrosava.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Valorant Forums", - "url": "https://valorantforums.com/u/{}", - "category": "forum", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "The page you requested could not be found." - }, - { - "name": "Vamber", - "url": "https://vamber.ru/author/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vampirerave", - "url": "https://www.vampirerave.com/profiles/profiles2.php?profile={}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Vapenews", - "url": "https://vapenews.ru/profile/{}", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041e\u0448\u0438\u0431\u043a\u0430 404", - "match_string": "\u041b\u0438\u0447\u043d\u043e\u0435" - }, - { - "name": "Vas3k", - "url": "https://vas3k.club/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vauxhallownersnetwork.co.uk", - "url": "http://www.vauxhallownersnetwork.co.uk/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "VC", - "url": "https://vc.ru/discovery?q={}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "message\":\"\",\"result\":{\"items\":[],\"lastId\":null" - }, - { - "name": "VC.ru", - "url": "https://vc.ru/search/v2/subsite/relevant?query={}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041c\u044b \u0432\u0441\u0435 \u0432\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043b\u0438, \u043d\u043e \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0448\u043b\u0438 :(" - }, - { - "name": "vch3469.3dn.ru", - "url": "http://vch3469.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vdv-belarus.ucoz.com", - "url": "http://vdv-belarus.ucoz.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vega.ucoz.net", - "url": "http://vega.ucoz.net/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vegalab", - "url": "http://forum.vegalab.ru/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vegas Girls Gone Wild (Las Vegas, NV)", - "url": "https://vegasgirlsgonewild.com/escort/{}/", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Page not found", - "match_string": "Vegas Girls Gone Wild" - }, - { - "name": "VegasCreativeSoftware", - "url": "https://www.vegascreativesoftware.info/us/users/profile/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "VEGAS Community" - }, - { - "name": "Velocat", - "url": "https://velocat.ru/velo/phpBB3/search.php?keywords={}&type=type-special", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" - }, - { - "name": "Velog", - "url": "https://velog.io/@{}/posts", - "category": "social", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Velomania", - "url": "https://forum.velomania.ru//member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Velomania", - "url": "https://forum.velomania.ru/member.php?username={}", - "category": "forum", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "Velosamara", - "url": "http://velosamara.ru/forum/memberlist.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043f\u043e \u0437\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u043a\u0440\u0438\u0442\u0435\u0440\u0438\u044f\u043c" - }, - { - "name": "velozone.ucoz.ua", - "url": "http://velozone.ucoz.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Venera", - "url": "https://venera.one/search/?q={}&type=core_members", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "0 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432" - }, - { - "name": "Venmo", - "url": "https://venmo.com/{}", - "category": "finance", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Venmo", - "url": "https://account.venmo.com/u/{}", - "category": "finance", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "Venmo | Page Not Found" - }, - { - "name": "Vent", - "url": "https://vent.co/u/{}", - "category": "social", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "current-emotion" - }, - { - "name": "vento-club.com", - "url": "http://vento-club.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Verifiedhandles", - "url": "https://verifiedhandles.com/vhid/VHID/User:{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Vero", - "url": "https://vero.co/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<title>Error Page - VERO\u2122 \u2013 True Social" - }, - { - "name": "Vezha", - "url": "https://vezha.com/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d" - }, - { - "name": "vfarte.ru", - "url": "http://vfarte.ru/index/8-0-{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vgmpf", - "url": "https://vgmpf.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "vgorah.ucoz.ru", - "url": "http://vgorah.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vgr", - "url": "https://vgr.com/forum/profile/{}", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "The page you requested", - "match_string": "ProfileStats" - }, - { - "name": "Vgtimes", - "url": "https://vgtimes.ru/user/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "match_string": "user_profile" - }, - { - "name": "Vgtimes", - "url": "https://vgtimes.ru/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "Vgtimes/Games", - "url": "https://vgtimes.ru/games/{}/forum/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vibilagare", - "url": "https://www.vibilagare.se/users/{}", - "category": "other", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Sidan hittades inte |", - "match_code": 200, - "match_string": "Profil p\u00e5 vibilagare.se" - }, - { - "name": "Vidamora", - "url": "https://vidamora.com/profile/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "currentusername" - }, - { - "name": "vidamora.com", - "url": "https://www.vidamora.com/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Viddler", - "url": "https://www.viddler.com/channel/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "User not found", - "match_string": "profile-details" - }, - { - "name": "videhelp-comp.my1.ru", - "url": "http://videhelp-comp.my1.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Video-Game-Music-Covers", - "url": "https://video-game-music-covers.wikia.com/User:{}", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Video_ploud", - "url": "https://video.ploud.jp/accounts/{}/video-channels", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "videoforums.ru", - "url": "http://videoforums.ru/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "VideogameGeek", - "url": "https://videogamegeek.com/user/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "User does not exist" - }, - { - "name": "Videogamer", - "url": "https://videogamer.com/forums/index.php?/profile/{}/", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "ProfilePhoto" - }, - { - "name": "videohive.net", - "url": "https://videohive.net/user/{}", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Page Not Found | VideoHive", - "match_string": "user-info" - }, - { - "name": "videomuzon.ucoz.ru", - "url": "http://videomuzon.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Videosift", - "url": "https://videosift.com/member/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "viewbug", - "url": "https://www.viewbug.com/member/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "missing-photos", - "match_string": "profile" - }, - { - "name": "vii.at.ua", - "url": "http://vii.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vilinburg.net", - "url": "http://vilinburg.net/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vim", - "url": "https://vim.wikia.com/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Vimeo", - "url": "https://vimeo.com/{}", - "category": "video", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vimgolf", - "url": "http://www.vimgolf.com/{}", - "category": "other", - "source": "nexfil", - "nsfw": false - }, - { - "name": "vinbazar.at.ua", - "url": "http://vinbazar.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vine", - "url": "https://vine.co/api/users/profiles/vanity/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "That record does not exist", - "match_string": "userId" - }, - { - "name": "vingle.net", - "url": "https://vingle.net/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vintage-mustang.com", - "url": "https://vintage-mustang.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "VIP-blog", - "url": "http://{}.vip-blog.com", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "Blog inexistant", - "match_code": 200, - "match_string": "blog : " - }, - { - "name": "vip-cccp.clan.su", - "url": "http://vip-cccp.clan.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vip-icq.ucoz.net", - "url": "http://vip-icq.ucoz.net/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Virgool", - "url": "https://virgool.io/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code", - "error_string": "\u06f4\u06f0\u06f4" - }, - { - "name": "Virtual Taboo", - "url": "https://virtualtaboo.com/pornstars/{}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "

404: Page not found

", - "match_string": "Birthday:" - }, - { - "name": "virtual-auto.ucoz.ru", - "url": "http://virtual-auto.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "VirtualIreland", - "url": "https://www.virtualireland.ru/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "virtualrift.ru", - "url": "http://virtualrift.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "VirusTotal", - "url": "https://www.virustotal.com/ui/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "not found" - }, - { - "name": "VirusTotal", - "url": "https://www.virustotal.com/gui/user/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Virustotal", - "url": "https://virustotal.com/ui/users/{}/trusted_users", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "virustotal", - "url": "https://www.virustotal.com/ui/users/{}/avatar", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "vishivalochka.ru", - "url": "http://vishivalochka.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "visnesscard", - "url": "https://my.visnesscard.com/Home/GetCard/{}", - "category": "professional", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "card_id\": 0", - "match_code": 200, - "match_string": "end_point" - }, - { - "name": "VitalFootball", - "url": "https://forums.vitalfootball.co.uk/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "viupetra.3dn.ru", - "url": "http://viupetra.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vivasan.mobi", - "url": "http://vivasan.mobi/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vivino", - "url": "https://www.vivino.com/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vizjer.pl", - "url": "https://vizjer.pl/uzytkownik/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Ostatnie komentarze", - "match_string": "Profil u\u017cytkownika" - }, - { - "name": "Vjudge", - "url": "https://VJudge.net/user/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "VK", - "url": "https://vk.com/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "VK (by id)", - "url": "https://vk.com/id{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Vkaline", - "url": "http://www.vkaline.ru/forum/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "VKFaces", - "url": "https://vkfaces.com/vk/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vkl.world (Mastodon Instance)", - "url": "https://vkl.world/api/v1/accounts/lookup?acct={}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Record not found", - "match_code": 200, - "match_string": "display_name" - }, - { - "name": "VKMOnline", - "url": "http://forums.vkmonline.com/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vkrugudrusey", - "url": "http://{}.vkrugudrusey.ru/x/blog/all/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "VKruguDruzei", - "url": "http://{}.vkrugudruzei.ru/x/blog/all/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "vkusnyashkino.ru", - "url": "http://vkusnyashkino.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vl-dimir.ru", - "url": "http://vl-dimir.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vlab", - "url": "https://vlab.su/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Vladimirka", - "url": "http://www.vladimirka.ru/board/profile/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vladmama", - "url": "https://vladmama.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Vlmi", - "url": "https://vlmi.biz/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vlmi", - "url": "https://vlmi.biz/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u0423\u043f\u0441! \u041c\u044b \u0441\u0442\u043e\u043b\u043a\u043d\u0443\u043b\u0438\u0441\u044c \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430\u043c\u0438. | VLMI \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c, \u043e\u0431\u043c\u0435\u043d \u043f\u0440\u0438\u0432\u0430\u0442\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439" - }, - { - "name": "VLR", - "url": "https://www.vlr.gg/user/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vmst.io (Mastodon Instance)", - "url": "https://vmst.io/api/v1/accounts/lookup?acct={}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Record not found", - "match_code": 200, - "match_string": "display_name" - }, - { - "name": "Voice", - "url": "https://voice.com/profile/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "voice-meta.jpg", - "match_string": "\"noindex\"" - }, - { - "name": "Voice123", - "url": "https://voice123.com/api/providers/search/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": ">[]", - "match_string": "user_id" - }, - { - "name": "Voices", - "url": "https://www.voices.com/actors/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Voices", - "url": "https://voices.com/profile/{}", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profile-info" - }, - { - "name": "Voices.com", - "url": "https://www.voices.com/profile/{}/", - "category": "professional", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 301, - "error_string": "Try going back to the previous page or see below for more options", - "match_code": 200, - "match_string": "Last Online" - }, - { - "name": "Voicesevas", - "url": "http://voicesevas.ru/user/{}/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Volga-gaz", - "url": "http://volga-gaz.nnov.ru/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Volgograd Forum", - "url": "https://www.forum-volgograd.ru/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Volgogradru", - "url": "http://www.volgogradru.com/users/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c" - }, - { - "name": "Volkodavcaoko", - "url": "https://volkodavcaoko.forum24.ru/?32-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" - }, - { - "name": "Volkswagen", - "url": "http://volkswagen.lviv.ua/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "volkswagen.lviv.ua", - "url": "http://volkswagen.lviv.ua/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Volleybox", - "url": "https://volleybox.net/ru/user/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Votetags", - "url": "https://www.votetags.info/author/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": " looking for. Perhaps searching can help." - }, - { - "name": "vovdm.at.ua", - "url": "http://vovdm.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Voyager", - "url": "https://voyager.lemmy.ml/u/{}", - "category": "other", - "source": "nexfil", - "nsfw": false - }, - { - "name": "VR PORN", - "url": "https://vrporn.com/pornstars/{}/", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "We're sorry, but this page wasn't found.

", - "match_string": ">Follow" - }, - { - "name": "vracing.3dn.ru", - "url": "http://vracing.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vrn-sms.ru", - "url": "http://vrn-sms.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "VSCO", - "url": "https://vsco.co/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vsco", - "url": "https://vsco.co/{}/gallery", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "\"error\":\"site_not_found\"}", - "match_code": 200, - "match_string": "permaSubdomain" - }, - { - "name": "Vse", - "url": "https://vse.kz/index.php?app=core&module=search&do=search&andor_type=members&search_app_filters[members][members][sortKey]=date&search_term={}&search_app=members&search_app_filters[members][searchInKey]=members&search_app_filters[members][members][sortKey]=date&search_app_filters[members][members][sortDir]=1", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432" - }, - { - "name": "vse-o-zaz.at.ua", - "url": "http://vse-o-zaz.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vse1.ucoz.com", - "url": "http://vse1.ucoz.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vsemayki", - "url": "https://www.vsemayki.ru/designer/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "404 Not Found" - }, - { - "name": "vsemobile.my1.ru", - "url": "http://vsemobile.my1.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "vseotkritki.ru", - "url": "http://vseotkritki.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Vulengate", - "url": "https://www.vulengate.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Vulgo_rolka", - "url": "https://vulgo.rolka.me/search.php?action=search&keywords=&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" - }, - { - "name": "Vxzone", - "url": "https://www.vxzone.com/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Vyshyvanka", - "url": "https://vyshyvanka.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e" - }, - { - "name": "Vzvd", - "url": "https://vzvd.ru/forum/index.php?p=/profile/{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "W", - "url": "https://w.atwiki.jp/{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "atwiki-list" - }, - { - "name": "w2l-g.ucoz.org", - "url": "http://w2l-g.ucoz.org/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "W3challs", - "url": "https://w3challs.com/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "404 Page not found \u2013 W3Challs Hacking Challenges" - }, - { - "name": "W3Schools", - "url": "https://pathfinder-api.kai.w3spaces.com/public-profile-api/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "W3schools", - "url": "https://w3schools.invisionzone.com/search/?q={}&quick=1&type=core_members", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "problem" - }, - { - "name": "W7forums", - "url": "https://www.w7forums.com/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "W7forums", - "url": "https://www.w7forums.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found. Please enter a member's entire name." - }, - { - "name": "Wackypedia", - "url": "https://wackypedia.risteq.net/User:{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wakatime", - "url": "https://wakatime.com/@{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wakeup.ucoz.com", - "url": "http://wakeup.ucoz.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wallpost.ucoz.ru", - "url": "http://wallpost.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wanelo", - "url": "https://wanelo.co/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wankz VR", - "url": "https://www.wankzvr.com/{}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Oops 404, we couldn't find the page you're looking for", - "match_string": ">Birthplace:
" - }, - { - "name": "Warcraft3ft", - "url": "https://warcraft3ft.clan.su/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "warcraft3ft.clan.su", - "url": "http://warcraft3ft.clan.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "warez-pirati.ucoz.ru", - "url": "http://warez-pirati.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Warface", - "url": "https://wf.mail.ru/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Warframe Market", - "url": "https://warframe.market/profile/{}", - "category": "shopping", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "warframe.3dn.ru", - "url": "http://warframe.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Warhammercommunity", - "url": "https://warhammercommunity.com/forum/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Warhammergames", - "url": "https://warhammergames.ru/index/8-0-{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Warmerise", - "url": "https://warmerise.com/profile/{}", - "category": "gaming", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "

Page Not Found", - "match_code": 200, - "match_string": "
0 Result's", - "match_string": "Download" - }, - { - "name": "webdom.3dn.ru", - "url": "http://webdom.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "webflow.com", - "url": "https://webflow.com/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Webhamster", - "url": "https://webhamster.ru/punbb/userlist.php?username={}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Weblancer", - "url": "https://www.weblancer.net/users/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Weblate", - "url": "https://hosted.weblate.org/user/{}/", - "category": "forum", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "webmedia.ucoz.ru", - "url": "http://webmedia.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "WebNode", - "url": "https://{}.webnode.cz/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "webonrails.ru", - "url": "https://webonrails.ru/user/{}/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "

\u041e\u0448\u0438\u0431\u043a\u0430

", - "match_string": "post_feed_title" - }, - { - "name": "WebOS", - "url": "https://webos-forums.ru/search.php?keywords=&terms=all&author={}&sc=1&sf=msgonly&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "websecurity.3dn.ru", - "url": "http://websecurity.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Weburg", - "url": "https://weburg.net/search?where=10&search=1&q={}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "»," - }, - { - "name": "wedding-image.ru", - "url": "http://wedding-image.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Weebly", - "url": "http://{}.weebly.com/", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Error - Page Not Found", - "match_string": "" - }, - { - "name": "Weebly", - "url": "https://{}.weebly.com/", - "category": "news", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Weedmaps", - "url": "https://weedmaps.com/brands/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Find Marijuana Dispensaries, Brands" - }, - { - "name": "Weforum", - "url": "https://www.weforum.org/people/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wego.social", - "url": "https://wego.social/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Sorry, page not found!", - "match_string": "Following</span>" - }, - { - "name": "Weibo", - "url": "https://weibo.com/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<h2>400 Bad Request</h2>", - "match_string": "{\"ok\":1,\"data\":{\"user\":" - }, - { - "name": "Weibo", - "url": "https://weibo.com/ajax/profile/info?custom={}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 400, - "error_string": "<h2>400 Bad Request</h2>", - "match_code": 200, - "match_string": "\"user\":" - }, - { - "name": "Weld", - "url": "https://weld.in.ua/forum/member.php/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "Werelate", - "url": "https://werelate.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "WeTransfer", - "url": "https://{}.wetransfer.com", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 307, - "match_code": 200, - "match_string": "workspaceName" - }, - { - "name": "Wfts", - "url": "https://wfts.su/profile/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041e\u0448\u0438\u0431\u043a\u0430: \u0438\u0433\u0440\u043e\u043a \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "What Happens In Vegas Stays (Las Vegas, NV)", - "url": "https://www.whathappensinvegasstays.com/?s={}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Nothing Found</h1>", - "match_string": "search-results" - }, - { - "name": "Wheretosee", - "url": "https://wheretosee.org/wildlife/User:{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Whitewaterguidebook", - "url": "https://www.whitewaterguidebook.com/forums/users/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Whonix", - "url": "https://forums.whonix.org/search?expanded=true&q=%40{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "No results found." - }, - { - "name": "whonixforum", - "url": "https://forums.whonix.org/u/{}/summary", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "Whyislam", - "url": "https://www.whyislam.to/forum/memberlist.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" - }, - { - "name": "WicgForum", - "url": "https://discourse.wicg.io/u/{}/summary", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<title>WICG", - "match_string": " Profile -" - }, - { - "name": "Wickeditor", - "url": "https://forum.wickeditor.com/u/{}/summary", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wiki", - "url": "https://wiki.bytecode.club/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.clicklaw.bc.ca/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.contribs.org/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.eclipse.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.edgertronic.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.factorio.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.freephile.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.geni.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.gentoo.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.hostelmanagement.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.lostsouls.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.openmw.org/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.openvz.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.osdev.org/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.robojackets.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.secondlife.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.shartak.com/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.spacesim.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.therofl98.co/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.ubc.ca/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.urbandead.com/User:{}", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.vtiger.com/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.xentax.com/wiki/User:{}", - "category": "social", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wiki", - "url": "https://wiki.xiph.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "wiki.creativecommons.org", - "url": "https://wiki.creativecommons.org/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wiki.linuxquestions.org", - "url": "https://wiki.linuxquestions.org/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wiki.mozilla.org", - "url": "https://wiki.mozilla.org/wiki/User:{}", - "category": "tech", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wiki.mtasa.com", - "url": "https://wiki.mtasa.com/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wiki.teamfortress.com", - "url": "https://wiki.teamfortress.com/wiki/User:{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wiki.tfes.org", - "url": "https://wiki.tfes.org/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "is not registered.", - "match_string": "History" - }, - { - "name": "wiki.themanaworld.org", - "url": "https://wiki.themanaworld.org/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wiki.vg", - "url": "https://wiki.vg/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wiki.wesnoth.org", - "url": "https://wiki.wesnoth.org/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wiki.xkcd.com", - "url": "https://wiki.xkcd.com/geohashing/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wikialpha.org", - "url": "https://wikialpha.org/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wikiapiary.com", - "url": "https://wikiapiary.com/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wikicu", - "url": "https://wikicu.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wikidifferences", - "url": "https://wikidifferences.com/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wikidot", - "url": "http://www.wikidot.com/user:info/{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "User does not exist.", - "match_string": "Wikidot user since" - }, - { - "name": "Wikidot", - "url": "https://wikidot.com/user:info/{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "User Information", - "match_string": "user-info" - }, - { - "name": "Wikidr", - "url": "https://wikidr.net/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wikifarming", - "url": "https://wikifarming.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wikigrib", - "url": "https://wikigrib.ru/author/{}/", - "category": "wiki", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "<title>\u042d\u043d\u0446\u0438\u043a\u043b\u043e\u043f\u0435\u0434\u0438\u044f \u0433\u0440\u0438\u0431\u043e\u0432 \u00ab\u0412\u0438\u043a\u0438\u0413\u0440\u0438\u0431\u00bb" - }, - { - "name": "Wikihow", - "url": "https://www.wikihow.com/Author/{}", - "category": "wiki", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wikiislam.net", - "url": "https://wikiislam.net/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wikiloc", - "url": "https://www.wikiloc.com/wikiloc/findPeople.do?name={}", - "category": "wiki", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wikimapia", - "url": "https://wikimapia.org/user/register/?check=username&value={}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\"ok\":true", - "match_code": 200, - "match_string": "\"ok\":false" - }, - { - "name": "WikimapiaProfile", - "url": "http://wikimapia.org/user/{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "January 01, 1970" - }, - { - "name": "WikimapiaSearch", - "url": "http://wikimapia.org/user/tools/users_rating/?username={}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "20" - }, - { - "name": "Wikimsk", - "url": "https://wikiMSK.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wikipathways", - "url": "https://wikipathways.org/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wikipedia", - "url": "https://www.wikipedia.org/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "is not registered" - }, - { - "name": "Wikipedia", - "url": "https://en.wikipedia.org/wiki/Special:CentralAuth/{}?uselang=qqx", - "category": "wiki", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "centralauth-admin-nonexistent:" - }, - { - "name": "Wikipedia", - "url": "https://meta.wikimedia.org/w/api.php?action=query&format=json&list=globalallusers&aguprefix={}&agulimit=100", - "category": "news", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": ":[]}}", - "match_code": 200, - "match_string": "{\"id\":" - }, - { - "name": "Wikipedia", - "url": "https://en.wikipedia.org/w/api.php?action=query&format=json&list=users&ususers={}", - "category": "news", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "missing:", - "match_code": 200, - "match_string": "userid" - }, - { - "name": "wikipedia", - "url": "https://en.wikipedia.org/wiki/User:{}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "Wikipediaquality", - "url": "https://wikipediaquality.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wikipediocracy", - "url": "https://wikipediocracy.com/forum/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Sorry but you cannot use" - }, - { - "name": "Wikipunch", - "url": "https://wikipunch.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wikiquiz", - "url": "https://wikiquiz.org/revision-notes/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wikiquote", - "url": "https://ru.wikiquote.org/wiki/%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}", - "category": "wiki", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wikishire", - "url": "https://wikishire.co.uk/wiki/User:{}", - "category": "professional", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wikivoyage", - "url": "https://ru.wikivoyage.org/wiki/%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}", - "category": "wiki", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wikivoyage", - "url": "https://en.wikivoyage.org/wiki/User:{}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "Wikiwrimo", - "url": "https://wikiwrimo.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "wikizilla.org", - "url": "https://wikizilla.org/wiki/User:{}", - "category": "wiki", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "is not registered.", - "match_string": "class=\"mw-socialprofile-avatar\" alt=\"avatar\"/><" - }, - { - "name": "Wiktionary", - "url": "https://ru.wiktionary.org/w/index.php?title=%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}&action=view", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wild-nature", - "url": "http://www.wild-nature.ru/users/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041d\u0430\u0448\u0438 \u0430\u0432\u0442\u043e\u0440\u044b | \u0414\u0438\u043a\u0430\u044f \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u0432 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f\u0445 \u0438 \u0440\u0430\u0441\u0441\u043a\u0430\u0437\u0430\u0445" - }, - { - "name": "WimkinPublicProfile", - "url": "https://wimkin.com/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": " The page you are looking for cannot be found.", - "match_string": "is on WIMKIN" - }, - { - "name": "Winamp", - "url": "http://forums.winamp.com/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Windows10forums", - "url": "https://www.windows10forums.com//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Windows10forums", - "url": "https://www.windows10forums.com/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Windowsforum", - "url": "https://windowsforum.com/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "The specified member cannot be found" - }, - { - "name": "Windy", - "url": "https://community.windy.com/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wineberserkers", - "url": "https://www.wineberserkers.com/u/{}/summary", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Winnipegwatch", - "url": "https://winnipegwatch.websitetoolbox.com/search?keywords=&searchin=message&member={}&do=findposts&id=&replies=atleast&numreplies=0&daterange=0&custdatefrom=&custdateto=&sort=&order=desc&radio_showas=threads&btnSearch=Search&action=doSearch", - "category": "social", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "was not found." - }, - { - "name": "Wireclub", - "url": "https://www.wireclub.com/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "WiredNewYork", - "url": "http://wirednewyork.com//member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wiscobourbon", - "url": "https://wiscobourbon.com/forums/users/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wishlistr", - "url": "https://www.wishlistr.com/profile/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Wishlistr", - "url": "https://www.wishlistr.com/sign-up/?rs=checkUserName&rsargs[]={}", - "category": "shopping", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "+:var res = parseInt(0);", - "match_code": 200, - "match_string": "+:var res = \"" - }, - { - "name": "wishlistr", - "url": "https://www.wishlistr.com/profile/{}/", - "category": "shopping", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 302, - "match_code": 200, - "match_string": "s profile" - }, - { - "name": "Witchnest", - "url": "https://witchnest.ru/user/{}/", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Domain Error Page" - }, - { - "name": "Withoutvowels", - "url": "https://withoutvowels.org/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "Wittyprofiles", - "url": "http://www.wittyprofiles.com/author/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "It looks like you are looking for something that isn't here." - }, - { - "name": "Wix", - "url": "https://{}.wix.com", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wm-maximum.ru", - "url": "http://wm-maximum.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wm.ucoz.com", - "url": "http://wm.ucoz.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wmmail-wmmail.3dn.ru", - "url": "http://wmmail-wmmail.3dn.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "WolframalphaForum", - "url": "https://community.wolfram.com/web/{}/home", - "category": "forum", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wolga24.at.ua", - "url": "http://wolga24.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "WolniSlowianie", - "url": "https://wolnislowianie.pl/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Nie znaleziono strony, kt\u00f3rej szukasz.", - "match_string": "O\u015b czasu" - }, - { - "name": "Wolpy", - "url": "http://wolpy.com/{}/profile", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wolpy", - "url": "https://wolpy.com/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "ItPage not found" - }, - { - "name": "Women Behind Bars (search)", - "url": "https://womenbehindbars.com/?s={}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "<p>Sorry, but nothing", - "match_string": "</span> Read More" - }, - { - "name": "Wordart", - "url": "https://wordart.com/gallery/user/{}", - "category": "art", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wordnik", - "url": "https://www.wordnik.com/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Wordnik: Page Not Found", - "match_string": "Welcome," - }, - { - "name": "Wordnik", - "url": "https://wordnik.com/users/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": "You've found our 404 page" - }, - { - "name": "WordPress", - "url": "https://{}.wordpress.com/", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "WordPress.com (Deleted)", - "url": "https://public-api.wordpress.com/rest/v1.1/sites/{}.wordpress.com", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "\"error\":\"unknown_blog\"", - "match_code": 403, - "match_string": "\"message\":\"API calls to this endpoint have been disabled.\"" - }, - { - "name": "WordPress.org (Forums)", - "url": "https://login.wordpress.org/wp-json/wporg/v1/username-available/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\"available\":true", - "match_code": 200, - "match_string": "\"error\":\"That username is already in use." - }, - { - "name": "WordPressOrg", - "url": "https://profiles.wordpress.org/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "WordpressSupport", - "url": "https://wordpress.org/support/users/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "User not found", - "match_string": "s Profile | WordPress.org" - }, - { - "name": "Worldis.me", - "url": "http://en.worldis.me/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "user_password", - "match_string": "my_profile" - }, - { - "name": "worldofdragonage.ru", - "url": "http://worldofdragonage.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Worldofplayers", - "url": "https://worldofplayers.ru/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Worldofwarcraft_blizzard", - "url": "https://worldofwarcraft.blizzard.com/en-us/character/us/frostmourne/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Error 404" - }, - { - "name": "Worldtruth", - "url": "https://www.worldtruth.online/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Worldtruth", - "url": "https://www.worldtruth.online/{}", - "category": "other", - "source": "nexfil", - "nsfw": false - }, - { - "name": "Worldwindcentral", - "url": "https://worldwindcentral.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "WorlfOfTanksForum", - "url": "https://forum.wotanks.com/member.php/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d" - }, - { - "name": "Wot-game", - "url": "https://wot-game.com/user/{}/", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "WOW Circle", - "url": "https://forum.wowcircle.net/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wow-game", - "url": "http://www.wow-game.ru/index/8-0-{}", - "category": "gaming", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "wow-game.ru", - "url": "http://wow-game.ru/index/8-0-{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wowhead", - "url": "https://www.wowhead.com/user={}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wowhead", - "url": "https://wowhead.com/user={}", - "category": "gaming", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "\"description\"" - }, - { - "name": "Wowjp", - "url": "https://wowjp.net/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "wowjp.net", - "url": "http://wowjp.net/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wowpaksi.clan.su", - "url": "http://wowpaksi.clan.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wowpedia", - "url": "https://wowpedia.org/User:{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "write.as", - "url": "https://write.as/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Writercenter", - "url": "https://writercenter.ru/profile/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "writingforums.org", - "url": "http://www.writingforums.org//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wuz", - "url": "http://wuz.by/forum/members/?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "ww2aircraft.net", - "url": "https://ww2aircraft.net/forum//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "wwork.my1.ru", - "url": "http://wwork.my1.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "www.adultism.com", - "url": "https://www.adultism.com/profile/{}", - "category": "adult", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Not Found", - "match_string": "Member since" - }, - { - "name": "www.change.org", - "url": "https://www.change.org/o/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "match_string": "first_name" - }, - { - "name": "www.dateamillionaire.com", - "url": "https://www.dateamillionaire.com/members/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "input[name=", - "match_string": "patch_fill profile_box" - }, - { - "name": "www.flickr.com", - "url": "https://www.flickr.com/groups/{}", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": ":404,", - "match_string": "username" - }, - { - "name": "www.freelancejob.ru", - "url": "https://www.freelancejob.ru/users/{}/", - "category": "professional", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<h1>\u041e\u0448\u0438\u0431\u043a\u0430 404</h1>", - "match_string": "\u041a\u043e\u043b-\u0432\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - }, - { - "name": "www.furaffinity.net", - "url": "https://www.furaffinity.net/gallery/{}", - "category": "adult", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": ">The username ", - "match_string": "og:title" - }, - { - "name": "www.gamesradar.com", - "url": "https://www.gamesradar.com/uk/author/{}/", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "noindex", - "match_string": "Email" - }, - { - "name": "www.gta-multiplayer.cz", - "url": "https://www.gta-multiplayer.cz/en/profile/{}/gaming", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\t <h2>Page not found</h2>\r", - "match_string": "ProfileTabs" - }, - { - "name": "www.hsx.com", - "url": "https://www.hsx.com/profile/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "reg-container", - "match_string": "profile-info" - }, - { - "name": "www.inaturalist.org", - "url": "https://www.inaturalist.org/lists/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "display:none", - "match_string": "Profile" - }, - { - "name": "www.itemfix.com", - "url": "https://www.itemfix.com/c/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "<title>ItemFix - Channel: ", - "match_string": "user_token" - }, - { - "name": "www.kinokopilka.pro", - "url": "https://www.kinokopilka.pro/users/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "match_string": "profile" - }, - { - "name": "www.liinks.co", - "url": "https://www.liinks.co/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "_fs_namespace", - "match_string": "user" - }, - { - "name": "www.livios.be", - "url": "https://www.livios.be/nl/forum/leden/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "not found", - "match_string": " " - }, - { - "name": "www.portal-pisarski.pl", - "url": "https://www.portal-pisarski.pl/profil/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "obrazki/404.png", - "match_string": "profil/" - }, - { - "name": "www.sql.ru", - "url": "https://www.sql.ru/forum/actualsearch.aspx?a={}&ma=0", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435", - "match_string": "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" - }, - { - "name": "www.stopstalk.com", - "url": "https://www.stopstalk.com/user/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "pupil", - "match_string": "" - }, - { - "name": "www.tagged.com", - "url": "http://www.tagged.com/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "lastName", - "match_string": "profile" - }, - { - "name": "www.tnaflix.com", - "url": "https://www.tnaflix.com/profile/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Not Found", - "match_string": "profile-header" - }, - { - "name": "www.turpravda.com", - "url": "https://www.turpravda.com/profile/{}", - "category": "news", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Title", - "match_string": "email" - }, - { - "name": "www.xshaker.net", - "url": "https://www.xshaker.net/{}.html", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "/tube/txxxtv.html", - "match_string": "og:title" - }, - { - "name": "Wykop", - "url": "https://www.wykop.pl/ludzie/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "match_string": "Aktywno\u015b\u0107 u\u017cytkownika" - }, - { - "name": "Wykop", - "url": "https://www.wykop.pl/ludzie/{}", - "category": "other", - "source": "sherlock", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Wykop", - "url": "https://wykop.pl/ludzie/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Wyst\u0105pi\u0142 b\u0142\u0105d 404.", - "match_code": 200, - "match_string": "Profil:" - }, - { - "name": "Wykop", - "url": "https://wykop.pl/ludzie/{}/", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profile:username" - }, - { - "name": "X", - "url": "https://api.x.com/i/users/username_available.json?username={}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\"reason\":\"available\"", - "match_code": 200, - "match_string": "\"reason\":\"taken\"" - }, - { - "name": "x-h2o.com", - "url": "http://www.x-h2o.com//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "X-time", - "url": "https://www.x-time.ru/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "content=\"noindex,follow" - }, - { - "name": "xakep.ru", - "url": "https://xakep.ru/author/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "xakerminus.ucoz.ru", - "url": "http://xakerminus.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Xanga", - "url": "https://{}.xanga.com/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "Xanga 2.0 is Here!", - "match_string": "s Xanga Site | Just" - }, - { - "name": "Xanga", - "url": "http://{}.xanga.com/", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 302, - "match_code": 200, - "match_string": "s Xanga Site | Just" - }, - { - "name": "Xbox Gamertag", - "url": "https://xboxgamertag.com/search/{}", - "category": "gaming", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Xbox Gamertag", - "url": "https://www.xboxgamertag.com/search/{}", - "category": "gaming", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "Gamertag doesn't exist", - "match_code": 200, - "match_string": "Games Played" - }, - { - "name": "Xcams", - "url": "https://www.xcams.com/profile/{}/", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "not found", - "match_string": "years old" - }, - { - "name": "Xcraft", - "url": "https://xcraft.ru/user/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "<title>\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430" - }, - { - "name": "XDA", - "url": "https://forum.xda-developers.com/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Xeeders", - "url": "https://xeeders.com/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profiles_banner" - }, - { - "name": "xemera.at.ua", - "url": "http://xemera.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Xenforo", - "url": "https://xenforo.com/community/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "xenforo.com", - "url": "https://xenforo.com/community//members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "xgm.guru", - "url": "https://xgm.guru/user/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u0410\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u044f", - "match_string": "\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c:" - }, - { - "name": "xHamster", - "url": "https://xhamster.com/users/{}", - "category": "adult", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "User not found", - "match_string": "user-info-section" - }, - { - "name": "Xhamster", - "url": "https://ru.xhamster.com/users/{}", - "category": "adult", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "XHAMSTER (users)", - "url": "https://www.xhamster.com/users/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "This account doesn\u2019t exist", - "match_string": "{username}" - }, - { - "name": "Xiaomi", - "url": "https://xiaomi.eu/community/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "xiaozhuanlan", - "url": "https://xiaozhuanlan.com/u/{}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "Xing", - "url": "https://www.xing.com/profile/{}", - "category": "professional", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "xitlar.ucoz.net", - "url": "http://xitlar.ucoz.net/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Xlovecam", - "url": "https://www.xlovecam.com/en/model/{}/", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "error 404", - "match_string": "years old" - }, - { - "name": "Xmswiki", - "url": "https://xmswiki.com/wiki/User:{}", - "category": "wiki", - "source": "social_analyzer", - "nsfw": false - }, - { - "name": "xn----7sbb0bfjrbhdi.xn--p1ai", - "url": "http://xn----7sbb0bfjrbhdi.xn--p1ai/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "xn----7sbcctevcqafop1aviko5l.xn--p1ai", - "url": "http://xn----7sbcctevcqafop1aviko5l.xn--p1ai/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "xn----7sbfejdvocrv7adem.xn--p1ai", - "url": "http://xn----7sbfejdvocrv7adem.xn--p1ai/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "xn--24-6kcaal6ajt1cpibnu7d5dtc.xn--p1ai", - "url": "http://xn--24-6kcaal6ajt1cpibnu7d5dtc.xn--p1ai/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "xn--80aepdb4ag.xn--p1ai", - "url": "http://xn--80aepdb4ag.xn--p1ai/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "xn--80aqkf5cb.xn--p1ai", - "url": "http://xn--80aqkf5cb.xn--p1ai/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "xn--90anbhklk.xn--p1ai", - "url": "http://xn--90anbhklk.xn--p1ai/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "xn--90aybfeg.xn--p1ai", - "url": "http://xn--90aybfeg.xn--p1ai/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "XNXX", - "url": "https://www.xnxx.com/mobile/profile/{}", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "status_code", - "error_code": 400, - "error_string": "Bad request", - "match_code": 200, - "match_string": "<table id=\"profile\">" - }, - { - "name": "XNXX (porn-maker)", - "url": "https://www.xnxx.com/porn-maker/{}", - "category": "social", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "This account doesn\u2019t exist", - "match_string": "Porn Maker" - }, - { - "name": "XNXX (pornstars)", - "url": "https://www.xnxx.com/pornstar/{}", - "category": "social", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "This account doesn\u2019t exist", - "match_string": "Model page" - }, - { - "name": "xorazm-viloyati.ucoz.com", - "url": "http://xorazm-viloyati.ucoz.com/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Xpaja", - "url": "https://xpaja.net/user/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": true, - "error_type": "message", - "match_string": "header-channel" - }, - { - "name": "Xpanded", - "url": "https://xpanded.com/girls?search_profilename={}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "but we were unable to find", - "match_string": ">Xpanded TV</a>" - }, - { - "name": "Xperiablog", - "url": "https://www.xperiablog.net/forum/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "Xrares", - "url": "https://xrares.com/user/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": true, - "error_type": "message", - "error_string": "This user does not exist", - "match_string": "panel-body" - }, - { - "name": "xristos.vo.uz", - "url": "http://xristos.vo.uz/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Xss", - "url": "https://xss.is/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "XSS.is", - "url": "https://xss.is/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "xsssql", - "url": "http://www.xsssql.com/article/author/{}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "xt_ht_BLOCK_RU_IP", - "url": "http://{}.xt.ht/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "<b>[phpBB Debug] PHP Notice</b>" - }, - { - "name": "Xtratime", - "url": "https://www.xtratime.org/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "xtratime.org", - "url": "https://www.xtratime.org/members/{}.1/", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "XV Cams", - "url": "https://www.xvcams.com/models/bios/{}/about.php", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "The performer's bio you requested is not available.", - "match_string": "Webcam Bio - Naked Pics, Adult Videos, Sex Chat" - }, - { - "name": "Xvideos", - "url": "https://xvideos.com/profiles/{}", - "category": "adult", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "XVIDEOS (pornstars)", - "url": "https://www.xvideos.com/pornstars/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "This account doesn\u2019t exist", - "match_string": "{username} - Channel page - XVIDEOS.COM" - }, - { - "name": "XVIDEOS (users/channels)", - "url": "https://www.xvideos.com/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "This account doesn\u2019t exist", - "match_string": "{username} - Channel page - XVIDEOS.COM" - }, - { - "name": "XVIDEOS Red", - "url": "https://www.xvideos.red/{}", - "category": "other", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "Learn more", - "match_string": "video views" - }, - { - "name": "XVIDEOS-profiles", - "url": "https://www.xvideos.com/profiles/{}", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "status_code", - "error_code": 404, - "error_string": "THIS PROFILE DOESN'T EXIST", - "match_code": 200, - "match_string": "page - XVIDEOS.COM" - }, - { - "name": "XvideosModels", - "url": "https://www.xvideos.com/models/{}", - "category": "adult", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "THIS PROFILE DOESN'T EXIST", - "match_string": "Total video views" - }, - { - "name": "Xxxbunker", - "url": "https://xxxbunker.com/users/{}", - "category": "adult", - "source": "social_analyzer", - "nsfw": true, - "error_type": "message", - "error_string": "FILE NOT FOUND", - "match_string": "\"profile\"" - }, - { - "name": "XXXfollow", - "url": "https://www.xxxfollow.com/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "XXX follow - Free TikTok Porn (formerly Xfollow)", - "match_string": "Views
" - }, - { - "name": "XXXForum.org", - "url": "https://xxxforum.org/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "xyuivet-mailcpy.moy.su", - "url": "http://xyuivet-mailcpy.moy.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Ya-uchitel", - "url": "https://ya-uchitel.ru//index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Ya-uchitel", - "url": "https://ya-uchitel.ru/index/8-0-{}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }, - { - "name": "yagubov.site", - "url": "http://yagubov.site/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Yahoo! JAPAN Auction", - "url": "https://auctions.yahoo.co.jp/follow/list/{}", - "category": "shopping", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 500, - "error_string": "Yahoo! JAPAN ID\u304c\u7121\u52b9\u3067\u3059\u3002", - "match_code": 200, - "match_string": "\u51fa\u54c1\u8005" - }, - { - "name": "Yalta-info", - "url": "http://www.yalta-info.net/search.php?keywords=&terms=all&author={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "yamaya.ru", - "url": "https://yamaya.ru/profile/?{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "

", - "match_string": "Skype:" - }, - { - "name": "Yandex_Dzen", - "url": "https://dzen.ru/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "YandexBugbounty", - "url": "https://yandex.ru/bugbounty/researchers/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "YandexCollections API", - "url": "https://yandex.ru/collections/api/users/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "cl-not-found-content__title", - "match_string": "public_id" - }, - { - "name": "YandexMarket", - "url": "https://market.yandex.ru/user/{}", - "category": "shopping", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "//yastatic.net/market-export/_/i/zero-state/404.svg" - }, - { - "name": "YandexMusic", - "url": "https://music.yandex.ru/users/{}/playlists", - "category": "music", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "YandexMusic", - "url": "https://music.yandex/users/{}/playlists", - "category": "music", - "source": "sherlock", - "nsfw": false, - "error_type": "message", - "error_string": "\u041e\u0448\u0438\u0431\u043a\u0430 404" - }, - { - "name": "YandexReviews", - "url": "https://reviews.yandex.ru/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441\u043a\u0440\u044b\u043b \u0441\u0432\u043e\u044e \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443", - "match_string": "content=\"\u041e\u0442\u0437\u044b\u0432\u044b \u0438 \u043e\u0446\u0435\u043d\u043a\u0438" - }, - { - "name": "YandexZenChannel", - "url": "https://dzen.ru/channel/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": ".zen-ui-page-404", - "match_string": "zen_object_id" - }, - { - "name": "YandexZenUser", - "url": "https://zen.yandex.ru/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "YandexZnatoki", - "url": "https://yandex.ru/q/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Yapisal", - "url": "{urlMain}/u/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\"error_type\":\"not_found\"", - "match_string": "\"user\":{\"id\":" - }, - { - "name": "Yapisal", - "url": "https://forum.yapisal.net/u/{}/summary", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "YaPishu.net", - "url": "https://yapishu.net/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code", - "match_string": "for_profile" - }, - { - "name": "Yareny", - "url": "https://yareny.com/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Page not found!" - }, - { - "name": "Yazawaj", - "url": "https://www.yazawaj.com/profile/{}", - "category": "dating", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 302, - "error_string": "nodata", - "match_code": 200, - "match_string": "profile-description" - }, - { - "name": "Yazawaj", - "url": "https://yazawaj.com/profile/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "profile/{username}" - }, - { - "name": "Yazbel", - "url": "https://forum.yazbel.com/u/{}/summary", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Yelp", - "url": "http://{}.yelp.com/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "viewName", - "match_string": "Username" - }, - { - "name": "Yelp (by id)", - "url": "https://www.yelp.com/user_details?userid={}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "error-page", - "match_string": "Birthday" - }, - { - "name": "yerkramas.do.am", - "url": "http://yerkramas.do.am/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "YesWeHack", - "url": "https://api.yeswehack.com/hunters/{}", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "\"code\":404", - "match_code": 200, - "match_string": "\"username\":" - }, - { - "name": "yka.kz", - "url": "http://yka.kz/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Yougame", - "url": "https://yougame.biz/{}", - "category": "gaming", - "source": "snoop", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "YouNow", - "url": "https://www.younow.com/{}/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "No users found" - }, - { - "name": "YouNow", - "url": "https://api.younow.com/php/api/broadcast/info/user={}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\"errorMsg\":\"No users found\"", - "match_code": 200, - "match_string": "\"userId\":" - }, - { - "name": "Younow", - "url": "https://younow.com/{}", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "is broadcasting" - }, - { - "name": "Younow", - "url": "https://www.younow.com/{}", - "category": "other", - "source": "nexfil", - "nsfw": false - }, - { - "name": "YouPic", - "url": "https://youpic.com/photographer/{}/", - "category": "art", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "youpic", - "url": "https://youpic.com/photographer/{}", - "category": "art", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "<title>YouPic \u2014 Not Found", - "match_code": 200, - "match_string": "404 Not Found", - "match_code": 200, - "match_string": "joinedDateText" - }, - { - "name": "YouTube User", - "url": "https://www.youtube.com/user/{}/about", - "category": "video", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "404 Not Found", - "match_code": 200, - "match_string": "joinedDateText" - }, - { - "name": "youtubechannel", - "url": "https://www.youtube.com/c/{}", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "status_code", - "match_code": 200 - }, - { - "name": "yras.ucoz.ru", - "url": "http://yras.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Ytmnd", - "url": "https://www.ytmnd.com/users/{}/", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "Unknown user" - }, - { - "name": "Ytmnd", - "url": "https://ytmnd.com/users/{}/", - "category": "other", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "match_string": "user_profile_stats" - }, - { - "name": "Yummly", - "url": "https://mapi.yummly.com/mapi/v19/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "match_string": "profileName" - }, - { - "name": "Yumpu", - "url": "https://www.yumpu.com/user/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "float-left", - "match_string": "yp-grid-mag-container yp-content-container" - }, - { - "name": "Yuvutu (profile)", - "url": "http://www.yuvutu.com/{}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": ">Members</span>", - "match_string": "personal info</h1>" - }, - { - "name": "Yuvutu (search)", - "url": "http://www.yuvutu.com/modules.php?name=Video&op=search&keywords={}", - "category": "adult", - "source": "cupidcr4wl", - "nsfw": false, - "error_type": "message", - "error_string": "<strong>0 result(s)</strong>", - "match_string": ">1</a>" - }, - { - "name": "Yvision", - "url": "https://yvision.kz/u/{}", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "helmet=\"true\">404", - "match_code": 200, - "match_string": "
" - }, - { - "name": "zennenhund.ucoz.ru", - "url": "http://zennenhund.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Zenway", - "url": "https://zenway.ru/forum/search.php?action=search&keywords=&author={}&search_in=0&sort_by=0&sort_dir=DESC&show_as=posts&search=%D0%9E%D1%82%D0%BF%D1%80%D0%B0%D0%B2%D0%B8%D1%82%D1%8C", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - }, - { - "name": "Zepeto", - "url": "https://gw-napi.zepeto.io/profiles/{}", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "errorCode\":", - "match_code": 200, - "match_string": "zepetoId\":" - }, - { - "name": "zerkalastekla.ru", - "url": "http://zerkalastekla.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Zerocoolpro", - "url": "https://zerocoolpro.biz/forum/members/?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "redirection" - }, - { - "name": "zhelezyaka.at.ua", - "url": "http://zhelezyaka.at.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Zhihu", - "url": "https://www.zhihu.com/people/{}", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "\u7528\u6237\u4e0d\u5b58\u5728" - }, - { - "name": "zhihu", - "url": "https://api.zhihu.com/books/people/{}/publications?offset=0&limit=5", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "\"name\": \"NotFoundException\"", - "match_code": 200, - "match_string": "\"is_start\": true" - }, - { - "name": "Zhihu", - "url": "https://zhihu.com/people/{}", - "category": "social", - "source": "social_analyzer", - "nsfw": false, - "error_type": "message", - "error_string": ">404", - "match_string": "\"users\":{\"" - }, - { - "name": "Zhyk", - "url": "https://zhyk.ru/member.php?username={}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Zhyk", - "url": "https://zhyk.ru/forum/member.php?username={}", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - }, - { - "name": "zid.moy.su", - "url": "http://zid.moy.su/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Zillow", - "url": "https://www.zillow.com/profile/{}/", - "category": "shopping", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 302, - "match_code": 200, - "match_string": "- Real Estate Agent" - }, - { - "name": "Zismo", - "url": "https://zismo.biz/index.php?app=core&module=search&do=search&andor_type=&search_author={}&search_content=both&search_app_filters[members][searchInKey]=members&search_app_filters[members][members][sortKey]=date&search_app_filters[members][members][sortDir]=0&search_app_filters[members][comments][sortKey]=date&search_app_filters[members][comments][sortDir]=0&search_term=&search_app=members&search_app_filters[members][searchInKey]=members&search_app_filters[members][members][sortKey]=date&search_app_filters[members][members][sortDir]=1", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "\u041f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432." - }, - { - "name": "Zmarsa.com", - "url": "https://zmarsa.com/uzytkownik/{}/glowna/", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "B\u0142\u0105d na stronie", - "match_string": "Galeria u\u017cytkownika" - }, - { - "name": "zmarsa.com", - "url": "https://zmarsa.com/uzytkownik/{}", - "category": "adult", - "source": "blackbird", - "nsfw": true, - "error_type": "status_code", - "error_code": 404, - "error_string": "Error 404 - zMarsa.com<", - "match_code": 200, - "match_string": "Statystyki" - }, - { - "name": "Zmey", - "url": "https://zmey.ru/user/@{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "response_url" - }, - { - "name": "Znanija", - "url": "https://znanija.com/graphql/ru?operationName=NickAvailability&query=query NickAvailability($nick:String!){nickAvailability(nick:$nick){isAvailable}}&variables={\"nick\":\"{}\"}", - "category": "other", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\"isAvailable\":true", - "match_code": 200, - "match_string": "\"isAvailable\":false" - }, - { - "name": "Znanylekarz.pl", - "url": "https://www.znanylekarz.pl/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "zoig.com", - "url": "https://zoig.com/profile/{}", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "zol", - "url": "https://my.zol.com.cn/{}/", - "category": "tech", - "source": "detectdee", - "nsfw": false, - "error_type": "message", - "match_code": 200 - }, - { - "name": "Zomato", - "url": "https://www.zomato.com/pl/{}/foodjourney", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "Zomato", - "url": "https://www.zomato.com/{}/reviews", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "This is a 404 page and we think it's fairly clear", - "match_code": 200, - "match_string": "Activity</h4>" - }, - { - "name": "Zomato", - "url": "https://www.zomato.com/pl/{}/reviews", - "category": "other", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "data-chunk=\"pages-Search\" src=\"" - }, - { - "name": "Zomato", - "url": "https://www.zomato.com/{}/foodjourney", - "category": "social", - "source": "reveal_my_name", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "404 | Zomato", - "match_code": 200, - "match_string": "| Zomato" - }, - { - "name": "Zonazakona", - "url": "https://www.zonazakona.ru/forum/search/?q={}&quick=1&type=core_members", - "category": "forum", - "source": "snoop", - "nsfw": false, - "error_type": "message", - "error_string": "0 results" - }, - { - "name": "Zoomir.ir", - "url": "https://www.zoomit.ir/user/{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "message", - "error_string": "txtSearch", - "match_string": "Email" - }, - { - "name": "zoomitir", - "url": "https://www.zoomit.ir/user/{}/", - "category": "tech", - "source": "blackbird", - "nsfw": false, - "error_type": "status_code", - "error_code": 404, - "error_string": "<title>\u062e\u0637\u0627\u06cc \u06f4\u06f0\u06f4 - \u0635\u0641\u062d\u0647 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f", - "match_code": 301 - }, - { - "name": "zornet.ru", - "url": "http://zornet.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "zp-mama.ucoz.ua", - "url": "http://zp-mama.ucoz.ua/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "zvukinadezdy.ucoz.ru", - "url": "http://zvukinadezdy.ucoz.ru/index/8-0-{}", - "category": "forum", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "{username}.biz", - "url": "{}.biz", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "{username}.com", - "url": "{}.com", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "{username}.ddns.net", - "url": "{}.ddns.net", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "{username}.email", - "url": "{}.email", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "{username}.guru", - "url": "{}.guru", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "{username}.me", - "url": "{}.me", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "{username}.portfoliobox.net", - "url": "https://{}.portfoliobox.net", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "{username}.pro", - "url": "{}.pro", - "category": "other", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "{username}.tilda.ws", - "url": "https://{}.tilda.ws", - "category": "social", - "source": "maigret", - "nsfw": false, - "error_type": "status_code" - }, - { - "name": "\u0427\u0430\u0442\u043e\u0432\u043a\u0430.net", - "url": "https://chatovka.net/search?user_nick=+{}&user_sex_m=on&user_sex_f=on", - "category": "social", - "source": "blackbird", - "nsfw": false, - "error_type": "message", - "error_code": 200, - "error_string": "\u041f\u043e \u0412\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043b\u044e\u0434\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b.", - "match_code": 200, - "match_string": "href=\"/user/" - } - ] -} \ No newline at end of file diff --git a/data/sites/maigret.json b/data/sites/maigret.json deleted file mode 100644 index f801056..0000000 --- a/data/sites/maigret.json +++ /dev/null @@ -1,35922 +0,0 @@ -{ - "sites": { - "0-3.RU": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 4046374, - "urlMain": "http://0-3.ru", - "usernameClaimed": "donna", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "101010.pl": { - "checkType": "status_code", - "urlMain": "https://101010.pl/", - "url": "https://101010.pl/@{username}", - "alexaRank": 1500240, - "usernameClaimed": "ueh_kon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "0k.clan.su": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 8930061, - "urlMain": "http://0k.clan.su", - "usernameClaimed": "eruzz", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "discussions.ubisoft.com": { - "tags": [ - "forum", - "gaming" - ], - "checkType": "message", - "presenseStrs": [ - "Block User" - ], - "absenceStrs": [ - "You seem to have stumbled upon a page that does not exist. Return to the" - ], - "url": "https://discussions.ubisoft.com/user/{username}?lang=en-US", - "usernameClaimed": "ubi-pingu", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "1001mem.ru": { - "tags": [ - "ru" - ], - "regexCheck": "^[^.]{1,}$", - "checkType": "message", - "absenceStrs": [ - "\u042d\u0442\u043e\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442, \u0438\u043b\u0438 \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d." - ], - "alexaRank": 1155058, - "urlMain": "http://1001mem.ru", - "url": "http://1001mem.ru/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "1001tracklists": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "Info Page" - ], - "absenceStrs": [ - "Sorry, the requested user is not valid!" - ], - "alexaRank": 36590, - "urlMain": "https://www.1001tracklists.com", - "url": "https://www.1001tracklists.com/user/{username}/index.html", - "usernameClaimed": "JacoWilles", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "101xp.com": { - "tags": [ - "forum", - "gaming", - "ru" - ], - "engine": "XenForo", - "alexaRank": 43529, - "urlMain": "https://forum-ru.101xp.com", - "usernameClaimed": "aida", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "11x2": { - "checkType": "status_code", - "alexaRank": 1429974, - "urlMain": "https://11x2.com", - "url": "https://11x2.com/user/home/{username}", - "usernameClaimed": "hazelamy", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "123rf": { - "tags": [ - "photo", - "ru", - "us" - ], - "checkType": "response_url", - "alexaRank": 1151, - "urlMain": "https://ru.123rf.com", - "url": "https://ru.123rf.com/profile_{username}", - "usernameClaimed": "rawpixel", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "1337x": { - "tags": [ - "torrent" - ], - "checkType": "message", - "absenceStrs": [ - "Bad Username." - ], - "presenseStrs": [ - "Join Date" - ], - "alexaRank": 492, - "urlMain": "https://1337x.to", - "url": "https://1337x.to/user/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "1xforum": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 1172921, - "urlMain": "https://1xforum.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "247sports": { - "tags": [ - "news", - "sport" - ], - "checkType": "status_code", - "alexaRank": 2084, - "urlMain": "https://247sports.com", - "url": "https://247sports.com/user/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "24open": { - "disabled": true, - "tags": [ - "dating", - "ru", - "us" - ], - "checkType": "status_code", - "alexaRank": 50670, - "urlMain": "https://24open.ru", - "url": "https://24open.ru/user/{username}/", - "usernameClaimed": "niko3193", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "2Dimensions": { - "checkType": "status_code", - "alexaRank": 8413056, - "urlMain": "https://2Dimensions.com/", - "url": "https://2Dimensions.com/a/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "2berega.spb.ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 1128372, - "urlMain": "https://2berega.spb.ru", - "url": "https://2berega.spb.ru/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "2d-3d": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 455230, - "urlMain": "https://www.2d-3d.ru", - "url": "https://www.2d-3d.ru/user/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "2fast4u": { - "disabled": true, - "tags": [ - "nl" - ], - "checkType": "message", - "absenceStrs": [ - "Deze gebruiker is niet geregistreerd, zodat je zijn of haar profiel niet kunt bekijken." - ], - "alexaRank": 1325758, - "urlMain": "https://www.2fast4u.be", - "url": "https://www.2fast4u.be/members/?username={username}", - "usernameClaimed": "Schussboelie", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "33bru": { - "tags": [ - "ru", - "ua" - ], - "regexCheck": "^[a-zA-Z0-9-]{3,}$", - "checkType": "message", - "presenseStrs": [ - "\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - ], - "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "alexaRank": 1261462, - "urlMain": "http://33bru.com/", - "url": "http://{username}.33bru.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "3DMir.ru": { - "checkType": "message", - "presenseStrs": [ - "
" - ], - "absenceStrs": [ - "3DMir.ru - " - ], - "urlMain": "http://www.3dmir.ru/", - "url": "http://www.3dmir.ru/{username}", - "usernameClaimed": "imlegr", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 271232 - }, - "3dcadforums": { - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 927437, - "urlMain": "https://www.3dcadforums.com/", - "url": "https://www.3dcadforums.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "3ddd": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 11022, - "urlMain": "https://3ddd.ru", - "url": "https://3ddd.ru/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "3dnews": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 6223, - "urlMain": "http://forum.3dnews.ru/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "3dtoday": { - "tags": [ - "ru" - ], - "checkType": "response_url", - "alexaRank": 70101, - "urlMain": "https://3dtoday.ru/", - "url": "https://3dtoday.ru/blogs/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "4cheat": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 221253, - "urlMain": "https://4cheat.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "4gameforum": { - "tags": [ - "forum", - "kr", - "ru" - ], - "engine": "XenForo", - "alexaRank": 68569, - "urlMain": "https://4gameforum.com", - "usernameClaimed": "persty", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "4pda": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0412\u0430\u0448 \u043f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432." - ], - "alexaRank": 3436, - "urlMain": "https://4pda.ru/", - "url": "https://4pda.ru/forum/index.php?act=search&source=pst&noform=1&username={username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "4stor": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 288919, - "urlMain": "https://4stor.ru", - "url": "https://4stor.ru/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "500px": { - "tags": [ - "photo" - ], - "errors": { - "Something just went wrong": "Site error", - "PersistedQueryNotFound": "Site error" - }, - "urlProbe": "https://api.500px.com/graphql?operationName=ProfileRendererQuery&variables=%7B%22username%22%3A%22{username}%22%7D&extensions=%7B%22persistedQuery%22%3A%7B%22version%22%3A1%2C%22sha256Hash%22%3A%22fcecc7028c308115b0defebc63acec3fe3c12df86a602c3e1785ba5cfb8fff47%22%7D%7D", - "checkType": "message", - "absenceStrs": [ - "No message available" - ], - "alexaRank": 2906, - "urlMain": "https://500px.com/", - "url": "https://500px.com/p/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "50cc.com.ua": { - "engine": "uCoz", - "urlMain": "http://50cc.com.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "63148.com.ua": { - "engine": "uCoz", - "urlMain": "http://63148.com.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "74507.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://74507.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 5800731 - }, - "7Cups": { - "tags": [ - "medicine" - ], - "checkType": "status_code", - "alexaRank": 54115, - "urlMain": "https://www.7cups.com/", - "url": "https://www.7cups.com/@{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "7dach": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 14437, - "urlMain": "https://7dach.ru/", - "url": "https://7dach.ru/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "7ya": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 38054, - "urlMain": "https://blog.7ya.ru", - "url": "https://blog.7ya.ru/{username}/", - "usernameClaimed": "trotter", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "9GAG": { - "tags": [ - "sharing" - ], - "checkType": "status_code", - "alexaRank": 459, - "urlMain": "https://www.9gag.com/", - "url": "https://www.9gag.com/u/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "AMUR": { - "disabled": true, - "tags": [ - "dating", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - " \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e!" - ], - "urlMain": "https://apteka.ee", - "url": "https://apteka.ee/user/id/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Aback": { - "tags": [ - "ua" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d." - ], - "alexaRank": 8956795, - "urlMain": "https://aback.com.ua", - "url": "https://aback.com.ua/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "About.me": { - "tags": [ - "blog", - "in" - ], - "checkType": "status_code", - "alexaRank": 7577, - "urlMain": "https://about.me/", - "url": "https://about.me/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Aboutcar": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - ], - "alexaRank": 3417602, - "urlMain": "http://aboutcar.ru", - "url": "http://aboutcar.ru/members/{username}.html", - "usernameClaimed": "krolenya", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Academia.edu": { - "tags": [ - "id" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 349, - "urlMain": "https://www.academia.edu/", - "url": "https://independent.academia.edu/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Acomics": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 148931, - "urlMain": "https://acomics.ru", - "url": "https://acomics.ru/-{username}", - "usernameClaimed": "Garage", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "AdultFriendFinder": { - "tags": [ - "dating", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "<select name=\"REG_sex\" >" - ], - "alexaRank": 2857, - "urlMain": "https://adultfriendfinder.com", - "url": "https://adultfriendfinder.com/profile/{username}", - "usernameClaimed": "havefunwing", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "AdvancedCustomFields": { - "tags": [ - "au", - "in", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Sorry, page not found" - ], - "alexaRank": 7863, - "urlMain": "https://support.advancedcustomfields.com/", - "url": "https://support.advancedcustomfields.com/forums/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Advego": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 10961, - "urlMain": "https://advego.com/", - "url": "https://advego.com/profile/{username}/author/", - "usernameClaimed": "kazakov", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Affiliatefix": { - "tags": [ - "forum", - "in", - "us" - ], - "engine": "XenForo", - "alexaRank": 28014, - "urlMain": "https://www.affiliatefix.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Afterellen": { - "disabled": true, - "tags": [ - "forum", - "pk", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 637223, - "urlMain": "https://forums.afterellen.com", - "url": "https://forums.afterellen.com/members/?username={username}", - "usernameClaimed": "buffaloed", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "Airbit": { - "checkType": "status_code", - "url": "https://airbit.com/{username}", - "usernameClaimed": "airbit", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Airliners": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 30355, - "urlMain": "https://www.airliners.net/", - "url": "https://www.airliners.net/user/{username}/profile/photos", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Alabay": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" - ], - "urlMain": "https://alabay.forum24.ru", - "url": "https://alabay.forum24.ru/?32-{username}", - "usernameClaimed": "asian", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Alexgyver": { - "tags": [ - "de", - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 87631, - "urlMain": "https://community.alexgyver.ru", - "usernameClaimed": "kdn", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "All-mods": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 276845, - "urlMain": "https://all-mods.ru", - "url": "https://all-mods.ru/author/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "AllKPop": { - "tags": [ - "de", - "kr", - "us" - ], - "checkType": "response_url", - "alexaRank": 7091, - "urlMain": "https://www.allkpop.com/", - "url": "https://www.allkpop.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "AllRecipes": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Page Not Found.", - "You may have mistyped the address, or the page may have moved." - ], - "presenseStrs": [ - "Saved Items & Collections", - "{username}" - ], - "alexaRank": 983, - "urlMain": "https://www.allrecipes.com/", - "url": "https://www.allrecipes.com/cook/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "AllTheLyrics": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "music" - ], - "engine": "vBulletin", - "alexaRank": 92241, - "urlMain": "https://www.allthelyrics.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "AllTheSoft": { - "disabled": true, - "tags": [ - "in" - ], - "checkType": "status_code", - "alexaRank": 1761461, - "urlMain": "http://www.allthesoft.com", - "url": "http://www.allthesoft.com/member/{username}.html", - "usernameClaimed": "marmon4270", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "AllTrails": { - "tags": [ - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "presenseStrs": [ - "Profile" - ], - "absenceStrs": [ - "You are being" - ], - "alexaRank": 4429, - "urlMain": "https://www.alltrails.com/", - "url": "https://www.alltrails.com/members/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Allhockey": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 43048, - "urlMain": "https://allhockey.ru/", - "url": "https://allhockey.ru/blog/{username}", - "usernameClaimed": "Dmitri%20Nikulin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Allods": { - "urlSubpath": "/forums", - "tags": [ - "forum", - "gaming", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 49, - "urlMain": "https://allods.mail.ru", - "usernameClaimed": "wizard", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "AlternativeTo": { - "tags": [ - "in", - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "<title>404: This page could not be found" - ], - "alexaRank": 6524, - "urlMain": "https://alternativeto.net/", - "url": "https://alternativeto.net/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Alushta24": { - "tags": [ - "ru", - "ua" - ], - "checkType": "response_url", - "alexaRank": 2013642, - "urlMain": "https://alushta24.org", - "url": "https://alushta24.org/user/{username}/", - "usernameClaimed": "Igor11324", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "AmazfitWatchFaces": { - "urlSubpath": "/forum", - "tags": [ - "ae", - "es", - "forum", - "gr", - "id", - "ir", - "ru" - ], - "engine": "phpBB", - "alexaRank": 139768, - "urlMain": "https://amazfitwatchfaces.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ameba": { - "tags": [ - "jp" - ], - "checkType": "status_code", - "alexaRank": 1112, - "urlMain": "https://profile.ameba.jp", - "url": "https://profile.ameba.jp/ameba/{username}/", - "usernameClaimed": "haruharuko3", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Americanthinker": { - "checkType": "message", - "absenceStrs": [ - "American Thinker" - ], - "presenseStrs": [ - "Articles:" - ], - "urlMain": "https://www.americanthinker.com/", - "url": "https://www.americanthinker.com/author/{username}/", - "usernameClaimed": "monicashowalter", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 11394 - }, - "Amirite": { - "disabled": true, - "tags": [ - "gb", - "in" - ], - "checkType": "status_code", - "alexaRank": 795752, - "urlMain": "https://www.amirite.com", - "url": "https://www.amirite.com/user/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Amperka": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 126531, - "urlMain": "http://forum.amperka.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Amspb": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 8462543, - "urlMain": "https://amspb.info", - "usernameClaimed": "SSV", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Anapakurort": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0442\u0430\u043a\u043e\u0433\u043e \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u0444\u043e\u0440\u0443\u043c\u0430 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "alexaRank": 3260857, - "urlMain": "http://www.anapakurort.info", - "url": "http://www.anapakurort.info/forum/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Anarcho-punk": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 2863384, - "urlMain": "https://www.anarcho-punk.net/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Androidforums": { - "tags": [ - "forum", - "in", - "us" - ], - "engine": "XenForo", - "alexaRank": 52260, - "urlMain": "https://androidforums.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Angara": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 516377, - "urlMain": "https://angara.net", - "url": "https://angara.net/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Angelgothics": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 7446429, - "urlMain": "http://angelgothics.ru", - "usernameClaimed": "Angel", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Anibox": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 416411, - "urlMain": "https://www.anibox.org", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Anime-planet": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found." - ], - "alexaRank": 6789, - "urlMain": "https://www.anime-planet.com", - "url": "https://www.anime-planet.com/forum/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Anime.web.tr": { - "tags": [ - "tr" - ], - "checkType": "message", - "absenceStrs": [ - "\u00dczg\u00fcn\u00fcz, b\u00f6yle bir kullan\u0131c\u0131 bulunmuyor" - ], - "alexaRank": 2050393, - "urlMain": "http://www.anime.web.tr/", - "url": "http://www.anime.web.tr/yazar/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "AnimeNewsNetwork": { - "urlSubpath": "/bbs", - "tags": [ - "gb", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Could not find expected value in database" - ], - "alexaRank": 11732, - "urlMain": "https://www.animenewsnetwork.com", - "url": "https://www.animenewsnetwork.com/bbs/phpBB2/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "AnimeSuperHero": { - "disabled": true, - "tags": [ - "forum", - "in", - "us" - ], - "engine": "XenForo", - "alexaRank": 556400, - "urlMain": "https://animesuperhero.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "AnimeUKNews": { - "tags": [ - "forum", - "pk" - ], - "engine": "XenForo", - "alexaRank": 668885, - "urlMain": "https://forums.animeuknews.net/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Animebase": { - "engine": "XenForo", - "alexaRank": 1397750, - "urlMain": "https://animebase.me", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "pk" - ] - }, - "Animeforum": { - "tags": [ - "forum", - "pk", - "us", - "vn" - ], - "engine": "vBulletin", - "alexaRank": 459861, - "urlMain": "https://www.animeforum.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Anonup": { - "checkType": "message", - "absenceStrs": [ - "Page not found!" - ], - "presenseStrs": [ - "Following" - ], - "url": "https://anonup.com/@{username}", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Antichat": { - "tags": [ - "forum", - "ru", - "us" - ], - "engine": "XenForo", - "alexaRank": 75555, - "urlMain": "https://forum.antichat.ru/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Antipunk": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "urlMain": "https://antipunk.com/", - "url": "https://antipunk.com/users/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 11955805 - }, - "Antique-bottles": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 2027590, - "urlMain": "https://www.antique-bottles.net", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Antiquers": { - "tags": [ - "forum", - "in" - ], - "engine": "XenForo", - "alexaRank": 482527, - "urlMain": "https://www.antiquers.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Antiwomen": { - "tags": [ - "forum", - "ru" - ], - "errors": { - "\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u043f\u043e\u0438\u0441\u043a \u0441\u0440\u0430\u0437\u0443 \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0433\u043e": "Too many searhes per IP", - "\u0414\u043e\u0441\u0442\u0443\u043f \u043a \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u0438 \u0437\u0430\u043a\u0440\u044b\u0442 \u0434\u043b\u044f \u0432\u0430\u0448\u0435\u0433\u043e IP-\u0430\u0434\u0440\u0435\u0441\u0430.": "IP ban" - }, - "engine": "phpBB/Search", - "alexaRank": 269462, - "urlMain": "https://antiwomen.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ApexLegends": { - "checkType": "message", - "absenceStrs": [ - "PLAYER NOT FOUND" - ], - "presenseStrs": [ - "Overview" - ], - "url": "https://apex.tracker.gg/apex/profile/origin/{username}/overview", - "usernameClaimed": "RollsRoyce_Dawn", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Appearoo": { - "tags": [ - "in" - ], - "checkType": "response_url", - "alexaRank": 257567, - "urlMain": "http://appearoo.com", - "url": "http://appearoo.com/{username}", - "usernameClaimed": "appearoo", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Appian": { - "alexaRank": 56402, - "url": "https://community.appian.com/members/{username}", - "checkType": "message", - "absenceStrs": [ - "Working..." - ], - "absenceStrs": [ - "Arduino Project Hub" - ], - "url": "https://projecthub.arduino.cc/{username}", - "usernameClaimed": "uehkon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "AreKamrbb": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u043c\u044b \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0448\u043b\u0438 \u0434\u043b\u044f \u0432\u0430\u0441.." - ], - "alexaRank": 214312, - "urlMain": "https://are.kamrbb.ru", - "url": "https://are.kamrbb.ru/?x=find&f={username}#top", - "usernameClaimed": "%D0%B0%D0%BB%D0%B8%D1%81%D0%B0", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Arhrock": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 2685814, - "urlMain": "https://arhrock.info/", - "url": "https://arhrock.info/forum/members/?username={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ariva": { - "tags": [ - "de" - ], - "checkType": "status_code", - "alexaRank": 17698, - "urlMain": "https://www.ariva.de/", - "url": "https://www.ariva.de/profil/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Armchairgm": { - "tags": [ - "us", - "wiki" - ], - "checkType": "status_code", - "alexaRank": 80, - "urlMain": "https://armchairgm.fandom.com/", - "url": "https://armchairgm.fandom.com/wiki/User:{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Armorgames": { - "tags": [ - "gaming", - "us" - ], - "checkType": "response_url", - "alexaRank": 16054, - "urlMain": "https://armorgames.com", - "url": "https://armorgames.com/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Armtorg": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 567058, - "urlMain": "https://armtorg.ru/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Arrse": { - "urlSubpath": "/community", - "tags": [ - "ca", - "forum", - "gb", - "in", - "pk" - ], - "engine": "XenForo", - "alexaRank": 602510, - "urlMain": "https://www.arrse.co.uk/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Arsenal-mania": { - "tags": [ - "gb", - "hk", - "pk", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found. Please enter a member's entire name." - ], - "alexaRank": 1102905, - "urlMain": "https://arsenal-mania.com", - "url": "https://arsenal-mania.com/forum/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Artistsnclients": { - "checkType": "status_code", - "url": "https://artistsnclients.com/people/{username}", - "usernameClaimed": "uehkon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Artpersona": { - "tags": [ - "ru" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "\u042d\u0442\u043e\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043b\u0438\u0431\u043e \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442, \u043b\u0438\u0431\u043e \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d." - ], - "urlMain": "http://artpersona.org/", - "url": "http://artpersona.org/cb/userprofile/{username}", - "usernameClaimed": "Sofidark", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Artstation": { - "tags": [ - "art", - "stock" - ], - "checkType": "status_code", - "alexaRank": 1414, - "urlMain": "https://www.artstation.com", - "url": "https://www.artstation.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Artsy": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 10540, - "urlMain": "https://www.artsy.net", - "url": "https://www.artsy.net/artist/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Asciinema": { - "tags": [ - "in", - "tr", - "us" - ], - "checkType": "status_code", - "alexaRank": 105142, - "urlMain": "https://asciinema.org", - "url": "https://asciinema.org/~{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ask Fedora": { - "tags": [ - "forum", - "in", - "us" - ], - "absenceStrs": [ - "Sorry, we couldn't find that page." - ], - "engine": "Discourse", - "alexaRank": 36112, - "urlMain": "https://ask.fedoraproject.org/", - "usernameClaimed": "grsm", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "AskFM": { - "disabled": true, - "tags": [ - "eg", - "in", - "ru" - ], - "regexCheck": "^[a-zA-Z0-9_]{3,40}$", - "checkType": "message", - "absenceStrs": [ - "Well, apparently not anymore." - ], - "alexaRank": 4635, - "urlMain": "https://ask.fm/", - "url": "https://ask.fm/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Askvoprosy": { - "disabled": true, - "tags": [ - "coding" - ], - "checkType": "message", - "absenceStrs": [ - "" - ], - "alexaRank": 670057, - "urlMain": "https://askvoprosy.com/", - "url": "https://askvoprosy.com/polzovateli/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Astra-club": { - "tags": [ - "ru", - "ua" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 1071900, - "urlMain": "http://www.astra-club.ru", - "url": "http://www.astra-club.ru/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Astraclub": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - ], - "alexaRank": 345699, - "urlMain": "http://astraclub.ru", - "url": "http://astraclub.ru/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Astralinux": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 394418, - "urlMain": "https://forum.astralinux.ru", - "usernameClaimed": "dem", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Astro-talks": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 2055636, - "urlMain": "http://www.astro-talks.ru", - "url": "http://www.astro-talks.ru/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Astrogalaxy": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 1266828, - "urlMain": "https://astrogalaxy.ru", - "url": "https://astrogalaxy.ru/forum/phpBB2/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Au": { - "tags": [ - "freelance", - "ru", - "shopping" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d</title" - ], - "alexaRank": 29241, - "urlMain": "https://au.ru", - "url": "https://au.ru/user/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Audiojungle": { - "tags": [ - "in", - "us" - ], - "regexCheck": "^[a-zA-Z0-9_]+$", - "checkType": "status_code", - "alexaRank": 5897, - "urlMain": "https://audiojungle.net/", - "url": "https://audiojungle.net/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Aufeminin": { - "tags": [ - "fr", - "ma", - "mg" - ], - "checkType": "response_url", - "alexaRank": 37687, - "urlMain": "https://www.aufeminin.com", - "url": "https://www.aufeminin.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Autofrage": { - "checkType": "status_code", - "url": "https://www.autofrage.net/nutzer/{username}", - "usernameClaimed": "autofrage", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Autokadabra": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 1240738, - "urlMain": "http://autokadabra.ru/", - "url": "http://autokadabra.ru/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Autolada": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "<title> :: AUTOLADA.RU" - ], - "presenseStrs": [ - "postdetails" - ], - "alexaRank": 152145, - "urlMain": "https://www.autolada.ru/", - "url": "https://www.autolada.ru/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Autolenta": { - "tags": [ - "auto", - "forum", - "ru" - ], - "disabled": true, - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 7414771, - "urlMain": "https://community.autolenta.ru", - "url": "https://community.autolenta.ru/profile/{username}", - "usernameClaimed": "serzhhh", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Automania": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "Go to the homepage" - ], - "presenseStrs": [ - "\u041f\u043e\u0441\u0442\u044b \u043e\u0442 " - ], - "alexaRank": 8074009, - "urlMain": "https://automania.ru", - "url": "https://automania.ru/author/{username}/", - "usernameClaimed": "autozak23", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Avforums": { - "tags": [ - "forum", - "gb", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found." - ], - "alexaRank": 29727, - "urlMain": "https://www.avforums.com", - "url": "https://www.avforums.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "AvidCommunity": { - "checkType": "message", - "absenceStrs": [ - "User Not Found" - ], - "presenseStrs": [ - "My Announcements" - ], - "url": "https://community.avid.com/members/{username}/default.aspx", - "usernameClaimed": "uehkon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Avizo": { - "tags": [ - "cz" - ], - "checkType": "response_url", - "alexaRank": 1176334, - "urlMain": "https://www.avizo.cz/", - "url": "https://www.avizo.cz/{username}/", - "errorUrl": "https://www.avizo.cz/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Avto-forum.name": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 1636731, - "urlMain": "https://avto-forum.name", - "usernameClaimed": "mariya", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Avtoforum": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "urlMain": "https://avtoforum.org", - "usernameClaimed": "tim", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Avtolyubiteli": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 1322674, - "urlMain": "https://forum.avtolyubiteli.com", - "url": "https://forum.avtolyubiteli.com/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Avtomarket": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0422\u0430\u043a\u043e\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 84481, - "urlMain": "https://avtomarket.ru", - "url": "https://avtomarket.ru/u/{username}/", - "usernameClaimed": "expert20144", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "B17": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 11199, - "urlMain": "https://www.b17.ru/", - "url": "https://www.b17.ru/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "BLIP.fm": { - "tags": [ - "in", - "music" - ], - "regexCheck": "^[a-zA-Z0-9_]{1,30}$", - "checkType": "status_code", - "alexaRank": 100318, - "urlMain": "https://blip.fm/", - "url": "https://blip.fm/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "BOOTH": { - "tags": [ - "jp", - "shopping" - ], - "checkType": "response_url", - "alexaRank": 6356, - "urlMain": "https://booth.pm/", - "url": "https://{username}.booth.pm/", - "errorUrl": "https://booth.pm/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Baby.ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "error-page__title" - ], - "presenseStrs": [ - "user-name" - ], - "alexaRank": 5852, - "urlMain": "https://www.baby.ru/", - "url": "https://www.baby.ru/u/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "BabyBlog.ru": { - "tags": [ - "ru" - ], - "checkType": "response_url", - "alexaRank": 18202, - "urlMain": "https://www.babyblog.ru/", - "url": "https://www.babyblog.ru/user/{username}", - "errorUrl": "https://www.babyblog.ru/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "BackdoorSdslabs": { - "disabled": true, - "tags": [ - "in" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "No such user exists" - ], - "alexaRank": 1627026, - "urlMain": "https://backdoor.sdslabs.co", - "url": "https://backdoor.sdslabs.co/users/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Badoo": { - "disabled": true, - "tags": [ - "dating", - "de", - "pl", - "ve" - ], - "checkType": "status_code", - "alexaRank": 3972, - "urlMain": "https://badoo.com/", - "url": "https://badoo.com/profile/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bandcamp": { - "tags": [ - "music", - "us" - ], - "checkType": "status_code", - "alexaRank": 1188, - "urlMain": "https://www.bandcamp.com/", - "url": "https://www.bandcamp.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bandlab": { - "checkType": "message", - "absenceStrs": [ - "find any matching element, it might be deleted" - ], - "presenseStrs": [ - "genres" - ], - "url": "https://www.bandlab.com/api/v1.3/users/{username}", - "usernameClaimed": "uehkon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Barnacl": { - "checkType": "status_code", - "alexaRank": 1937722, - "urlMain": "https://barnacl.es/u/alexsam", - "url": "https://barnacl.es/u/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "es", - "news", - "sharing" - ] - }, - "XSS.is": { - "tags": [ - "forum", - "hacking", - "in", - "ru" - ], - "errors": { - "\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u044b, \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u044d\u0442\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0438\u043b\u0438 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u044d\u0442\u0443 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443.": "Login required" - }, - "engine": "XenForo", - "alexaRank": 181248, - "urlMain": "https://xss.is", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Battleraprus": { - "tags": [ - "ru", - "us", - "wiki" - ], - "checkType": "status_code", - "alexaRank": 80, - "urlMain": "https://battleraprus.fandom.com/ru", - "url": "https://battleraprus.fandom.com/ru/wiki/%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bayoushooter": { - "tags": [ - "forum", - "pk", - "us" - ], - "engine": "XenForo", - "alexaRank": 1059834, - "urlMain": "https://www.bayoushooter.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bazar.cz": { - "tags": [ - "cz" - ], - "checkType": "response_url", - "alexaRank": 1126292, - "urlMain": "https://www.bazar.cz/", - "url": "https://www.bazar.cz/{username}/", - "errorUrl": "https://www.bazar.cz/error404.aspx", - "usernameClaimed": "pianina", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Bbshave": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442." - ], - "alexaRank": 3441230, - "urlMain": "https://bbshave.ru", - "url": "https://bbshave.ru/profile/{username}", - "usernameClaimed": "Yury", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bdoutdoors": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 158742, - "urlMain": "https://www.bdoutdoors.com", - "url": "https://www.bdoutdoors.com/forums/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "BeerMoneyForum": { - "disabled": true, - "ignore403": true, - "tags": [ - "finance", - "forum", - "gambling" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found." - ], - "alexaRank": 11216, - "urlMain": "https://www.beermoneyforum.com", - "url": "https://www.beermoneyforum.com/members/?username={username}", - "usernameClaimed": "Yugocean", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Beerintheevening": { - "tags": [ - "gb" - ], - "checkType": "message", - "absenceStrs": [ - "User does not exist." - ], - "alexaRank": 3307828, - "urlMain": "http://www.beerintheevening.com", - "url": "http://www.beerintheevening.com/user_profile.shtml?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Behance": { - "tags": [ - "business" - ], - "headers": { - "User-Agent": "Curl" - }, - "checkType": "status_code", - "alexaRank": 279, - "urlMain": "https://www.behance.net/", - "url": "https://www.behance.net/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Belmos": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 9023312, - "urlMain": "https://www.belmos.ru", - "url": "https://www.belmos.ru/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "starik13", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bentbox": { - "checkType": "message", - "absenceStrs": [ - "This user is currently not available" - ], - "presenseStrs": [ - "id=\"followingUser\"" - ], - "url": "https://bentbox.co/{username}", - "usernameClaimed": "uehkon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bestfantasybooks": { - "disabled": true, - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 506840, - "urlMain": "http://bestfantasybooks.com", - "url": "http://bestfantasybooks.com/forums/members/?username={username}", - "usernameClaimed": "tofulovefrog", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bestweapon": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "</script><br><table class='border-blog'><tr><td><div class='avatar'" - ], - "alexaRank": 59450, - "urlMain": "https://bestweapon.ru", - "url": "https://bestweapon.ru/author.php?author={username}", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bethepro": { - "tags": [ - "pk", - "us" - ], - "disabled": true, - "checkType": "status_code", - "alexaRank": 522588, - "urlMain": "https://bethepro.com", - "url": "https://bethepro.com/members/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bezuzyteczna": { - "checkType": "status_code", - "url": "https://bezuzyteczna.pl/uzytkownicy/{username}", - "usernameClaimed": "Jackson", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bgforum": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041e\u0448\u0438\u0431\u043a\u0430 / \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "alexaRank": 2303903, - "urlMain": "https://bgforum.ru", - "url": "https://bgforum.ru/user/{username}/", - "usernameClaimed": "Shark", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bibsonomy": { - "tags": [ - "in" - ], - "checkType": "status_code", - "alexaRank": 5668, - "urlMain": "https://www.bibsonomy.org", - "url": "https://www.bibsonomy.org/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Biggerpockets": { - "checkType": "message", - "absenceStrs": [ - "Page not found" - ], - "presenseStrs": [ - "| BiggerPockets" - ], - "url": "https://www.biggerpockets.com/users/{username}", - "usernameClaimed": "uheara", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bigmmc": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 401668, - "urlMain": "http://bigmmc.com", - "usernameClaimed": "monhyip", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Bigsoccer": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 62355, - "urlMain": "https://www.bigsoccer.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bikemap": { - "checkType": "status_code", - "url": "https://www.bikemap.net/en/u/{username}/routes/created/", - "usernameClaimed": "bikemap", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "BikeRadar": { - "tags": [ - "forum", - "gb", - "us" - ], - "checkType": "status_code", - "alexaRank": 14858, - "urlMain": "https://forum.bikeradar.com", - "url": "https://forum.bikeradar.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Bikepost": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 80497, - "urlMain": "https://bikepost.ru", - "url": "https://bikepost.ru/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Biketrials": { - "tags": [ - "pk", - "ru", - "vn" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - ], - "alexaRank": 1853655, - "urlMain": "http://www.biketrials.ru", - "url": "http://www.biketrials.ru/live/member.php?username={username}", - "usernameClaimed": "temka", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Billkiene": { - "urlSubpath": "/forums", - "engine": "vBulletin", - "alexaRank": 5465827, - "urlMain": "https://www.billkiene.com", - "usernameClaimed": "Odonata", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "hobby" - ] - }, - "BinarySearch": { - "tags": [ - "in" - ], - "regexCheck": "^[a-zA-Z0-9-_]{1,15}$", - "urlProbe": "https://binarysearch.com/api/users/{username}/profile", - "checkType": "message", - "absenceStrs": [ - "{}" - ], - "alexaRank": 286626, - "urlMain": "https://binarysearch.com/", - "url": "https://binarysearch.com/@/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "BitBucket": { - "tags": [ - "coding" - ], - "regexCheck": "^[a-zA-Z0-9-_]{1,30}$", - "checkType": "status_code", - "alexaRank": 3124, - "urlMain": "https://bitbucket.org/", - "url": "https://bitbucket.org/{username}/", - "usernameClaimed": "white", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "BitCoinForum": { - "disabled": true, - "tags": [ - "forum", - "in" - ], - "checkType": "message", - "absenceStrs": [ - "The user whose profile you are trying to view does not exist." - ], - "alexaRank": 205800, - "urlMain": "https://bitcoinforum.com", - "url": "https://bitcoinforum.com/profile/{username}", - "usernameClaimed": "bitcoinforum.com", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bitwarden": { - "checkType": "message", - "absenceStrs": [ - "Oops!" - ], - "presenseStrs": [ - " Profile" - ], - "url": "https://community.bitwarden.com/u/{username}/summary", - "usernameClaimed": "uehkon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "BlackHatProTools": { - "tags": [ - "forum" - ], - "engine": "vBulletin", - "alexaRank": 37561, - "urlMain": "https://www.blackhatprotools.info", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Blast": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 168139, - "urlMain": "https://www.blast.hk", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "BleachFandom": { - "tags": [ - "ru", - "wiki" - ], - "checkType": "status_code", - "alexaRank": 80, - "urlMain": "https://bleach.fandom.com/ru", - "url": "https://bleach.fandom.com/ru/wiki/%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Blogger": { - "tags": [ - "blog" - ], - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "checkType": "status_code", - "alexaRank": 297, - "urlMain": "https://www.blogger.com/", - "url": "https://{username}.blogspot.com", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Blogi.pl": { - "checkType": "message", - "absenceStrs": [ - "Niepoprawny adres." - ], - "presenseStrs": [ - "Informacje og\u00f3lne" - ], - "url": "https://www.blogi.pl/osoba,{username}.html", - "usernameClaimed": "uehkon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Blogmarks": { - "tags": [ - "fr", - "in" - ], - "checkType": "message", - "absenceStrs": [ - "Sorry, this user does not exist." - ], - "alexaRank": 44843, - "urlMain": "http://blogmarks.net", - "url": "http://blogmarks.net/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bluesky": { - "tags": [ - "messaging" - ], - "checkType": "message", - "absenceStrs": [ - "Oops!", - "Unable to resolve handle" - ], - "presenseStrs": [ - ".bsky.social on Bluesky" - ], - "urlMain": "https://bsky.app", - "url": "https://bsky.app/profile/{username}.bsky.social", - "usernameClaimed": "shamerli", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Blu-ray": { - "tags": [ - "forum", - "us" - ], - "engine": "vBulletin", - "alexaRank": 16342, - "urlMain": "https://forum.blu-ray.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "BoardGameGeek": { - "checkType": "message", - "tags": [ - "gaming", - "us" - ], - "absenceStrs": [ - "\t\tUser not found", - "messagebox error", - ">\t
Profile | BoardGameGeek", - "\t
" - ], - "alexaRank": 4327, - "urlMain": "https://boardgamegeek.com", - "url": "https://boardgamegeek.com/user/{username}", - "usernameClaimed": "ZakuBG", - "usernameUnclaimed": "uzytnhstvj", - "presenseStrs": [ - "username", - " style=", - "mail", - " \tstyle=", - " data-username=" - ] - }, - "Bobrdobr": { - "tags": [ - "az", - "in", - "ru", - "tr", - "ua" - ], - "checkType": "message", - "presenseStrs": [ - "\u0417\u0430\u043a\u043b\u0430\u0434\u043a\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - ], - "absenceStrs": [ - "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430." - ], - "alexaRank": 208648, - "urlMain": "https://bobrdobr.ru", - "url": "https://bobrdobr.ru/people/{username}/", - "usernameClaimed": "igrozona", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "BodyBuilding": { - "tags": [ - "us" - ], - "checkType": "response_url", - "alexaRank": 2233, - "urlMain": "https://bodyspace.bodybuilding.com/", - "url": "https://bodyspace.bodybuilding.com/{username}", - "errorUrl": "https://bodyspace.bodybuilding.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "BongaCams": { - "tags": [ - "cz", - "webcam" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", - "Accept-Language": "en-US,en;q=0.5", - "Referer": "https://pt.bongacams.com/", - "Upgrade-Insecure-Requests": "1", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "same-origin", - "Sec-Fetch-User": "?1" - }, - "absenceStrs": [ - "- BongaCams" - ], - "presenseStrs": [ - "Informa\u00e7\u00e3o e p\u00e1gina" - ], - "checkType": "message", - "alexaRank": 30, - "urlMain": "https://sbongacams.com", - "url": "https://bongacams.com/profile/{username}", - "urlProbe": "https://pt.bongacams.com/profile/{username}", - "usernameClaimed": "Icehotangel", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "Bookandreader": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 3984210, - "urlMain": "https://www.bookandreader.com", - "usernameClaimed": "Wabbit", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bookcrossing": { - "tags": [ - "in" - ], - "checkType": "status_code", - "alexaRank": 54251, - "urlMain": "https://www.bookcrossing.com/", - "url": "https://www.bookcrossing.com/mybookshelf/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Bookmate": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "Sorry! We couldn\u2019t find what you were looking for", - "error-cartoon__image" - ], - "alexaRank": 88183, - "urlMain": "https://ru.bookmate.com", - "url": "https://ru.bookmate.com/authors/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "BoomInfo": { - "disabled": true, - "ignore403": true, - "tags": [ - "ru", - "ua" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f." - ], - "alexaRank": 5926590, - "urlMain": "https://boominfo.ru", - "url": "https://boominfo.ru/members/?username={username}", - "usernameClaimed": "boominfo", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Boosty": { - "tags": [ - "eu", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "<title>" - ], - "presenseStrs": [ - "Boosty " - ], - "alexaRank": 36134, - "urlMain": "https://boosty.to", - "url": "https://boosty.to/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Borsch.gallery": { - "checkType": "status_code", - "alexaRank": 2681015, - "urlMain": "https://borsch.gallery", - "url": "https://borsch.gallery/hudozhniki/{username}", - "usernameClaimed": "yana-chursina", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "art", - "shopping" - ] - }, - "Boxing": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - ], - "alexaRank": 4329606, - "urlMain": "http://boxing.ru/", - "url": "http://boxing.ru/forum/member.php?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bratsk Forum": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - ], - "alexaRank": 565986, - "urlMain": "http://forum.bratsk.org", - "url": "http://forum.bratsk.org/member.php?username={username}", - "usernameClaimed": "nekto", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Brute": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 3698666, - "urlMain": "https://brute.su", - "url": "https://brute.su/members/?username={username}", - "usernameClaimed": "Neon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bugcrowd": { - "checkType": "message", - "absenceStrs": [ - ">Bugcrowd | Error" - ], - "presenseStrs": [ - "s researcher profile on Bugcrowd" - ], - "url": "https://bugcrowd.com/{username}", - "usernameClaimed": "mert", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bukkit": { - "tags": [ - "at", - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 31587, - "urlMain": "https://bukkit.org/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "BuyMeACoffee": { - "tags": [ - "in" - ], - "urlProbe": "https://www.buymeacoffee.com/{username}", - "checkType": "status_code", - "alexaRank": 4804, - "urlMain": "https://www.buymeacoffee.com/", - "url": "https://buymeacoff.ee/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "BuzzFeed": { - "tags": [ - "news", - "us" - ], - "checkType": "status_code", - "alexaRank": 511, - "urlMain": "https://buzzfeed.com/", - "url": "https://buzzfeed.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "xgtrq" - }, - "Buzznet": { - "checkType": "message", - "absenceStrs": [ - "Author: - Buzznet" - ], - "url": "https://www.buzznet.com/author/{username}", - "usernameClaimed": "karynbailey", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Byte": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 272043, - "urlMain": "https://community.byte.co", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Caringbridge": { - "checkType": "message", - "absenceStrs": [ - "Sorry, we can\u2019t find that site" - ], - "presenseStrs": [ - "| CaringBridge" - ], - "url": "https://www.caringbridge.org/visit/{username}", - "usernameClaimed": "uehkon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Carrd.co": { - "checkType": "message", - "absenceStrs": [ - "Sorry, the requested page could not be found." - ], - "presenseStrs": [ - "( Made with Carrd )" - ], - "url": "https://{username}.carrd.co", - "usernameClaimed": "peter", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cash.app": { - "checkType": "message", - "absenceStrs": [ - "The page you are looking for can't be found" - ], - "presenseStrs": [ - "on Cash App" - ], - "url": "https://cash.app/${username}", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Castingcallclub": { - "checkType": "message", - "absenceStrs": [ - "404: This is not the page you were looking for. In the future, our AI robot overlords will be able to better predict exactly what you were looking for." - ], - "presenseStrs": [ - "| Casting Call Club" - ], - "url": "https://www.castingcall.club/{username}", - "usernameClaimed": "uehkon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "CD-Action": { - "checkType": "message", - "absenceStrs": [ - "Co\u015b si\u0119 popsu\u0142o..." - ], - "presenseStrs": [ - "Lista gier:" - ], - "url": "https://cdaction.pl/uzytkownicy/{username}", - "usernameClaimed": "jfchaaber", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cda.pl": { - "checkType": "message", - "absenceStrs": [ - "Strona na kt\u00f3r\u0105 chcesz wej\u015b\u0107 nie istnieje" - ], - "presenseStrs": [ - "Foldery" - ], - "url": "https://www.cda.pl/{username}", - "usernameClaimed": "test2", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Chamsko.pl": { - "checkType": "message", - "absenceStrs": [ - "Strona nie istnieje." - ], - "presenseStrs": [ - "W serwisie od" - ], - "url": "https://www.chamsko.pl/profil/{username}", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Chomikuj.pl": { - "checkType": "message", - "absenceStrs": [ - "homik o takiej nazwie nie istnieje" - ], - "presenseStrs": [ - "Foldery" - ], - "url": "https://chomikuj.pl/{username}/", - "usernameClaimed": "uheara_konen", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "CNET": { - "tags": [ - "news", - "tech", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "error_404", - "c-error404", - "Author not found", - "c-error404_back", - "c-error404_header" - ], - "presenseStrs": [ - "},firstName:", - "#email", - ",cmsDisplayName:", - "og:title", - "c-pageProfile" - ], - "alexaRank": 181, - "urlMain": "https://www.cnet.com", - "url": "https://www.cnet.com/profiles/{username}/", - "usernameClaimed": "leadicicco", - "usernameUnclaimed": "chexowcxzm", - "headers": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36" - } - }, - "CORSAIR": { - "urlSubpath": "/v3", - "disabled": true, - "tags": [ - "forum", - "us" - ], - "presenseStrs": [ - "reputation_alexaRank" - ], - "engine": "vBulletin", - "alexaRank": 6895, - "urlMain": "https://forum.corsair.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "CPlusPlus": { - "checkType": "message", - "absenceStrs": [ - "404 Page Not Found" - ], - "urlMain": "https://3examplesite.ru", - "url": "http://www.cplusplus.com/user/{username}/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true, - "tags": [ - "ru" - ] - }, - "Crowdin": { - "checkType": "message", - "absenceStrs": [ - "Page Not Found - Crowdin" - ], - "presenseStrs": [ - ") \u2013 Crowdin" - ], - "url": "https://crowdin.com/profile/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "CS-Lords": { - "tags": [ - "gaming", - "ru" - ], - "engine": "uCoz", - "alexaRank": 5350740, - "urlMain": "http://cs-lords.ru", - "usernameClaimed": "Lexx", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cad": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0424\u043e\u0440\u0443\u043c" - ], - "alexaRank": 809683, - "urlMain": "https://cad.ru", - "url": "https://cad.ru/ru/forum/index.php?PAGE_NAME=profile_view&UID={username}", - "usernameClaimed": "SergeT", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Caduser": { - "tags": [ - "ru", - "ua" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 792871, - "urlMain": "https://www.caduser.ru/", - "url": "https://www.caduser.ru/forum/userlist.php?username={username}", - "usernameClaimed": "adamas", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "CapFriendly": { - "disabled": true, - "tags": [ - "ca", - "us" - ], - "regexCheck": "^[a-zA-z][a-zA-Z0-9_]{2,79}$", - "checkType": "message", - "absenceStrs": [ - "
No results found
" - ], - "alexaRank": 48318, - "urlMain": "https://www.capfriendly.com/", - "url": "https://www.capfriendly.com/users/{username}", - "usernameClaimed": "thisactuallyexists", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "CapitalcityCombats": { - "tags": [ - "ru" - ], - "checkType": "message", - "errors": { - "http://img.combats.com/errs/503.png": "Maintenance" - }, - "absenceStrs": [ - "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430" - ], - "alexaRank": 90420, - "urlMain": "http://capitalcity.combats.com", - "url": "http://capitalcity.combats.com/inf.pl?{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Carbonmade": { - "tags": [ - "in", - "us" - ], - "checkType": "response_url", - "alexaRank": 29405, - "urlMain": "https://carbonmade.com/", - "url": "https://{username}.carbonmade.com", - "errorUrl": "https://carbonmade.com/fourohfour?domain={username}.carbonmade.com", - "usernameClaimed": "jenny", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "CardingForum": { - "disabled": true, - "tags": [ - "forum", - "ma", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 2448684, - "urlMain": "https://cardingforum.co", - "url": "https://cardingforum.co/members/?username={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "Cardingsite": { - "disabled": true, - "tags": [ - "pk" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 1418423, - "urlMain": "https://cardingsite.cc", - "url": "https://cardingsite.cc/members/?username={username}", - "usernameClaimed": "zombe", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "HabrCareer": { - "tags": [ - "career", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "

\u041e\u0448\u0438\u0431\u043a\u0430 404

" - ], - "alexaRank": 1265, - "urlMain": "https://career.habr.com/", - "url": "https://career.habr.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Carmasters": { - "tags": [ - "fi", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043f\u043e\u0438\u0441\u043a\u0430 \u043d\u0435\u0442. \u0420\u0430\u0441\u0448\u0438\u0440\u044c\u0442\u0435 \u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u043e\u0438\u0441\u043a\u0430." - ], - "alexaRank": 165361, - "urlMain": "https://carmasters.org", - "url": "https://carmasters.org/search/?q={username}&quick=1&type=core_members", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "CashMe": { - "disabled": true, - "errors": { - "Cash isn't available in your country yet.": "Access denied in your country, use proxy/vpn" - }, - "checkType": "status_code", - "urlMain": "https://cash.me/", - "url": "https://cash.me/${username}", - "usernameClaimed": "Jenny", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 5273271 - }, - "Casial": { - "tags": [ - "de" - ], - "checkType": "message", - "absenceStrs": [ - "Online Casino Forum" - ], - "urlMain": "http://www.casial.net", - "url": "http://www.casial.net/forum/members/{username}.html", - "usernameClaimed": "irgent", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 4165284 - }, - "Casino-affiliate-forum": { - "tags": [ - "de", - "forum" - ], - "engine": "Discourse", - "urlMain": "https://www.casino-affiliate-forum.com", - "usernameClaimed": "torstenw", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Caves": { - "tags": [ - "forum", - "ru", - "us" - ], - "engine": "XenForo", - "alexaRank": 1010183, - "urlMain": "https://caves.ru", - "usernameClaimed": "junk", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cbr": { - "tags": [ - "forum", - "us" - ], - "engine": "vBulletin", - "alexaRank": 2689, - "urlMain": "https://community.cbr.com", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Ccdi": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 2823700, - "urlMain": "http://www.ccdi.ru/", - "url": "http://www.ccdi.ru/users/{username}", - "usernameClaimed": "Nikita55", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ccm": { - "tags": [ - "ao", - "in", - "ve" - ], - "checkType": "status_code", - "alexaRank": 2274, - "urlMain": "https://ccm.net", - "url": "https://ccm.net/profile/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ccmixter": { - "tags": [ - "music" - ], - "checkType": "message", - "absenceStrs": [ - "ERROR(2)", - "Sorry, we don't know who that is..." - ], - "presenseStrs": [ - "Member since" - ], - "alexaRank": 93540, - "urlMain": "http://ccmixter.org/", - "url": "http://ccmixter.org/people/{username}/profile", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cent": { - "tags": [ - "art", - "us", - "writing" - ], - "urlProbe": "https://beta.cent.co/data/user/profile?userHandles={username}", - "checkType": "message", - "presenseStrs": [ - "display_name" - ], - "absenceStrs": [ - "\"results\":[]" - ], - "alexaRank": 21594, - "urlMain": "https://cent.co/", - "url": "https://beta.cent.co/@{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cfire": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 309789, - "urlMain": "https://cfire.ru", - "url": "https://cfire.ru/forums/member.php?username={username}", - "usernameClaimed": "laid1998", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Championat": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 738, - "urlMain": "https://www.championat.com/", - "url": "https://www.championat.com/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Chan4chan": { - "tags": [ - "hu" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "Log in - Chan4Chan" - ], - "alexaRank": 1229741, - "urlMain": "http://chan4chan.com/", - "url": "http://chan4chan.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Chatujme.cz": { - "checkType": "message", - "absenceStrs": [ - "Neexistujic\u00ed profil", - "Str\u00e1nka nebyla nalezena" - ], - "alexaRank": 2736599, - "urlMain": "https://chatujme.cz/", - "url": "https://profil.chatujme.cz/{username}", - "usernameClaimed": "david", - "usernameUnclaimed": "noonewouldeverusethis", - "tags": [ - "cz", - "dating" - ] - }, - "ChaturBate": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 62, - "urlMain": "https://chaturbate.com", - "url": "https://chaturbate.com/{username}", - "usernameClaimed": "cute18cute", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "Cheezburger": { - "tags": [ - "us" - ], - "checkType": "response_url", - "alexaRank": 4449, - "urlMain": "https://profile.cheezburger.com", - "url": "https://profile.cheezburger.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Chemistlab": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 1330779, - "urlMain": "http://chemistlab.ru", - "usernameClaimed": "FilIgor", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Chemport": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 310804, - "urlMain": "https://www.chemport.ru", - "usernameClaimed": "serge", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Chess": { - "tags": [ - "gaming", - "hobby" - ], - "checkType": "message", - "absenceStrs": [ - "error image", - "

404 Page not found

", - "_404-header", - "_404-inner-container", - " no-nav " - ], - "presenseStrs": [ - "profile-top", - "og:title", - " style=", - "view-profile", - " data-username=" - ], - "alexaRank": 211, - "urlMain": "https://www.chess.com", - "url": "https://www.chess.com/member/{username}", - "usernameClaimed": "sexytwerker69", - "usernameUnclaimed": "aublurbrxm", - "headers": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36" - } - }, - "Chess-russia": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "urlMain": "http://www.chess-russia.ru", - "url": "http://www.chess-russia.ru/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "Sova0102", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Chessclub": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Internet Chess Club Forum | Forum Home", - "The member profile you requested is currently not available", - "There are no records on this user." - ], - "alexaRank": 325766, - "urlMain": "https://www.chessclub.com", - "url": "https://www.chessclub.com/forums/member/{username}", - "usernameClaimed": "Lyon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Chevrolet-cruze-club": { - "tags": [ - "ru" - ], - "disabled": true, - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - ], - "alexaRank": 2340660, - "urlMain": "http://www.chevrolet-cruze-club.ru", - "url": "http://www.chevrolet-cruze-club.ru/forum/member.php?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Chipmaker": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043f\u043e\u0438\u0441\u043a\u0430 \u043d\u0435\u0442. \u0420\u0430\u0441\u0448\u0438\u0440\u044c\u0442\u0435 \u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u043e\u0438\u0441\u043a\u0430." - ], - "alexaRank": 59877, - "urlMain": "https://www.chipmaker.ru", - "url": "https://www.chipmaker.ru/search/?q={username}&quick=1&type=core_members", - "usernameClaimed": "hiro", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Chitalnya": { - "tags": [ - "ru" - ], - "checkType": "response_url", - "alexaRank": 34182, - "urlMain": "https://www.chitalnya.ru", - "url": "https://www.chitalnya.ru/users/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Chpoking": { - "tags": [ - "ru" - ], - "checkType": "response_url", - "alexaRank": 235983, - "urlMain": "http://chpoking.ru", - "url": "http://chpoking.ru/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Citizen4": { - "checkType": "message", - "absenceStrs": [ - "Nie znaleziono" - ], - "presenseStrs": [ - "@soc.citizen4.eu" - ], - "url": "https://soc.citizen4.eu/profile/{username}/profile", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cloob": { - "tags": [ - "ir" - ], - "checkType": "status_code", - "alexaRank": 20571, - "urlMain": "https://www.cloob.com/", - "url": "https://www.cloob.com/name/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "CloudflareCommunity": { - "tags": [ - "forum", - "tech" - ], - "engine": "Discourse", - "alexaRank": 976, - "urlMain": "https://community.cloudflare.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Clozemaster": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Oh no! Player not found" - ], - "alexaRank": 72233, - "urlMain": "https://www.clozemaster.com", - "url": "https://www.clozemaster.com/players/{username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Club-comedy.clan.su": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "https://club-comedy.clan.su", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cmet4uk": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 225146, - "urlMain": "https://cmet4uk.ru", - "usernameClaimed": "vladnik", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Codecademy": { - "tags": [ - "coding", - "education" - ], - "checkType": "message", - "absenceStrs": [ - "This profile could not be found" - ], - "presenseStrs": [ - "Codecademy profile page for" - ], - "alexaRank": 2566, - "urlMain": "https://www.codecademy.com/", - "url": "https://www.codecademy.com/profiles/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Codecanyon": { - "tags": [ - "in" - ], - "checkType": "status_code", - "alexaRank": 1470, - "urlMain": "https://codecanyon.net", - "url": "https://codecanyon.net/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Codechef": { - "tags": [ - "in" - ], - "checkType": "response_url", - "alexaRank": 7932, - "urlMain": "https://www.codechef.com/", - "url": "https://www.codechef.com/users/{username}", - "errorUrl": "https://www.codechef.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Codementor": { - "tags": [ - "coding", - "in" - ], - "checkType": "message", - "presenseStrs": [ - "
" - ], - "absenceStrs": [ - "Adapted from" - ], - "alexaRank": 7204, - "urlMain": "https://www.codementor.io/", - "url": "https://www.codementor.io/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Codepen": { - "tags": [ - "coding", - "in" - ], - "errors": { - "Checking your browser before accessing": "Autoredirect detected" - }, - "checkType": "message", - "absenceStrs": [ - "I'm afraid you've found a page that doesn't exist on CodePen" - ], - "alexaRank": 1967, - "urlMain": "https://codepen.io/", - "url": "https://codepen.io/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Coderwall": { - "tags": [ - "coding", - "in" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "404! Our feels when that url is used" - ], - "alexaRank": 17775, - "urlMain": "https://coderwall.com/", - "url": "https://coderwall.com/{username}", - "usernameClaimed": "jenny", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Codewars": { - "tags": [ - "coding", - "us" - ], - "checkType": "status_code", - "alexaRank": 20867, - "urlMain": "https://www.codewars.com", - "url": "https://www.codewars.com/users/{username}", - "usernameClaimed": "example", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Comedy": { - "tags": [ - "gb", - "in", - "movies", - "pk", - "us" - ], - "checkType": "status_code", - "alexaRank": 131071, - "urlMain": "https://www.comedy.co.uk", - "url": "https://www.comedy.co.uk/profile/{username}/", - "usernameClaimed": "joel-sandbach", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ComicvineGamespot": { - "tags": [ - "gaming", - "us" - ], - "checkType": "status_code", - "alexaRank": 875, - "urlMain": "https://comicvine.gamespot.com/", - "url": "https://comicvine.gamespot.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Computerbase": { - "disabled": true, - "tags": [ - "de" - ], - "checkType": "message", - "absenceStrs": [ - "Das gew\u00fcnschte Mitglied kann nicht gefunden werden" - ], - "alexaRank": 8982, - "urlMain": "https://www.computerbase.de", - "url": "https://www.computerbase.de/forum/members/?username={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Connosr": { - "tags": [ - "gb" - ], - "checkType": "status_code", - "alexaRank": 1058804, - "urlMain": "https://www.connosr.com/", - "url": "https://www.connosr.com/@{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cont": { - "tags": [ - "be", - "ru" - ], - "checkType": "status_code", - "alexaRank": 18112, - "urlMain": "https://cont.ws", - "url": "https://cont.ws/@{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Contently": { - "tags": [ - "freelance", - "in" - ], - "checkType": "message", - "absenceStrs": [ - "Request A Meeting
" - ], - "presenseStrs": [ - "

\nPROJECTS" - ], - "alexaRank": 11587, - "urlMain": "https://contently.com/", - "url": "https://{username}.contently.com/", - "usernameClaimed": "jordanteicher", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Coolminiornot": { - "urlSubpath": "/forums", - "tags": [ - "forum", - "sg", - "us" - ], - "engine": "vBulletin", - "alexaRank": 373915, - "urlMain": "http://www.coolminiornot.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Coroflot": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 33281, - "urlMain": "https://coroflot.com/", - "url": "https://www.coroflot.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Coub": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 6885, - "urlMain": "https://coub.com/", - "url": "https://coub.com/{username}", - "usernameClaimed": "meteoralp", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Countable": { - "disabled": true, - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 9282301, - "urlMain": "https://www.countable.us/", - "url": "https://www.countable.us/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cqham": { - "tags": [ - "ru", - "tech" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - ], - "alexaRank": 187054, - "urlMain": "http://www.cqham.ru", - "url": "http://www.cqham.ru/forum/member.php?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cracked": { - "tags": [ - "us" - ], - "checkType": "response_url", - "alexaRank": 4090, - "urlMain": "https://www.cracked.com/", - "url": "https://www.cracked.com/members/{username}/", - "errorUrl": "https://www.cracked.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "CreativeMarket": { - "tags": [ - "art", - "stock" - ], - "errors": { - "/cdn-cgi/scripts/hcaptcha.challenge.js": "Captcha detected" - }, - "checkType": "message", - "absenceStrs": [ - "Whoomp, there it isn't...", - "It looks like the page you\u2019re looking for is no longer available. " - ], - "presenseStrs": [ - "Likes" - ], - "alexaRank": 3054, - "urlMain": "https://creativemarket.com/", - "url": "https://creativemarket.com/users/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Crevado": { - "tags": [ - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 170085, - "urlMain": "https://crevado.com/", - "url": "https://{username}.crevado.com", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Crossfire": { - "disabled": true, - "tags": [ - "gaming", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430" - ], - "alexaRank": 49, - "urlMain": "https://cfire.mail.ru", - "url": "https://cfire.mail.ru/forums/member.php?username={username}", - "usernameClaimed": "wizard", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Crunchyroll": { - "disabled": true, - "tags": [ - "forum", - "movies", - "us" - ], - "headers": { - "'User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/117.0" - }, - "checkType": "status_code", - "alexaRank": 364, - "urlMain": "https://www.crunchyroll.com/", - "url": "https://www.crunchyroll.com/user/{username}", - "usernameClaimed": "adan", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "CryptomatorForum": { - "checkType": "status_code", - "url": "https://community.cryptomator.org/u/{username}", - "usernameClaimed": "michael", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cssomsk": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://www.cssomsk.ru", - "usernameClaimed": "spacebody", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 7312355 - }, - "Cults3d": { - "checkType": "message", - "absenceStrs": [ - "Oh dear, this page is not working!" - ], - "presenseStrs": [ - "All the 3D models of" - ], - "url": "https://cults3d.com/en/users/{username}/creations", - "usernameClaimed": "uheara_konen", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cyberclock": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - ], - "urlMain": "https://cyberclock.cc", - "url": "https://cyberclock.cc/forum/member.php?username={username}", - "usernameClaimed": "Lich", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cydak": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "urlMain": "http://www.cydak.ru", - "url": "http://www.cydak.ru/forum/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "Henders", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Cytoid.io": { - "checkType": "message", - "absenceStrs": [ - "Profile not found" - ], - "presenseStrs": [ - "Joined" - ], - "url": "https://cytoid.io/profile/{username}", - "usernameClaimed": "uehkon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "d3.ru": { - "checkType": "message", - "absenceStrs": [ - "d3.ru \u2014 \u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e!" - ], - "presenseStrs": [ - "/user/" - ], - "url": "https://d3.ru/user/{username}/posts", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dangerousthings.com": { - "checkType": "status_code", - "url": "https://forum.dangerousthings.com/u/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Demotywatory": { - "checkType": "message", - "absenceStrs": [ - "U\u017cytkownik o podanym pseudonimie nie istnieje." - ], - "presenseStrs": [ - "Z nami od:" - ], - "url": "https://demotywatory.pl/user/{username}", - "usernameClaimed": "uheara_konen", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "DEV Community": { - "tags": [ - "coding" - ], - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "checkType": "status_code", - "alexaRank": 4668, - "urlMain": "https://dev.to/", - "url": "https://dev.to/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dojoverse": { - "checkType": "message", - "absenceStrs": [ - "Looks like you got lost!." - ], - "presenseStrs": [ - "Joined" - ], - "url": "https://dojoverse.com/members/{username}/", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "DSLReports": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "Kudos Received" - ], - "absenceStrs": [ - "alert:" - ], - "alexaRank": 42786, - "urlMain": "https://www.dslreports.com", - "url": "https://www.dslreports.com/profile/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "DTF": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430 " - ], - "alexaRank": 16528, - "urlMain": "https://dtf.ru", - "url": "https://dtf.ru/search/v2/subsite/relevant?query={username}&strict=1", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "DailyMotion": { - "tags": [ - "video" - ], - "checkType": "message", - "presenseStrs": [ - " style=", - "", - "og:title", - "Twitter", - "og:site_name" - ], - "alexaRank": 263, - "urlMain": "https://www.dailymotion.com", - "url": "https://www.dailymotion.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "rstnodkwzr", - "absenceStrs": [ - "Page not found", - "profile", - "error404", - "bodyall", - "No matches found" - ], - "headers": { - "User-Agent": "" - } - }, - "Dalnoboi": { - "tags": [ - "ru" - ], - "errors": { - "\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0447\u0443\u0442\u044c \u043f\u043e\u0437\u0436\u0435.": "Rate limit" - }, - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 1020831, - "urlMain": "https://www.dalnoboi.ru", - "url": "https://www.dalnoboi.ru/phpBB3/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "stommof", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Damochka": { - "disabled": true, - "tags": [ - "kz", - "ru" - ], - "checkType": "status_code", - "alexaRank": 572128, - "urlMain": "https://www.damochka.ru", - "url": "https://www.damochka.ru/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Darkside": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 8725117, - "urlMain": "https://darkside.black", - "usernameClaimed": "soldier", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Dasauge": { - "tags": [ - "de", - "pk" - ], - "checkType": "status_code", - "alexaRank": 1099149, - "urlMain": "https://dasauge.co.uk", - "url": "https://dasauge.co.uk/-{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dating.Ru": { - "tags": [ - "dating", - "ru", - "us" - ], - "checkType": "status_code", - "alexaRank": 74812, - "urlMain": "http://dating.ru", - "url": "http://dating.ru/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Datpiff": { - "tags": [ - "us" - ], - "checkType": "response_url", - "alexaRank": 38454, - "urlMain": "https://www.datpiff.com", - "url": "https://www.datpiff.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Davesgarden": { - "tags": [ - "us" - ], - "checkType": "response_url", - "alexaRank": 45380, - "urlMain": "https://davesgarden.com", - "url": "https://davesgarden.com/members/{username}/", - "usernameClaimed": "Gail", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dcpg": { - "tags": [ - "ru", - "ua" - ], - "checkType": "response_url", - "alexaRank": 905001, - "urlMain": "https://dcpg.ru/", - "url": "https://dcpg.ru/users/{username}/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ddo": { - "urlSubpath": "/forums", - "disabled": true, - "tags": [ - "forum", - "us" - ], - "engine": "vBulletin", - "alexaRank": 105195, - "urlMain": "https://www.ddo.com", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "DefenceForumIndia": { - "tags": [ - "forum", - "in", - "military" - ], - "engine": "XenForo", - "alexaRank": 445137, - "urlMain": "https://defenceforumindia.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "DefensiveCarry": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 309817, - "urlMain": "https://www.defensivecarry.com", - "url": "https://www.defensivecarry.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "Demonscity": { - "tags": [ - "ru" - ], - "checkType": "message", - "errors": { - "http://img.combats.com/errs/503.png": "Maintenance" - }, - "absenceStrs": [ - "\u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 90420, - "urlMain": "http://demonscity.combats.com", - "url": "http://demonscity.combats.com/inf.pl?{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Derevnyaonline": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0417\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u043c\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430." - ], - "alexaRank": 2116602, - "urlMain": "https://derevnyaonline.ru", - "url": "https://derevnyaonline.ru/user/{username}", - "usernameClaimed": "coolkrictina", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Designspiration": { - "checkType": "status_code", - "urlMain": "https://www.designspiration.net/", - "url": "https://www.designspiration.net/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 461605 - }, - "Destructoid": { - "disabled": true, - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Error in query" - ], - "alexaRank": 25063, - "urlMain": "https://www.destructoid.com", - "url": "https://www.destructoid.com/?name={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Desu": { - "tags": [ - "by", - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 301233, - "urlMain": "https://desu.me", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Detstrana": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 342949, - "urlMain": "https://detstrana.ru", - "url": "https://detstrana.ru/user/{username}/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "DeviantART": { - "tags": [ - "art", - "photo" - ], - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "checkType": "status_code", - "alexaRank": 508, - "urlMain": "https://deviantart.com", - "url": "https://{username}.deviantart.com", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Devtribe": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 1454122, - "urlMain": "https://devtribe.ru", - "url": "https://devtribe.ru/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Diary.ru": { - "tags": [ - "blog", - "nl", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - " — @\u0434\u043d\u0435\u0432\u043d\u0438\u043a\u0438: \u0430\u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0435\u0442\u044c" - ], - "alexaRank": 11301, - "urlMain": "https://diary.ru", - "url": "https://{username}.diary.ru/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "DigitalOcean": { - "tags": [ - "forum", - "in", - "tech" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 2418, - "urlMain": "https://www.digitalocean.com/", - "url": "https://www.digitalocean.com/community/users/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "DigitalPoint": { - "tags": [ - "forum" - ], - "engine": "XenForo", - "alexaRank": 17020, - "urlMain": "https://www.digitalpoint.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Digitalspy": { - "disabled": true, - "tags": [ - "forum", - "gb", - "us" - ], - "checkType": "status_code", - "alexaRank": 5608, - "urlMain": "https://forums.digitalspy.com/", - "url": "https://forums.digitalspy.com/profile/discussions/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Diigo": { - "tags": [ - "in" - ], - "checkType": "message", - "absenceStrs": [ - "{}" - ], - "alexaRank": 8076, - "urlMain": "https://www.diigo.com/", - "url": "https://www.diigo.com/interact_api/load_profile_info?name={username}", - "usernameClaimed": "markmark", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dinsk": { - "tags": [ - "ru" - ], - "disabled": true, - "checkType": "status_code", - "urlMain": "https://dinsk.su", - "url": "https://dinsk.su/user/{username}", - "usernameClaimed": "dinsk", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Discogs": { - "tags": [ - "music", - "us" - ], - "checkType": "status_code", - "alexaRank": 1040, - "urlMain": "https://www.discogs.com/", - "url": "https://www.discogs.com/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "DiscoursePi-hole": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 86634, - "urlMain": "https://discourse.pi-hole.net", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Discuss.Elastic.co": { - "tags": [ - "forum", - "tech", - "us" - ], - "engine": "Discourse", - "alexaRank": 5765, - "urlMain": "https://discuss.elastic.co/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "DiscussPython": { - "tags": [ - "coding", - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 1051, - "urlMain": "https://discuss.python.org/", - "usernameClaimed": "dustin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Discussfastpitch": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 1042099, - "urlMain": "https://www.discussfastpitch.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Disqus": { - "tags": [ - "discussion" - ], - "errors": { - "Invalid API key": "New API key needed" - }, - "regexCheck": "^[^/]+$", - "urlProbe": "https://disqus.com/api/3.0/users/details?user=username%3A{username}&attach=userFlaggedUser&api_key=E8Uh5l5fHZ6gD8U3KycjAIAk46f68Zw7C6eW8WSjZvCLXebZ7p0r1yrYDrLilk2F", - "checkType": "status_code", - "presenseStrs": [ - "https://disqus.com/api/users/" - ], - "absenceStrs": [ - "User matching query does not exist" - ], - "alexaRank": 850, - "urlMain": "https://disqus.com/", - "url": "https://disqus.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dissenter": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 56922, - "urlMain": "https://dissenter.com/", - "url": "https://dissenter.com/user/{username}", - "usernameClaimed": "meatballs", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Diveforum": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435" - ], - "alexaRank": 4405379, - "urlMain": "https://diveforum.spb.ru/", - "url": "https://diveforum.spb.ru/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Djangoproject.co": { - "tags": [ - "coding", - "forum" - ], - "engine": "Discourse", - "urlMain": "https://forum.djangoproject.co", - "usernameClaimed": "mikhail349", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dmyt": { - "tags": [ - "ru", - "ua" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 630908, - "urlMain": "https://dmyt.ru", - "url": "https://dmyt.ru/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "tim308", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Dobroeslovo": { - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 3587216, - "urlMain": "http://www.dobroeslovo.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Docker Hub": { - "tags": [ - "coding" - ], - "urlProbe": "https://hub.docker.com/v2/users/{username}/", - "checkType": "status_code", - "alexaRank": 2797, - "urlMain": "https://hub.docker.com/", - "url": "https://hub.docker.com/u/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dogster": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 3353807, - "urlMain": "http://dogster.ru/", - "url": "http://dogster.ru/users/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "domestika.org": { - "tags": [ - "education" - ], - "checkType": "status_code", - "usernameClaimed": "zenzuke", - "usernameUnclaimed": "noonewouldeverusethis7", - "urlMain": "https://www.domestika.org", - "url": "https://www.domestika.org/{username}" - }, - "DonatePay": { - "tags": [ - "finance", - "ru" - ], - "checkType": "response_url", - "alexaRank": 153959, - "urlMain": "https://donatepay.ru/", - "url": "https://donatepay.ru/don/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "DonationsAlerts": { - "tags": [ - "finance", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "/img/404.svg" - ], - "alexaRank": 19188, - "urlMain": "https://www.donationalerts.com/", - "url": "https://www.donationalerts.com/r/{username}", - "usernameClaimed": "r3dhunt", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dota2": { - "disabled": true, - "tags": [ - "gaming", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0442", - "\u041f\u043e\u0438\u0441\u043a \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d", - "

\u041f\u043e\u0438\u0441\u043a \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d

" - ], - "alexaRank": 54365, - "urlMain": "https://dota2.ru/", - "url": "https://dota2.ru/forum/search?type=user&keywords={username}&sort_by=username", - "usernameClaimed": "farts", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dou": { - "tags": [ - "ua" - ], - "checkType": "status_code", - "alexaRank": 35065, - "urlMain": "https://dou.ua/", - "url": "https://dou.ua/users/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dreamstime": { - "tags": [ - "art", - "photo", - "stock" - ], - "checkType": "status_code", - "alexaRank": 670, - "urlMain": "https://www.dreamstime.com", - "url": "https://www.dreamstime.com/{username}_info", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dreamwidth": { - "disabled": true, - "tags": [ - "in", - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "isn't currently registered" - ], - "alexaRank": 24540, - "urlMain": "https://dreamwidth.org/profile", - "url": "https://{username}.dreamwidth.org/profile", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dribbble": { - "tags": [ - "business", - "in" - ], - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "checkType": "message", - "absenceStrs": [ - "Whoops, that page is gone." - ], - "alexaRank": 1517, - "urlMain": "https://dribbble.com/", - "url": "https://dribbble.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Droidforums": { - "tags": [ - "forum", - "in", - "us" - ], - "errors": { - "You must be logged-in to do that.": "Login required" - }, - "engine": "XenForo", - "alexaRank": 77738, - "urlMain": "http://www.droidforums.net/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Droners": { - "tags": [ - "us" - ], - "checkType": "response_url", - "alexaRank": 150041, - "urlMain": "https://droners.io", - "url": "https://droners.io/accounts/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Dublikat": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d." - ], - "urlMain": "https://www.dublikat.shop", - "url": "https://my.dublikat.pro/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "Dumpz": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 2204947, - "urlMain": "https://dumpz.ws", - "usernameClaimed": "emailx45", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Duno": { - "disabled": true, - "tags": [ - "in", - "pk" - ], - "checkType": "message", - "absenceStrs": [ - "this user does not exist" - ], - "alexaRank": 570063, - "urlMain": "https://www.duno.com/", - "url": "https://www.duno.com/profile.php?pl={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Duolingo": { - "tags": [ - "us" - ], - "urlProbe": "https://www.duolingo.com/2017-06-30/users?username={username}", - "checkType": "message", - "absenceStrs": [ - "{\"users\":[]}" - ], - "alexaRank": 578, - "urlMain": "https://duolingo.com/", - "url": "https://www.duolingo.com/profile/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "E621": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - " Not Found" - ], - "presenseStrs": [ - "<title> User" - ], - "alexaRank": 22598, - "urlMain": "https://e621.net", - "url": "https://e621.net/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ESET": { - "tags": [ - "forum", - "ru" - ], - "checkType": "status_code", - "alexaRank": 24492, - "urlMain": "https://forum.esetnod32.ru", - "url": "https://forum.esetnod32.ru/user/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "EasyEDA": { - "tags": [ - "de", - "in", - "mx", - "us" - ], - "checkType": "status_code", - "alexaRank": 33098, - "urlMain": "https://easyeda.com", - "url": "https://easyeda.com/{username}/topics", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ebay": { - "tags": [ - "shopping", - "us" - ], - "errors": { - "<title>Security Measure": "Captcha detected" - }, - "checkType": "message", - "presenseStrs": [ - "Positive feedback" - ], - "absenceStrs": [ - "EightBit: 404 Error" - ], - "urlMain": "http://eightbit.me/", - "url": "http://eightbit.me/{username}", - "usernameClaimed": "Jerrymej", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 301125 - }, - "Elakiri": { - "tags": [ - "lk" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 31670, - "urlMain": "https://elakiri.com", - "url": "https://elakiri.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Elftown": { - "checkType": "message", - "absenceStrs": [ - "is an unknown" - ], - "presenseStrs": [ - "created:" - ], - "url": "http://elftown.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Elixirforum": { - "tags": [ - "coding", - "forum" - ], - "engine": "Discourse", - "alexaRank": 107170, - "urlMain": "https://elixirforum.com", - "usernameClaimed": "clmay", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ello": { - "tags": [ - "in" - ], - "checkType": "message", - "absenceStrs": [ - "We couldn't find the page you're looking for" - ], - "alexaRank": 15390, - "urlMain": "https://ello.co/", - "url": "https://ello.co/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Elwo": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 452717, - "urlMain": "https://elwo.ru", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Empflix": { - "tags": [ - "de", - "fr", - "porn" - ], - "checkType": "response_url", - "alexaRank": 12547, - "urlMain": "https://www.empflix.com", - "url": "https://www.empflix.com/profile/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Empowher": { - "tags": [ - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 88180, - "urlMain": "https://www.empowher.com", - "url": "https://www.empowher.com/users/{username}", - "usernameClaimed": "susanc", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Engadget": { - "checkType": "message", - "absenceStrs": [ - ", -" - ], - "presenseStrs": [ - "- Engadget" - ], - "url": "https://www.engadget.com/about/editors/{username}/", - "usernameClaimed": "kris-holt", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Enot-poloskun": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d" - ], - "urlMain": "https://enot-poloskun.ru/", - "url": "https://enot-poloskun.ru/member.php?username={username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 5687119 - }, - "Envato": { - "tags": [ - "au", - "forum", - "in" - ], - "engine": "Discourse", - "alexaRank": 631, - "urlMain": "https://forums.envato.com", - "usernameClaimed": "zigro", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Eporner": { - "tags": [ - "es", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Profile not found." - ], - "presenseStrs": [ - "Dashboard" - ], - "alexaRank": 2243, - "url": "https://www.eporner.com/profile/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Erboh": { - "urlSubpath": "/forum", - "disabled": true, - "tags": [ - "forum", - "pk" - ], - "engine": "vBulletin", - "alexaRank": 2045745, - "urlMain": "https://erboh.com/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Erogen.club": { - "tags": [ - "forum", - "ru", - "ua" - ], - "engine": "XenForo", - "alexaRank": 685261, - "urlMain": "https://erogen.club", - "usernameClaimed": "yanok", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Esate": { - "tags": [ - "ru" - ], - "checkType": "message", - "alexaRank": 1077202, - "urlMain": "http://esate.ru", - "presenseStrs": [ - "
" - ], - "absenceStrs": [ - "\u0411\u043b\u043e\u0433 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "url": "http://esate.ru/blogs/{username}/", - "usernameClaimed": "Flashhell", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ethereum-magicians": { - "tags": [ - "cr", - "forum" - ], - "engine": "Discourse", - "alexaRank": 457231, - "urlMain": "https://ethereum-magicians.org", - "usernameClaimed": "amxx", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "EthicalHacker": { - "tags": [ - "in", - "us" - ], - "checkType": "status_code", - "presenseStrs": [ - "activity-loop-form" - ], - "alexaRank": 49571, - "urlMain": "https://www.ethicalhacker.net", - "url": "https://www.ethicalhacker.net/members/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ethresear": { - "tags": [ - "ch", - "cr", - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 163214, - "urlMain": "https://ethresear.ch", - "usernameClaimed": "weijiekoh", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Etsy": { - "tags": [ - "shopping", - "us" - ], - "errors": { - "Sanctions Policy": "Site censorship", - "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 \u0441\u0430\u043d\u043a\u0446\u0438\u0439": "Site censorship" - }, - "checkType": "status_code", - "alexaRank": 81, - "urlMain": "https://www.etsy.com/", - "url": "https://www.etsy.com/shop/{username}", - "usernameClaimed": "JennyKrafts", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Etxt": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 18159, - "urlMain": "https://www.etxt.ru", - "url": "https://www.etxt.ru/{username}.html", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "EuroFootball": { - "tags": [ - "ru" - ], - "checkType": "response_url", - "alexaRank": 19964, - "urlMain": "https://www.euro-football.ru", - "url": "https://www.euro-football.ru/user/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Eurogamer": { - "disabled": true, - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 3034, - "urlMain": "https://www.eurogamer.net", - "url": "https://www.eurogamer.net/profiles/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Eva": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u0430\u0441\u043f\u043e\u0440\u0442 - - \u0415\u0432\u0430.\u0420\u0443" - ], - "alexaRank": 22335, - "urlMain": "https://eva.ru/", - "url": "https://eva.ru/passport/{username}/profile.htm", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "EyeEm": { - "tags": [ - "in", - "it", - "photo", - "sd" - ], - "checkType": "message", - "absenceStrs": [ - "Not Found (404) | EyeEm" - ], - "alexaRank": 42846, - "urlMain": "https://www.eyeem.com/", - "url": "https://www.eyeem.com/u/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "EzoterikaConversion": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 6020701, - "urlMain": "http://ezoterikaconversion.ru", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "F-droid": { - "tags": [ - "forum", - "in", - "us" - ], - "engine": "Discourse", - "alexaRank": 76469, - "urlMain": "https://forum.f-droid.org", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Figma": { - "checkType": "message", - "headers": { - "User-Agent": "curl/8.6.0" - }, - "presenceStrs": [ - "twitter:title" - ], - "absenceStrs": [ - "Figma" - ], - "url": "https://www.figma.com/@{username}", - "urlMain": "https://www.figma.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 240, - "tags": [ - "design" - ] - }, - "8tracks.com": { - "checkType": "message", - "presenseStrs": [ - "Following" - ], - "absenceStrs": [ - "This page has vanished, or perhaps it never even existed..." - ], - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://8tracks.com/{username}" - }, - "www.adultism.com": { - "checkType": "message", - "presenseStrs": [ - "Member since" - ], - "absenceStrs": [ - "Not Found" - ], - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://www.adultism.com/profile/{username}" - }, - "architizer.com": { - "checkType": "message", - "presenseStrs": [ - "Projects" - ], - "absenceStrs": [ - "We can't seem to find the page you're looking for." - ], - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://architizer.com/users/{username}" - }, - "artfol.me": { - "checkType": "message", - "presenseStrs": [ - "About" - ], - "absenceStrs": [ - "This user does not exist" - ], - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://artfol.me/{username}" - }, - "asquero.com": { - "checkType": "message", - "presenseStrs": [ - "Tutorials" - ], - "absenceStrs": [ - "Find The Best Learning Resources" - ], - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://asquero.com/user/dashboard/{username}" - }, - "Byond": { - "absenceStrs": [ - "Announcements about BYOND's software and website." - ], - "presenseStrs": [ - "Shoutbox" - ], - "checkType": "message", - "url": "https://www.byond.com/members/{username}" - }, - "F3.cool": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 209015, - "urlMain": "https://f3.cool/", - "url": "https://f3.cool/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "F6S": { - "tags": [ - "in" - ], - "errors": { - "custom-page-main-frontpage-captcha": "Captcha detected" - }, - "checkType": "message", - "absenceStrs": [ - "Nothing to see here - 404" - ], - "presenseStrs": [ - "profile-heading" - ], - "headers": { - "Accept-Language": "en-US,en;q=0.5", - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/116.0" - }, - "alexaRank": 8897, - "urlMain": "https://f6s.com/", - "url": "https://www.f6s.com/{username}", - "usernameClaimed": "vidheeshnacode", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fabswingers": { - "checkType": "message", - "absenceStrs": [ - "The user you tried to view doesn't seem to be on the site any more" - ], - "presenseStrs": [ - "View Profile" - ], - "url": "https://www.fabswingers.com/profile/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Faktopedia": { - "checkType": "message", - "absenceStrs": [ - "Nie znaleziono u\u017cytkownika o podanym loginie." - ], - "presenseStrs": [ - "Zamieszcza fakty od:" - ], - "url": "https://faktopedia.pl/user/{username}", - "usernameClaimed": "uehkon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fancentro": { - "checkType": "message", - "presenseStrs": [ - "FanCentro" - ], - "absenceStrs": [ - "Sorry, this page isn't available" - ], - "errors": { - "https://fancentro.com/nowar": "Site censorship" - }, - "url": "https://fancentro.com/{username}/", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fansly": { - "checkType": "message", - "presenseStrs": [ - "username" - ], - "absenceStrs": [ - "response: []" - ], - "url": "https://apiv2.fansly.com/api/v1/account?usernames={username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "FCRubin": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 8004914, - "urlMain": "https://www.fcrubin.ru", - "usernameClaimed": "flet", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fedi.lewactwo.pl": { - "checkType": "message", - "presenseStrs": [ - "@lewactwo.pl" - ], - "absenceStrs": [ - "The page you are looking for isn't here." - ], - "url": "https://fedi.lewactwo.pl/@{username}", - "usernameClaimed": "uehkon", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "FIFA FORUMS": { - "disabled": true, - "tags": [ - "forum", - "gb", - "us" - ], - "checkType": "status_code", - "alexaRank": 72093, - "urlMain": "https://fifaforums.easports.com/", - "url": "https://fifaforums.easports.com/en/profile/discussions/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Forumprawne.org": { - "checkType": "status_code", - "url": "https://forumprawne.org/members/{username}.html", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fosstodon": { - "checkType": "message", - "presenseStrs": [ - "@fosstodon.org" - ], - "absenceStrs": [ - "The page you are looking for isn't here." - ], - "url": "https://fosstodon.org/@{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fotka": { - "checkType": "message", - "presenseStrs": [ - "profil" - ], - "absenceStrs": [ - "ERROR" - ], - "url": "https://api.fotka.com/v2/user/dataStatic?login={username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Friendfinder": { - "checkType": "message", - "presenseStrs": [ - "friendfinder.com/profile/" - ], - "absenceStrs": [ - "friendfinder.com/p/register.cgi" - ], - "url": "https://friendfinder.com/profile/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Friendfinder-x": { - "checkType": "message", - "presenseStrs": [ - "s Dating Profile on FriendFinder-x" - ], - "absenceStrs": [ - "friendfinder-x.com/p/register.cgi" - ], - "url": "https://www.friendfinder-x.com/profile/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Furaffinity": { - "checkType": "message", - "presenseStrs": [ - "Userpage of" - ], - "absenceStrs": [ - "user cannot be found" - ], - "url": "https://www.furaffinity.net/user/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis9" - }, - "FUTBIN": { - "disabled": true, - "tags": [ - "de", - "forum", - "gaming", - "gb", - "us" - ], - "checkType": "status_code", - "alexaRank": 1735, - "urlMain": "https://forums.futbin.com", - "url": "https://forums.futbin.com/profile/{username}", - "usernameClaimed": "YuvalDu", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Facebook": { - "regexCheck": "^[a-zA-Z0-9_\\.]{3,49}(?<!\\.com|\\.org|\\.net)$", - "checkType": "message", - "absenceStrs": [ - "rsrcTags" - ], - "presenseStrs": [ - "first_name" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36" - }, - "alexaRank": 10, - "urlMain": "https://www.facebook.com/", - "url": "https://www.facebook.com/{username}", - "usernameClaimed": "zuck", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "networking" - ] - }, - "Facenama": { - "disabled": true, - "tags": [ - "ir" - ], - "checkType": "response_url", - "alexaRank": 21122, - "urlMain": "https://facenama.com/", - "url": "https://facenama.com/{username}", - "errorUrl": "https://facenama.com/404.html", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis77" - }, - "FacultyOfMedicine": { - "tags": [ - "eg", - "forum" - ], - "engine": "XenForo", - "alexaRank": 288545, - "urlMain": "https://forum.facmedicine.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fameswap": { - "checkType": "status_code", - "url": "https://fameswap.com/user/{username}", - "usernameClaimed": "fameswap", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fandom": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 80, - "urlMain": "https://www.fandom.com/", - "url": "https://www.fandom.com/u/{username}", - "usernameClaimed": "Jungypoo", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "FandomCommunityCentral": { - "tags": [ - "wiki" - ], - "checkType": "status_code", - "alexaRank": 80, - "urlMain": "https://community.fandom.com", - "url": "https://community.fandom.com/wiki/User:{username}", - "usernameClaimed": "Red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fanlore": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 310080, - "urlMain": "http://fanlore.org", - "url": "http://fanlore.org/wiki/User:{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fanpop": { - "tags": [ - "in", - "us" - ], - "checkType": "response_url", - "alexaRank": 18642, - "urlMain": "https://www.fanpop.com/", - "url": "https://www.fanpop.com/fans/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Faqusha": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 351049, - "urlMain": "https://faqusha.ru", - "url": "https://faqusha.ru/profile/{username}/", - "usernameClaimed": "typhoon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fark": { - "tags": [ - "forum", - "news" - ], - "checkType": "message", - "absenceStrs": [ - "Tastes like chicken." - ], - "alexaRank": 7621, - "urlMain": "https://www.fark.com/", - "url": "https://www.fark.com/users/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fatsecret": { - "tags": [ - "au", - "us" - ], - "checkType": "response_url", - "alexaRank": 26070, - "urlMain": "https://www.fatsecret.com", - "url": "https://www.fatsecret.com/member/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Favera": { - "tags": [ - "ru" - ], - "disabled": true, - "checkType": "status_code", - "alexaRank": 1225740, - "urlMain": "https://favera.ru", - "url": "https://favera.ru/{username}", - "usernameClaimed": "mayhem", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fcdin": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 159130, - "urlMain": "http://fcdin.com", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fclmnews": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 165498, - "urlMain": "https://fclmnews.ru", - "url": "https://fclmnews.ru/user/{username}", - "usernameClaimed": "stoker82", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fegatch": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "status_code", - "urlMain": "http://www.fegatch.com/", - "url": "http://www.fegatch.com/users/{username}/artworks/", - "usernameClaimed": "margaret-veret", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ficwad": { - "tags": [ - "gb", - "in" - ], - "checkType": "status_code", - "alexaRank": 261654, - "urlMain": "https://ficwad.com/", - "url": "https://ficwad.com/a/{username}/favorites/authors", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ficwriter": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\ufeff\u042d\u0442\u043e\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043b\u0438\u0431\u043e \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0438\u043b\u0438 \u043d\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d." - ], - "alexaRank": 2421733, - "urlMain": "https://ficwriter.info", - "url": "https://ficwriter.info/polzovateli/userprofile/{username}.html", - "usernameClaimed": "Zinaida", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fifasoccer": { - "urlSubpath": "/forum", - "disabled": true, - "tags": [ - "forum", - "ru", - "ua" - ], - "engine": "vBulletin", - "alexaRank": 2241715, - "urlMain": "http://fifasoccer.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "FilmWeb": { - "tags": [ - "movies", - "pl" - ], - "checkType": "message", - "absenceStrs": [ - "top.location.href = '/404';" - ], - "alexaRank": 4157, - "urlMain": "https://www.filmweb.pl/user/adam", - "url": "https://www.filmweb.pl/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Filmogs": { - "disabled": true, - "tags": [ - "movies" - ], - "checkType": "status_code", - "urlMain": "https://www.filmo.gs/", - "url": "https://www.filmo.gs/users/{username}", - "usernameClaimed": "cupparober", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Filmow": { - "tags": [ - "br", - "pt" - ], - "checkType": "status_code", - "alexaRank": 41121, - "urlMain": "https://filmow.com/", - "url": "https://filmow.com/usuario/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Filmwatch": { - "tags": [ - "ca", - "in", - "pk", - "us" - ], - "checkType": "status_code", - "alexaRank": 212729, - "urlMain": "https://filmwatch.com", - "url": "https://filmwatch.com/user/home/{username}", - "usernameClaimed": "hazelamy", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Finanzfrage": { - "checkType": "status_code", - "url": "https://www.finanzfrage.net/nutzer/{username}", - "usernameClaimed": "finanzfrage", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Finforum": { - "tags": [ - "forum", - "ru", - "us", - "vn" - ], - "engine": "XenForo", - "alexaRank": 327592, - "urlMain": "https://finforum.net", - "usernameClaimed": "tropical", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Firearmstalk": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 526339, - "urlMain": "https://www.firearmstalk.com", - "url": "https://www.firearmstalk.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fireworktv": { - "tags": [ - "in", - "jp" - ], - "checkType": "message", - "absenceStrs": [ - "<title>Firework" - ], - "alexaRank": 132082, - "urlMain": "https://fireworktv.com", - "url": "https://fireworktv.com/ch/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fishingsib": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 67134, - "urlMain": "https://www.fishingsib.ru/", - "url": "https://www.fishingsib.ru/forum/members/?username={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fiverr": { - "tags": [ - "shopping", - "us" - ], - "checkType": "response_url", - "alexaRank": 153, - "urlMain": "https://www.fiverr.com/", - "url": "https://www.fiverr.com/{username}", - "errorUrl": "https://www.fiverr.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Flashflashrevolution": { - "tags": [ - "us" - ], - "checkType": "response_url", - "alexaRank": 78934, - "urlMain": "http://www.flashflashrevolution.com", - "url": "http://www.flashflashrevolution.com/profile/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Flbord": { - "tags": [ - "ru", - "ua" - ], - "checkType": "status_code", - "alexaRank": 1936025, - "urlMain": "https://flbord.com", - "url": "https://flbord.com/user/{username}/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Flickr": { - "tags": [ - "photo" - ], - "checkType": "status_code", - "alexaRank": 569, - "urlMain": "https://www.flickr.com/", - "url": "https://www.flickr.com/photos/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Flightradar24": { - "tags": [ - "de", - "es", - "us" - ], - "regexCheck": "^[a-zA-Z0-9_]{3,20}$", - "checkType": "status_code", - "alexaRank": 2517, - "urlMain": "https://www.flightradar24.com/", - "url": "https://my.flightradar24.com/{username}", - "usernameClaimed": "jebbrooks", - "usernameUnclaimed": "xgtrq" - }, - "Flipboard": { - "tags": [ - "in", - "tech" - ], - "regexCheck": "^([a-zA-Z0-9_]){1,15}$", - "checkType": "status_code", - "alexaRank": 5142, - "urlMain": "https://flipboard.com/", - "url": "https://flipboard.com/@{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewould" - }, - "Fluther": { - "tags": [ - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 130955, - "urlMain": "https://www.fluther.com/", - "url": "https://www.fluther.com/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Flyertalk": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "This user has not registered and therefore does not have a profile to view." - ], - "alexaRank": 26402, - "urlMain": "https://www.flyertalk.com", - "url": "https://www.flyertalk.com/forum/members/{username}.html", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fm-forum": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f" - ], - "alexaRank": 1027372, - "urlMain": "https://fm-forum.ru", - "url": "https://fm-forum.ru/search.php?action=search&keywords=&author={username}", - "usernameClaimed": "nikita", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fodors": { - "tags": [ - "us" - ], - "checkType": "response_url", - "alexaRank": 18322, - "urlMain": "https://www.fodors.com", - "url": "https://www.fodors.com/community/profile/{username}/forum-activity", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Folkd": { - "disabled": true, - "tags": [ - "eu", - "in" - ], - "checkType": "message", - "absenceStrs": [ - "", - "Folkd | Home" - ], - "alexaRank": 14019, - "urlMain": "http://www.folkd.com/profile/", - "url": "http://www.folkd.com/profile/{username}", - "usernameClaimed": "staffingservice", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Football": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 29781, - "urlMain": "https://www.rusfootball.info/", - "url": "https://www.rusfootball.info/user/{username}/", - "usernameClaimed": "solo87", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Footballforums": { - "tags": [ - "forum", - "gb" - ], - "engine": "XenForo", - "alexaRank": 1793267, - "urlMain": "http://www.footballforums.net", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Forest": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 1460281, - "urlMain": "https://forest.ru/", - "url": "https://forest.ru/forum/user/{username}/", - "usernameClaimed": "veter", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ForexDengi": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 107102, - "urlMain": "https://forexdengi.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "FortniteTracker": { - "tags": [ - "gaming" - ], - "checkType": "status_code", - "alexaRank": 9950, - "urlMain": "https://fortnitetracker.com/challenges", - "url": "https://fortnitetracker.com/profile/all/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Forum.glow-dm.ru": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 6472644, - "urlMain": "http://forum.glow-dm.ru", - "usernameClaimed": "jkey", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Forum.jambox.ru": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "urlMain": "https://forum.jambox.ru", - "usernameClaimed": "ComManDX", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 7726749 - }, - "Forum.quake2.com.ru": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "," - ], - "urlMain": "http://forum.quake2.com.ru/", - "url": "http://forum.quake2.com.ru/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "Khidalov", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Forum29": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "urlMain": "http://forum29.net", - "usernameClaimed": "KISS", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 7864363 - }, - "ForumEvaveda": { - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 942412, - "urlMain": "http://forum.evaveda.com/", - "usernameClaimed": "leisan", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ForumHouse": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 18955, - "urlMain": "https://www.forumhouse.ru/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ForumJizni": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 2782478, - "urlMain": "http://www.forumjizni.ru", - "usernameClaimed": "luhoy2", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ForumKinopoisk": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 163148, - "urlMain": "https://forumkinopoisk.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ForumOdUa": { - "disabled": true, - "tags": [ - "forum", - "ro", - "ua" - ], - "engine": "vBulletin", - "alexaRank": 118763, - "urlMain": "https://forumodua.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ForumOszone": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 45176, - "urlMain": "http://forum.oszone.net", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ForumProSport": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 7963918, - "urlMain": "https://forumprosport.ru/", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ForumSmotri": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "urlMain": "https://forumsmotri.club", - "url": "https://forumsmotri.club/user/{username}/", - "presenseStrs": [ - "\u0411\u044b\u043b \u0442\u0443\u0442" - ], - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 4855188 - }, - "ForumTauck": { - "tags": [ - "forum", - "us" - ], - "checkType": "message", - "presenseStrs": [ - "\u2014 Tauck Community" - ], - "urlMain": "https://forums.tauck.com", - "url": "https://forums.tauck.com/profile/{username}", - "usernameClaimed": "tashager", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ForumVancouver": { - "tags": [ - "ca", - "forum" - ], - "engine": "XenForo", - "urlMain": "http://www.forumvancouver.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 4965742 - }, - "ForumYuristov": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 2017536, - "urlMain": "https://forumyuristov.ru/", - "url": "https://forumyuristov.ru/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Forumophilia": { - "tags": [ - "forum", - "porn" - ], - "checkType": "message", - "absenceStrs": [ - "Sorry, but that user does not exist." - ], - "alexaRank": 21796, - "urlMain": "https://www.forumophilia.com", - "url": "https://www.forumophilia.com/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Forumreligions": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "urlMain": "https://forumreligions.ru", - "url": "https://forumreligions.ru/search.php?action=search&keywords=&author={username}", - "usernameClaimed": "ingvar", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 3482229 - }, - "Forums-bluemoon-mcfc": { - "tags": [ - "forum", - "gb" - ], - "engine": "XenForo", - "alexaRank": 312657, - "urlMain": "https://forums.bluemoon-mcfc.co.uk", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Forumsi": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 4060509, - "urlMain": "http://www.forumsi.org", - "usernameClaimed": "Ahimas", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Forumteam": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 268366, - "urlMain": "https://forumteam.best/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fotothing": { - "disabled": true, - "tags": [ - "photo" - ], - "checkType": "message", - "absenceStrs": [ - "File Not Found" - ], - "alexaRank": 103043, - "urlMain": "http://www.fotothing.com", - "url": "http://www.fotothing.com/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Foursquare": { - "tags": [ - "geosocial", - "in" - ], - "checkType": "message", - "presenseStrs": [ - "Foursquare " - ], - "alexaRank": 3413, - "urlMain": "https://foursquare.com/", - "url": "https://foursquare.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fozo": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 619848, - "urlMain": "https://fozo.info/", - "url": "https://fozo.info/user/{username}/", - "usernameClaimed": "%D0%A8%D0%98%D0%9A", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Fredmiranda": { - "tags": [ - "de", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "View Profile for" - ], - "alexaRank": 62153, - "urlMain": "https://www.fredmiranda.com", - "url": "https://www.fredmiranda.com/forum/viewprofile.php?Action=viewprofile&username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Framapiaf": { - "tags": [ - "mastodon" - ], - "checkType": "status_code", - "urlMain": "https://framapiaf.org", - "url": "https://framapiaf.org/@{username}", - "usernameClaimed": "pylapp", - "usernameUnclaimed": "noonewouldeverusethis42" - }, - "Free-lance.ua": { - "tags": [ - "freelance", - "ua" - ], - "checkType": "status_code", - "alexaRank": 2295317, - "urlMain": "https://free-lance.ua/", - "url": "https://free-lance.ua/users/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Free-lancers": { - "tags": [ - "freelance", - "ru" - ], - "checkType": "status_code", - "alexaRank": 969213, - "urlMain": "http://www.free-lancers.net", - "url": "http://www.free-lancers.net/users/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Freecodecamp": { - "tags": [ - "coding", - "education", - "forum" - ], - "engine": "Discourse", - "alexaRank": 1295, - "urlMain": "https://www.freecodecamp.org/forum/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Freelance.habr": { - "tags": [ - "freelance", - "ru" - ], - "checkType": "status_code", - "alexaRank": 1265, - "urlMain": "https://freelance.habr.com/", - "url": "https://freelance.habr.com/freelancers/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Freelancebay": { - "tags": [ - "freelance", - "th" - ], - "checkType": "message", - "presenseStrs": [ - "\u0e2a\u0e21\u0e31\u0e04\u0e23\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01\u0e40\u0e21\u0e37\u0e48\u0e2d" - ], - "alexaRank": 218599, - "urlMain": "https://www.freelancebay.com", - "url": "https://www.freelancebay.com/freelancer/{username}", - "usernameClaimed": "maysuphak", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Freelanced": { - "tags": [ - "freelance", - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 554707, - "urlMain": "https://www.freelanced.com", - "url": "https://www.freelanced.com/{username}", - "usernameClaimed": "mattphilleo", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Freelancehunt": { - "tags": [ - "freelance", - "ru", - "ua" - ], - "checkType": "status_code", - "alexaRank": 40932, - "urlMain": "https://freelancehunt.com", - "url": "https://freelancehunt.com/freelancer/{username}.html", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Freelancer.com": { - "tags": [ - "freelance", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "\"users\":{}" - ], - "alexaRank": 661, - "urlMain": "https://www.freelancer.com/", - "url": "https://www.freelancer.com/api/users/0.1/users?usernames%5B%5D={username}&compact=true", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Freepik": { - "tags": [ - "art", - "photo", - "stock" - ], - "checkType": "status_code", - "alexaRank": 147, - "urlMain": "https://www.freepik.com", - "url": "https://www.freepik.com/{username}", - "usernameClaimed": "chevanon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Freepo": { - "checkType": "response_url", - "alexaRank": 7571425, - "urlMain": "https://freepo.st", - "url": "https://freepo.st/freepost.cgi/user/public/{username}", - "usernameClaimed": "robocop", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "news" - ] - }, - "Freesound": { - "tags": [ - "music", - "us" - ], - "checkType": "status_code", - "alexaRank": 10440, - "urlMain": "https://freesound.org/", - "url": "https://freesound.org/people/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Fullhub": { - "tags": [ - "ru", - "ua" - ], - "checkType": "message", - "absenceStrs": [ - "title>\u0412\u044b\u0434\u0430\u044e\u0449\u0438\u0435\u0441\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 | FullHub: \u0424\u043e\u0440\u0443\u043c \u043e \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445" - ], - "alexaRank": 1588355, - "urlMain": "https://fullhub.ru/", - "url": "https://fullhub.ru/forum/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Funnyjunk": { - "tags": [ - "gb", - "us" - ], - "checkType": "response_url", - "alexaRank": 10023, - "urlMain": "https://funnyjunk.com/", - "url": "https://funnyjunk.com/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Funnyordie": { - "disabled": true, - "tags": [ - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 50140, - "urlMain": "https://www.funnyordie.com", - "url": "https://www.funnyordie.com/users/{username}", - "usernameClaimed": "Marja_Berggren", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "FurryFandom": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u0438\u0441\u043a \u043f\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c" - ], - "alexaRank": 7935795, - "urlMain": "https://furry-fandom.ru/", - "url": "https://furry-fandom.ru/user?who={username}", - "usernameClaimed": "Finya", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "G2g.com": { - "checkType": "message", - "presenseStrs": [ - "s Profile - G2G Games Marketplace" - ], - "absenceStrs": [ - "G2G: World Leading Digital Marketplace Platform" - ], - "url": "https://www.g2g.com/{username}", - "usernameClaimed": "user", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "G-news": { - "disabled": true, - "tags": [ - "in", - "ua" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442." - ], - "alexaRank": 5900519, - "urlMain": "https://g-news.com.ua", - "url": "https://g-news.com.ua/forum_smf/profile/{username}/", - "usernameClaimed": "Glukodrom", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GBAtemp.net": { - "tags": [ - "de", - "forum", - "gaming", - "us" - ], - "engine": "XenForo", - "alexaRank": 23803, - "urlMain": "https://gbatemp.net/", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GDProfiles": { - "checkType": "status_code", - "alexaRank": 2899283, - "urlMain": "https://gdprofiles.com/", - "url": "https://gdprofiles.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "GGIZI": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 668582, - "urlMain": "https://gg-izi.ru/", - "url": "https://gg-izi.ru/user/{username}", - "usernameClaimed": "nimses", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GPS-Forum": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 3646635, - "urlMain": "http://www.gps-forum.ru", - "url": "http://www.gps-forum.ru/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "sater", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gab": { - "tags": [ - "in", - "us" - ], - "urlProbe": "https://gab.com/api/v1/account_by_username/{username}", - "checkType": "status_code", - "presenseStrs": [ - "display_name" - ], - "absenceStrs": [ - "Record not found" - ], - "alexaRank": 2512, - "urlMain": "https://gab.com/", - "url": "https://gab.com/{username}", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "GaiaOnline": { - "tags": [ - "ro", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "No user ID specified or user does not exist!" - ], - "alexaRank": 38258, - "urlMain": "https://www.gaiaonline.com/", - "url": "https://www.gaiaonline.com/profiles/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Galya": { - "disabled": true, - "similarSearch": true, - "tags": [ - "ru", - "us" - ], - "regexCheck": "^[^_]{3,}$", - "checkType": "message", - "absenceStrs": [ - "div class=error_message" - ], - "alexaRank": 77736, - "urlMain": "https://m.galya.ru", - "url": "https://m.galya.ru/search_result.php?searchstring={username}", - "usernameClaimed": "annledi", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gam1ng": { - "disabled": true, - "tags": [ - "br", - "webcam" - ], - "errors": { - "Attention Required! | Cloudflare": "Cloudflare security protection detected" - }, - "checkType": "status_code", - "urlMain": "https://gam1ng.com.br", - "url": "https://gam1ng.com.br/user/{username}", - "usernameClaimed": "PinKgirl", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "Twitter Shadowban": { - "tags": [ - "jp", - "sa" - ], - "urlProbe": "https://shadowban.eu/.api/{username}", - "checkType": "message", - "presenseStrs": [ - "exists\": true" - ], - "absenceStrs": [ - "exists\": false" - ], - "alexaRank": 61030, - "urlMain": "https://shadowban.eu", - "url": "https://shadowban.eu/{username}", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Gamblejoe": { - "tags": [ - "de", - "mk", - "ua" - ], - "checkType": "status_code", - "presenseStrs": [ - "profile-page" - ], - "alexaRank": 2094048, - "urlMain": "https://www.gamblejoe.com", - "url": "https://www.gamblejoe.com/profil/{username}/", - "usernameClaimed": "matthias", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GameRevolution": { - "tags": [ - "forum", - "gaming", - "us" - ], - "engine": "XenForo", - "alexaRank": 21572, - "urlMain": "https://forums.gamerevolution.com", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gamefaqs": { - "tags": [ - "gaming", - "us" - ], - "regexCheck": "^\\S+$", - "errors": { - "Are You a Robot?": "Captcha detected", - "Your IP address has been temporarily blocked due to a large number of HTTP requests": "Too many requests", - "your IP was banned": "IP ban" - }, - "checkType": "message", - "absenceStrs": [ - "404 Error: Page Not Found" - ], - "presenseStrs": [ - "UserID" - ], - "alexaRank": 875, - "urlMain": "https://gamefaqs.gamespot.com", - "url": "https://gamefaqs.gamespot.com/community/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gamesfrm": { - "tags": [ - "forum", - "tr" - ], - "engine": "XenForo", - "alexaRank": 1306974, - "urlMain": "https://www.gamesfrm.com", - "usernameClaimed": "zampara", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gamespot": { - "tags": [ - "gaming", - "us" - ], - "checkType": "status_code", - "alexaRank": 875, - "urlMain": "https://www.gamespot.com/", - "url": "https://www.gamespot.com/profile/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Gamesubject": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 690202, - "urlMain": "https://gamesubject.com", - "url": "https://gamesubject.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gapyear": { - "tags": [ - "gb", - "in" - ], - "checkType": "status_code", - "alexaRank": 60505, - "urlMain": "https://www.gapyear.com", - "url": "https://www.gapyear.com/members/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GaragePunk": { - "tags": [ - "us" - ], - "checkType": "status_code", - "urlMain": "https://www.garagepunk.com", - "url": "https://www.garagepunk.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 3626803 - }, - "Garden": { - "tags": [ - "us" - ], - "checkType": "response_url", - "alexaRank": 59582, - "urlMain": "https://garden.org", - "url": "https://garden.org/users/profile/{username}/", - "usernameClaimed": "Turbosaurus", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gardening-forums": { - "tags": [ - "forum", - "ph" - ], - "engine": "XenForo", - "alexaRank": 712299, - "urlMain": "https://www.gardening-forums.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gardenstew": { - "disabled": true, - "tags": [ - "forum", - "in", - "us" - ], - "engine": "XenForo", - "alexaRank": 371220, - "urlMain": "https://www.gardenstew.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "Gays": { - "disabled": true, - "tags": [ - "in" - ], - "checkType": "status_code", - "alexaRank": 1188634, - "urlMain": "https://www.gays.com", - "url": "https://www.gays.com/p/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Geekdoing": { - "tags": [ - "gr", - "in", - "ir" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 1159327, - "urlMain": "https://geekdoing.com", - "url": "https://geekdoing.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Genius": { - "tags": [ - "music", - "us" - ], - "checkType": "status_code", - "alexaRank": 453, - "urlMain": "https://genius.com/", - "url": "https://genius.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GeniusArtists": { - "checkType": "status_code", - "url": "https://genius.com/artists/{username}", - "usernameClaimed": "genius", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gentlemint": { - "tags": [ - "in" - ], - "checkType": "status_code", - "alexaRank": 505328, - "urlMain": "https://gentlemint.com", - "url": "https://gentlemint.com/users/{username}/", - "usernameClaimed": "zamoose", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Geodesist": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 165765, - "urlMain": "https://geodesist.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "German242": { - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 499888, - "urlMain": "https://board.german242.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gesundheitsfrage": { - "checkType": "status_code", - "url": "https://www.gesundheitsfrage.net/nutzer/{username}", - "usernameClaimed": "gutefrage", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Giantbomb": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 15115, - "urlMain": "https://www.giantbomb.com", - "url": "https://www.giantbomb.com/profile/{username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gigbucks": { - "tags": [ - "dz", - "eg", - "in", - "us" - ], - "checkType": "response_url", - "alexaRank": 135295, - "urlMain": "https://gigbucks.com/", - "url": "https://gigbucks.com/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gingerbread": { - "tags": [ - "gb" - ], - "checkType": "status_code", - "presenseStrs": [ - "My Profile" - ], - "alexaRank": 240144, - "urlMain": "https://www.gingerbread.org.uk", - "url": "https://www.gingerbread.org.uk/members/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GipsysTeam": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 67758, - "urlMain": "https://site.gipsyteam.ru/", - "url": "https://site.gipsyteam.ru/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gitbook": { - "checkType": "status_code", - "url": "https://{username}.gitbook.io/", - "usernameClaimed": "gitbook", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GitHub": { - "tags": [ - "coding" - ], - "regexCheck": "^[a-zA-Z0-9](?:[a-zA-Z0-9]|-(?=[a-zA-Z0-9])){0,38}$", - "urlProbe": "https://api.github.com/users/{username}", - "checkType": "status_code", - "alexaRank": 83, - "urlMain": "https://www.github.com/", - "url": "https://github.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GitLab": { - "tags": [ - "coding" - ], - "urlProbe": "https://gitlab.com/api/v4/users?username={username}", - "checkType": "message", - "absenceStrs": [ - "[]" - ], - "alexaRank": 4649, - "urlMain": "https://gitlab.com/", - "url": "https://gitlab.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gitee": { - "tags": [ - "cn" - ], - "checkType": "status_code", - "alexaRank": 5093, - "urlMain": "https://gitee.com/", - "url": "https://gitee.com/{username}", - "usernameClaimed": "wizzer", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Glav": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b." - ], - "alexaRank": 124671, - "urlMain": "https://glav.su", - "url": "https://glav.su/members/?searchName={username}", - "usernameClaimed": "gvf", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Glbyh": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 8093405, - "urlMain": "https://glbyh.ru/", - "usernameClaimed": "ufo", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gliger": { - "disabled": true, - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://www.gliger.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Globalvoices": { - "tags": [ - "sv", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "404 ERROR: PAGE NOT FOUND" - ], - "alexaRank": 78089, - "urlMain": "https://globalvoices.org", - "url": "https://globalvoices.org/author/{username}/", - "usernameClaimed": "7iber", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gnome-vcs": { - "checkType": "message", - "presenseStrs": [ - "Member since" - ], - "absenceStrs": [ - "You need to sign in or sign up" - ], - "url": "https://gitlab.gnome.org/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Go365": { - "disabled": true, - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 489173, - "urlMain": "https://community.go365.com", - "url": "https://community.go365.com/people/{username}", - "usernameClaimed": "go365admin3", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gofundme": { - "tags": [ - "finance", - "us" - ], - "checkType": "status_code", - "alexaRank": 1260, - "urlMain": "https://www.gofundme.com", - "url": "https://www.gofundme.com/f/{username}", - "usernameClaimed": "adamcoussins", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gog": { - "tags": [ - "gaming", - "us" - ], - "checkType": "status_code", - "alexaRank": 5343, - "urlMain": "https://www.gog.com/", - "url": "https://www.gog.com/u/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Golangbridge": { - "tags": [ - "forum", - "in", - "sa", - "ua", - "us", - "vn" - ], - "engine": "Discourse", - "alexaRank": 195689, - "urlMain": "https://forum.golangbridge.org/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Golbis": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 106111, - "urlMain": "https://golbis.com", - "url": "https://golbis.com/user/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Goldderby": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 37176, - "urlMain": "https://www.goldderby.com", - "url": "https://www.goldderby.com/members/{username}/", - "usernameClaimed": "dakardii", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Goldroyal": { - "tags": [ - "bd", - "by", - "forum", - "ru", - "ua", - "ve" - ], - "engine": "vBulletin", - "alexaRank": 260992, - "urlMain": "http://goldroyal.net", - "usernameClaimed": "anton33", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GolfMonthly": { - "tags": [ - "forum", - "gb", - "us" - ], - "engine": "XenForo", - "urlMain": "https://forums.golf-monthly.co.uk/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Good-music": { - "tags": [ - "ua" - ], - "engine": "uCoz", - "alexaRank": 5386313, - "urlMain": "http://good-music.kiev.ua", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GoodReads": { - "tags": [ - "books", - "us" - ], - "checkType": "status_code", - "alexaRank": 329, - "urlMain": "https://www.goodreads.com/", - "url": "https://www.goodreads.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Google Maps": { - "tags": [ - "maps", - "us" - ], - "type": "gaia_id", - "checkType": "message", - "presenseStrs": [ - "[\"Contributions by" - ], - "absenceStrs": [ - "My Contributions to Google Maps" - ], - "alexaRank": 1, - "urlMain": "https://maps.google.com/", - "url": "https://www.google.com/maps/contrib/{username}", - "usernameClaimed": "105054951427011407574", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Google Plus (archived)": { - "checkType": "message", - "type": "gaia_id", - "alexaRank": 1, - "presenseStrs": [ - "original" - ], - "absenceStrs": [ - "[]" - ], - "urlMain": "https://plus.google.com", - "urlProbe": "https://web.archive.org/web/timemap/?url=http%3A%2F%2Fplus.google.com%2F{username}&matchType=prefix&collapse=urlkey&output=json&fl=original%2Cmimetype%2Ctimestamp%2Cendtimestamp%2Cgroupcount%2Cuniqcount&filter=!statuscode%3A%5B45%5D..&limit=100000&_=1624789582128", - "url": "https://web.archive.org/web/*/plus.google.com/{username}*", - "usernameClaimed": "117522081019092547227", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GooglePlayStore": { - "tags": [ - "apps", - "us" - ], - "checkType": "status_code", - "alexaRank": 1, - "urlMain": "https://play.google.com/store", - "url": "https://play.google.com/store/apps/developer?id={username}", - "usernameClaimed": "KONAMI", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gorod.dp.ua": { - "tags": [ - "de", - "forum", - "ua" - ], - "engine": "vBulletin", - "alexaRank": 66670, - "urlMain": "https://forum.gorod.dp.ua/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gorodanapa": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0442\u0430\u043a\u043e\u0433\u043e \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u0444\u043e\u0440\u0443\u043c\u0430 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "alexaRank": 4204120, - "urlMain": "http://gorodanapa.ru/", - "url": "http://gorodanapa.ru/forum/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gothic": { - "urlSubpath": "/forum", - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "urlMain": "http://gothic.su", - "usernameClaimed": "Lestat", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GotovimDoma": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - " \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f" - ], - "alexaRank": 30665, - "urlMain": "https://gotovim-doma.ru", - "url": "https://gotovim-doma.ru/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "eda1", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Govloop": { - "tags": [ - "education" - ], - "checkType": "message", - "presenseStrs": [ - "xprofile-personal-li" - ], - "absenceStrs": [ - "article-404-thumb article-thumb" - ], - "alexaRank": 247058, - "urlMain": "https://www.govloop.com", - "url": "https://www.govloop.com/members/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gpodder": { - "checkType": "status_code", - "alexaRank": 2509811, - "urlMain": "https://gpodder.net/", - "url": "https://gpodder.net/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Bit.ly": { - "tags": [ - "links" - ], - "checkType": "status_code", - "alexaRank": 2604, - "urlMain": "https://bit.ly", - "url": "https://bit.ly/{username}", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gps-data-team": { - "disabled": true, - "checkType": "message", - "absenceStrs": [ - "" - ], - "alexaRank": 1021858, - "urlMain": "https://www.gps-data-team.com", - "url": "https://www.gps-data-team.com/pda-gps-navigation/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gps-forumCOM": { - "engine": "XenForo", - "alexaRank": 3328006, - "urlMain": "https://www.gps-forums.com", - "usernameClaimed": "johnash", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "tech" - ] - }, - "Gradle": { - "checkType": "message", - "presenseStrs": [ - "Joined on" - ], - "absenceStrs": [ - "User not found" - ], - "url": "https://plugins.gradle.org/u/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Grailed": { - "checkType": "status_code", - "url": "https://www.grailed.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gramho": { - "tags": [ - "photo" - ], - "checkType": "message", - "presenseStrs": [ - "Instagram Posts" - ], - "alexaRank": 4795, - "urlMain": "https://gramho.com/", - "url": "https://gramho.com/explore-hashtag/{username}", - "source": "Instagram", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Gravatar": { - "tags": [ - "photo" - ], - "urlProbe": "http://en.gravatar.com/{username}.json", - "checkType": "message", - "presenseStrs": [ - "requestHash" - ], - "absenceStrs": [ - "User not found" - ], - "alexaRank": 5585, - "urlMain": "http://en.gravatar.com/", - "url": "http://en.gravatar.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gribnikikybani": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 40212, - "urlMain": "http://gribnikikybani.mybb.ru", - "url": "http://gribnikikybani.mybb.ru/search.php?action=search&keywords=&author={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gribnyemesta": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" - ], - "alexaRank": 491590, - "urlMain": "https://gribnyemesta.unoforum.pro", - "url": "https://gribnyemesta.unoforum.pro/?32-{username}", - "usernameClaimed": "raevsku", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Gulfcoastgunforum": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 3333046, - "urlMain": "https://gulfcoastgunforum.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gumroad": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Page not found" - ], - "presenseStrs": [ - "title=\"Gumroad\"" - ], - "regexCheck": "^[^\\.]+$", - "alexaRank": 4728, - "urlMain": "https://www.gumroad.com/", - "url": "https://www.gumroad.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gunandgame": { - "disabled": true, - "ignore403": true, - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found. Please enter a member's entire name." - ], - "urlMain": "https://www.gunandgame.co", - "url": "https://www.gunandgame.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gunboards": { - "tags": [ - "forum", - "in", - "us" - ], - "presenseStrs": [ - "latest-activity" - ], - "engine": "XenForo", - "alexaRank": 662496, - "urlMain": "https://forums.gunboards.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Guns.ru": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430" - ], - "absenceStrs": [ - "\u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "alexaRank": 29785, - "urlMain": "https://forum.guns.ru/", - "url": "https://forum.guns.ru/forummisc/show_profile/00098415?username={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GunsAndAmmo": { - "disabled": true, - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 119883, - "urlMain": "https://gunsandammo.com/", - "url": "https://forums.gunsandammo.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Guru": { - "tags": [ - "in" - ], - "checkType": "response_url", - "alexaRank": 4420, - "urlMain": "https://www.guru.com", - "url": "https://www.guru.com/freelancers/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "GuruShots": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "GS POINTS" - ], - "alexaRank": 20926, - "urlMain": "https://gurushots.com/", - "url": "https://gurushots.com/{username}/photos", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Gvectors": { - "tags": [ - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 97985, - "urlMain": "https://gvectors.com", - "url": "https://gvectors.com/forum/profile/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "HackTheBox": { - "tags": [ - "forum", - "us" - ], - "checkType": "status_code", - "alexaRank": 26375, - "urlMain": "https://forum.hackthebox.eu/", - "url": "https://forum.hackthebox.eu/profile/{username}", - "usernameClaimed": "angar", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Hackaday": { - "tags": [ - "de", - "us" - ], - "checkType": "status_code", - "alexaRank": 33363, - "urlMain": "https://hackaday.io/", - "url": "https://hackaday.io/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Hackenproof": { - "tags": [ - "in", - "ua" - ], - "checkType": "message", - "presenseStrs": [ - "Stats" - ], - "absenceStrs": [ - "Top hackers of" - ], - "alexaRank": 662911, - "urlMain": "https://hackenproof.com/arbin", - "url": "https://hackenproof.com/{username}", - "usernameClaimed": "arbin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "HackerNews": { - "tags": [ - "news", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "No such user" - ], - "alexaRank": 7111, - "urlMain": "https://news.ycombinator.com/", - "url": "https://news.ycombinator.com/user?id={username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "HackerOne": { - "tags": [ - "hacking", - "in" - ], - "checkType": "message", - "absenceStrs": [ - "Page not found" - ], - "alexaRank": 9786, - "urlMain": "https://hackerone.com/", - "url": "https://hackerone.com/{username}", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "HackeralexaRank": { - "disabled": true, - "checkType": "message", - "absenceStrs": [ - "Something went wrong" - ], - "urlMain": "https://hackeralexaRank.com/", - "url": "https://hackeralexaRank.com/{username}", - "usernameClaimed": "satznova", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hackerearth": { - "tags": [ - "freelance" - ], - "checkType": "message", - "alexaRank": 7807, - "absenceStrs": [ - "404. URL not found." - ], - "presenseStrs": [ - "Points" - ], - "urlMain": "https://www.hackerearth.com", - "url": "https://www.hackerearth.com/@{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hackerrank": { - "checkType": "message", - "presenseStrs": [ - "profile-username-heading" - ], - "absenceStrs": [ - "We could not find the page you were looking for, so we found something to make you laugh to make up for it." - ], - "regexCheck": "^[^\\.]+$", - "url": "https://hackerrank.com/{username}", - "usernameClaimed": "uheara_konen", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "HackingWithSwift": { - "tags": [ - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "Users - Hacking with Swift" - ], - "alexaRank": 25433, - "urlMain": "https://www.hackingwithswift.com", - "url": "https://www.hackingwithswift.com/users/{username}", - "usernameClaimed": "davextreme", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hackthissite": { - "tags": [ - "hacking" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "Cannot Retrieve Information For The Specified Username" - ], - "alexaRank": 77182, - "urlMain": "https://www.hackthissite.org", - "url": "https://www.hackthissite.org/user/view/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hairmaniac": { - "tags": [ - "medicine", - "ru" - ], - "checkType": "status_code", - "alexaRank": 410477, - "urlMain": "https://www.hairmaniac.ru/", - "url": "https://www.hairmaniac.ru/profile/{username}/", - "usernameClaimed": "irina", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Handgunforum": { - "disabled": true, - "tags": [ - "ca", - "forum" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found. Please enter a member's entire name." - ], - "alexaRank": 1293514, - "urlMain": "https://www.handgunforum.net", - "url": "https://www.handgunforum.net/xf/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hardforum": { - "tags": [ - "forum", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 43068, - "urlMain": "https://hardforum.com", - "url": "https://hardforum.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hctorpedo": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 223884, - "urlMain": "http://hctorpedo.ru", - "url": "http://hctorpedo.ru/user/{username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hellboundhackers": { - "tags": [ - "in" - ], - "checkType": "response_url", - "alexaRank": 234900, - "urlMain": "https://www.hellboundhackers.org", - "url": "https://www.hellboundhackers.org/user/{username}.html", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hexrpg": { - "checkType": "message", - "presenseStrs": [ - "Real Name" - ], - "absenceStrs": [ - "Error : User " - ], - "url": "https://www.hexrpg.com/userinfo/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hipforums": { - "tags": [ - "forum", - "in", - "ru", - "us" - ], - "disabled": true, - "engine": "XenForo", - "alexaRank": 389296, - "urlMain": "https://www.hipforums.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hitmanforum": { - "tags": [ - "forum", - "rs", - "us" - ], - "engine": "Discourse", - "alexaRank": 650297, - "urlMain": "https://www.hitmanforum.com", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hockeyforum": { - "disabled": true, - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 3554704, - "urlMain": "https://www.hockeyforum.com", - "url": "https://www.hockeyforum.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis777", - "tags": [ - "forum", - "sport" - ] - }, - "Holiday.ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0410\u043d\u043a\u0435\u0442\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u0430, \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430" - ], - "urlMain": "https://www.holiday.ru", - "url": "https://www.holiday.ru/ru/{username}", - "usernameClaimed": "marina", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 7663548 - }, - "Hometheaterforum": { - "tags": [ - "forum", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 203539, - "urlMain": "https://www.hometheaterforum.com", - "url": "https://www.hometheaterforum.com/community/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Honda": { - "tags": [ - "ru", - "ua" - ], - "checkType": "status_code", - "alexaRank": 1598732, - "urlMain": "https://honda.org.ua", - "url": "https://honda.org.ua/forum/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hoobly": { - "disabled": true, - "tags": [ - "classified", - "in" - ], - "checkType": "status_code", - "alexaRank": 25774, - "urlMain": "https://www.hoobly.com", - "url": "https://www.hoobly.com/u/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hotcopper": { - "tags": [ - "finance" - ], - "checkType": "message", - "absenceStrs": [ - "error-page", - "error-page home container", - "card-footer-item", - ">
" - ], - "alexaRank": 4912, - "urlMain": "https://www.ifttt.com/", - "url": "https://www.ifttt.com/p/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Inkbunny": { - "checkType": "message", - "presenseStrs": [ - "Profile | Inkbunny, the Furry Art Community" - ], - "absenceStrs": [ - "Members | Inkbunny, the Furry Art Community" - ], - "url": "https://inkbunny.net/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ipolska.pl": { - "checkType": "message", - "presenseStrs": [ - "@ipolska.pl" - ], - "absenceStrs": [ - "The page you are looking for isn't here." - ], - "url": "https://ipolska.pl/@{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "IRC-Galleria": { - "tags": [ - "fi", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Ei hakutuloksia" - ], - "alexaRank": 118778, - "urlMain": "https://irc-galleria.net", - "url": "https://irc-galleria.net/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ITVDN Forum": { - "tags": [ - "forum", - "ru", - "ua" - ], - "engine": "Discourse", - "alexaRank": 144827, - "urlMain": "https://forum.itvdn.com", - "usernameClaimed": "pizzaro", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Icheckmovies": { - "tags": [ - "movies" - ], - "checkType": "status_code", - "alexaRank": 86080, - "urlMain": "https://www.icheckmovies.com/", - "url": "https://www.icheckmovies.com/profiles/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Icobench": { - "tags": [ - "in", - "kr", - "ru" - ], - "checkType": "response_url", - "alexaRank": 42461, - "urlMain": "https://icobench.com", - "url": "https://icobench.com/u/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ieoc": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 1096765, - "urlMain": "https://ieoc.com/", - "url": "https://ieoc.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Iknifecollector": { - "checkType": "response_url", - "alexaRank": 9284485, - "urlMain": "https://iknifecollector.com", - "url": "https://iknifecollector.com/profiles/profile/show?id={username}", - "usernameClaimed": "BryanW", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Illustrators": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 98573, - "urlMain": "https://illustrators.ru", - "url": "https://illustrators.ru/users/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ImageShack": { - "tags": [ - "photo", - "sharing" - ], - "checkType": "response_url", - "alexaRank": 9748, - "urlMain": "https://imageshack.com/", - "url": "https://imageshack.com/user/{username}", - "errorUrl": "https://imageshack.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ImgUp.cz": { - "errors": { - "Composer detected issues in your platform": "Site error" - }, - "checkType": "status_code", - "alexaRank": 2499762, - "urlMain": "https://imgup.cz/", - "url": "https://imgup.cz/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Imgur": { - "tags": [ - "photo" - ], - "urlProbe": "https://api.imgur.com/account/v1/accounts/{username}?client_id=546c25a59c58ad7&include=trophies%2Cmedallions", - "checkType": "status_code", - "alexaRank": 77, - "urlMain": "https://imgur.com", - "url": "https://imgur.com/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Indog": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 4380944, - "urlMain": "http://www.indog.ru/", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Influenster": { - "tags": [ - "us" - ], - "errors": { - "Attention Required! | Cloudflare": "Cloudflare security protection detected" - }, - "checkType": "message", - "absenceStrs": [ - "404 - Page not found" - ], - "alexaRank": 15753, - "urlMain": "https://www.influenster.com/", - "url": "https://www.influenster.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "InfosecInstitute": { - "disabled": true, - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 15970, - "urlMain": "https://community.infosecinstitute.com", - "url": "https://community.infosecinstitute.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Infourok": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 2683, - "urlMain": "https://infourok.ru", - "url": "https://infourok.ru/user/{username}", - "usernameClaimed": "artemeva-evgeniya-evgenevna", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Infrance": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 215449, - "urlMain": "https://www.infrance.su/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Infura": { - "tags": [ - "forum", - "kr", - "us" - ], - "engine": "Discourse", - "alexaRank": 40621, - "urlMain": "https://community.infura.io", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ingunowners": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "urlMain": "https://www.ingunowners.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 5872258 - }, - "Ingvarr": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 103551, - "urlMain": "http://ingvarr.net.ru/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Insanejournal": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "404 Not Found", - "is not currently registered" - ], - "alexaRank": 57161, - "urlMain": "insanejournal.com", - "url": "http://{username}.insanejournal.com/profile", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Instagram": { - "disabled": true, - "tags": [ - "photo" - ], - "errors": { - "Login \u2022 Instagram": "Login required" - }, - "checkType": "message", - "presenseStrs": [ - "
" - ], - "alexaRank": 32, - "urlMain": "https://www.instagram.com/", - "url": "https://www.instagram.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Instructables": { - "tags": [ - "hobby" - ], - "checkType": "message", - "absenceStrs": [ - "404: We're sorry, things break sometimes" - ], - "alexaRank": 1531, - "urlMain": "https://www.instructables.com/", - "url": "https://www.instructables.com/member/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Interfaith": { - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 3172198, - "urlMain": "https://www.interfaith.org", - "url": "https://www.interfaith.org/community/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "Invalidnost": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 506211, - "urlMain": "https://www.invalidnost.com", - "usernameClaimed": "astra71", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "IonicFramework": { - "checkType": "status_code", - "url": "https://forum.ionicframework.com/u/{username}", - "usernameClaimed": "theblue222", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Iphones.ru": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 14073, - "urlMain": "https://www.iphones.ru", - "url": "https://www.iphones.ru/iNotes/author/{username}?profile=1", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ispdn": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "errors": { - "The script encountered an error and will be aborted": "Site error" - }, - "alexaRank": 3405363, - "urlMain": "http://ispdn.ru", - "url": "http://ispdn.ru/forum/user/{username}/", - "usernameClaimed": "AlexG", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "IssueHunt": { - "tags": [ - "dz", - "finance", - "in", - "ir", - "tr", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The user does not exist." - ], - "presenceStrs": [ - "IssueHunt contributions in the past year" - ], - "alexaRank": 379149, - "urlMain": "https://issuehunt.io", - "url": "https://issuehunt.io/u/{username}", - "usernameClaimed": "admc", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Issuu": { - "urlProbe": "https://issuu.com/query?format=json&_=3210224608766&profileUsername={username}&action=issuu.user.get_anonymous", - "checkType": "message", - "presenseStrs": [ - "displayName" - ], - "absenceStrs": [ - "No such user" - ], - "alexaRank": 454, - "urlMain": "https://issuu.com/", - "url": "https://issuu.com/{username}", - "usernameClaimed": "jenny", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "business" - ] - }, - "Italia": { - "tags": [ - "it", - "ru", - "ua" - ], - "checkType": "status_code", - "alexaRank": 238714, - "urlMain": "http://italia-ru.com/", - "url": "http://italia-ru.com/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Itch.io": { - "tags": [ - "blog" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 1673, - "urlMain": "https://itch.io/", - "url": "https://{username}.itch.io/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Itforums": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 3291616, - "urlMain": "https://itforums.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Itfy": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 3103762, - "urlMain": "https://itfy.org", - "url": "https://itfy.org/members/?username={username}", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Jbzd": { - "checkType": "message", - "presenseStrs": [ - "Dzidy u\u017cytkownika" - ], - "absenceStrs": [ - "B\u0142\u0105d 404" - ], - "url": "https://jbzd.com.pl/uzytkownik/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Jeja.pl": { - "checkType": "message", - "presenseStrs": [ - "Profil u\u017cytkownika" - ], - "absenceStrs": [ - "Niepoprawny login" - ], - "url": "https://www.jeja.pl/user,{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Jellyfin Weblate": { - "checkType": "message", - "presenseStrs": [ - "user-page text-center" - ], - "absenceStrs": [ - "Page not found" - ], - "url": "https://translate.jellyfin.org/user/{username}/", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Jer.forum24.ru": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" - ], - "urlMain": "http://jer.forum24.ru", - "url": "http://jer.forum24.ru/?32-{username}", - "usernameClaimed": "aga", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Jetpunk": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "404 File Not Found" - ], - "alexaRank": 36980, - "urlMain": "https://www.jetpunk.com", - "url": "https://www.jetpunk.com/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Jigidi": { - "tags": [ - "hobby" - ], - "checkType": "status_code", - "alexaRank": 204505, - "urlMain": "https://www.jigidi.com/", - "url": "https://www.jigidi.com/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Jigsawplanet": { - "tags": [ - "fr", - "us" - ], - "checkType": "status_code", - "alexaRank": 4584, - "urlMain": "https://www.jigsawplanet.com", - "url": "https://www.jigsawplanet.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Jimdo": { - "tags": [ - "jp" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 19348, - "urlMain": "https://jimdosite.com/", - "url": "https://{username}.jimdosite.com", - "usernameClaimed": "jenny", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Joby": { - "tags": [ - "freelance", - "ru" - ], - "disabled": true, - "checkType": "message", - "absenceStrs": [ - "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430" - ], - "alexaRank": 5916275, - "urlMain": "https://joby.su", - "url": "https://joby.su/{username}/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Joemonster": { - "checkType": "message", - "presenseStrs": [ - "Aktywno\u015b\u0107 bojownicza" - ], - "absenceStrs": [ - "Nie wiem jak ci to powiedzie\u0107" - ], - "url": "https://joemonster.org/bojownik/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Joomlart": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "user-scalable=no" - ], - "alexaRank": 32848, - "urlMain": "https://www.joomlart.com", - "url": "https://www.joomlart.com/user/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "JoplinApp": { - "checkType": "status_code", - "url": "https://discourse.joplinapp.org/u/{username}", - "usernameClaimed": "laurent", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Justforfans": { - "checkType": "message", - "presenseStrs": [ - "@ JustFor.Fans" - ], - "absenceStrs": [ - "Show Me:" - ], - "url": "https://justfor.fans/{username}", - "usernameClaimed": "devinfrancoxxx", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Justlanded": { - "tags": [ - "in" - ], - "checkType": "status_code", - "alexaRank": 9626, - "urlMain": "https://community.justlanded.com", - "url": "https://community.justlanded.com/en/profile/{username}", - "usernameClaimed": "rahul-vaidya", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Juventuz": { - "tags": [ - "forum", - "sg", - "us" - ], - "engine": "XenForo", - "alexaRank": 1134190, - "urlMain": "https://www.juventuz.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kaggle": { - "tags": [ - "tech" - ], - "checkType": "status_code", - "alexaRank": 1947, - "urlMain": "https://www.kaggle.com/", - "url": "https://www.kaggle.com/{username}", - "usernameClaimed": "dansbecker", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kali community": { - "disabled": true, - "tags": [ - "forum", - "in" - ], - "errors": { - "You are not logged in or you do not have permission to access this page.": "Auth required" - }, - "engine": "vBulletin", - "alexaRank": 9210, - "urlMain": "https://forums.kali.org/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "KanoWorld": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 267755, - "urlMain": "https://world.kano.me/", - "url": "https://api.kano.me/progress/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Karab.in": { - "checkType": "message", - "presenseStrs": [ - "Do\u0142\u0105czy\u0142:" - ], - "absenceStrs": [ - "B\u0142\u0105d 404" - ], - "url": "https://karab.in/u/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kashalot": { - "tags": [ - "ua" - ], - "checkType": "status_code", - "alexaRank": 173233, - "urlMain": "https://kashalot.com", - "url": "https://kashalot.com/users/{username}/", - "usernameClaimed": "incognito", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kaskus": { - "tags": [ - "id" - ], - "checkType": "status_code", - "alexaRank": 1334, - "urlMain": "https://www.kaskus.co.id", - "url": "https://www.kaskus.co.id/@{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Keakr": { - "disabled": true, - "checkType": "status_code", - "url": "https://www.keakr.com/en/profile/{username}", - "usernameClaimed": "beats", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "BeatStars": { - "checkType": "message", - "url": "https://www.beatstars.com/{username}", - "presenseStrs": [ - "Stats" - ], - "absenceStrs": [ - "Page not found" - ], - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kerch Forum": { - "disabled": true, - "tags": [ - "forum", - "ru", - "ua" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c \u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u043e\u0438\u0441\u043a\u0430." - ], - "alexaRank": 314531, - "urlMain": "http://forum.kerch.com.ru", - "url": "http://forum.kerch.com.ru/search/?q={username}", - "usernameClaimed": "Milla", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Keybase": { - "tags": [ - "business", - "us" - ], - "urlProbe": "https://keybase.io/_/api/1.0/user/lookup.json?usernames={username}", - "checkType": "message", - "absenceStrs": [ - "them\":[null]", - "bad list value" - ], - "alexaRank": 63440, - "urlMain": "https://keybase.io/", - "url": "https://keybase.io/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "KharkovForum": { - "disabled": true, - "tags": [ - "forum", - "ua" - ], - "engine": "vBulletin", - "alexaRank": 189589, - "urlMain": "https://www.kharkovforum.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kickstarter": { - "tags": [ - "finance", - "us" - ], - "checkType": "status_code", - "alexaRank": 609, - "urlMain": "https://www.kickstarter.com", - "url": "https://www.kickstarter.com/profile/{username}", - "usernameClaimed": "zhovner", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kik": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The page you requested was not found" - ], - "alexaRank": 599341, - "urlMain": "http://kik.me/", - "url": "https://ws2.kik.com/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kinja": { - "tags": [ - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 20637, - "urlMain": "https://kinja.com", - "url": "https://kinja.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kino-tv": { - "tags": [ - "forum", - "ru" - ], - "engine": "uCoz", - "alexaRank": 2478492, - "urlMain": "http://www.kino-tv-forum.ru", - "usernameClaimed": "emal", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kinogo": { - "tags": [ - "by", - "movies" - ], - "checkType": "status_code", - "alexaRank": 7547238, - "urlMain": "https://kinogo.by", - "url": "https://kinogo.by/user/{username}", - "usernameClaimed": "ridder2", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Kinooh": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "status_code", - "urlMain": "https://kinooh.ru", - "url": "https://kinooh.ru/user/{username}/", - "usernameClaimed": "zoll", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 460069 - }, - "Kladoiskatel": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 8329019, - "urlMain": "http://forum.kladoiskatel.ru", - "url": "http://forum.kladoiskatel.ru/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "Aleksey54", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "KnigiOnline": { - "tags": [ - "by", - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 1116768, - "urlMain": "https://forum.online-knigi.com", - "usernameClaimed": "brazilla", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Knowem": { - "tags": [ - "business" - ], - "checkType": "status_code", - "alexaRank": 34701, - "urlMain": "https://knowem.com/", - "url": "https://knowem.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kongregate": { - "tags": [ - "gaming", - "us" - ], - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "checkType": "message", - "absenceStrs": [ - "Sorry, no account with that name was found." - ], - "alexaRank": 9707, - "urlMain": "https://www.kongregate.com/", - "url": "https://www.kongregate.com/accounts/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kontrolkalemi": { - "tags": [ - "tr" - ], - "checkType": "message", - "absenceStrs": [ - "Belirtilen \u00fcye bulunamad\u0131. L\u00fctfen bir \u00fcyenin tam ad\u0131n\u0131 giriniz." - ], - "alexaRank": 90035, - "urlMain": "https://www.kontrolkalemi.com", - "url": "https://www.kontrolkalemi.com/forum/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kosmetista": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "profile-content" - ], - "absenceStrs": [ - "\u0423\u043f\u0441! \u0412\u043e\u0442 \u044d\u0442\u043e \u043f\u043e\u0432\u043e\u0440\u043e\u0442!" - ], - "alexaRank": 48630, - "urlMain": "https://kosmetista.ru", - "url": "https://kosmetista.ru/profile/{username}/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kotburger": { - "checkType": "message", - "presenseStrs": [ - "Zamieszcza kotburgery od:" - ], - "absenceStrs": [ - "Nie znaleziono u\u017cytkownika o podanym loginie." - ], - "url": "https://kotburger.pl/user/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kriptom": { - "tags": [ - "tr" - ], - "checkType": "message", - "presenseStrs": [ - "Kay\u0131t tarihi" - ], - "absenceStrs": [ - "Kullan\u0131c\u0131 Detay\u0131 - Kriptom" - ], - "alexaRank": 43087, - "urlMain": "https://www.kriptom.com", - "url": "https://www.kriptom.com/user/{username}/", - "usernameClaimed": "firatimo", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "KristallovNet": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 3893024, - "urlMain": "https://forum.kristallov.net", - "usernameClaimed": "golodny", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Krstarica": { - "tags": [ - "at", - "forum" - ], - "checkType": "message", - "absenceStrs": [ - "Tra\u017eeni \u010dlan nije prona\u0111en. Molimo unesite puno ime \u010dlana i poku\u0161ajte ponovo." - ], - "alexaRank": 15233, - "urlMain": "https://forum.krstarica.com", - "url": "https://forum.krstarica.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "KubanForum24": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" - ], - "alexaRank": 2328868, - "urlMain": "https://kuban.forum24.ru/", - "url": "https://kuban.forum24.ru/?32-{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kuharka": { - "tags": [ - "ru" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 206615, - "urlMain": "https://www.kuharka.ru/", - "url": "https://www.kuharka.ru/members/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Kwejk": { - "tags": [ - "pl" - ], - "checkType": "status_code", - "alexaRank": 9254, - "urlMain": "https://kwejk.pl", - "url": "https://kwejk.pl/uzytkownik/{username}#/tablica/", - "usernameClaimed": "ralia", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "LOR": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 39114, - "urlMain": "https://linux.org.ru/", - "url": "https://www.linux.org.ru/people/{username}/profile", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ladies": { - "tags": [ - "forum", - "ua" - ], - "engine": "phpBB", - "alexaRank": 519026, - "urlMain": "http://ladies.zp.ua", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Launchpad": { - "tags": [ - "tech", - "us" - ], - "checkType": "status_code", - "alexaRank": 16968, - "urlMain": "https://launchpad.net/", - "url": "https://launchpad.net/~{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "LeetCode": { - "tags": [ - "coding" - ], - "disabled": true, - "checkType": "status_code", - "alexaRank": 1859, - "urlMain": "https://leetcode.com/", - "url": "https://leetcode.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lenov": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 83646, - "urlMain": "https://lenov.ru", - "url": "https://lenov.ru/user/{username}/", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lesswrong": { - "checkType": "status_code", - "url": "https://www.lesswrong.com/users/@{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Letsbeef": { - "tags": [ - "us", - "vi" - ], - "checkType": "message", - "absenceStrs": [ - "This user has not registered and therefore does not have a profile to view." - ], - "alexaRank": 8418390, - "urlMain": "https://www.letsbeef.com", - "url": "https://www.letsbeef.com/forums/member.php?&username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Letschatlove": { - "disabled": true, - "tags": [ - "in" - ], - "checkType": "message", - "absenceStrs": [ - "The user whose profile you are trying to view does not exist." - ], - "alexaRank": 1054898, - "urlMain": "https://letschatlove.com", - "url": "https://letschatlove.com/profile/{username}/", - "usernameClaimed": "Fusion", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Letterboxd": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Sorry, we can\u2019t find the page you\u2019ve requested." - ], - "alexaRank": 3822, - "urlMain": "https://letterboxd.com/", - "url": "https://letterboxd.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "LibReviews": { - "checkType": "status_code", - "urlMain": "https://lib.reviews", - "url": "https://lib.reviews/user/{username}", - "usernameClaimed": "pat", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Liberapay": { - "tags": [ - "eg", - "finance", - "in", - "pk", - "us", - "za" - ], - "checkType": "message", - "absenceStrs": [ - "The requested page could not be found" - ], - "alexaRank": 195293, - "urlMain": "https://liberapay.com", - "url": "https://liberapay.com/{username}", - "usernameClaimed": "geekyretronerds", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Libraries": { - "tags": [ - "coding", - "in" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 68610, - "urlMain": "https://libraries.io", - "url": "https://libraries.io/github/{username}/", - "source": "GitHub", - "usernameClaimed": "snooppr", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "LibraryThing": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "

Error: This user doesn't exist

" - ], - "alexaRank": 25927, - "urlMain": "https://www.librarything.com/", - "url": "https://www.librarything.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Librusec": { - "tags": [ - "br", - "ru", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "/a/300686", - "/a/280282" - ], - "alexaRank": 68771, - "urlMain": "https://lib.rus.ec", - "url": "https://lib.rus.ec/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lichess": { - "checkType": "message", - "absenceStrs": [ - "page-small box box-pad page", - ">

No such player

This username doesn", - "})()", - "IR0Cf7qpkpcOhvI9r03a0QbI" - ], - "alexaRank": 2374, - "urlMain": "https://lichess.org", - "url": "https://lichess.org/@/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "efxvyhnwrh", - "tags": [ - "gaming", - "hobby" - ], - "presenseStrs": [ - "us_profile", - "og:title", - "profile-side", - " data-username=", - "og:site_name" - ] - }, - "Liebe69": { - "tags": [ - "de" - ], - "checkType": "response_url", - "urlMain": "https://www.liebe69.de", - "url": "https://www.liebe69.de/profile-preview.php?username={username}", - "usernameClaimed": "klaus", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Life-dom2": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "" - ], - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d." - ], - "alexaRank": 513568, - "urlMain": "https://life-dom2.su", - "url": "https://life-dom2.su/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lightstalking": { - "tags": [ - "forum", - "photo" - ], - "checkType": "status_code", - "alexaRank": 501303, - "urlMain": "https://lightstalking.us/", - "url": "https://lightstalking.us/members/{username}", - "usernameClaimed": "kent", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Likee": { - "tags": [ - "video" - ], - "checkType": "message", - "absenceStrs": [ - "https://likee.video/@/" - ], - "presenseStrs": [ - "user_name" - ], - "alexaRank": 38032, - "url": "https://likee.video/@{username}", - "urlMain": "https://likee.video", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "line.me": { - "checkType": "message", - "absenceStrs": [ - "404 Not Found" - ], - "presenseStrs": [ - "Add LINE Friends via QR Code" - ], - "url": "https://line.me/R/ti/p/@{username}?from=page", - "usernameClaimed": "yoasobi", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lingvolive": { - "disabled": true, - "tags": [ - "de", - "forum", - "it", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "Sorry, an error occurred while processing your request." - ], - "urlMain": "http://forum.lingvolive.com", - "url": "http://forum.lingvolive.com/profile/{username}/", - "usernameClaimed": "tom-wick", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 17645 - }, - "Linuxfr": { - "tags": [ - "fr", - "tech" - ], - "checkType": "status_code", - "alexaRank": 290886, - "urlMain": "https://linuxfr.org/", - "url": "https://linuxfr.org/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "LinuxMint": { - "tags": [ - "forum", - "ru" - ], - "alexaRank": 651304, - "urlMain": "https://www.linuxmint.com.ru", - "engine": "phpBB", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Listal": { - "tags": [ - "gb", - "in", - "us" - ], - "checkType": "response_url", - "urlMain": "https://listal.com/", - "url": "https://{username}.listal.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 27395 - }, - "Listed.to": { - "checkType": "message", - "presenseStrs": [ - "

L

" - ], - "absenceStrs": [ - "

Featured authors

" - ], - "url": "https://listed.to/@{username}", - "usernameClaimed": "listed", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Listography": { - "tags": [ - "in" - ], - "errors": { - "An error has occurred.": "Site error" - }, - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "No such user." - ], - "alexaRank": 64445, - "urlMain": "https://listography.com/adam", - "url": "https://listography.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "LiveInternet": { - "tags": [ - "ru" - ], - "errors": { - "\u041f\u0440\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u044d\u0442\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430.": "Site error" - }, - "checkType": "message", - "absenseStrs": [ - "xmlns=\"http://www.w3.org/1999/xhtml" - ], - "presenseStrs": [ - "!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN" - ], - "alexaRank": 1808, - "urlMain": "https://www.liveinternet.ru", - "url": "https://www.liveinternet.ru/users/{username}/profile", - "usernameClaimed": "marrietta", - "usernameUnclaimed": "noonewouldevereverusethis7" - }, - "LiveJournal": { - "tags": [ - "blog", - "ru" - ], - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "checkType": "status_code", - "alexaRank": 424, - "urlMain": "https://www.livejournal.com/", - "url": "https://{username}.livejournal.com", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "LiveLeak": { - "disabled": true, - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "channel not found" - ], - "alexaRank": 9373, - "urlMain": "https://www.liveleak.com/", - "url": "https://www.liveleak.com/c/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "LiveLib": { - "tags": [ - "books", - "reading", - "ru" - ], - "checkType": "status_code", - "alexaRank": 4524, - "urlMain": "https://www.livelib.ru/", - "url": "https://www.livelib.ru/reader/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "LiveTrack24": { - "checkType": "message", - "presenseStrs": [ - "profileinfodiv" - ], - "absenceStrs": [ - "not found" - ], - "alexaRank": 1325983, - "urlMain": "https://www.livetrack24.com", - "url": "https://www.livetrack24.com/user/{username}", - "usernameClaimed": "anna", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Liveexpert": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 40588, - "urlMain": "https://www.liveexpert.ru", - "url": "https://www.liveexpert.ru/e/{username}", - "usernameClaimed": "velegor1984", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Livejasmin": { - "tags": [ - "us", - "webcam" - ], - "urlProbe": "https://www.livejasmin.com/en/flash/get-performer-details/{username}", - "checkType": "message", - "absenceStrs": [ - ":[]" - ], - "alexaRank": 67, - "urlMain": "https://www.livejasmin.com/", - "url": "https://www.livejasmin.com/en/girls/#!chat/{username}", - "usernameClaimed": "Dolce", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Livemaster": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 2913, - "urlMain": "https://www.livemaster.ru", - "url": "https://www.livemaster.ru/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "LiverpoolFC": { - "tags": [ - "forum", - "us", - "za" - ], - "checkType": "message", - "absenceStrs": [ - "This user has not registered and therefore does not have a profile to view." - ], - "alexaRank": 25572, - "urlMain": "https://forums.liverpoolfc.com", - "url": "https://forums.liverpoolfc.com/members/?username={username}", - "usernameClaimed": "jannno", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lkforum": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 805882, - "urlMain": "http://www.lkforum.ru/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lobsters": { - "tags": [ - "in", - "us", - "vn" - ], - "regexCheck": "[A-Za-z0-9][A-Za-z0-9_-]{0,24}", - "checkType": "status_code", - "alexaRank": 252854, - "urlMain": "https://lobste.rs/", - "url": "https://lobste.rs/u/{username}", - "usernameClaimed": "jcs", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lolchess": { - "disabled": true, - "tags": [ - "kr" - ], - "headers": { - "accept-language": "en-US,en;q=0.9,es;q=0.8" - }, - "checkType": "message", - "absenceStrs": [ - "No search results" - ], - "presenseStrs": [ - "results were displayed out of" - ], - "alexaRank": 4911, - "urlMain": "https://lolchess.gg/", - "url": "https://lolchess.gg/profile/na/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "LonelyPlanet": { - "disabled": true, - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 6261, - "urlMain": "https://www.lonelyplanet.com", - "url": "https://www.lonelyplanet.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lookbook": { - "tags": [ - "in" - ], - "regexCheck": "^[^.]{1,}$", - "checkType": "message", - "absenceStrs": [ - "No Looks", - "404 error" - ], - "alexaRank": 26997, - "urlMain": "https://lookbook.nu/", - "url": "https://lookbook.nu/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lori": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 347374, - "urlMain": "https://lori.ru", - "url": "https://lori.ru/{username}", - "usernameClaimed": "Mishkova", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "LostFilmHD": { - "disabled": true, - "tags": [ - "es", - "movies", - "pl", - "ru" - ], - "engine": "uCoz", - "alexaRank": 9175, - "urlMain": "http://www.lostfilmhd.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lostark": { - "urlSubpath": "/forums", - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 49, - "urlMain": "https://la.mail.ru", - "usernameClaimed": "wizard", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lottiefiles": { - "checkType": "status_code", - "url": "https://lottiefiles.com/{username}", - "usernameClaimed": "lottiefiles", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Love.Mail.ru": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0417\u043d\u0430\u043a\u043e\u043c\u0441\u0442\u0432\u0430@Mail.Ru" - ], - "alexaRank": 49, - "urlMain": "https://love.mail.ru", - "url": "https://love.mail.ru/ru/{username}", - "usernameClaimed": "irina_627", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lovemakeup": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "urlMain": "https://lovemakeup.ru", - "url": "https://lovemakeup.ru/profile/{username}", - "usernameClaimed": "Tompob", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Loveplanet": { - "disabled": true, - "tags": [ - "dating", - "ru" - ], - "checkType": "message", - "errors": { - "has been temporarily blocked": "IP ban" - }, - "absenceStrs": [ - "\u0417\u0430\u043f\u0440\u043e\u0448\u0435\u043d\u043d\u0430\u044f \u0432\u0430\u043c\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430.", - "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0442", - "Information on selected user does not exist" - ], - "alexaRank": 8988, - "urlMain": "https://loveplanet.ru", - "url": "https://loveplanet.ru/page/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lowcygier.pl": { - "checkType": "message", - "presenseStrs": [ - "Zarejestrowany" - ], - "absenceStrs": [ - "B\u0142\u0105d 404 - Podana strona nie istnieje" - ], - "url": "https://bazar.lowcygier.pl/user/{username}", - "usernameClaimed": "janek", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lurkmore": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 46272, - "urlMain": "http://lurkmore.to", - "url": "http://lurkmore.to/%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{username}", - "usernameClaimed": "Finstergeist", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Lushstories": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 171158, - "urlMain": "https://www.lushstories.com", - "url": "https://www.lushstories.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mac-help": { - "tags": [ - "forum" - ], - "engine": "XenForo", - "alexaRank": 1112345, - "urlMain": "https://www.mac-help.com", - "usernameClaimed": "newsbot", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MacPlanete": { - "tags": [ - "forum", - "fr", - "ma" - ], - "engine": "XenForo", - "alexaRank": 1669310, - "urlMain": "https://forum.macplanete.com", - "usernameClaimed": "pascal971", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Maccentre": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "alexaRank": 1267370, - "urlMain": "https://maccentre.ru", - "url": "https://maccentre.ru/board/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Macosx": { - "tags": [ - "forum" - ], - "engine": "XenForo", - "alexaRank": 726222, - "urlMain": "https://macosx.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Macqa": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "status_code", - "urlMain": "https://macqa.ru", - "url": "https://macqa.ru/member/{username}/", - "usernameClaimed": "vika", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mactalk": { - "tags": [ - "au", - "in", - "pk" - ], - "checkType": "message", - "absenceStrs": [ - "MacTalk" - ], - "alexaRank": 5722044, - "urlMain": "http://www.mactalk.com.au/", - "url": "http://www.mactalk.com.au/member.php?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Maga-Chat": { - "checkType": "message", - "absenceStrs": [ - "Page Not Be Found" - ], - "presenseStrs": [ - "Recent Updates" - ], - "url": "https://maga-chat.com/{username}", - "usernameClaimed": "jfc_haaber_89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mag-portal": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 1797476, - "urlMain": "https://mag-portal.ru", - "url": "https://mag-portal.ru/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "solp", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Magabook": { - "checkType": "message", - "absenceStrs": [ - "Page Not Be Found" - ], - "presenseStrs": [ - "Recent Updates" - ], - "url": "https://magabook.com/{username}", - "usernameClaimed": "eric", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Magiimir": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "urlMain": "https://magiimir.com", - "url": "https://magiimir.com/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "olya", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 7006711 - }, - "Magix": { - "checkType": "message", - "absenceStrs": [ - "(404 - Page not found.)" - ], - "alexaRank": 168753, - "urlMain": "https://www.magix.info", - "url": "https://www.magix.info/us/users/profile/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MaidenFans": { - "tags": [ - "forum", - "in" - ], - "engine": "XenForo", - "alexaRank": 1118824, - "urlMain": "https://forum.maidenfans.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mama": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "presenseStrs": [ - "b-user-fullname" - ], - "alexaRank": 551160, - "urlMain": "https://mama.ru", - "url": "https://mama.ru/members/{username}", - "usernameClaimed": "irina", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mamochki": { - "tags": [ - "by", - "ru" - ], - "checkType": "status_code", - "urlMain": "https://mamochki.by/", - "url": "https://mamochki.by/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 4938389 - }, - "Mamot": { - "tags": [ - "mastodon" - ], - "checkType": "status_code", - "urlMain": "https://mamot.fr", - "url": "https://mamot.fr/@{username}", - "usernameClaimed": "pylapp", - "usernameUnclaimed": "noonewouldeverusethis42" - }, - "Mamuli": { - "tags": [ - "ru", - "ua" - ], - "checkType": "status_code", - "alexaRank": 1340670, - "urlMain": "https://mamuli.club/", - "url": "https://mamuli.club/profile/{username}", - "usernameClaimed": "Milypa", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Manutd": { - "tags": [ - "forum", - "sport" - ], - "checkType": "status_code", - "alexaRank": 31730, - "urlMain": "https://manutd.one", - "url": "https://manutd.one/user/{username}", - "usernameClaimed": "Becks", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mapify.travel": { - "checkType": "message", - "presenseStrs": [ - "class=\"control-center\"" - ], - "absenceStrs": [ - "Nothing found - Mapify" - ], - "url": "https://mapify.travel/{username}", - "usernameClaimed": "mapify", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mapillary Forum": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 524835, - "urlMain": "https://forum.mapillary.com", - "usernameClaimed": "slashme", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MapMyTracks": { - "checkType": "message", - "absenceStrs": [ - "Sorry, there is nothing to see here" - ], - "presenseStrs": [ - "Daily distance this week" - ], - "url": "https://www.mapmytracks.com/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Marshmallow": { - "checkType": "message", - "absenceStrs": [ - "\u3054\u6307\u5b9a\u306e\u30da\u30fc\u30b8\u306f\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f" - ], - "presenseStrs": [ - "\u3055\u3093\u306b\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u304a\u304f\u308b" - ], - "url": "https://marshmallow-qa.com/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Martech": { - "checkType": "message", - "absenceStrs": [ - "Page not found" - ], - "presenseStrs": [ - "twitter:site" - ], - "url": "https://martech.org/author/{username}/", - "usernameClaimed": "james-green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MassageAnywhere": { - "checkType": "message", - "absenceStrs": [ - "MassageAnywhere.com: Search Results" - ], - "presenseStrs": [ - "MassageAnywhere.com Profile for " - ], - "url": "https://www.massageanywhere.com/profile/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mastera-forum": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 3262221, - "urlMain": "https://www.mastera-forum.ru", - "usernameClaimed": "grunja", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Masterkrasok": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 402031, - "urlMain": "https://masterkrasok.ru", - "url": "https://masterkrasok.ru/{username}", - "usernameClaimed": "husnullin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mastersofcrypto": { - "tags": [ - "forum" - ], - "disabled": true, - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "urlMain": "https://mastersofcrypto.com", - "url": "https://mastersofcrypto.com/forum/members/?username={username}", - "usernameClaimed": "kintum", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 2838862 - }, - "Math10": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru", - "us" - ], - "engine": "phpBB", - "alexaRank": 76773, - "urlMain": "https://www.math10.com/", - "usernameClaimed": "phw", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mathhelpplanet": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 185231, - "urlMain": "http://mathhelpplanet.com", - "url": "http://mathhelpplanet.com/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Maxpark": { - "disabled": true, - "tags": [ - "news", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041e\u0428\u0418\u0411\u041a\u0410 50x", - "\u041e\u0428\u0418\u0411\u041a\u0410 404" - ], - "alexaRank": 66775, - "urlMain": "https://maxpark.com", - "url": "https://maxpark.com/user/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mbclub": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "<!-- j_requested_page_not_found -->" - ], - "alexaRank": 315579, - "urlMain": "https://www.mbclub.ru/", - "url": "https://mbclub.ru/members/{username}", - "usernameClaimed": "qruiser.308", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mcbans": { - "tags": [ - "us" - ], - "checkType": "response_url", - "presenseStrs": [ - "Issued Bans" - ], - "alexaRank": 2671714, - "urlMain": "https://www.mcbans.com", - "url": "https://www.mcbans.com/player/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mcuuid": { - "checkType": "message", - "absenceStrs": [ - "minecraft.api_failure" - ], - "presenseStrs": [ - "Successfully found player by given ID." - ], - "url": "https://playerdb.co/api/player/minecraft/{username}", - "usernameClaimed": "bob", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mdregion": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 344586, - "urlMain": "https://www.mdregion.ru/", - "usernameClaimed": "Nadka", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mdshooters": { - "disabled": true, - "tags": [ - "forum", - "us" - ], - "engine": "vBulletin", - "alexaRank": 296538, - "urlMain": "https://www.mdshooters.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mediarepost": { - "tags": [ - "ru" - ], - "disabled": true, - "checkType": "status_code", - "alexaRank": 3843048, - "urlMain": "https://mediarepost.ru", - "url": "https://mediarepost.ru/@{username}", - "usernameClaimed": "Solo_", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Medikforum": { - "disabled": true, - "tags": [ - "de", - "forum", - "nl", - "ru", - "ua" - ], - "errors": { - "\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u043f\u043e\u0438\u0441\u043a \u0441\u0440\u0430\u0437\u0443 \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0433\u043e": "Rate limit" - }, - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 103341, - "urlMain": "https://www.medikforum.ru", - "url": "https://www.medikforum.ru/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Medium": { - "tags": [ - "blog", - "us" - ], - "checkType": "message", - "presenseStrs": [ - "userPostCounts" - ], - "absenceStrs": [ - ":{\"__typename\":\"NotFound\"},\"viewer\"" - ], - "alexaRank": 66, - "urlMain": "https://medium.com/", - "url": "https://medium.com/@{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Medyczka.pl": { - "checkType": "message", - "absenceStrs": [ - "This user has not registered and therefore does not have a profile to view." - ], - "presenseStrs": [ - "Lista uzytkownikow" - ], - "url": "http://medyczka.pl/user/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Meendo": { - "tags": [ - "bg", - "kg", - "ru", - "ua" - ], - "checkType": "status_code", - "alexaRank": 432700, - "urlMain": "https://www.meendo.net", - "url": "https://www.meendo.net/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MeetMe": { - "tags": [ - "in", - "us" - ], - "errors": { - "fa fa-spinner fa-pulse loading-icon-lg": "Registration page" - }, - "checkType": "response_url", - "alexaRank": 41961, - "urlMain": "https://www.meetme.com/", - "url": "https://www.meetme.com/{username}", - "errorUrl": "https://www.meetme.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Megamodels.pl": { - "checkType": "message", - "absenceStrs": [ - "OSTATNIO AKTYWNE PROFILE" - ], - "presenseStrs": [ - "Portfolio" - ], - "url": "http://megamodels.pl/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Megane2": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f." - ], - "alexaRank": 788808, - "urlMain": "http://megane2.ru/", - "url": "http://megane2.ru/forum/members/?username={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Memrise": { - "tags": [ - "jp", - "us" - ], - "checkType": "response_url", - "alexaRank": 8823, - "urlMain": "https://www.memrise.com/", - "url": "https://www.memrise.com/user/{username}/", - "errorUrl": "https://www.memrise.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MetaDiscourse": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 27985, - "urlMain": "https://meta.discourse.org/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ProtonMail": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "Username already used" - ], - "absenceStrs": [ - "\"Code\": 1000" - ], - "headers": { - "X-Pm-Appversion": "web-account@4.28.2" - }, - "alexaRank": 27985, - "url": "https://account.protonmail.com/api/users/available?Name={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Metacafe": { - "disabled": true, - "tags": [ - "in", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Channel is temporarily not available" - ], - "alexaRank": 22904, - "urlMain": "https://www.metacafe.com/", - "url": "https://www.metacafe.com/channels/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Metal-archives": { - "tags": [ - "de", - "music", - "pl", - "us" - ], - "checkType": "message", - "presenseStrs": [ - "Points:" - ], - "absenceStrs": [ - "User not found" - ], - "alexaRank": 15612, - "urlMain": "https://www.metal-archives.com", - "url": "https://www.metal-archives.com/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Microchip": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 2924330, - "urlMain": "http://www.microchip.su", - "usernameClaimed": "nightavenger", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MicrosoftTechNet": { - "disabled": true, - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 21, - "urlMain": "https://social.technet.microsoft.com", - "url": "https://social.technet.microsoft.com/profile/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Minecraft-statistic": { - "tags": [ - "ru", - "ua", - "us" - ], - "checkType": "status_code", - "alexaRank": 660021, - "urlMain": "https://minecraft-statistic.net", - "url": "https://minecraft-statistic.net/ru/player/{username}.html", - "usernameClaimed": "Right", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Minecraftlist": { - "checkType": "message", - "absenceStrs": [ - "0 Minecraft servers recently" - ], - "presenseStrs": [ - "was seen on" - ], - "url": "https://minecraftlist.com/players/{username}", - "usernameClaimed": "dream", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MinecraftOnly": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "gaming", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 393218, - "urlMain": "https://minecraftonly.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Miped": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 67599, - "urlMain": "https://miped.ru", - "url": "https://miped.ru/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MirTesen": { - "similarSearch": true, - "tags": [ - "news", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e \u0412\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" - ], - "presenseStrs": [ - "<span>\u041b\u044e\u0434\u0438</span>" - ], - "alexaRank": 6409, - "urlMain": "https://mirtesen.ru", - "url": "https://mirtesen.ru/people/{username}/profile", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mistrzowie": { - "checkType": "message", - "absenceStrs": [ - "Nie znaleziono u\u017cytkownika o podanym loginie." - ], - "presenseStrs": [ - "Profil u\u017cytkownika" - ], - "url": "https://mistrzowie.org/user/{username}", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mix": { - "tags": [ - "in" - ], - "checkType": "response_url", - "alexaRank": 10257, - "urlMain": "https://mix.com", - "url": "https://mix.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MixCloud": { - "tags": [ - "music" - ], - "urlProbe": "https://api.mixcloud.com/{username}/", - "checkType": "status_code", - "alexaRank": 3270, - "urlMain": "https://www.mixcloud.com/", - "url": "https://www.mixcloud.com/{username}/", - "usernameClaimed": "jenny", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mixlr": { - "tags": [ - "gb" - ], - "checkType": "status_code", - "urlMain": "http:/mixlr.com/", - "url": "http://api.mixlr.com/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mixupload": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c" - ], - "alexaRank": 159856, - "urlMain": "https://mixupload.com/", - "url": "https://mixupload.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mobile-files": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru", - "us" - ], - "engine": "vBulletin", - "alexaRank": 130297, - "urlMain": "https://www.mobile-files.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mobrep": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "<div class=\"users\">\n <ul>\n </ul>" - ], - "alexaRank": 387120, - "urlMain": "https://www.mobrep.ru", - "url": "https://www.mobrep.ru/users?criteria={username}", - "usernameClaimed": "alextsaryev99", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mobypicture": { - "tags": [ - "photo" - ], - "checkType": "message", - "absenceStrs": [ - "User not found" - ], - "presenseStrs": [ - "Last mentioned in:" - ], - "alexaRank": 18618, - "urlMain": "http://www.mobypicture.com", - "url": "http://www.mobypicture.com/user/{username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ModDB": { - "tags": [ - "au", - "cn", - "gb", - "us" - ], - "checkType": "status_code", - "alexaRank": 6402, - "urlMain": "https://www.moddb.com/", - "url": "https://www.moddb.com/members/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Modx_pro": { - "tags": [ - "ru", - "uz" - ], - "checkType": "status_code", - "alexaRank": 249537, - "urlMain": "https://modx.pro", - "url": "https://modx.pro/users/{username}", - "usernameClaimed": "vgrish", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MoiKrug": { - "tags": [ - "career", - "us" - ], - "checkType": "status_code", - "alexaRank": 140879, - "urlMain": "https://moikrug.ru/", - "url": "https://moikrug.ru/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Money-talk": { - "tags": [ - "in", - "ua" - ], - "errors": { - "Could not connect to the database": "Site error", - "You have been banned from this forum.": "IP ban" - }, - "checkType": "message", - "absenceStrs": [ - ">Contact </span></td>" - ], - "alexaRank": 666935, - "urlMain": "http://www.money-talk.org", - "url": "http://www.money-talk.org/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "Gaia1956", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "MoneySavingExpert": { - "tags": [ - "forum", - "gb" - ], - "checkType": "status_code", - "alexaRank": 10821, - "urlMain": "https://forums.moneysavingexpert.com", - "url": "https://forums.moneysavingexpert.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Monkingme": { - "disabled": true, - "tags": [ - "es", - "in", - "ir" - ], - "checkType": "message", - "absenceStrs": [ - "<h1>Not Found</h1>" - ], - "alexaRank": 295109, - "urlMain": "https://www.monkingme.com/", - "url": "https://www.monkingme.com/artist/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MoscowFlamp": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u0440\u0435\u043a\u0440\u0430\u0441\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430, \u043a\u0430\u043a\u0438\u0445 \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0434\u0435\u043b\u0430\u044e\u0442" - ], - "alexaRank": 21348, - "urlMain": "https://moscow.flamp.ru/", - "url": "https://moscow.flamp.ru/{username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Motokiller": { - "checkType": "message", - "absenceStrs": [ - "Nie znaleziono u\u017cytkownika o podanym loginie." - ], - "presenseStrs": [ - "Zamieszcza materia\u0142y od:" - ], - "url": "https://mklr.pl/user/{username}", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Motorradfrage": { - "checkType": "status_code", - "url": "https://www.motorradfrage.net/nutzer/{username}", - "usernameClaimed": "gutefrage", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Motorka": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 339514, - "urlMain": "https://forum.motorka.org", - "usernameClaimed": "zavitay", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mouthshut": { - "tags": [ - "in" - ], - "checkType": "response_url", - "alexaRank": 9854, - "urlMain": "https://www.mouthshut.com/", - "url": "https://www.mouthshut.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Movescount": { - "tags": [ - "maps" - ], - "disabled": true, - "checkType": "message", - "absenceStrs": [ - "error=4&" - ], - "alexaRank": 141905, - "urlMain": "http://www.movescount.com", - "url": "http://www.movescount.com/en/members/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Movie-forum": { - "tags": [ - "forum", - "pk" - ], - "engine": "vBulletin", - "alexaRank": 1242615, - "urlMain": "https://movie-forum.co", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Movie-list": { - "urlSubpath": "/forum", - "tags": [ - "ca", - "forum", - "in", - "pk" - ], - "engine": "vBulletin", - "alexaRank": 670388, - "urlMain": "https://www.movie-list.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Movieforums": { - "tags": [ - "forum", - "in", - "la" - ], - "checkType": "message", - "absenceStrs": [ - "This user has not registered and therefore does not have a profile to view." - ], - "alexaRank": 198401, - "urlMain": "https://www.movieforums.com", - "url": "https://www.movieforums.com/community/member.php?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mozilla Support": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - ">Page Not Found</h1>", - "error-page", - "sumo-page-intro", - "search-results-visible page-not-found", - "search-empty" - ], - "alexaRank": 172, - "urlMain": "https://support.mozilla.org", - "url": "https://support.mozilla.org/en-US/user/{username}/", - "usernameClaimed": "derekmarable", - "usernameUnclaimed": "tasgcxxxcz", - "presenseStrs": [ - "user-nav", - "</article>", - "sidebar-nav", - "noindex", - "sidebar-nav--item" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36" - } - }, - "Mpgh": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "jp", - "us" - ], - "engine": "vBulletin", - "alexaRank": 39467, - "urlMain": "https://www.mpgh.net/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Msofficeforums": { - "tags": [ - "forum", - "ir", - "us" - ], - "engine": "vBulletin", - "alexaRank": 170905, - "urlMain": "https://www.msofficeforums.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MuffinGroup": { - "tags": [ - "forum", - "gaming" - ], - "checkType": "status_code", - "urlMain": "https://forum.muffingroup.com", - "url": "https://forum.muffingroup.com/betheme/profile/{username}", - "usernameClaimed": "charlie27", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 8613 - }, - "Munzee": { - "disabled": true, - "tags": [ - "gb" - ], - "checkType": "status_code", - "urlMain": "https://www.munzee.com/", - "url": "https://www.munzee.com/m/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 199809 - }, - "MurmanskLife": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "<span class=\"userName\"></span>", - "error404-404" - ], - "urlMain": "http://murmansk-life.ru", - "url": "http://murmansk-life.ru/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Music-rock": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "urlMain": "http://music-rock.ru/", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 7864999 - }, - "Musiker-board": { - "disabled": true, - "tags": [ - "de", - "forum" - ], - "engine": "XenForo", - "alexaRank": 171473, - "urlMain": "https://www.musiker-board.de", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "My-question": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 406064, - "urlMain": "https://my-question.ru", - "url": "https://my-question.ru/user/{username}", - "usernameClaimed": "nunny_zn", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "My.Mail.ru@OK": { - "tags": [ - "ru" - ], - "type": "ok_id", - "checkType": "message", - "presenceStrs": [ - "profile__content_header_user" - ], - "absenceStrs": [ - "mm-profile_not-found_content", - "<title>\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" - ], - "alexaRank": 49, - "urlMain": "https://my.mail.ru/", - "url": "https://my.mail.ru/ok/{username}", - "usernameClaimed": "524140807468", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "My.Mail.ru@VK": { - "tags": [ - "ru" - ], - "type": "vk_id", - "checkType": "message", - "presenceStrs": [ - "profile__content_header_user" - ], - "absenceStrs": [ - "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" - ], - "alexaRank": 49, - "urlMain": "https://my.mail.ru/", - "url": "https://my.mail.ru/vk/{username}", - "usernameClaimed": "337779600", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "My.Mail.ru@bk.ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenceStrs": [ - "profile__content_header_user" - ], - "absenceStrs": [ - "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" - ], - "alexaRank": 49, - "urlMain": "https://my.mail.ru/", - "url": "https://my.mail.ru/bk/{username}/", - "usernameClaimed": "tanyagorohova", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "My.Mail.ru@gmail.com": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenceStrs": [ - "profile__content_header_user" - ], - "absenceStrs": [ - "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" - ], - "alexaRank": 49, - "urlMain": "https://my.mail.ru/", - "url": "https://my.mail.ru/gmail.com/{username}/", - "usernameClaimed": "chelsea121232", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "My.Mail.ru@list.ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenceStrs": [ - "profile__content_header_user" - ], - "absenceStrs": [ - "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" - ], - "alexaRank": 49, - "urlMain": "https://my.mail.ru/", - "url": "https://my.mail.ru/list/{username}/", - "usernameClaimed": "nickname", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "My.Mail.ru@mail.ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenceStrs": [ - "profile__content_header_user" - ], - "absenceStrs": [ - "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" - ], - "alexaRank": 49, - "urlMain": "https://my.mail.ru/", - "url": "https://my.mail.ru/mail/{username}/", - "usernameClaimed": "nickname", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "My.Mail.ru@ya.ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenceStrs": [ - "profile__content_header_user" - ], - "absenceStrs": [ - "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" - ], - "alexaRank": 49, - "urlMain": "https://my.mail.ru/", - "url": "https://my.mail.ru/ya.ru/{username}/", - "usernameClaimed": "hovsepovich", - "usernameUnclaimed": "MAlKOVyd" - }, - "My.Mail.ru@yandex.ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenceStrs": [ - "profile__content_header_user" - ], - "absenceStrs": [ - "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" - ], - "alexaRank": 49, - "urlMain": "https://my.mail.ru/", - "url": "https://my.mail.ru/yandex.ru/{username}/", - "usernameClaimed": "proftek2015", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MyAnimeList": { - "tags": [ - "movies" - ], - "checkType": "status_code", - "alexaRank": 869, - "urlMain": "https://myanimelist.net/", - "url": "https://myanimelist.net/profile/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MyFitnessPal": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "meta name=\"robots\" content=\"index,follow\"/>" - ], - "url": "https://mym.fans/{username}", - "usernameClaimed": "Djelizamay", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "MyMiniFactory": { - "tags": [ - "gb", - "us" - ], - "checkType": "status_code", - "alexaRank": 17860, - "urlMain": "https://www.myminifactory.com/", - "url": "https://www.myminifactory.com/users/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mybuilder": { - "tags": [ - "gb", - "hk", - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 120038, - "urlMain": "https://www.mybuilder.com", - "url": "https://www.mybuilder.com/profile/view/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mydarling": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "status_code", - "urlMain": "http://mydarling.ru/", - "url": "http://mydarling.ru/page/{username}/frl-4", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 10282751 - }, - "Myjane": { - "tags": [ - "bg", - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - " - \u0416\u0435\u043d\u0441\u043a\u0438\u0435 \u0444\u043e\u0440\u0443\u043c\u044b myJane" - ], - "alexaRank": 101251, - "urlMain": "http://forum.myjane.ru/", - "url": "http://forum.myjane.ru/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mylespaul": { - "tags": [ - "cl", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 126443, - "urlMain": "https://www.mylespaul.com", - "url": "https://www.mylespaul.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "Mylot": { - "tags": [ - "fr", - "in", - "pl", - "us" - ], - "checkType": "status_code", - "alexaRank": 102219, - "urlMain": "https://www.mylot.com/", - "url": "https://www.mylot.com/{username}", - "usernameClaimed": "just4him", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mylove": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 499216, - "urlMain": "https://lovetalk.ru", - "url": "https://lovetalk.ru/{username}/#window_close", - "usernameClaimed": "lisa", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Myspace": { - "tags": [ - "blog" - ], - "checkType": "status_code", - "alexaRank": 1497, - "urlMain": "https://myspace.com/", - "url": "https://myspace.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Mywed": { - "tags": [ - "ru" - ], - "checkType": "response_url", - "alexaRank": 107111, - "urlMain": "https://mywed.com/ru", - "url": "https://mywed.com/ru/photographer/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "N4g": { - "tags": [ - "gaming", - "news", - "us" - ], - "checkType": "message", - "presenseStrs": [ - "Member" - ], - "absenceStrs": [ - "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable." - ], - "alexaRank": 12402, - "urlMain": "https://n4g.com/", - "url": "https://n4g.com/user/home/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Naturalnews": { - "checkType": "message", - "absenceStrs": [ - "The page you are looking for cannot be found or is no longer available." - ], - "presenseStrs": [ - "All posts by" - ], - "url": "https://naturalnews.com/author/{username}/", - "usernameClaimed": "healthranger", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "NICommunityForum": { - "tags": [ - "forum" - ], - "engine": "XenForo", - "urlMain": "https://www.native-instruments.com/forum/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis", - "alexaRank": 13739 - }, - "Ninjakiwi": { - "checkType": "message", - "absenceStrs": [ - "Ninja Kiwi - Free Online Games, Mobile Games & Tower Defense Games" - ], - "presenseStrs": [ - "Ninja Kiwi" - ], - "url": "https://ninjakiwi.com/profile/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "NN.RU": { - "tags": [ - "ru" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 21588, - "urlMain": "https://www.nn.ru/", - "url": "https://{username}.www.nn.ru/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "NPM": { - "tags": [ - "coding" - ], - "checkType": "status_code", - "alexaRank": 5944, - "urlMain": "https://www.npmjs.com/", - "url": "https://www.npmjs.com/~{username}", - "usernameClaimed": "kennethsweezy", - "usernameUnclaimed": "noonewould" - }, - "NPM-Package": { - "tags": [ - "coding" - ], - "checkType": "status_code", - "alexaRank": 5944, - "urlMain": "https://www.npmjs.com/", - "url": "https://www.npmjs.com/package/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Nairaland Forum": { - "tags": [ - "ng" - ], - "checkType": "message", - "presenseStrs": [ - "Time registered" - ], - "absenceStrs": [ - "404: Page Not Found." - ], - "alexaRank": 1060, - "urlMain": "https://www.nairaland.com/", - "url": "https://www.nairaland.com/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "NameMC": { - "tags": [ - "us" - ], - "regexCheck": "^.{3,16}$", - "checkType": "message", - "presenseStrs": [ - "Minecraft Profile" - ], - "absenceStrs": [ - "row align-items-center" - ], - "alexaRank": 11172, - "urlMain": "https://namemc.com/", - "url": "https://namemc.com/profile/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Namepros": { - "tags": [ - "forum", - "in", - "us" - ], - "engine": "XenForo", - "alexaRank": 10494, - "urlMain": "https://www.namepros.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "NationStates Nation": { - "tags": [ - "forum", - "gaming" - ], - "checkType": "message", - "absenceStrs": [ - "Was this your nation? It may have ceased to exist due to inactivity, but can rise again!" - ], - "alexaRank": 76848, - "urlMain": "https://nationstates.net", - "url": "https://nationstates.net/nation={username}", - "usernameClaimed": "the_holy_principality_of_saint_mark", - "usernameUnclaimed": "noonewould" - }, - "NationStates Region": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "does not exist." - ], - "alexaRank": 76848, - "urlMain": "https://nationstates.net", - "url": "https://nationstates.net/region={username}", - "usernameClaimed": "the_west_pacific", - "usernameUnclaimed": "noonewould" - }, - "NationalgunForum": { - "disabled": true, - "tags": [ - "ca", - "forum", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 939645, - "urlMain": "https://www.nationalgunforum.com", - "url": "https://www.nationalgunforum.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "Naturalworld": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 287413, - "urlMain": "https://naturalworld.guru", - "url": "https://naturalworld.guru/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "mrseo", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Naver": { - "tags": [ - "kr" - ], - "checkType": "status_code", - "alexaRank": 40, - "urlMain": "https://naver.com", - "url": "https://blog.naver.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewould" - }, - "Needrom": { - "checkType": "status_code", - "url": "https://www.needrom.com/author/{username}/", - "usernameClaimed": "needrom", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Nekto": { - "tags": [ - "pt", - "ru" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "response_url", - "alexaRank": 68127, - "urlMain": "https://nekto.me", - "url": "https://nekto.me/{username}/", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Neoseeker": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 15939, - "urlMain": "https://www.neoseeker.com", - "url": "https://www.neoseeker.com/members/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Nesiditsa": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 121651, - "urlMain": "https://nesiditsa.ru", - "url": "https://nesiditsa.ru/members/{username}/", - "usernameClaimed": "lara", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Netvibes": { - "tags": [ - "business", - "fr" - ], - "disabled": true, - "checkType": "status_code", - "alexaRank": 5730, - "headers": { - "User-Agent": "curl/7.64.1" - }, - "urlMain": "https://www.netvibes.com", - "url": "https://www.netvibes.com/{username}#General", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "NetworkInformatica": { - "tags": [ - "tech" - ], - "errors": { - "The site is undergoing planned maintenance activity and is unavailable temporarily.": "Maintenance" - }, - "checkType": "status_code", - "alexaRank": 25661, - "urlMain": "https://network.informatica.com", - "url": "https://network.informatica.com/people/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Newgrounds": { - "absenceStrs": [ - "icon-steam" - ], - "presenseStrs": [ - "user-header-name" - ], - "url": "https://{username}.newgrounds.com", - "urlMain": "https://newgrounds.com", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 5584, - "tags": [ - "art", - "forum", - "gaming" - ] - }, - "Newreporter": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 246874, - "urlMain": "https://newreporter.org", - "url": "https://newreporter.org/author/{username}/", - "usernameClaimed": "lilya", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Nhl": { - "tags": [ - "by", - "cn", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "alexaRank": 29704, - "urlMain": "https://nhl.ru", - "url": "https://nhl.ru/talks/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Nick-name.ru": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 286897, - "urlMain": "https://nick-name.ru/", - "url": "https://nick-name.ru/nickname/{username}/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Niketalk": { - "ignore403": true, - "tags": [ - "fashion", - "forum", - "sport", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 214717, - "urlMain": "https://niketalk.com", - "url": "https://niketalk.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Nixp": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 1754765, - "urlMain": "https://www.nixp.ru/", - "url": "https://www.nixp.ru/user/{username}", - "usernameClaimed": "fly4life", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Nkj": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 72346, - "urlMain": "https://www.nkj.ru/", - "url": "https://www.nkj.ru/forum/user/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "No-jus": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 9593539, - "urlMain": "https://no-jus.com", - "url": "https://no-jus.com/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "dronaz", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Noblogs": { - "tags": [ - "blog" - ], - "checkType": "status_code", - "presenseStrs": [ - "activity-personal-li" - ], - "alexaRank": 113696, - "urlMain": "https://noblogs.org/", - "url": "https://noblogs.org/members/{username}/", - "usernameClaimed": "ushi", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "NotebookReview": { - "tags": [ - "forum", - "in", - "us" - ], - "engine": "XenForo", - "alexaRank": 48788, - "urlMain": "http://forum.notebookreview.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Numizmat": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "urlMain": "https://numizmat-forum.ru", - "url": "https://numizmat-forum.ru/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "solo", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 7081718 - }, - "NuviGarmin": { - "disabled": true, - "tags": [ - "forum", - "ru", - "shopping" - ], - "checkType": "message", - "alexaRank": 8450923, - "urlMain": "https://nuvi.ru/", - "url": "https://nuvi.ru/forum/user/{username}/", - "usernameClaimed": "VitaliyK", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Nxp": { - "tags": [ - "be", - "in", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "No search results found." - ], - "alexaRank": 27704, - "urlMain": "https://community.nxp.com", - "url": "https://community.nxp.com/t5/forums/searchpage/tab/user?advanced=false&auto_complete=false&q={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Nyaa.si": { - "checkType": "message", - "absenceStrs": [ - "404 Not Found" - ], - "presenseStrs": [ - "'s torrents" - ], - "url": "https://nyaa.si/user/{username}", - "usernameClaimed": "kouhy76", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Nygunforum": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 1069970, - "urlMain": "https://nygunforum.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "OK": { - "tags": [ - "ru" - ], - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_.-]*$", - "checkType": "status_code", - "alexaRank": 57, - "urlMain": "https://ok.ru/", - "url": "https://ok.ru/{username}", - "usernameClaimed": "ok", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Office-forums": { - "tags": [ - "forum", - "in", - "us" - ], - "engine": "XenForo", - "alexaRank": 373573, - "urlMain": "https://www.office-forums.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Offline.by": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 5846394, - "urlMain": "https://offline.by", - "usernameClaimed": "violetta", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Oglaszamy24h": { - "checkType": "message", - "absenceStrs": [ - "Nieprawid\u0142owy link, w bazie danych nie istnieje u\u017cytkownik o podanym loginie" - ], - "presenseStrs": [ - "Profil u\u017cytkownika:" - ], - "url": "https://oglaszamy24h.pl/profil,{username}", - "usernameClaimed": "janek", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Oilcareer": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://www.oilcareer.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 2233070 - }, - "Old-games": { - "tags": [ - "pt", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 104566, - "urlMain": "https://www.old-games.ru", - "url": "https://www.old-games.ru/forum/members/?username={username}", - "usernameClaimed": "viktort", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Olx.pl": { - "checkType": "message", - "absenceStrs": [ - "Przepraszamy, ale nie mo\u017cemy znale\u017a\u0107 takiej strony...", - "Nie znaleziono" - ], - "presenseStrs": [ - "Obserwuj wyszukiwanie" - ], - "url": "https://www.olx.pl/oferty/uzytkownik/{username}/", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Omoimot": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 819273, - "urlMain": "https://omoimot.ru/", - "url": "https://omoimot.ru/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "OnanistovNet": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 160941, - "urlMain": "https://onanistov.net", - "url": "https://onanistov.net/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Oncoforum": { - "tags": [ - "forum", - "ru" - ], - "checkType": "response_url", - "alexaRank": 427409, - "urlMain": "https://www.oncoforum.ru", - "url": "https://www.oncoforum.ru/blog/blogs/{username}/", - "usernameClaimed": "admin13", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Opelclub": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 2894643, - "urlMain": "http://www.opelclub.ru", - "url": "http://www.opelclub.ru/forum/search.html?keywords=&terms=all&author={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "OpenCollective": { - "tags": [ - "in" - ], - "checkType": "message", - "absenceStrs": [ - "Not found" - ], - "presenseStrs": [ - "Hero__StyledShortDescription" - ], - "alexaRank": 33595, - "urlMain": "https://opencollective.com/", - "url": "https://opencollective.com/{username}", - "usernameClaimed": "sindresorhus", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "OpenStreetMap": { - "tags": [ - "maps" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 5487, - "urlMain": "https://www.openstreetmap.org/", - "url": "https://www.openstreetmap.org/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Oper": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041d\u0435\u0442 \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - ], - "alexaRank": 14170, - "urlMain": "https://www.oper.ru/", - "url": "https://www.oper.ru/visitors/info.php?t={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Oracle Community": { - "disabled": true, - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 464, - "urlMain": "https://community.oracle.com", - "url": "https://community.oracle.com/people/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Otechie": { - "tags": [ - "finance", - "us" - ], - "checkType": "message", - "presenseStrs": [ - "Start Conversation" - ], - "absenceStrs": [ - "Page not found!" - ], - "alexaRank": 1547027, - "urlMain": "https://otechie.com", - "url": "https://otechie.com/{username}", - "usernameClaimed": "neurobin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Otzovik": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 1785, - "urlMain": "https://otzovik.com/", - "url": "https://otzovik.com/profile/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Otzyvy": { - "tags": [ - "ru" - ], - "errors": { - "https://otzyvy.pro/captchacheck.php": "Site captcha" - }, - "checkType": "status_code", - "alexaRank": 90966, - "urlMain": "https://otzyvy.pro", - "url": "https://otzyvy.pro/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "OurDJTalk": { - "engine": "XenForo", - "alexaRank": 1684108, - "urlMain": "https://ourdjtalk.com/", - "usernameClaimed": "steve", - "usernameUnclaimed": "noonewouldeverusethis", - "tags": [ - "forum", - "music" - ] - }, - "Ourfreedombook": { - "checkType": "message", - "absenceStrs": [ - "Sorry, page not found" - ], - "presenseStrs": [ - "meta property=\"og:" - ], - "url": "https://www.ourfreedombook.com/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Outgress": { - "checkType": "message", - "absenceStrs": [ - "Outgress - Error" - ], - "url": "https://outgress.com/agents/{username}", - "urlMain": "https://outgress.com/", - "usernameClaimed": "pylapp", - "usernameUnclaimed": "noonewouldeverusethis42" - }, - "Overclockers": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 25200, - "urlMain": "https://overclockers.ru", - "url": "https://overclockers.ru/cpubase/user/{username}", - "usernameClaimed": "Rasamaha", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ow.ly": { - "checkType": "message", - "absenceStrs": [ - "Oops, an error occurred" - ], - "presenseStrs": [ - "Images" - ], - "url": "http://ow.ly/user/{username}", - "usernameClaimed": "StopAdMedia", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "P38forum": { - "urlSubpath": "/forums", - "engine": "vBulletin", - "urlMain": "http://p38forum.com", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 8436107 - }, - "PCGamer": { - "tags": [ - "gaming", - "news" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found. Please enter a member's entire name." - ], - "alexaRank": 1367, - "urlMain": "https://pcgamer.com", - "url": "https://forums.pcgamer.com/members/?username={username}", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PCPartPicker": { - "disabled": true, - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 4619, - "urlMain": "https://pcpartpicker.com", - "url": "https://pcpartpicker.com/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PRCY": { - "tags": [ - "ru" - ], - "disabled": true, - "checkType": "status_code", - "alexaRank": 21010, - "urlMain": "https://id.pr-cy.ru", - "url": "https://id.pr-cy.ru/user/profile/{username}/#/profile", - "usernameClaimed": "Elena", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PSNProfiles.com": { - "tags": [ - "gaming" - ], - "checkType": "response_url", - "alexaRank": 19795, - "urlMain": "https://psnprofiles.com/", - "url": "https://psnprofiles.com/{username}", - "errorUrl": "https://psnprofiles.com/?psnId={username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis", - "disabled": true - }, - "Packagist": { - "tags": [ - "in", - "jp" - ], - "checkType": "response_url", - "alexaRank": 10849, - "urlMain": "https://packagist.org/", - "url": "https://packagist.org/packages/{username}/", - "errorUrl": "https://packagist.org/search/?q={username}&reason=vendor_not_found", - "usernameClaimed": "psr", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PacketStormSecurity": { - "tags": [ - "in", - "tr", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Files: All Authors ≈ Packet Storm", - "No Results Found" - ], - "alexaRank": 84296, - "urlMain": "https://packetstormsecurity.com", - "url": "https://packetstormsecurity.com/files/authors/{username}/", - "usernameClaimed": "3nitro", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Painters-online": { - "tags": [ - "gb" - ], - "checkType": "status_code", - "alexaRank": 1800109, - "urlMain": "https://www.painters-online.co.uk", - "url": "https://www.painters-online.co.uk/artists/{username}/", - "usernameClaimed": "alanbickley", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Paltalk": { - "tags": [ - "sa", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "

Sorry, the profile you were looking for was not found

" - ], - "presenseStrs": [ - ">Member since" - ], - "alexaRank": 29905, - "urlMain": "https://www.paltalk.com", - "url": "https://www.paltalk.com/people/users/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pandia": { - "tags": [ - "news", - "ru" - ], - "checkType": "status_code", - "alexaRank": 7801, - "urlMain": "https://pandia.ru", - "url": "https://pandia.ru/user/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Parkrocker": { - "tags": [ - "de", - "forum" - ], - "engine": "XenForo", - "urlMain": "https://www.parkrocker.net", - "usernameClaimed": "diablo0106", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 5359908 - }, - "Partyflock": { - "tags": [ - "in", - "nl" - ], - "checkType": "status_code", - "alexaRank": 564516, - "urlMain": "https://partyflock.nl", - "url": "https://partyflock.nl/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Partyvibe": { - "disabled": true, - "tags": [ - "pk", - "us" - ], - "checkType": "status_code", - "alexaRank": 1234848, - "urlMain": "https://www.partyvibe.org", - "url": "https://www.partyvibe.org/members/{username}/", - "usernameClaimed": "p0ly", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pastebin": { - "tags": [ - "sharing" - ], - "checkType": "response_url", - "alexaRank": 2111, - "urlMain": "https://pastebin.com/", - "url": "https://pastebin.com/u/{username}", - "errorUrl": "https://pastebin.com/index", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pathofexile": { - "tags": [ - "ru", - "us" - ], - "checkType": "message", - "presenseStrs": [ - "profile-details" - ], - "absenceStrs": [ - "Path of Exile" - ], - "alexaRank": 2392, - "urlMain": "https://ru.pathofexile.com", - "url": "https://ru.pathofexile.com/account/view-profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PatientsLikeMe": { - "tags": [ - "medicine", - "us" - ], - "checkType": "response_url", - "alexaRank": 178551, - "urlMain": "https://www.patientslikeme.com", - "url": "https://www.patientslikeme.com/members/{username}", - "usernameClaimed": "fabu007", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Patreon": { - "tags": [ - "finance" - ], - "checkType": "status_code", - "alexaRank": 304, - "urlMain": "https://www.patreon.com/", - "url": "https://www.patreon.com/{username}", - "usernameClaimed": "annetlovart", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Patronite": { - "checkType": "message", - "absenceStrs": [ - "Nie znale\u017ali\u015bmy strony kt\u00f3rej szukasz." - ], - "presenseStrs": [ - "Zosta\u0144 Patronem" - ], - "url": "https://patronite.pl/{username}", - "usernameClaimed": "radio357", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Paypal": { - "tags": [ - "finance" - ], - "checkType": "message", - "absenceStrs": [ - "PayPal.Me" - ], - "alexaRank": 13325, - "urlMain": "https://pbase.com/", - "url": "https://pbase.com/{username}/profile", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pbnation": { - "ignore403": true, - "disabled": true, - "tags": [ - "ca", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "This user has not registered" - ], - "alexaRank": 110875, - "urlMain": "https://www.pbnation.com/", - "url": "https://www.pbnation.com/member.php?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pedsovet": { - "disabled": true, - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 7272, - "urlMain": "https://pedsovet.su/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PeopleAndCountries": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "alexaRank": 1258464, - "urlMain": "http://peopleandcountries.com", - "url": "http://peopleandcountries.com/space-username-{username}.html", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PeopleIgn": { - "tags": [ - "gaming", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "title>IGN Error 404 - Not Found" - ], - "alexaRank": 542, - "urlMain": "https://people.ign.com/", - "url": "https://people.ign.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pepper": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "title>\u041e\u0448\u0438\u0431\u043a\u0430!Perfect World" - ], - "alexaRank": 49, - "urlMain": "https://pw.mail.ru", - "url": "https://pw.mail.ru/member.php?username={username}", - "usernameClaimed": "Wedm", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PerfectWorldForum": { - "urlSubpath": "/forums", - "tags": [ - "forum", - "gaming", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 49, - "urlMain": "https://pw.mail.ru/", - "usernameClaimed": "wizard", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Periscope": { - "disabled": true, - "tags": [ - "streaming", - "us", - "video" - ], - "checkType": "status_code", - "alexaRank": 58873, - "urlMain": "https://www.periscope.tv/", - "url": "https://www.periscope.tv/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pesiq": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 256808, - "urlMain": "http://pesiq.ru/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pewex.pl": { - "checkType": "message", - "absenceStrs": [ - "Nie znaleziono u\u017cytkownika o podanym loginie." - ], - "presenseStrs": [ - "Zamieszcza eksponaty od:" - ], - "url": "https://retro.pewex.pl/user/{username}", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pgpru": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0447\u0442\u043e\u0431\u044b \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u043e\u0431\u0449\u0435\u043c\u0443 \u0441\u043f\u0438\u0441\u043a\u0443." - ], - "alexaRank": 4474323, - "urlMain": "http://www.pgpru.com/", - "url": "http://www.pgpru.com/proekt/poljzovateli?profile={username}", - "usernameClaimed": "Onix", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Photobucket": { - "disabled": true, - "tags": [ - "photo", - "us" - ], - "regexCheck": "\\w{4,32}", - "checkType": "message", - "requestHeadOnly": true, - "absenceStrs": [ - "Found. Redirecting" - ], - "alexaRank": 3012, - "urlMain": "https://photobucket.com/", - "url": "https://app.photobucket.com/u/{username}", - "usernameClaimed": "onlinecomicbookstore", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Phrack": { - "checkType": "status_code", - "alexaRank": 1076320, - "urlMain": "http://phrack.org", - "url": "http://phrack.org/author_{username}.html", - "usernameClaimed": "Dispater", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Physicsforums": { - "tags": [ - "forum", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 20840, - "urlMain": "https://www.physicsforums.com", - "url": "https://www.physicsforums.com/members/?username={username}", - "usernameClaimed": "zap", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Picsart": { - "tags": [ - "photo" - ], - "checkType": "status_code", - "alexaRank": 8904, - "urlMain": "https://picsart.com/", - "url": "https://picsart.com/u/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Picuki": { - "tags": [ - "photo" - ], - "checkType": "message", - "absenceStrs": [ - "Error 500", - "Error 404", - "Checking if the site connection is secure" - ], - "alexaRank": 2255, - "urlMain": "https://www.picuki.com/", - "url": "https://www.picuki.com/profile/{username}", - "source": "Instagram", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Piekielni": { - "checkType": "message", - "absenceStrs": [ - "Nie znaleziono u\u017cytkownika o podanym loginie." - ], - "presenseStrs": [ - "Zamieszcza historie od:" - ], - "url": "https://piekielni.pl/user/{username}", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pilguy": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 1587212, - "urlMain": "https://pilguy.com", - "usernameClaimed": "zaw", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pinboard": { - "tags": [ - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 35914, - "urlMain": "http://pinboard.in", - "url": "http://pinboard.in/u:{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pinkbike": { - "tags": [ - "hobby", - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 9499, - "urlMain": "https://www.pinkbike.com/", - "url": "https://www.pinkbike.com/u/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pinme": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 113042, - "urlMain": "https://www.pinme.ru", - "url": "https://www.pinme.ru/u/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pinterest": { - "tags": [ - "art", - "photo", - "sharing" - ], - "checkType": "message", - "alexaRank": 152, - "presenseStrs": [ - " followers", - " following", - " \u043f\u043e\u0434\u043f\u0438\u0441\u0447\u0438\u043a\u043e\u0432", - " \u043f\u043e\u0434\u043f\u0438\u0441\u043e\u043a" - ], - "absenceStrs": [ - "@undefined" - ], - "urlMain": "https://www.pinterest.com/", - "url": "https://www.pinterest.com/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Piratebuhta": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "urlMain": "https://piratebuhta.club", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis777", - "alexaRank": 12039551, - "disabled": true - }, - "Pitomec": { - "tags": [ - "ru", - "ua" - ], - "checkType": "status_code", - "alexaRank": 1239053, - "urlMain": "https://www.pitomec.ru", - "url": "https://www.pitomec.ru/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "pixelfed.social": { - "tags": [ - "art", - "pixelfed" - ], - "checkType": "status_code", - "usernameClaimed": "pylapp", - "usernameUnclaimed": "noonewouldeverusethis42", - "urlMain": "https://pixelfed.social/", - "url": "https://pixelfed.social/{username}/" - }, - "PlanetMinecraft": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Hmm, it seems that you've come across an invalid username", - "404 Not Found", - "Member Not Found" - ], - "presenseStrs": [ - "profile on Planet Minecraft to see their public Minecraft community activity" - ], - "alexaRank": 9050, - "urlMain": "https://www.planetminecraft.com", - "url": "https://www.planetminecraft.com/member/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Planetaexcel": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u043a\u043e\u0434 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f." - ], - "alexaRank": 49133, - "urlMain": "https://www.planetaexcel.ru", - "url": "https://www.planetaexcel.ru/forum/index.php?PAGE_NAME=profile_view&UID={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Play.md": { - "tags": [ - "md" - ], - "checkType": "response_url", - "alexaRank": 2213221, - "urlMain": "https://play.md", - "url": "https://play.md/profile/{username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Player": { - "tags": [ - "forum", - "ru", - "shopping" - ], - "engine": "vBulletin", - "alexaRank": 572441, - "urlMain": "http://player.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Playlists": { - "disabled": true, - "tags": [ - "in", - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "Sorry we can't find that page" - ], - "alexaRank": 195103, - "urlMain": "https://playlists.net", - "url": "https://playlists.net/members/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PlaystationTrophies": { - "tags": [ - "forum", - "gaming" - ], - "checkType": "status_code", - "alexaRank": 49632, - "urlMain": "https://www.playstationtrophies.org", - "url": "https://www.playstationtrophies.org/forum/members/{username}.html", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Pling": { - "tags": [ - "in" - ], - "checkType": "response_url", - "alexaRank": 67862, - "urlMain": "https://www.pling.com/", - "url": "https://www.pling.com/u/{username}/", - "errorUrl": "https://www.pling.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Plug.DJ": { - "disabled": true, - "tags": [ - "music" - ], - "checkType": "status_code", - "alexaRank": 3799094, - "urlMain": "https://plug.dj/", - "url": "https://plug.dj/@/{username}", - "usernameClaimed": "plug-dj-rock", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pluralsight": { - "tags": [ - "in", - "us" - ], - "checkType": "message", - "errors": { - "Unfortunately, Pluralsight's products are not available in your area at this time": "Site censorship" - }, - "absenceStrs": [ - "Not available | Profile", - "renderErrorPage(404)" - ], - "alexaRank": 4350, - "urlMain": "https://app.pluralsight.com", - "url": "https://app.pluralsight.com/profile/author/{username}", - "usernameClaimed": "adam-crahen", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Plurk": { - "tags": [ - "tw" - ], - "checkType": "message", - "absenceStrs": [ - "User Not Found!" - ], - "alexaRank": 1614, - "urlMain": "https://www.plurk.com/", - "url": "https://www.plurk.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Poembook": { - "similarSearch": true, - "tags": [ - "ru" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u043f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e! :(" - ], - "alexaRank": 78906, - "urlMain": "https://poembook.ru", - "url": "https://poembook.ru/any?query={username}", - "usernameClaimed": "DIKANNA", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pogovorim": { - "tags": [ - "by", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 384128, - "urlMain": "https://pogovorim.by", - "url": "https://pogovorim.by/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "nikola", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pokecommunity": { - "disabled": true, - "tags": [ - "de", - "forum", - "gb", - "us" - ], - "engine": "vBulletin", - "alexaRank": 50851, - "urlMain": "https://www.pokecommunity.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pokemon Showdown": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 6863, - "urlMain": "https://pokemonshowdown.com", - "url": "https://pokemonshowdown.com/users/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PokerStrategy": { - "disabled": true, - "tags": [ - "ru" - ], - "errors": { - "PokerStrategy.org not available in": "Country restrictions" - }, - "checkType": "message", - "absenceStrs": [ - "Sorry, the requested page couldn't be found!" - ], - "alexaRank": 1821643, - "urlMain": "http://www.pokerstrategy.net", - "url": "http://www.pokerstrategy.net/user/{username}/profile/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pol.social": { - "checkType": "message", - "absenceStrs": [ - "The page you are looking for isn't here." - ], - "presenseStrs": [ - "@pol.social" - ], - "url": "https://pol.social/@{username}", - "usernameClaimed": "ducensor", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Polczat.pl": { - "checkType": "message", - "absenceStrs": [ - "Wybrany u\u017cytkownik nie istnieje." - ], - "presenseStrs": [ - "Historia wpis\u00f3w" - ], - "url": "https://polczat.pl/forum/profile/{username}/", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Policja2009": { - "checkType": "message", - "absenceStrs": [ - "Informacja" - ], - "presenseStrs": [ - ">Wiadomo" - ], - "url": "http://www.policja2009.fora.pl/search.php?search_author={username}", - "usernameClaimed": "janek", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Politforums": { - "tags": [ - "forum", - "ru" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "\u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u0441\u0432\u044f\u0436\u0438\u0442\u0435\u0441\u044c \u0441 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u043e\u043c" - ], - "alexaRank": 207770, - "urlMain": "https://www.politforums.net/", - "url": "https://www.politforums.net/free/profile.php?showuser={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Politikforum": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 2125997, - "urlMain": "http://www.politikforum.ru/", - "usernameClaimed": "kostya", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Polleverywhere": { - "checkType": "message", - "absenceStrs": [ - "ResourceNotFound" - ], - "presenseStrs": [ - "name" - ], - "url": "https://pollev.com/proxy/api/users/{username}", - "usernameClaimed": "josh", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Polygon": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 1757, - "urlMain": "https://www.polygon.com/", - "url": "https://www.polygon.com/users/{username}", - "usernameClaimed": "swiftstickler", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Polymart": { - "checkType": "message", - "presenseStrs": [ - "Resources" - ], - "absenceStrs": [ - "Looks like we couldn't find this user. Sorry!" - ], - "url": "https://polymart.org/user/{username}", - "usernameClaimed": "craciu25yt", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pornhub": { - "tags": [ - "porn" - ], - "checkType": "message", - "presenseStrs": [ - "profileInformation" - ], - "absenceStrs": [ - "Error Page Not Found", - "cannot be found" - ], - "alexaRank": 74, - "urlMain": "https://pornhub.com/", - "url": "https://pornhub.com/users/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PornhubPornstars": { - "checkType": "message", - "absenceStrs": [ - "Error Page Not Found" - ], - "presenseStrs": [ - "Pornstar Rank" - ], - "url": "https://www.pornhub.com/pornstar/{username}", - "usernameClaimed": "riley-reid", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Portraitartistforum": { - "engine": "vBulletin", - "urlMain": "http://www.portraitartistforum.com", - "usernameClaimed": "Sam%20Savage", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 12143653 - }, - "Poshmark": { - "checkType": "message", - "absenceStrs": [ - "Page not found - Poshmark" - ], - "presenseStrs": [ - " is using Poshmark to sell items from their closet." - ], - "url": "https://poshmark.com/closet/{username}", - "usernameClaimed": "alice", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Postila": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 13320, - "urlMain": "https://postila.ru/", - "url": "https://postila.ru/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PalexaRankru": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "urlMain": "https://palexaRankru.net/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Pregame": { - "tags": [ - "in", - "us" - ], - "checkType": "response_url", - "alexaRank": 64033, - "urlMain": "https://pregame.com", - "url": "https://pregame.com/members/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Prizyvnik": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0417\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u043c\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "alexaRank": 438074, - "urlMain": "https://www.prizyvnik.info", - "url": "https://www.prizyvnik.info/members/?username={username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pro-cats": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 5414178, - "urlMain": "http://pro-cats.ru", - "usernameClaimed": "parrots", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Prodaman": { - "tags": [ - "ru" - ], - "checkType": "response_url", - "alexaRank": 103832, - "urlMain": "https://prodaman.ru", - "url": "https://prodaman.ru/{username}", - "usernameClaimed": "Natastraik", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ProductHunt": { - "tags": [ - "tech", - "us" - ], - "checkType": "message", - "presenseStrs": [ - ":{\"data\":{\"profile\":{\"__typename\"" - ], - "absenceStrs": [ - "We seem to have lost this page" - ], - "alexaRank": 10638, - "urlMain": "https://www.producthunt.com/", - "url": "https://www.producthunt.com/@{username}", - "usernameClaimed": "rajiv_ayyangar", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Professionali": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 41139, - "urlMain": "https://professionali.ru", - "url": "https://professionali.ru/~{username}", - "usernameClaimed": "mark", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ProfilesTigweb": { - "tags": [ - "ca", - "in", - "pk" - ], - "checkType": "status_code", - "alexaRank": 276522, - "urlMain": "https://profiles.tigweb.org", - "url": "https://profiles.tigweb.org/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Proglib": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 53386, - "urlMain": "https://proglib.io", - "url": "https://proglib.io/u/{username}/posts", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ProgrammersForum": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "urlMain": "https://www.programmersforum", - "usernameClaimed": "farts", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Prokoni": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 268598, - "urlMain": "https://www.prokoni.ru/", - "url": "https://www.prokoni.ru/forum/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PromoDJ": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 46993, - "urlMain": "http://promodj.com/", - "url": "http://promodj.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Proshkolu": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 29471, - "urlMain": "https://proshkolu.ru", - "url": "https://proshkolu.ru/user/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Prosvetlenie": { - "ignore403": true, - "tags": [ - "kg", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 2103040, - "urlMain": "http://www.prosvetlenie.org", - "url": "http://www.prosvetlenie.org/forum/members/?username={username}", - "usernameClaimed": "odin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Proza.ru": { - "tags": [ - "ru", - "writing" - ], - "checkType": "message", - "absenceStrs": [ - "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 9550, - "urlMain": "https://www.proza.ru/", - "url": "https://www.proza.ru/avtor/{username}", - "usernameClaimed": "gpola", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Prv.pl": { - "checkType": "message", - "absenceStrs": [ - "U\u017cytkownik nie istnieje." - ], - "presenseStrs": [ - "LOGIN" - ], - "url": "https://www.prv.pl/osoba/{username}", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Psychologies.ru": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 20568, - "urlMain": "http://www.psychologies.ru", - "url": "http://www.psychologies.ru/personal/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Psyera": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 61415, - "urlMain": "https://psyera.ru", - "url": "https://psyera.ru/user/{username}", - "usernameClaimed": "eskariot", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Publiclab": { - "tags": [ - "in", - "science" - ], - "checkType": "response_url", - "alexaRank": 64988, - "urlMain": "https://publiclab.org", - "url": "https://publiclab.org/profile/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PulmonaryHypertensionNews": { - "tags": [ - "in", - "us" - ], - "checkType": "status_code", - "presenseStrs": [ - "activity-personal-li" - ], - "alexaRank": 1616190, - "urlMain": "https://pulmonaryhypertensionnews.com", - "url": "https://pulmonaryhypertensionnews.com/forums/members/{username}/", - "usernameClaimed": "gwendolyn", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PushSquare": { - "tags": [ - "gaming", - "news", - "us" - ], - "checkType": "status_code", - "alexaRank": 21227, - "urlMain": "http://www.pushsquare.com", - "url": "http://www.pushsquare.com/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "PyPi": { - "tags": [ - "in", - "us" - ], - "errors": { - "Please enable JavaScript to proceed": "Scraping protection" - }, - "checkType": "status_code", - "alexaRank": 12591, - "urlMain": "https://pypi.org/", - "url": "https://pypi.org/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Pyha": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 3979608, - "urlMain": "https://pyha.ru/", - "url": "https://pyha.ru/users/{username}", - "usernameClaimed": "Sinkler", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "programming.dev": { - "tags": [ - "lemmy" - ], - "checkType": "message", - "absenceStrs": [ - "Error!" - ], - "url": "https://programming.dev/u/{username}", - "urlMain": "https://programming.dev", - "usernameClaimed": "pylapp", - "usernameUnclaimed": "noonewouldeverusethis42" - }, - "Qbn": { - "tags": [ - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 386366, - "urlMain": "https://www.qbn.com/", - "url": "https://www.qbn.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Quake-champions": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "urlMain": "https://quake-champions.pro", - "url": "https://quake-champions.pro/community/profile/{username}/", - "usernameClaimed": "bruner", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 445225 - }, - "Quartertothree": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 317623, - "urlMain": "https://forum.quartertothree.com", - "usernameClaimed": "rei", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Queer": { - "tags": [ - "pl" - ], - "checkType": "status_code", - "alexaRank": 6934378, - "urlMain": "https://queer.pl", - "url": "https://queer.pl/user/{username}", - "usernameClaimed": "dhoyosm", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "QuestionableQuesting": { - "disabled": true, - "tags": [ - "forum", - "gb", - "jp", - "us" - ], - "engine": "XenForo", - "alexaRank": 55731, - "urlMain": "https://forum.questionablequesting.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "Quibblo": { - "disabled": true, - "tags": [ - "in" - ], - "checkType": "response_url", - "alexaRank": 117232, - "urlMain": "https://www.quibblo.com/", - "url": "https://www.quibblo.com/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Quitter.pl": { - "checkType": "message", - "absenceStrs": [ - "Nie znaleziono" - ], - "presenseStrs": [ - "@quitter.pl" - ], - "url": "https://quitter.pl/profile/{username}", - "usernameClaimed": "divmod", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Quizlet": { - "checkType": "message", - "absenceStrs": [ - "Page Unavailable" - ], - "presenseStrs": [ - "| Quizlet" - ], - "url": "https://quizlet.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Quora": { - "tags": [ - "education" - ], - "checkType": "response_url", - "alexaRank": 347, - "urlMain": "https://www.quora.com/", - "url": "https://www.quora.com/profile/{username}", - "errorUrl": "https://www.quora.com/profile/{username}", - "usernameClaimed": "Matt-Riggsby", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Qwas": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 2983388, - "urlMain": "http://forum.qwas.ru", - "url": "http://forum.qwas.ru/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "disman3", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "RC-MIR": { - "tags": [ - "ru" - ], - "regexCheck": "^[a-zA-Z0-9-]+$", - "checkType": "message", - "presenseStrs": [ - "\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - ], - "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435" - ], - "alexaRank": 1403768, - "urlMain": "http://rcmir.com/", - "url": "http://{username}.rcmir.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "RPGGeek": { - "ignore403": true, - "tags": [ - "gaming", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "User does not exist" - ], - "alexaRank": 229543, - "urlMain": "https://rpggeek.com", - "url": "https://rpggeek.com/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "RPGRussia": { - "disabled": true, - "tags": [ - "forum", - "ru", - "us" - ], - "engine": "XenForo", - "alexaRank": 344379, - "urlMain": "https://rpgrussia.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "RRForums": { - "tags": [ - "au", - "forum" - ], - "checkType": "message", - "absenceStrs": [ - "Profile Does Not Exist" - ], - "alexaRank": 2801221, - "urlMain": "http://au.rrforums.net/", - "url": "http://au.rrforums.net/cgi-bin/forum/board-profile.pl?action=view_profile&profile={username}-users", - "usernameClaimed": "guyslp", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "RUDTP": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 154537, - "urlMain": "https://forum.rudtp.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Radio-uchebnik": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 409242, - "urlMain": "http://radio-uchebnik.ru", - "url": "http://radio-uchebnik.ru/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "sasha", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Radiokot": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e.", - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 78504, - "urlMain": "https://www.radiokot.ru", - "url": "https://www.radiokot.ru/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Radiomed": { - "tags": [ - "ru" - ], - "checkType": "response_url", - "alexaRank": 280960, - "urlMain": "https://radiomed.ru", - "url": "https://radiomed.ru/users/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Radioscanner": { - "tags": [ - "ru" - ], - "errors": { - "\u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043a\u0430\u0442\u044c \u043d\u0435 \u0447\u0430\u0449\u0435, \u0447\u0435\u043c \u0440\u0430\u0437 \u0432 10 \u0441\u0435\u043a\u0443\u043d\u0434": "Too many requests" - }, - "checkType": "message", - "absenceStrs": [ - "\u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e!" - ], - "alexaRank": 150570, - "urlMain": "http://www.radioscanner.ru", - "url": "http://www.radioscanner.ru/forum/index.php?posterName={username}&action=search&searchGo=1", - "usernameClaimed": "bob", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Raidforums": { - "disabled": true, - "checkType": "status_code", - "alexaRank": 20059, - "urlMain": "https://raidforums.com/", - "url": "https://raidforums.com/User-{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "cybercriminal", - "forum" - ] - }, - "Railfan": { - "tags": [ - "forum", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The user whose profile you are trying to view does not exist!" - ], - "alexaRank": 2741861, - "urlMain": "http://forums.railfan.net", - "url": "http://forums.railfan.net/forums.cgi?action=viewprofile;username={username}", - "usernameClaimed": "gpicyk", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rajce.net": { - "tags": [ - "cz" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 1974, - "urlMain": "https://www.rajce.idnes.cz/", - "url": "https://{username}.rajce.idnes.cz/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "RamblerDating": { - "disabled": true, - "tags": [ - "dating", - "ru" - ], - "checkType": "response_url", - "urlMain": "https://dating.rambler.ru/", - "url": "https://dating.rambler.ru/page/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 391 - }, - "Rammclan": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://www.rammclan.ru", - "usernameClaimed": "mathiassk", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ramta": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 3836863, - "urlMain": "http://ramta.0pk.ru", - "url": "http://ramta.0pk.ru/search.php?action=search&keywords=&author={username}", - "usernameClaimed": "zulus", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Rap-royalty": { - "urlSubpath": "/forum", - "disabled": true, - "tags": [ - "forum", - "music", - "us" - ], - "errors": { - "500 Error. Internal Server Error.": "Site error", - "Access Denied!": "Site error" - }, - "engine": "vBulletin", - "alexaRank": 7096327, - "urlMain": "http://www.rap-royalty.com", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rapforce": { - "tags": [ - "fr", - "ru" - ], - "engine": "uCoz", - "alexaRank": 118933, - "urlMain": "http://www.rapforce.net", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rappad": { - "tags": [ - "music" - ], - "checkType": "status_code", - "alexaRank": 66724, - "urlMain": "https://www.rappad.co", - "url": "https://www.rappad.co/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rasa": { - "tags": [ - "forum", - "in", - "us" - ], - "engine": "Discourse", - "alexaRank": 70980, - "urlMain": "https://forum.rasa.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rasslabyxa": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 7235127, - "urlMain": "http://www.rasslabyxa.ru", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rate Your Music": { - "tags": [ - "gb", - "us" - ], - "checkType": "status_code", - "alexaRank": 8696, - "urlMain": "https://rateyourmusic.com/", - "url": "https://rateyourmusic.com/~{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rcforum": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 195871, - "urlMain": "http://www.rcforum.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "RcloneForum": { - "checkType": "status_code", - "url": "https://forum.rclone.org/u/{username}", - "usernameClaimed": "ncw", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Realmeye": { - "tags": [ - "gaming" - ], - "regexCheck": "^[a-zA-Z]+$", - "checkType": "message", - "absenceStrs": [ - "Sorry, but we either:" - ], - "alexaRank": 63145, - "urlMain": "https://www.realmeye.com/", - "url": "https://www.realmeye.com/player/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Redbubble": { - "tags": [ - "shopping", - "us" - ], - "checkType": "status_code", - "alexaRank": 925, - "urlMain": "https://www.redbubble.com/", - "url": "https://www.redbubble.com/people/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "Redcafe": { - "tags": [ - "forum", - "gb", - "sg", - "us" - ], - "engine": "XenForo", - "alexaRank": 98399, - "urlMain": "https://www.redcafe.net", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Reddit": { - "tags": [ - "discussion", - "news" - ], - "checkType": "message", - "absenceStrs": [ - "Sorry, nobody on Reddit goes by that name." - ], - "presenseStrs": [ - "Post karma" - ], - "alexaRank": 19, - "urlMain": "https://www.reddit.com/", - "url": "https://www.reddit.com/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Redorchestra": { - "urlSubpath": "/forums", - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 6984586, - "urlMain": "http://www.redorchestra.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Redtube": { - "tags": [ - "porn", - "us" - ], - "checkType": "status_code", - "alexaRank": 1090, - "urlMain": "https://ru.redtube.com/", - "url": "https://ru.redtube.com/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Reibert": { - "tags": [ - "forum", - "ru", - "ua" - ], - "engine": "XenForo", - "alexaRank": 136697, - "urlMain": "https://reibert.info/", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Reincarnationforum": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 3388631, - "urlMain": "http://reincarnationforum.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Reisefrage": { - "checkType": "status_code", - "url": "https://www.reisefrage.net/nutzer/{username}", - "usernameClaimed": "reisefrage", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ReligiousForums": { - "tags": [ - "forum" - ], - "engine": "XenForo", - "alexaRank": 930728, - "urlMain": "https://www.religiousforums.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "RenaultFanClub": { - "disabled": true, - "tags": [ - "forum", - "tr" - ], - "engine": "vBulletin", - "alexaRank": 410980, - "urlMain": "http://www.renaultfanclub.com", - "usernameClaimed": "mashar", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Repl.it": { - "tags": [ - "coding", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "404" - ], - "alexaRank": 7808, - "urlMain": "https://repl.it/", - "url": "https://repl.it/@{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ResearchGate": { - "tags": [ - "in", - "us" - ], - "regexCheck": "\\w+_\\w+", - "checkType": "response_url", - "alexaRank": 143, - "urlMain": "https://www.researchgate.net/", - "url": "https://www.researchgate.net/profile/{username}", - "errorUrl": "https://www.researchgate.net/directory/profiles", - "usernameClaimed": "John_Smith", - "usernameUnclaimed": "noonewould_everusethis7" - }, - "ResidentAdvisor": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "You need to be logged in to view the profile" - ], - "absenceStrs": [ - "Forgot your password?" - ], - "alexaRank": 167880, - "urlMain": "https://www.residentadvisor.net", - "url": "https://www.residentadvisor.net/profile/{username}", - "usernameClaimed": "uncle_ohm", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Revelation": { - "urlSubpath": "/forums", - "tags": [ - "forum", - "gaming", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 49, - "urlMain": "https://rev.mail.ru", - "usernameClaimed": "wizard", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ReverbNation": { - "tags": [ - "us" - ], - "errors": { - "But your computer or network appears to be generating a lot of automated requests": "Too many requests" - }, - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "Sorry, we couldn't find that page" - ], - "alexaRank": 7637, - "urlMain": "https://www.reverbnation.com/", - "url": "https://www.reverbnation.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Riftgame": { - "tags": [ - "cr", - "forum", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "This user has not registered and therefore does not have a profile to view." - ], - "alexaRank": 117470, - "urlMain": "http://forums.riftgame.com", - "url": "http://forums.riftgame.com/members/{username}.html", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rigcz.club": { - "checkType": "message", - "absenceStrs": [ - "The page you are looking for isn't here." - ], - "presenseStrs": [ - "@rigcz.club" - ], - "url": "https://rigcz.club/@{username}", - "usernameClaimed": "blazej", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rlocman": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "urlMain": "https://www.rlocman.ru", - "usernameClaimed": "elnat", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 147676 - }, - "Rmmedia": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 123397, - "urlMain": "https://rmmedia.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rngf": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "urlMain": "http://www.rngf.ru/", - "url": "http://www.rngf.ru/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 7103394 - }, - "Ro-ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 445437, - "urlMain": "https://ro-ru.ru", - "url": "https://ro-ru.ru/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "set", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Roblox": { - "tags": [ - "gaming", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Page cannot be found or no longer exists" - ], - "alexaRank": 115, - "urlMain": "https://www.roblox.com/", - "url": "https://www.roblox.com/user.aspx?username={username}", - "usernameClaimed": "bluewolfekiller", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Roboforum": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 1401231, - "urlMain": "http://roboforum.ru", - "url": "http://roboforum.ru/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "sned", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rodgersforum": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" - ], - "alexaRank": 110740, - "urlMain": "https://rodgersforum.borda.ru", - "url": "https://rodgersforum.borda.ru/?32-{username}", - "usernameClaimed": "hata1979", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rollitup": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 59573, - "urlMain": "https://www.rollitup.org", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "RomanticCollection": { - "tags": [ - "ru" - ], - "errors": { - "\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u043f\u043e\u0438\u0441\u043a \u0441\u0440\u0430\u0437\u0443 \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0433\u043e": "Too many requests" - }, - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 72982, - "urlMain": "https://www.romanticcollection.ru", - "url": "https://www.romanticcollection.ru/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "Prim@", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Root-me": { - "tags": [ - "hacking", - "in", - "ir", - "pk", - "us" - ], - "errors": { - "429 Too Many Requests": "Too many requests" - }, - "checkType": "status_code", - "presenseStrs": [ - "Mes informations" - ], - "alexaRank": 236183, - "urlMain": "https://www.root-me.org", - "url": "https://www.root-me.org/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rottentomatoes": { - "tags": [ - "movies", - "us" - ], - "checkType": "status_code", - "alexaRank": 602, - "urlMain": "https://www.rottentomatoes.com", - "url": "https://www.rottentomatoes.com/critic/{username}/movies", - "usernameClaimed": "ben-allen", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rovlpj": { - "tags": [ - "forum", - "gaming", - "ru" - ], - "engine": "XenForo", - "alexaRank": 8416642, - "urlMain": "https://rovlpj.com", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "RoyalCams": { - "tags": [ - "gr", - "in", - "ng", - "ru", - "us", - "webcam" - ], - "checkType": "status_code", - "alexaRank": 134095, - "urlMain": "https://royalcams.com", - "url": "https://royalcams.com/profile/{username}", - "usernameClaimed": "asuna-black", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "Rpgwatch": { - "urlSubpath": "/forums", - "disabled": true, - "tags": [ - "ca", - "forum", - "in", - "ru", - "us" - ], - "engine": "vBulletin", - "alexaRank": 313871, - "urlMain": "https://www.rpgwatch.com", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ru-sfera": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "urlMain": "https://ru-sfera.org", - "url": "https://ru-sfera.org/members/?username={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ruby.dating": { - "checkType": "message", - "absenceStrs": [ - "We can\u2019t find that user" - ], - "presenseStrs": [ - "Looks for:" - ], - "url": "https://ruby.dating/en/users/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ruby-forum": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 101041, - "urlMain": "https://www.ruby-forum.com", - "usernameClaimed": "tomconnolly", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "RubyGems": { - "tags": [ - "coding" - ], - "checkType": "status_code", - "alexaRank": 42509, - "urlMain": "https://rubygems.org/", - "url": "https://rubygems.org/profiles/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rugby-forum": { - "tags": [ - "forum", - "ru" - ], - "checkType": "status_code", - "alexaRank": 7939583, - "urlMain": "http://rugby-forum.ru", - "url": "http://rugby-forum.ru/polzovateli/{username}/", - "usernameClaimed": "bold", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rumblechannel": { - "checkType": "message", - "presenseStrs": [ - "href=https://rumble.com/c/" - ], - "absenceStrs": [ - "404 - Not found" - ], - "url": "https://rumble.com/c/{username}", - "usernameClaimed": "HodgeTwins", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rumbleuser": { - "checkType": "message", - "presenseStrs": [ - "href=https://rumble.com/user/" - ], - "absenceStrs": [ - "404 - Not found" - ], - "url": "https://rumble.com/user/{username}", - "usernameClaimed": "SimonParkes", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Runescape": { - "checkType": "message", - "presenseStrs": [ - "activities" - ], - "absenceStrs": [ - "{\"error\":\"NO_PROFILE\",\"loggedIn\":\"false\"}" - ], - "url": "https://apps.runescape.com/runemetrics/profile/profile?user={username}", - "usernameClaimed": "Blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Runitonce": { - "tags": [ - "ca", - "us" - ], - "checkType": "response_url", - "alexaRank": 223505, - "urlMain": "https://www.runitonce.com/", - "url": "https://www.runitonce.com/users/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Runnersworld": { - "tags": [ - "forum", - "sport" - ], - "checkType": "status_code", - "alexaRank": 562069, - "urlMain": "https://forums.runnersworld.co.uk/", - "url": "https://forums.runnersworld.co.uk/profile/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rusarmy": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f." - ], - "alexaRank": 311365, - "urlMain": "http://www.rusarmy.com", - "url": "http://www.rusarmy.com/forum/members/?username={username}", - "usernameClaimed": "vtsp1", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rusfishing": { - "disabled": true, - "ignore403": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 85070, - "urlMain": "https://www.rusfishing.ru", - "url": "https://www.rusfishing.ru/forum/members/?username={username}", - "usernameClaimed": "ale8443", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rusforum": { - "tags": [ - "forum", - "in", - "pk", - "ru", - "ua" - ], - "disabled": true, - "engine": "vBulletin", - "alexaRank": 491084, - "urlMain": "https://www.rusforum.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "RussianFI": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 213923, - "urlMain": "http://www.russian.fi/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rust-lang": { - "tags": [ - "coding", - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 29188, - "urlMain": "https://users.rust-lang.org", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Rutracker": { - "tags": [ - "ru", - "torrent" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "presenseStrs": [ - "\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - ], - "alexaRank": 495, - "urlMain": "https://rutracker.org/", - "mirrors": [ - "https://rutracker.org/", - "http://37.1.216.121/" - ], - "url": "{urlMain}forum/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "S-forum": { - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found. Please enter a member's entire name" - ], - "alexaRank": 674575, - "urlMain": "https://s-forum.biz", - "url": "https://s-forum.biz/members/?username={username}", - "usernameClaimed": "ducat", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "SakhalinName": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "reputation_graf", - "\u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d" - ], - "absenceStrs": [ - "afisha_list" - ], - "alexaRank": 861080, - "urlMain": "https://sakhalin.name/", - "url": "https://sakhalin.name/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Salon24.pl": { - "checkType": "message", - "presenseStrs": [ - "Strona g\u0142\u00f3wna" - ], - "absenceStrs": [ - "Salon24 - blogi, newsy, opinie i komentarze" - ], - "url": "https://www.salon24.pl/u/{username}/", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Samlib": { - "tags": [ - "gb", - "ru", - "writing" - ], - "checkType": "status_code", - "alexaRank": 25741, - "urlMain": "http://samlib.ru/", - "url": "http://samlib.ru/e/{username}", - "caseSentitive": true, - "usernameClaimed": "e_melokumow", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Saracartershow": { - "checkType": "message", - "absenceStrs": [ - "Home |" - ], - "presenseStrs": [ - "Stories By" - ], - "url": "https://saraacarter.com/author/{username}/", - "usernameClaimed": "annaliese", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "SatsisInfo": { - "tags": [ - "ru", - "ua" - ], - "checkType": "status_code", - "alexaRank": 476954, - "urlMain": "https://satsis.info/", - "url": "https://satsis.info/user/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Sbazar.cz": { - "tags": [ - "cz", - "shopping" - ], - "checkType": "status_code", - "alexaRank": 19898, - "urlMain": "https://www.sbazar.cz/", - "url": "https://www.sbazar.cz/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Sbnation": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 2321, - "urlMain": "https://www.sbnation.com", - "url": "https://www.sbnation.com/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Scala-lang": { - "tags": [ - "coding", - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 51889, - "urlMain": "https://users.scala-lang.org", - "usernameClaimed": "sjrd", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Schlock": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 115065, - "urlMain": "https://schlock.ru/", - "url": "https://schlock.ru/author/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "School-school": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 585798, - "urlMain": "https://school-school.ru", - "url": "https://school-school.ru/user/{username}", - "usernameClaimed": "nunny_zn", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Scorcher": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "This user has not registered and therefore does not have a profile to view." - ], - "alexaRank": 7639, - "urlMain": "https://www.glavbukh.ru", - "url": "https://www.glavbukh.ru/forum/member.php/?username={username}", - "usernameClaimed": "poli888", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Scoutwiki": { - "checkType": "message", - "absenceStrs": [ - "is not registered" - ], - "presenseStrs": [ - "NewPP limit report" - ], - "url": "https://en.scoutwiki.org/User:{username}", - "usernameClaimed": "Benjism89", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Scratch": { - "tags": [ - "coding", - "us" - ], - "checkType": "status_code", - "alexaRank": 541, - "urlMain": "https://scratch.mit.edu/", - "url": "https://scratch.mit.edu/users/{username}", - "usernameClaimed": "griffpatch", - "usernameUnclaimed": "noonewould" - }, - "Screwfix": { - "tags": [ - "forum", - "gb" - ], - "engine": "XenForo", - "alexaRank": 8593, - "urlMain": "https://community.screwfix.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Scribd": { - "tags": [ - "reading" - ], - "checkType": "message", - "absenceStrs": [ - "Page not found" - ], - "errors": { - "This page is unavailable": "Site censorship" - }, - "alexaRank": 256, - "urlMain": "https://www.scribd.com/", - "url": "https://www.scribd.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Seatracker": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "alexaRank": 223866, - "urlMain": "https://seatracker.ru/", - "url": "https://seatracker.ru/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Seneporno": { - "checkType": "message", - "absenceStrs": [ - "Unexpected error! Please contact us and tell us more how you got to this page!" - ], - "presenseStrs": [ - "Dernier Login" - ], - "url": "https://seneporno.com/user/{username}", - "usernameClaimed": "Boymariste", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "SeoClerks": { - "tags": [ - "in", - "jp", - "us" - ], - "checkType": "response_url", - "alexaRank": 7864, - "urlMain": "https://www.seoclerks.com", - "url": "https://www.seoclerks.com/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Serveradmin": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "Not Found" - ], - "alexaRank": 166278, - "urlMain": "https://serveradmin.ru/", - "url": "https://serveradmin.ru/author/{username}", - "usernameClaimed": "fedor", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Setlist": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 43166, - "urlMain": "https://www.setlist.fm", - "url": "https://www.setlist.fm/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "SevSocium": { - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 7877321, - "urlMain": "http://forum.sevsocium.com", - "usernameClaimed": "vitaline", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "SevenForums": { - "tags": [ - "forum", - "gb", - "us" - ], - "engine": "vBulletin", - "alexaRank": 23957, - "urlMain": "https://www.sevenforums.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Sevportal": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 1726901, - "urlMain": "https://www.sevportal.info", - "url": "https://www.sevportal.info/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "DarkWillow", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Sex-forum": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "urlMain": "http://www.sex-forum.xxx", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Sexforum.ws": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 1834364, - "urlMain": "http://sexforum.ws", - "usernameClaimed": "katrin1988", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "SexforumIXBB": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 420919, - "urlMain": "http://sexforum.ixbb.ru", - "url": "http://sexforum.ixbb.ru/search.php?action=search&keywords=&author={username}", - "usernameClaimed": "lcf", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Sexopedia": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - ], - "alexaRank": 6491400, - "urlMain": "http://new.sexopedia.ru", - "url": "http://new.sexopedia.ru/club/search.php?flt_login={username}", - "usernameClaimed": "Ikzu", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Sexwin": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 5812338, - "urlMain": "https://sexforum.win", - "url": "https://sexforum.win/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "foks67", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Sfd.pl": { - "checkType": "message", - "absenceStrs": [ - "Brak aktywnego profilu na forum" - ], - "presenseStrs": [ - "Tematy u\u017cytkownika" - ], - "url": "https://www.sfd.pl/profile/{username}", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Shazoo": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 57278, - "urlMain": "https://shazoo.ru", - "url": "https://shazoo.ru/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ShaniiWrites": { - "checkType": "message", - "absenceStrs": [ - "The requested URL or resource could not be found." - ], - "presenseStrs": [ - "topics" - ], - "url": "https://forum.shanniiwrites.com/u/{username}/summary.json", - "usernameClaimed": "chococarmela", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ShiftDelete": { - "disabled": true, - "tags": [ - "forum", - "tr" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36" - }, - "engine": "XenForo", - "alexaRank": 2456, - "urlMain": "https://forum.shiftdelete.net", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Shikimori": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 20872, - "urlMain": "https://shikimori.one", - "url": "https://shikimori.one/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ShitpostBot5000": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 924499, - "urlMain": "https://www.shitpostbot.com/", - "url": "https://www.shitpostbot.com/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Shoe": { - "checkType": "message", - "presenseStrs": [ - "can only be viewed by SHOE members" - ], - "absenceStrs": [ - "This nickpage is temporary not available or no longer exists." - ], - "urlMain": "http://shoe.org", - "url": "http://{username}.shoe.org/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 6235117 - }, - "Shophelp": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 348270, - "urlMain": "https://shophelp.ru/", - "url": "https://shophelp.ru/profile/{username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Shoppingzone": { - "tags": [ - "ru" - ], - "errors": { - "\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u043f\u043e\u0438\u0441\u043a \u0441\u0440\u0430\u0437\u0443 \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0433\u043e": "Too many searhes per IP" - }, - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 301890, - "urlMain": "http://shoppingzone.ru", - "url": "http://shoppingzone.ru/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "eleonor", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Shotbow": { - "disabled": true, - "tags": [ - "ca", - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 1487736, - "urlMain": "https://shotbow.net", - "usernameClaimed": "velb", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "Showme": { - "tags": [ - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 113043, - "urlMain": "https://www.showme.com", - "url": "https://www.showme.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Shutterstock": { - "tags": [ - "music", - "photo", - "stock", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "This surprising...", - "Unfortunately, we can't find what you're looking for.", - "Not Found | Shutterstock" - ], - "presenseStrs": [ - "{username}", - "Information" - ], - "alexaRank": 184, - "urlMain": "https://www.shutterstock.com", - "url": "https://www.shutterstock.com/g/{username}/about", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Signal": { - "tags": [ - "forum", - "tech" - ], - "engine": "Discourse", - "alexaRank": 854551, - "urlMain": "https://community.signalusers.org", - "usernameClaimed": "jlund", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Silver-collector": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "urlMain": "https://www.silver-collector.com", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 9494921 - }, - "Skeb.jp": { - "checkType": "message", - "absenceStrs": [ - "Skeb - Request Box" - ], - "presenseStrs": [ - ") | Skeb" - ], - "url": "https://skeb.jp/@{username}", - "usernameClaimed": "eipuru_", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "SkodaForum": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "urlMain": "http://www.skodaforum.ru", - "usernameClaimed": "rivera", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 2785680 - }, - "Skyrimforums": { - "tags": [ - "forum", - "in", - "us" - ], - "engine": "XenForo", - "alexaRank": 351300, - "urlMain": "https://skyrimforums.org", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Skyrock": { - "disabled": true, - "tags": [ - "fr", - "in" - ], - "regexCheck": "^[^_\\.]+$", - "checkType": "status_code", - "alexaRank": 8927, - "urlMain": "https://skyrock.com/", - "url": "https://{username}.skyrock.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "SkyscraperCity": { - "tags": [ - "de", - "forum", - "pl", - "us" - ], - "engine": "XenForo", - "alexaRank": 7167, - "urlMain": "https://www.skyscrapercity.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Slack": { - "tags": [ - "messaging" - ], - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "checkType": "status_code", - "alexaRank": 200, - "urlMain": "https://slack.com", - "url": "https://{username}.slack.com", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Slant.co": { - "checkType": "message", - "absenceStrs": [ - "404 - Page Not Found - Slant" - ], - "presenseStrs": [ - "s Profile - Slant" - ], - "url": "https://www.slant.co/users/{username}", - "usernameClaimed": "bob", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Slashdot": { - "tags": [ - "news" - ], - "errors": { - "503 - Service Offline": "Site error" - }, - "checkType": "message", - "absenceStrs": [ - "user you requested does not exist" - ], - "alexaRank": 5720, - "urlMain": "https://slashdot.org", - "url": "https://slashdot.org/~{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "SlideShare": { - "checkType": "message", - "alexaRank": 158, - "urlMain": "https://www.slideshare.net", - "url": "https://www.slideshare.net/{username}", - "usernameClaimed": "KumarSurya7", - "usernameUnclaimed": "kwbmsonxvp", - "presenseStrs": [ - "user-name", - "pageInfo", - "listitem", - "polite", - "strippedTitle" - ], - "absenceStrs": [ - "blankProfile", - "username-available", - "robots", - "noindex,nofollow" - ] - }, - "Slides": { - "tags": [ - "sharing" - ], - "checkType": "status_code", - "alexaRank": 15124, - "urlMain": "https://slides.com/", - "url": "https://slides.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Smashcast": { - "disabled": true, - "tags": [ - "gr", - "us" - ], - "checkType": "status_code", - "alexaRank": 1945337, - "urlMain": "https://www.smashcast.tv/", - "url": "https://www.smashcast.tv/api/media/live/{username}", - "usernameClaimed": "hello", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Smashrun": { - "tags": [ - "br", - "jp", - "us" - ], - "checkType": "status_code", - "alexaRank": 734940, - "urlMain": "https://smashrun.com/", - "url": "https://smashrun.com/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Smogon": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found." - ], - "alexaRank": 29110, - "urlMain": "https://www.smogon.com", - "url": "https://www.smogon.com/forums/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Smugmug": { - "tags": [ - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 5905, - "urlMain": "https://smugmug.com/", - "url": "https://{username}.smugmug.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Smule": { - "tags": [ - "music" - ], - "checkType": "message", - "presenseStrs": [ - "Profile: " - ], - "absenceStrs": [ - "Smule | Page Not Found (404)" - ], - "alexaRank": 11742, - "urlMain": "https://www.smule.com/", - "url": "https://www.smule.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Snbforums": { - "tags": [ - "forum", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 53321, - "urlMain": "https://www.snbforums.com", - "url": "https://www.snbforums.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "Snooth": { - "tags": [ - "news" - ], - "checkType": "message", - "absenceStrs": [ - "Page not found" - ], - "presenseStrs": [ - "content=\"https://www.snooth.com/author/" - ], - "alexaRank": 4088489, - "urlMain": "https://www.snooth.com/", - "url": "https://www.snooth.com/author/{username}/", - "usernameClaimed": "joshua", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "SocialLibremOne": { - "checkType": "status_code", - "alexaRank": 959007, - "urlMain": "https://social.librem.one", - "url": "https://social.librem.one/@{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "tech" - ] - }, - "SoftwareInformer": { - "tags": [ - "in" - ], - "checkType": "response_url", - "alexaRank": 1288, - "urlMain": "https://users.software.informer.com", - "url": "https://users.software.informer.com/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Solaris-club": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 781686, - "urlMain": "https://solaris-club.net", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Solikick": { - "checkType": "message", - "absenceStrs": [ - "This item has been removed or is no longer available" - ], - "presenseStrs": [ - "page_guest_users-view" - ], - "url": "https://solikick.com/-{username}", - "usernameClaimed": "Edmundus", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Soloby": { - "disabled": true, - "tags": [ - "by", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430" - ], - "alexaRank": 8019, - "urlMain": "http://www.soloby.ru", - "url": "http://www.soloby.ru/user/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Soobshestva": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 8132021, - "urlMain": "http://www.soobshestva.ru/", - "url": "http://www.soobshestva.ru/forum/user/{username}/", - "usernameClaimed": "lisa", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "SoundCloud": { - "tags": [ - "music" - ], - "checkType": "status_code", - "urlMain": "https://soundcloud.com/", - "url": "https://soundcloud.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 125 - }, - "Soundgym": { - "tags": [ - "il", - "in", - "us" - ], - "checkType": "response_url", - "urlMain": "https://www.soundgym.co", - "url": "https://www.soundgym.co/member/profile?m={username}", - "usernameClaimed": "raydrcougso", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 104661 - }, - "Soup": { - "tags": [ - "in" - ], - "checkType": "response_url", - "alexaRank": 18850, - "urlMain": "https://soup.io", - "url": "https://www.soup.io/author/{username}", - "usernameClaimed": "cristina", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "SourceForge": { - "tags": [ - "coding", - "us" - ], - "checkType": "message", - "alexaRank": 444, - "urlMain": "https://sourceforge.net/", - "url": "https://sourceforge.net/u/{username}/profile", - "presenseStrs": [ - "Personal Tools" - ], - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Southklad": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 466872, - "urlMain": "https://southklad.ru", - "url": "https://southklad.ru/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Spaces": { - "tags": [ - "blog", - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u043f\u043e\u0434\u0430\u0440\u043e\u043a" - ], - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 49381, - "urlMain": "https://spaces.im", - "url": "https://spaces.im/mysite/index/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Spankpay": { - "checkType": "message", - "absenceStrs": [ - "<title>SpankPay.Me" - ], - "presenseStrs": [ - " - SpankPay.Me" - ], - "url": "https://spankpay.me/{username}", - "usernameClaimed": "uehkon89", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Spark": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 40675, - "urlMain": "https://spark.ru", - "url": "https://spark.ru/startup/{username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Speakerdeck": { - "tags": [ - "in", - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "User Not Found" - ], - "alexaRank": 13234, - "urlMain": "https://speakerdeck.com", - "url": "https://speakerdeck.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Speedrun.com": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Not found - Speedrun" - ], - "presenseStrs": [ - "\"user\":{\"id\":\"" - ], - "alexaRank": 9724, - "urlMain": "https://speedrun.com/", - "url": "https://speedrun.com/users/{username}", - "usernameClaimed": "3Tau", - "usernameUnclaimed": "noonewould" - }, - "SpiceWorks": { - "checkType": "status_code", - "urlMain": "https://community.spiceworks.co", - "url": "https://community.spiceworks.com/people/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "tech" - ] - }, - "Splice": { - "checkType": "status_code", - "url": "https://splice.com/{username}", - "usernameClaimed": "splice", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Splits.io": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 1037917, - "urlMain": "https://splits.io", - "url": "https://splits.io/users/{username}", - "usernameClaimed": "cambosteve", - "usernameUnclaimed": "noonewould" - }, - "Sporcle": { - "tags": [ - "gaming", - "us" - ], - "checkType": "status_code", - "alexaRank": 4509, - "urlMain": "https://www.sporcle.com/", - "url": "https://www.sporcle.com/user/{username}/people", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Sportlerfrage": { - "checkType": "status_code", - "url": "https://www.sportlerfrage.net/nutzer/{username}", - "usernameClaimed": "sportlerfrage", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "SportsTracker": { - "tags": [ - "pt", - "ru" - ], - "urlProbe": "https://api.sports-tracker.com/apiserver/v1/user/name/{username}", - "checkType": "message", - "absenceStrs": [ - "\"code\":\"404\"" - ], - "alexaRank": 235874, - "urlMain": "https://www.sports-tracker.com/", - "url": "https://www.sports-tracker.com/view_profile/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Spotify": { - "disabled": true, - "tags": [ - "music", - "us" - ], - "headers": { - "authorization": "Bearer BQDDk6n__YLKqIDKxBb2fvOZm6yxuOj0XeU0mCpRmBi_0UsUz2fUP-tFsl7IjT-YOCXxmvfzUMAnQ0Y4KBo" - }, - "errors": { - "Spotify is currently not available in your country.": "Access denied in your country, use proxy/vpn" - }, - "activation": { - "method": "spotify", - "marks": [ - "No token provided", - "The access token expired" - ], - "url": "https://open.spotify.com/get_access_token?reason=transport&productType=web_player", - "src": "accessToken", - "dst": "authorization" - }, - "urlProbe": "https://spclient.wg.spotify.com/user-profile-view/v3/profile/{username}?playlist_limit=10&artist_limit=10&market=EN", - "checkType": "status_code", - "alexaRank": 89, - "urlMain": "https://open.spotify.com/", - "url": "https://open.spotify.com/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Sprashivai": { - "tags": [ - "ru" - ], - "checkType": "response_url", - "alexaRank": 82345, - "urlMain": "http://sprashivai.ru", - "url": "http://sprashivai.ru/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Stalker-zone": { - "tags": [ - "ru" - ], - "presenseStrs": [ - " \u0418\u043c\u044f: " - ], - "engine": "uCoz", - "alexaRank": 4258382, - "urlMain": "http://stalker-zone.info", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Star Citizen": { - "disabled": true, - "tags": [ - "de", - "us" - ], - "checkType": "status_code", - "alexaRank": 22154, - "urlMain": "https://robertsspaceindustries.com/", - "url": "https://robertsspaceindustries.com/citizens/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Star Citizens Community": { - "tags": [ - "de", - "us" - ], - "checkType": "status_code", - "urlMain": "https://robertsspaceindustries.com/", - "url": "https://robertsspaceindustries.com/community-hub/user/{username}", - "usernameClaimed": "SentinelTheFirst", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Starsonice": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" - ], - "alexaRank": 110740, - "urlMain": "https://starsonice.borda.ru", - "url": "https://starsonice.borda.ru/?32-{username}", - "usernameClaimed": "kara", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Starvault": { - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 1765371, - "urlMain": "https://starvault.se", - "url": "https://starvault.se/mortalforums/members/?username={username}", - "usernameClaimed": "xunila", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "gaming" - ] - }, - "Statistika": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "urlMain": "http://statistika.ru", - "usernameClaimed": "hamam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Steam": { - "tags": [ - "gaming" - ], - "checkType": "message", - "absenceStrs": [ - "The specified profile could not be found" - ], - "alexaRank": 379, - "urlMain": "https://steamcommunity.com/", - "url": "https://steamcommunity.com/id/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Steam (by id)": { - "tags": [ - "gaming" - ], - "type": "steam_id", - "checkType": "message", - "absenceStrs": [ - "The specified profile could not be found" - ], - "alexaRank": 379, - "urlMain": "https://steamcommunity.com/", - "url": "https://steamcommunity.com/profiles/{username}", - "source": "Steam", - "usernameClaimed": "76561197960287930", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Steam (Group)": { - "tags": [ - "gaming" - ], - "checkType": "message", - "absenceStrs": [ - "No group could be retrieved for the given URL" - ], - "alexaRank": 379, - "urlMain": "https://steamcommunity.com/", - "url": "https://steamcommunity.com/groups/{username}", - "source": "Steam", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Steamid": { - "tags": [ - "gaming" - ], - "checkType": "message", - "absenceStrs": [ - "
Profile not found
" - ], - "alexaRank": 299167, - "urlMain": "https://steamid.uk/", - "url": "https://steamid.uk/profile/{username}", - "source": "Steam", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Steamid (by id)": { - "tags": [ - "gaming" - ], - "type": "steam_id", - "checkType": "message", - "absenceStrs": [ - "
Profile not found
" - ], - "alexaRank": 299167, - "urlMain": "https://steamid.uk/", - "url": "https://steamid.uk/profile/{username}", - "source": "Steam", - "usernameClaimed": "76561197982198022", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Steamidfinder": { - "tags": [ - "gaming" - ], - "checkType": "message", - "presenseStrs": [ - "se our custom tools to build a Steam profile badge" - ], - "absenceStrs": [ - "could not be found." - ], - "alexaRank": 90197, - "urlMain": "https://steamidfinder.com", - "url": "https://steamidfinder.com/lookup/{username}", - "source": "Steam", - "usernameClaimed": "channel", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Steamidfinder (by id)": { - "tags": [ - "gaming" - ], - "type": "steam_id", - "checkType": "message", - "presenseStrs": [ - "se our custom tools to build a Steam profile badge" - ], - "absenceStrs": [ - "could not be found." - ], - "alexaRank": 90197, - "urlMain": "https://steamidfinder.com", - "url": "https://steamidfinder.com/lookup/{username}", - "source": "Steam", - "usernameClaimed": "76561197982198022", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Stereo": { - "tags": [ - "nl", - "ru" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 46106, - "urlMain": "https://stereo.ru/", - "url": "https://stereo.ru/user/{username}", - "usernameClaimed": "Yamiha", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Stihi.ru": { - "tags": [ - "ru", - "writing" - ], - "checkType": "message", - "absenceStrs": [ - "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 5026, - "urlMain": "https://www.stihi.ru/", - "url": "https://www.stihi.ru/avtor/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Stoimost": { - "tags": [ - "ua" - ], - "engine": "uCoz", - "alexaRank": 2606124, - "urlMain": "https://stoimost.com.ua", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Storycorps": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 161477, - "urlMain": "https://archive.storycorps.org", - "url": "https://archive.storycorps.org/user/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Stratege": { - "urlSubpath": "/forums", - "tags": [ - "forum", - "gaming", - "news", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 115288, - "urlMain": "https://www.stratege.ru", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Strava": { - "tags": [ - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "Strava | " - ], - "presenseStrs": [ - "Strava" - ], - "alexaRank": 1099, - "urlMain": "https://www.strava.com/", - "url": "https://www.strava.com/athletes/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Studfile": { - "tags": [ - "ru" - ], - "checkType": "response_url", - "regexCheck": "^[^-]+$", - "alexaRank": 1499, - "urlMain": "https://studfile.net", - "url": "https://studfile.net/users/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Studwork": { - "similarSearch": true, - "tags": [ - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - ], - "absenceStrs": [ - "herdun" - ], - "alexaRank": 191670, - "urlMain": "https://studwork.org/", - "url": "https://studwork.org/info/{username}", - "usernameClaimed": "tmm22", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "Stunited": { - "disabled": true, - "checkType": "status_code", - "alexaRank": 2446369, - "urlMain": "http://stunited.org", - "url": "http://stunited.org/profile/{username}", - "usernameClaimed": "mani-vel", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "education" - ] - }, - "Subeta": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Invalid user" - ], - "alexaRank": 895833, - "urlMain": "https://subeta.net/", - "url": "https://subeta.net/users/{username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "SublimeForum": { - "tags": [ - "coding", - "forum", - "in" - ], - "engine": "Discourse", - "alexaRank": 9081, - "urlMain": "https://forum.sublimetext.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "Sugoidesu": { - "engine": "XenForo", - "alexaRank": 5060377, - "urlMain": "https://sugoidesu.net", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "Suomi24": { - "tags": [ - "fi", - "jp" - ], - "checkType": "status_code", - "alexaRank": 40750, - "urlMain": "https://www.suomi24.fi", - "url": "https://www.suomi24.fi/profiili/{username}", - "usernameClaimed": "Kilgore", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Suzuri.jp": { - "checkType": "message", - "absenceStrs": [ - "404 | SUZURI" - ], - "presenseStrs": [ - "\u221e SUZURI\uff08\u30b9\u30ba\u30ea\uff09" - ], - "url": "https://suzuri.jp/{username}", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Swapd": { - "checkType": "status_code", - "url": "https://swapd.co/u/{username}", - "usernameClaimed": "swapd", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "SwimmingForum": { - "tags": [ - "forum", - "ru" - ], - "engine": "uCoz", - "alexaRank": 7234157, - "urlMain": "http://forumswimming.ru", - "usernameClaimed": "irina", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Syktforum": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0422\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442." - ], - "urlMain": "http://syktforum.ru", - "url": "http://syktforum.ru/profile/{username}", - "usernameClaimed": "TonyT", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "SyktyvkarOnline": { - "tags": [ - "ru" - ], - "errors": { - "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u0431\u0443\u0434\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0447\u0435\u0440\u0435\u0437 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0435\u043a\u0443\u043d\u0434": "Verification redirect page" - }, - "checkType": "message", - "absenceStrs": [ - "", - "error404-404" - ], - "urlMain": "http://syktyvkar-online.ru", - "url": "http://syktyvkar-online.ru/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Sysadmins": { - "tags": [ - "forum", - "ru", - "tech" - ], - "checkType": "message", - "absenceStrs": [ - "Could not obtain user posts information" - ], - "alexaRank": 163279, - "urlMain": "https://sysadmins.ru", - "url": "https://sysadmins.ru/member{username}.html", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Sythe": { - "tags": [ - "ca", - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 47177, - "urlMain": "https://www.sythe.org", - "usernameClaimed": "rskingp", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Szerokikadr.pl": { - "checkType": "message", - "absenceStrs": [ - "Nie masz jeszcze konta?" - ], - "presenseStrs": [ - "Profil u\u017cytkownika" - ], - "url": "https://www.szerokikadr.pl/profil,{username}", - "usernameClaimed": "janek", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Szmer.info": { - "checkType": "message", - "absenceStrs": [ - "Code: Couldn't find that username or email." - ], - "presenseStrs": [ - "Joined" - ], - "url": "https://szmer.info/u/{username}", - "usernameClaimed": "Xavier", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "T-MobileSupport": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 990, - "urlMain": "https://support.t-mobile.com", - "url": "https://support.t-mobile.com/people/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Tanuki.pl": { - "checkType": "message", - "absenceStrs": [ - "Nie ma takiego u\u017cytkownika" - ], - "presenseStrs": [ - "Do\u0142\u0105czy\u0142" - ], - "url": "https://tanuki.pl/profil/{username}", - "usernameClaimed": "ania", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Taskrabbit": { - "checkType": "message", - "absenceStrs": [ - "TaskRabbit: Same Day Handyman, Moving & Delivery Services" - ], - "presenseStrs": [ - "\u2019s Profile" - ], - "url": "https://www.taskrabbit.com/profile/{username}/about", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TEENUS": { - "checkType": "message", - "presenseStrs": [ - "user-profile" - ], - "absenceStrs": [ - "Viimati lisatud" - ], - "alexaRank": 2699414, - "urlMain": "http://www.teenus.info", - "url": "http://www.teenus.info/kasutaja/{username}", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "business", - "ee" - ], - "disabled": true - }, - "Teknik": { - "checkType": "message", - "absenceStrs": [ - "The user does not exist" - ], - "presenseStrs": [ - "Public Key" - ], - "url": "https://user.teknik.io/{username}", - "usernameClaimed": "bob", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tenor.com": { - "checkType": "message", - "regexCheck": "^[A-Za-z0-9_]{2,32}$", - "absenceStrs": [ - "404 Error" - ], - "presenseStrs": [ - "s GIFs on Tenor" - ], - "url": "https://tenor.com/users/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tetr.io": { - "checkType": "message", - "absenceStrs": [ - "No such user!" - ], - "presenseStrs": [ - "success\":true" - ], - "url": "https://ch.tetr.io/api/users/{username}", - "usernameClaimed": "osk", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tf2Items": { - "checkType": "message", - "absenceStrs": [ - "TF2 Backpack Examiner" - ], - "presenseStrs": [ - "TF2 Backpack -" - ], - "url": "http://www.tf2items.com/id/{username}/", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tfl.net.pl": { - "checkType": "message", - "absenceStrs": [ - "The page you are looking for isn't here." - ], - "presenseStrs": [ - "@tfl.net.pl" - ], - "url": "https://tfl.net.pl/@{username}", - "usernameClaimed": "manies", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Thegatewaypundit": { - "checkType": "message", - "absenceStrs": [ - "Oops! That page can\u2019t be found." - ], - "presenseStrs": [ - "avatar avatar-50 photo" - ], - "url": "https://www.thegatewaypundit.com/author/{username}/", - "usernameClaimed": "patti", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Thetattooforum": { - "checkType": "message", - "absenceStrs": [ - "We\u2019re sorry" - ], - "presenseStrs": [ - "Insert This Gallery" - ], - "url": "https://www.thetattooforum.com/members/{username}/", - "usernameClaimed": "mixdop", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TJournal": { - "disabled": true, - "similarSearch": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041c\u044b \u0432\u0441\u0435 \u0432\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043b\u0438, \u043d\u043e \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0448\u043b\u0438 :(" - ], - "alexaRank": 10279, - "urlMain": "https://tjournal.ru", - "url": "https://tjournal.ru/search/v2/subsite/relevant?query={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tldrlegal.com": { - "checkType": "message", - "regexCheck": "^[a-zA-Z0-9]{3,20}$", - "absenceStrs": [ - "Page Not Found - TLDRLegal" - ], - "presenseStrs": [ - "s Profile - TLDRLegal" - ], - "url": "https://tldrlegal.com/users/{username}/", - "usernameClaimed": "kevin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TRASHBOX.RU": { - "tags": [ - "az", - "ru" - ], - "regexCheck": "^[A-Za-z0-9_-]{3,16}$", - "checkType": "message", - "absenceStrs": [ - "404 \u2014 Not found" - ], - "urlMain": "https://trashbox.ru/", - "url": "https://trashbox.ru/users/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "never-never-ever", - "alexaRank": 16644 - }, - "TVTropes": { - "tags": [ - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 11858, - "urlMain": "https://tvtropes.org", - "url": "https://tvtropes.org/pmwiki/pmwiki.php/Tropers/{username}", - "usernameClaimed": "Chabal2", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tabun": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 917529, - "urlMain": "https://tabun.everypony.ru", - "url": "https://tabun.everypony.ru/profile/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TalkDrugabuse": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 217212, - "urlMain": "https://talk.drugabuse.com", - "url": "https://talk.drugabuse.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "Talks.by": { - "disabled": true, - "tags": [ - "by", - "forum" - ], - "engine": "vBulletin", - "alexaRank": 17739, - "urlMain": "https://talks.by", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Talkstats": { - "tags": [ - "au" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 186559, - "urlMain": "https://www.talkstats.com", - "url": "https://www.talkstats.com/members/?username={username}", - "usernameClaimed": "johnlee", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TamTam": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "data-tsid=\"avatar\"" - ], - "absenceStrs": [ - "Pv3WuoqzAb05NxqHCgZ29Z2jmQ" - ], - "alexaRank": 142765, - "urlMain": "https://tamtam.chat/", - "url": "https://tamtam.chat/{username}", - "errorUrl": "https://tamtam.chat/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tanks": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "gaming", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 49, - "urlMain": "https://tanks.mail.ru", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Taplink": { - "disabled": true, - "tags": [ - "links", - "ru" - ], - "checkType": "status_code", - "urlMain": "https://taplink.cc/", - "url": "https://taplink.cc/{username}", - "usernameClaimed": "taplink.ru", - "usernameUnclaimed": "noonewouldeverusethis77777", - "alexaRank": 4798 - }, - "TechPowerUp": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 4382, - "urlMain": "https://www.techpowerup.com", - "url": "https://www.techpowerup.com/forums/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Techdirt": { - "disabled": true, - "tags": [ - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 17796, - "urlMain": "https://www.techdirt.com/", - "url": "https://www.techdirt.com/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Techrepublic": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 3127, - "urlMain": "https://www.techrepublic.com", - "url": "https://www.techrepublic.com/members/profile/{username}/", - "usernameClaimed": "Kentertainments75", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Telegram": { - "tags": [ - "messaging" - ], - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_]{4,}$", - "checkType": "message", - "absenceStrs": [ - "<meta name=\"robots\" content=\"noindex, nofollow\">", - "<meta property=\"twitter:title\" content=\"Telegram: Contact" - ], - "alexaRank": 154, - "urlMain": "https://t.me/", - "url": "https://t.me/{username}", - "usernameClaimed": "BotFather", - "usernameUnclaimed": "noonewouldevereverusethis9" - }, - "Teletype": { - "tags": [ - "in", - "writing" - ], - "checkType": "status_code", - "alexaRank": 12440, - "urlMain": "https://teletype.in", - "url": "https://teletype.in/@{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tellonym.me": { - "tags": [ - "de", - "fr", - "sa", - "us" - ], - "checkType": "status_code", - "alexaRank": 49356, - "urlMain": "https://tellonym.me/", - "url": "https://tellonym.me/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Terminator": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://terminator-scc.net.ru", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Terminatorium": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" - ], - "alexaRank": 110740, - "urlMain": "https://terminatorium.borda.ru/", - "url": "https://terminatorium.borda.ru/?32-{username}", - "usernameClaimed": "tengu", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Texasguntalk": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 810331, - "urlMain": "https://www.texasguntalk.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "The AnswerBank": { - "tags": [ - "gb", - "q&a" - ], - "checkType": "message", - "absenceStrs": [ - "Welcome to the AnswerBank" - ], - "alexaRank": 129670, - "urlMain": "https://www.theanswerbank.co.uk", - "url": "https://www.theanswerbank.co.uk/members/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TheFastlaneForum": { - "disabled": true, - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 40275, - "urlMain": "https://www.thefastlaneforum.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TheGuardian": { - "disabled": true, - "tags": [ - "news", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "<title>public profile | Identity | The Guardian" - ], - "alexaRank": 159, - "urlMain": "https://theguardian.com", - "url": "https://profile.theguardian.com/user/{username}", - "usernameClaimed": "frogprincess", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TheOdysseyOnline": { - "tags": [ - "blog" - ], - "checkType": "status_code", - "alexaRank": 16462, - "urlMain": "https://www.theodysseyonline.com", - "url": "https://www.theodysseyonline.com/user/@{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TheSimsResource": { - "tags": [ - "gaming" - ], - "checkType": "response_url", - "alexaRank": 12278, - "urlMain": "https://www.thesimsresource.com/", - "url": "https://www.thesimsresource.com/members/{username}/", - "usernameClaimed": "DanSimsFantasy", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TheStudentRoom": { - "tags": [ - "forum", - "gb" - ], - "engine": "vBulletin", - "alexaRank": 8267, - "urlMain": "https://www.thestudentroom.co.uk", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TheVerge": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 678, - "urlMain": "https://www.theverge.com", - "url": "https://www.theverge.com/users/{username}", - "usernameClaimed": "Patlex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TheVillage.ru": { - "disabled": true, - "tags": [ - "ru" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "The Village: \u043e\u0448\u0438\u0431\u043a\u0430 404, \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430" - ], - "alexaRank": 21538, - "urlMain": "https://www.the-village.ru/", - "url": "https://www.the-village.ru/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Thebigboss": { - "tags": [ - "tr" - ], - "checkType": "status_code", - "alexaRank": 678092, - "urlMain": "http://thebigboss.org", - "url": "http://thebigboss.org/author/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Thebuddyforum": { - "tags": [ - "forum", - "gaming" - ], - "engine": "XenForo", - "alexaRank": 831319, - "urlMain": "https://www.thebuddyforum.com", - "usernameClaimed": "tony", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Thechive": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "Posts By" - ], - "absenceStrs": [ - "Find something else." - ], - "alexaRank": 3293, - "urlMain": "https://thechive.com/", - "url": "https://thechive.com/author/{username}", - "usernameClaimed": "bhgilliland", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Thedaftclub": { - "disabled": true, - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "This user has not registered and therefore does not have a profile to view." - ], - "alexaRank": 746415, - "urlMain": "https://www.thedaftclub.com", - "url": "https://www.thedaftclub.com/forum/member.php/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Thefirearmsforum": { - "tags": [ - "forum", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found. Please enter a member's entire name." - ], - "urlMain": "https://www.thefirearmsforum.com", - "url": "https://www.thefirearmsforum.com/members/?username={username}", - "usernameClaimed": "willieb", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 668602 - }, - "Thelion": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "We are sorry but the following error has occurred." - ], - "alexaRank": 149542, - "urlMain": "http://www.thelion.com", - "url": "http://www.thelion.com/bin/profile.cgi?c=s&ru_name={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ThemeForest": { - "tags": [ - "in" - ], - "checkType": "status_code", - "alexaRank": 515, - "urlMain": "https://themeforest.net", - "url": "https://themeforest.net/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Thephysicsforum": { - "checkType": "message", - "absenceStrs": [ - "This user has not registered and therefore does not have a profile to view." - ], - "alexaRank": 5348693, - "urlMain": "https://www.thephysicsforum.com", - "url": "https://www.thephysicsforum.com/members/{username}.html", - "usernameClaimed": "andrewc", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "TikTok": { - "tags": [ - "video" - ], - "headers": { - "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" - }, - "errors": { - "tiktok-verify-page": "Captcha detected" - }, - "checkType": "message", - "presenseStrs": [ - "\"nickname\":" - ], - "absenceStrs": [ - "serverCode\":404" - ], - "alexaRank": 98, - "urlMain": "https://www.tiktok.com/", - "url": "https://www.tiktok.com/@{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis1" - }, - "TikTok Online Viewer": { - "disabled": true, - "tags": [ - "us" - ], - "errors": { - "Website unavailable": "Site error", - "is currently offline": "Site error" - }, - "checkType": "message", - "absenceStrs": [ - "Not Found - TTonlineviewer" - ], - "source": "TikTok", - "alexaRank": 5826276, - "urlMain": "https://ttonlineviewer.com", - "url": "https://ttonlineviewer.com/user/{username}", - "usernameClaimed": "rednec", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tinder": { - "tags": [ - "dating", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "twitter:title\" content=\"Tinder |", - "Tinder |", - "<title data-react-helmet=\"true\">" - ], - "alexaRank": 960, - "urlMain": "https://tinder.com/", - "url": "https://www.tinder.com/@{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tkgr": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "urlMain": "http://tkgr.ru/", - "url": "http://tkgr.ru/forum/member/{username}", - "usernameClaimed": "siber", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tl": { - "tags": [ - "de", - "dk", - "us" - ], - "checkType": "status_code", - "alexaRank": 49023, - "urlMain": "https://tl.net", - "url": "https://tl.net/forum/profile.php?user={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TomsHardware": { - "tags": [ - "forum", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found.", - "The requested page could not be found." - ], - "alexaRank": 2037, - "urlMain": "https://forums.tomshardware.com/", - "url": "https://forums.tomshardware.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tomtom": { - "disabled": true, - "tags": [ - "de", - "in", - "it", - "nl", - "no", - "us" - ], - "checkType": "status_code", - "alexaRank": 23370, - "urlMain": "https://discussions.tomtom.com/", - "url": "https://discussions.tomtom.com/en/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Torrent-soft": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 57590, - "urlMain": "https://torrent-soft.net", - "url": "https://torrent-soft.net/user/{username}/", - "usernameClaimed": "Baguvix", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Toster": { - "tags": [ - "coding", - "ru" - ], - "checkType": "status_code", - "alexaRank": 1265, - "urlMain": "https://qna.habr.com/", - "url": "https://qna.habr.com/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TotalStavki": { - "disabled": true, - "ignore403": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "alexaRank": 4592979, - "urlMain": "https://totalstavki.ru", - "url": "https://totalstavki.ru/forum/members/?username={username}", - "usernameClaimed": "turbo", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Totseans": { - "checkType": "status_code", - "alexaRank": 7214531, - "urlMain": "http://www.totseans.com/bbs/profile/Vizier", - "url": "http://www.totseans.com/bbs/profile/{username}", - "usernameClaimed": "Vizier", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "Touristlink": { - "tags": [ - "in" - ], - "checkType": "message", - "absenceStrs": [ - "Members across the World" - ], - "alexaRank": 122492, - "urlMain": "https://www.touristlink.com", - "url": "https://www.touristlink.com/user/{username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Anilist": { - "disabled": true, - "checkType": "message", - "absenceStrs": [ - "/img/404/" - ], - "presenseStrs": [ - "/user/uehkon/animelist" - ], - "url": "https://anilist.co/user/{username}", - "usernameClaimed": "uehkon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tproger": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "404" - ], - "alexaRank": 36445, - "urlMain": "https://tproger.ru", - "url": "https://tproger.ru/author/{username}/", - "usernameClaimed": "NickPrice", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "TrackmaniaLadder": { - "disabled": true, - "tags": [ - "au" - ], - "checkType": "message", - "absenceStrs": [ - "player unknown or invalid" - ], - "urlMain": "http://en.tm-ladder.com/index.php", - "url": "http://en.tm-ladder.com/{username}_rech.php", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis", - "alexaRank": 7229230 - }, - "TradingView": { - "tags": [ - "trading", - "us" - ], - "checkType": "message", - "presenseStrs": [ - "tv-profile" - ], - "absenceStrs": [ - "Page not found \u2014 TradingView" - ], - "alexaRank": 61, - "urlMain": "https://www.tradingview.com/", - "url": "https://www.tradingview.com/u/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Trainsim": { - "urlSubpath": "/vbts", - "disabled": true, - "tags": [ - "forum", - "in" - ], - "engine": "vBulletin", - "alexaRank": 81136, - "urlMain": "https://www.trainsim.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Trakt": { - "tags": [ - "de", - "fr" - ], - "checkType": "status_code", - "alexaRank": 7650, - "urlMain": "https://www.trakt.tv/", - "url": "https://www.trakt.tv/users/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Traktrain": { - "checkType": "status_code", - "url": "https://traktrain.com/{username}", - "usernameClaimed": "traktrain", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Travelblog": { - "tags": [ - "blog", - "travel" - ], - "checkType": "status_code", - "alexaRank": 84207, - "urlMain": "https://www.travelblog.org", - "url": "https://www.travelblog.org/Bloggers/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TravellersPoint": { - "disabled": true, - "tags": [ - "in", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Wooops. Sorry!" - ], - "alexaRank": 68105, - "urlMain": "https://www.travellerspoint.com", - "url": "https://www.travellerspoint.com/users/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Travis": { - "tags": [ - "forum", - "in", - "us" - ], - "engine": "Discourse", - "alexaRank": 471134, - "urlMain": "https://travis-ci.community", - "usernameClaimed": "montana", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Trello": { - "tags": [ - "tasks" - ], - "urlProbe": "https://trello.com/1/Members/{username}", - "checkType": "message", - "absenceStrs": [ - "model not found" - ], - "alexaRank": 163, - "urlMain": "https://trello.com/", - "url": "https://trello.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Trinixy": { - "tags": [ - "news", - "ru" - ], - "checkType": "status_code", - "alexaRank": 38880, - "urlMain": "https://trinixy.ru", - "url": "https://trinixy.ru/user/{username}/", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TripAdvisor": { - "tags": [ - "travel" - ], - "checkType": "message", - "absenceStrs": [ - "This page is on vacation\u2026" - ], - "headers": { - "Accept-Language": "en-US,en;q=0.5" - }, - "alexaRank": 348, - "urlMain": "https://tripadvisor.com/", - "url": "https://tripadvisor.com/members/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tripline": { - "tags": [ - "in" - ], - "checkType": "status_code", - "alexaRank": 104988, - "urlMain": "https://www.tripline.net", - "url": "https://www.tripline.net/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tripster": { - "tags": [ - "de", - "ru" - ], - "checkType": "status_code", - "alexaRank": 39599, - "urlMain": "https://tripster.ru", - "url": "https://tripster.ru/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Trisquel": { - "tags": [ - "eu", - "in" - ], - "checkType": "status_code", - "alexaRank": 548123, - "urlMain": "https://trisquel.info", - "url": "https://trisquel.info/it/users/{username}", - "usernameClaimed": "redfox", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TruckersMP.com": { - "tags": [ - "de", - "forum", - "tr" - ], - "checkType": "message", - "absenceStrs": [ - "There were no results for your search.", - "Forums currently down for maintenance. No ETA on return." - ], - "alexaRank": 32270, - "urlMain": "https://forum.truckersmp.com", - "url": "https://forum.truckersmp.com/index.php?/search/&q={username}&type=core_members", - "usernameClaimed": "ireacher", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TruckersMP.ru": { - "disabled": true, - "tags": [ - "gaming", - "ru" - ], - "checkType": "status_code", - "urlMain": "https://truckersmp.ru", - "url": "https://truckersmp.ru/{username}", - "usernameClaimed": "RamanBY", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TrueAchievements": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 19227, - "urlMain": "https://www.trueachievements.com", - "url": "https://www.trueachievements.com/gamer/{username}", - "usernameClaimed": "metallicafan459", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Truelancer": { - "tags": [ - "in" - ], - "checkType": "message", - "presenseStrs": [ - "https://schema.org/BreadcrumbList" - ], - "absenceStrs": [ - "This page could not be found." - ], - "alexaRank": 9186, - "urlMain": "https://www.truelancer.com", - "url": "https://www.truelancer.com/freelancer/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Truesteamachievements": { - "tags": [ - "az", - "gb", - "us" - ], - "checkType": "status_code", - "alexaRank": 110281, - "urlMain": "https://truesteamachievements.com", - "url": "https://truesteamachievements.com/gamer/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Truthbook": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "us" - ], - "engine": "phpBB", - "alexaRank": 551363, - "urlMain": "https://truthbook.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "TryHackMe": { - "tags": [ - "hacking", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Found. Redirecting to /404" - ], - "presenseStrs": [ - "heatmap-user-activity" - ], - "alexaRank": 23474, - "urlMain": "https://tryhackme.com/", - "url": "https://tryhackme.com/p/{username}", - "usernameClaimed": "ashu", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tumblr": { - "tags": [ - "blog" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "Not found.", - ":404,", - "userAgent", - ",displayStatus:" - ], - "alexaRank": 112, - "urlMain": "https://www.tumblr.com", - "url": "https://www.tumblr.com/{username}", - "usernameClaimed": "soxoj", - "usernameUnclaimed": "zdbimdoqyt", - "presenseStrs": [ - "profile", - " title=" - ] - }, - "Tunefind": { - "checkType": "message", - "absenceStrs": [ - "Page not found" - ], - "presenseStrs": [ - "Achievements" - ], - "url": "https://www.tunefind.com/user/profile/{username}", - "usernameClaimed": "baywolfmusic", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Tv-games": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 1167240, - "urlMain": "http://tv-games.ru/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Twitcasting": { - "checkType": "message", - "absenceStrs": [ - "Not Found" - ], - "presenseStrs": [ - "Live History" - ], - "url": "https://twitcasting.tv/{username}", - "usernameClaimed": "2_t0_", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Twitch": { - "tags": [ - "streaming", - "us" - ], - "urlProbe": "https://twitchtracker.com/{username}", - "checkType": "status_code", - "alexaRank": 34, - "urlMain": "https://www.twitch.tv/", - "url": "https://twitchtracker.com/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Nitter": { - "tags": [ - "messaging" - ], - "headers": { - "Accept-Language": "en-US,en;q=0.5" - }, - "regexCheck": "^[a-zA-Z0-9_]{1,15}$", - "checkType": "message", - "absenceStrs": [ - "Error | nitter", - "The requested URL was not found on this server.", - "
" - ], - "presenseStrs": [ - "
" - ], - "mirrors": [ - "https://nitter.42l.fr/", - "https://nitter.1d4.us/", - "https://nitter.kavin.rocks/" - ], - "source": "Twitter", - "alexaRank": 48, - "urlMain": "https://nitter.net/", - "url": "{urlMain}{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewould123", - "disabled": true - }, - "Twitter": { - "tags": [ - "messaging" - ], - "headers": { - "sec-ch-ua": "Google Chrome\";v=\"87\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"87\"", - "authorization": "Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA", - "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36", - "x-guest-token": "1411741418192883712" - }, - "errors": { - "Bad guest token": "x-guest-token update required" - }, - "regexCheck": "^[a-zA-Z0-9_]{1,15}$", - "activation": { - "method": "twitter", - "marks": [ - "Bad guest token." - ], - "url": "https://api.twitter.com/1.1/guest/activate.json", - "src": "guest_token", - "dst": "x-guest-token" - }, - "urlProbe": "https://twitter.com/i/api/graphql/ZRnOhhXPwue_JGILb9TNug/UserByScreenName?variables=%7B%22screen_name%22%3A%22{username}%22%2C%22withHighlightedLabel%22%3Atrue%7D", - "checkType": "message", - "absenceStrs": [ - " not found" - ], - "alexaRank": 48, - "urlMain": "https://www.twitter.com/", - "url": "https://twitter.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewould123" - }, - "Twpro.jp": { - "checkType": "message", - "absenceStrs": [ - "\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044\u3002" - ], - "presenseStrs": [ - "\u304a\u3068\u306a\u308a\u3055\u3093" - ], - "url": "https://twpro.jp/{username}", - "usernameClaimed": "wsise47", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Typeracer": { - "tags": [ - "hobby" - ], - "checkType": "message", - "absenceStrs": [ - "Profile Not Found" - ], - "alexaRank": 7138, - "urlMain": "https://typeracer.com", - "url": "https://data.typeracer.com/pit/profile?user={username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "UMHOOPS": { - "tags": [ - "forum", - "sport", - "us" - ], - "engine": "Discourse", - "alexaRank": 332635, - "urlMain": "https://forum.umhoops.com", - "usernameClaimed": "umhoops", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Uaksu": { - "tags": [ - "forum", - "ru", - "ua" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d" - ], - "alexaRank": 4001287, - "urlMain": "https://uaksu.forum24.ru/", - "url": "https://uaksu.forum24.ru/?32-{username}", - "usernameClaimed": "nikita", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ubisoft": { - "disabled": true, - "tags": [ - "forum", - "gaming", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "This user has not registered and therefore does not have a profile to view." - ], - "alexaRank": 2563, - "urlMain": "https://forums-ru.ubisoft.com/", - "url": "https://forums-ru.ubisoft.com/member.php/?username={username}", - "usernameClaimed": "MrNardred", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Uchportal": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 24339, - "urlMain": "https://www.uchportal.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ucoz": { - "tags": [ - "forum", - "ru" - ], - "engine": "uCoz", - "alexaRank": 554708, - "urlMain": "https://forum.ucoz.ru", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Udemy": { - "tags": [ - "in" - ], - "checkType": "response_url", - "alexaRank": 131, - "urlMain": "https://www.udemy.com", - "url": "https://www.udemy.com/user/{username}/", - "usernameClaimed": "adammortimer", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ultimate-Guitar": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 654, - "urlMain": "https://ultimate-guitar.com/", - "url": "https://ultimate-guitar.com/u/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ultrasdiary.pl": { - "checkType": "message", - "absenceStrs": [ - "UltrasDiary – Pami\u0119tnik Kibica" - ], - "presenseStrs": [ - "Mecze wyjazdowe:" - ], - "url": "https://ultrasdiary.pl/u/{username}/", - "usernameClaimed": "janek", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ulub.pl": { - "checkType": "message", - "absenceStrs": [ - "Strona nie istnieje." - ], - "presenseStrs": [ - "Muzyka (" - ], - "url": "http://ulub.pl/profil/{username}", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Unsplash": { - "tags": [ - "art", - "photo" - ], - "checkType": "status_code", - "alexaRank": 376, - "urlMain": "https://unsplash.com/", - "url": "https://unsplash.com/@{username}", - "usernameClaimed": "jenny", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Untappd": { - "tags": [ - "geosocial", - "networking", - "us" - ], - "checkType": "status_code", - "alexaRank": 24015, - "urlMain": "https://untappd.com", - "url": "https://untappd.com/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Usa.life": { - "checkType": "message", - "absenceStrs": [ - "Sorry, page not found" - ], - "presenseStrs": [ - "Please log in to like, share and comment" - ], - "url": "https://usa.life/{username}", - "usernameClaimed": "not1face", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Ustream": { - "tags": [ - "eg", - "us" - ], - "checkType": "status_code", - "alexaRank": 165667, - "urlMain": "http://www.ustream.tv", - "url": "http://www.ustream.tv/channel/adam{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Uvelir": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 3038429, - "urlMain": "https://uvelir.net/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Uwr1": { - "tags": [ - "de" - ], - "checkType": "status_code", - "urlMain": "http://uwr1.de", - "url": "http://uwr1.de/forum/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 2712529 - }, - "VC.ru": { - "similarSearch": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041c\u044b \u0432\u0441\u0435 \u0432\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043b\u0438, \u043d\u043e \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0448\u043b\u0438 :(" - ], - "alexaRank": 2408, - "urlMain": "https://vc.ru", - "url": "https://vc.ru/search/v2/subsite/relevant?query={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Viddler": { - "checkType": "message", - "absenceStrs": [ - "User not found" - ], - "presenseStrs": [ - "profile-details" - ], - "url": "https://www.viddler.com/channel/{username}/", - "usernameClaimed": "planphilly", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Vine": { - "checkType": "message", - "absenceStrs": [ - "That record does not exist" - ], - "presenseStrs": [ - "userId" - ], - "url": "https://vine.co/api/users/profiles/vanity/{username}", - "usernameClaimed": "Seks", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Vizjer.pl": { - "checkType": "message", - "absenceStrs": [ - "Ostatnie komentarze" - ], - "presenseStrs": [ - "Profil u\u017cytkownika" - ], - "url": "https://vizjer.pl/uzytkownik/{username}", - "usernameClaimed": "janek", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "VK": { - "tags": [ - "ru" - ], - "checkType": "response_url", - "regexCheck": "^(?!id\\d)\\w*$", - "alexaRank": 27, - "urlMain": "https://vk.com/", - "url": "https://vk.com/{username}", - "usernameClaimed": "smith", - "usernameUnclaimed": "blah62831" - }, - "VK (by id)": { - "tags": [ - "ru" - ], - "type": "vk_id", - "checkType": "response_url", - "alexaRank": 27, - "urlMain": "https://vk.com/", - "regexCheck": "^\\d+$", - "url": "https://vk.com/id{username}", - "source": "VK", - "usernameClaimed": "270433952", - "usernameUnclaimed": "2131232" - }, - "VKFaces": { - "tags": [ - "ru" - ], - "disabled": true, - "checkType": "status_code", - "alexaRank": 32067, - "urlMain": "https://vkfaces.com", - "url": "https://vkfaces.com/vk/user/{username}", - "source": "VK", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "VKMOnline": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 62559, - "urlMain": "http://forums.vkmonline.com", - "usernameClaimed": "irina", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "VKruguDruzei": { - "tags": [ - "by", - "ru" - ], - "checkType": "response_url", - "alexaRank": 240272, - "urlMain": "http://vkrugudruzei.ru", - "url": "http://{username}.vkrugudruzei.ru/x/blog/all/", - "usernameClaimed": "irina", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Voice123": { - "checkType": "message", - "absenceStrs": [ - ">[]" - ], - "presenseStrs": [ - "user_id" - ], - "url": "https://voice123.com/api/providers/search/{username}", - "usernameClaimed": "maheshsaha1992", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "VSCO": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 6244, - "urlMain": "https://vsco.co/", - "url": "https://vsco.co/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Vamber": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 263174, - "urlMain": "https://vamber.ru", - "url": "https://vamber.ru/author/{username}/", - "usernameClaimed": "irina", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Vapenews": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041e\u0448\u0438\u0431\u043a\u0430 404" - ], - "presenseStrs": [ - "\u041b\u0438\u0447\u043d\u043e\u0435" - ], - "alexaRank": 981151, - "urlMain": "https://vapenews.ru/", - "url": "https://vapenews.ru/profile/{username}", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "VegasCreativeSoftware": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "VEGAS Community" - ], - "urlMain": "https://www.vegascreativesoftware.info", - "url": "https://www.vegascreativesoftware.info/us/users/profile/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 162065 - }, - "Velomania": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 143862, - "urlMain": "https://forum.velomania.ru/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Venmo": { - "tags": [ - "finance", - "us" - ], - "checkType": "status_code", - "alexaRank": 3795, - "urlMain": "https://venmo.com/", - "url": "https://venmo.com/{username}", - "usernameClaimed": "jenny", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Vero": { - "tags": [ - "in", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "<title>Error Page - VERO\u2122 \u2013 True Social" - ], - "alexaRank": 97361, - "urlMain": "https://vero.co", - "url": "https://vero.co/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Vezha": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d" - ], - "alexaRank": 1949047, - "urlMain": "https://vezha.com/", - "url": "https://vezha.com/members/?username={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Vgtimes/Games": { - "tags": [ - "forum", - "ru" - ], - "checkType": "status_code", - "alexaRank": 17926, - "urlMain": "https://vgtimes.ru", - "url": "https://vgtimes.ru/games/{username}/forum/", - "usernameClaimed": "rfactor", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "VideogameGeek": { - "ignore403": true, - "tags": [ - "gaming", - "news" - ], - "checkType": "message", - "absenceStrs": [ - "User does not exist" - ], - "alexaRank": 817462, - "urlMain": "https://videogamegeek.com", - "url": "https://videogamegeek.com/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Videosift": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 146177, - "urlMain": "https://videosift.com", - "url": "https://videosift.com/member/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Vimeo": { - "tags": [ - "video" - ], - "activation": { - "url": "https://vimeo.com/_rv/viewer", - "marks": [ - "Something strange occurred. Please get in touch" - ], - "method": "vimeo" - }, - "headers": { - "Authorization": "jwt eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MzQxMTc1NDAsInVzZXJfaWQiOm51bGwsImFwcF9pZCI6NTg0NzksInNjb3BlcyI6InB1YmxpYyIsInRlYW1fdXNlcl9pZCI6bnVsbCwianRpIjoiNDc4Y2ZhZGUtZjI0Yy00MDVkLTliYWItN2RlNGEzNGM4MzI5In0.guN7Fg8dqq7EYdckrJ-6Rdkj_5MOl6FaC4YUSOceDpU" - }, - "urlProbe": "https://api.vimeo.com/users/{username}?fields=name%2Cgender%2Cbio%2Curi%2Clink%2Cbackground_video%2Clocation_details%2Cpictures%2Cverified%2Cmetadata.public_videos.total%2Cavailable_for_hire%2Ccan_work_remotely%2Cmetadata.connections.videos.total%2Cmetadata.connections.albums.total%2Cmetadata.connections.followers.total%2Cmetadata.connections.following.total%2Cmetadata.public_videos.total%2Cmetadata.connections.vimeo_experts.is_enrolled%2Ctotal_collection_count%2Ccreated_time%2Cprofile_preferences%2Cmembership%2Cclients%2Cskills%2Cproject_types%2Crates%2Ccategories%2Cis_expert%2Cprofile_discovery%2Cwebsites%2Ccontact_emails&fetch_user_profile=1", - "checkType": "status_code", - "alexaRank": 148, - "urlMain": "https://vimeo.com", - "url": "https://vimeo.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "smbepezbrg" - }, - "Virgool": { - "disabled": true, - "tags": [ - "blog", - "ir" - ], - "checkType": "status_code", - "absenceStrs": [ - "\u06f4\u06f0\u06f4" - ], - "alexaRank": 1457, - "urlMain": "https://virgool.io/", - "url": "https://virgool.io/@{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "VirtualIreland": { - "tags": [ - "forum", - "ie", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 217316, - "urlMain": "https://www.virtualireland.ru", - "usernameClaimed": "Lee", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "VirusTotal": { - "disabled": true, - "tags": [ - "in" - ], - "headers": { - "accept-language": "en-US,en;q=0.9,es;q=0.8", - "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36", - "x-tool": "vt-ui-main", - "x-vt-anti-abuse-header": "MTM0NTMxNTA3MTItWkc5dWRDQmlaU0JsZG1scy0xNjA3NDMzMzM3LjI3MQ==" - }, - "errors": { - "RecaptchaRequiredError": "Captcha detected" - }, - "checkType": "message", - "absenceStrs": [ - "not found" - ], - "alexaRank": 5140, - "urlMain": "https://www.virustotal.com/", - "url": "https://www.virustotal.com/ui/users/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "VitalFootball": { - "tags": [ - "forum", - "gb", - "in", - "pk" - ], - "engine": "XenForo", - "alexaRank": 756177, - "urlMain": "https://forums.vitalfootball.co.uk", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Vivino": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 10337, - "urlMain": "https://www.vivino.com/", - "url": "https://www.vivino.com/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Vlmi": { - "tags": [ - "forum", - "ru", - "ua" - ], - "engine": "XenForo", - "alexaRank": 765896, - "urlMain": "https://vlmi.biz", - "usernameClaimed": "mixa", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Voices": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 17303, - "urlMain": "https://www.voices.com/", - "url": "https://www.voices.com/actors/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Voicesevas": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 202518, - "urlMain": "http://voicesevas.ru", - "url": "http://voicesevas.ru/user/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Volgograd Forum": { - "tags": [ - "forum", - "ru", - "us" - ], - "engine": "XenForo", - "alexaRank": 180115, - "urlMain": "https://www.forum-volgograd.ru", - "usernameClaimed": "kajuga", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Volgogradru": { - "tags": [ - "ru" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c" - ], - "alexaRank": 1570931, - "urlMain": "http://www.volgogradru.com", - "url": "http://www.volgogradru.com/users/{username}/", - "usernameClaimed": "rezook", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Volkodavcaoko": { - "tags": [ - "forum", - "kz", - "ru", - "ua" - ], - "checkType": "message", - "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" - ], - "alexaRank": 790771, - "urlMain": "https://volkodavcaoko.forum24.ru", - "url": "https://volkodavcaoko.forum24.ru/?32-{username}", - "usernameClaimed": "itaka", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Votetags": { - "tags": [ - "in" - ], - "checkType": "message", - "absenceStrs": [ - " looking for. Perhaps searching can help.", - "", - "Page not found" - ], - "alexaRank": 39522, - "urlMain": "https://www.votetags.info/", - "url": "https://www.votetags.info/author/{username}/", - "usernameClaimed": "danphillip", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Vsemayki": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "404 Not Found" - ], - "alexaRank": 38002, - "urlMain": "https://www.vsemayki.ru/", - "url": "https://www.vsemayki.ru/designer/{username}", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "Vxzone": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 147726, - "urlMain": "https://www.vxzone.com", - "url": "https://www.vxzone.com/forum/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "W3challs": { - "tags": [ - "tn", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "<title>404 Page not found \u2013 W3Challs Hacking Challenges" - ], - "alexaRank": 641078, - "urlMain": "https://w3challs.com/", - "url": "https://w3challs.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "W3Schools": { - "tags": [ - "education", - "us" - ], - "checkType": "status_code", - "urlMain": "https://www.w3schools.com/", - "url": "https://pathfinder-api.kai.w3spaces.com/public-profile-api/{username}", - "usernameClaimed": "rly0nheart", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "W7forums": { - "engine": "XenForo", - "alexaRank": 594741, - "urlMain": "https://www.w7forums.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "WOW Circle": { - "tags": [ - "forum", - "it", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 74356, - "urlMain": "https://forum.wowcircle.net", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Wakatime": { - "tags": [ - "ng", - "ve" - ], - "checkType": "status_code", - "alexaRank": 43749, - "urlMain": "https://wakatime.com", - "url": "https://wakatime.com/@{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Wanelo": { - "tags": [ - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 29466, - "urlMain": "https://wanelo.co/adam", - "url": "https://wanelo.co/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Warface": { - "urlSubpath": "/forums", - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 49, - "urlMain": "https://wf.mail.ru", - "usernameClaimed": "wizard", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Warhammergames": { - "disabled": true, - "tags": [ - "ru", - "ua" - ], - "engine": "uCoz", - "alexaRank": 1175634, - "urlMain": "https://warhammergames.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Warrior Forum": { - "tags": [ - "forum", - "us" - ], - "checkType": "status_code", - "alexaRank": 2772, - "urlMain": "https://www.warriorforum.com/", - "url": "https://www.warriorforum.com/members/{username}.html", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "Watchmemore.com": { - "checkType": "message", - "absenceStrs": [ - "notExists" - ], - "presenseStrs": [ - "displayName" - ], - "url": "https://api.watchmemore.com/api3/profile/{username}/", - "usernameClaimed": "medroxy", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Wattpad": { - "tags": [ - "reading", - "writing" - ], - "checkType": "message", - "absenceStrs": [ - "userError-404" - ], - "alexaRank": 805, - "urlMain": "https://www.wattpad.com/", - "url": "https://www.wattpad.com/user/{username}", - "usernameClaimed": "Dogstho7951", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Waveapps": { - "disabled": true, - "tags": [ - "ca", - "us" - ], - "checkType": "status_code", - "alexaRank": 2044, - "urlMain": "https://community.waveapps.com", - "url": "https://community.waveapps.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Waypoint": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "urlMain": "https://forum.waypoint.vice.com", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1734, - "disabled": true - }, - "Waytothelight": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "urlMain": "https://waytothelight.mybb.ru/", - "url": "https://waytothelight.mybb.ru/search.php?action=search&keywords=&author={username}", - "usernameClaimed": "lana", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 40212 - }, - "We Heart It": { - "disabled": true, - "tags": [ - "blog", - "in", - "photo" - ], - "checkType": "message", - "absenceStrs": [ - "Oops! You've landed on a moving target!" - ], - "alexaRank": 4097, - "urlMain": "https://weheartit.com/", - "url": "https://weheartit.com/{username}", - "usernameClaimed": "ventivogue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Weasyl": { - "tags": [ - "in" - ], - "checkType": "status_code", - "alexaRank": 314161, - "urlMain": "https://www.weasyl.com", - "url": "https://www.weasyl.com/~{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "WebNode": { - "tags": [ - "cz", - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 46908, - "urlMain": "https://www.webnode.cz/", - "url": "https://{username}.webnode.cz/", - "usernameClaimed": "radkabalcarova", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Weblancer": { - "tags": [ - "freelance", - "ru" - ], - "checkType": "response_url", - "alexaRank": 35189, - "urlMain": "https://www.weblancer.net", - "url": "https://www.weblancer.net/users/{username}/", - "usernameClaimed": "alraa", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Weburg": { - "similarSearch": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "»," - ], - "alexaRank": 167944, - "urlMain": "https://weburg.net", - "url": "https://weburg.net/search?where=10&search=1&q={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Weedmaps": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Find Marijuana Dispensaries, Brands" - ], - "alexaRank": 7929, - "urlMain": "https://weedmaps.com", - "url": "https://weedmaps.com/brands/{username}", - "usernameClaimed": "adams", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Weforum": { - "tags": [ - "forum", - "us" - ], - "checkType": "status_code", - "alexaRank": 3611, - "urlMain": "https://www.weforum.org", - "url": "https://www.weforum.org/people/{username}", - "usernameClaimed": "adam-leismark", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Wego.social": { - "checkType": "message", - "absenceStrs": [ - "Sorry, page not found!" - ], - "presenseStrs": [ - "Following</span>" - ], - "url": "https://wego.social/{username}", - "usernameClaimed": "Lisa_M_S", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Weld": { - "tags": [ - "ru", - "ua" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - ], - "alexaRank": 3040233, - "urlMain": "https://weld.in.ua", - "url": "https://weld.in.ua/forum/member.php/?username={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Whonix Forum": { - "tags": [ - "forum", - "in", - "ir", - "tech", - "us" - ], - "engine": "Discourse", - "alexaRank": 254571, - "urlMain": "https://forums.whonix.org/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Whyislam": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 905247, - "urlMain": "https://www.whyislam.to", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "WicgForum": { - "checkType": "message", - "regexCheck": "^(?![.-])[a-zA-Z0-9_.-]{3,20}$", - "absenceStrs": [ - "<title>WICG" - ], - "presenseStrs": [ - " Profile -" - ], - "url": "https://discourse.wicg.io/u/{username}/summary", - "usernameClaimed": "stefano", - "usernameUnclaimed": "noonewouldusethis7" - }, - "Wiki.vg": { - "checkType": "status_code", - "url": "https://wiki.vg/User:{username}", - "usernameClaimed": "Auri", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Wikidot": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "User does not exist." - ], - "presenseStrs": [ - "Wikidot user since" - ], - "alexaRank": 3805, - "urlMain": "http://www.wikidot.com/", - "url": "http://www.wikidot.com/user:info/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "WikimapiaProfile": { - "tags": [ - "maps", - "ru" - ], - "type": "wikimapia_uid", - "checkType": "message", - "absenceStrs": [ - "January 01, 1970" - ], - "alexaRank": 8581, - "urlMain": "http://wikimapia.org", - "url": "http://wikimapia.org/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "WikimapiaSearch": { - "tags": [ - "maps", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "<td>20</td>" - ], - "alexaRank": 8581, - "urlMain": "http://wikimapia.org", - "url": "http://wikimapia.org/user/tools/users_rating/?username={username}", - "caseSentitive": true, - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "Wikipedia": { - "tags": [ - "wiki" - ], - "checkType": "message", - "absenceStrs": [ - "is not registered", - "Wikipedia does not have a" - ], - "alexaRank": 12, - "urlMain": "https://www.wikipedia.org/", - "url": "https://www.wikipedia.org/wiki/User:{username}", - "usernameClaimed": "Hoadlck", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "WimkinPublicProfile": { - "checkType": "message", - "absenceStrs": [ - " The page you are looking for cannot be found." - ], - "presenseStrs": [ - "is on WIMKIN" - ], - "url": "https://wimkin.com/{username}", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldusethis7" - }, - "Winamp": { - "disabled": true, - "tags": [ - "forum", - "us" - ], - "engine": "vBulletin", - "alexaRank": 52948, - "urlMain": "http://forums.winamp.com", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Windows10forums": { - "tags": [ - "forum", - "in", - "us" - ], - "engine": "XenForo", - "alexaRank": 197218, - "urlMain": "https://www.windows10forums.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Windowsforum": { - "tags": [ - "forum", - "in", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 266446, - "urlMain": "https://windowsforum.com", - "url": "https://windowsforum.com/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Windy": { - "disabled": true, - "tags": [ - "in", - "jp", - "kr", - "pl", - "us" - ], - "checkType": "status_code", - "alexaRank": 2201, - "urlMain": "https://windy.com/", - "url": "https://community.windy.com/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Wireclub": { - "tags": [ - "in", - "tr", - "us" - ], - "checkType": "response_url", - "alexaRank": 484535, - "urlMain": "https://www.wireclub.com", - "url": "https://www.wireclub.com/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "WiredNewYork": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "in", - "pk", - "us" - ], - "errors": { - "Wired New York forum maintenance": "Site maintenance" - }, - "engine": "vBulletin", - "alexaRank": 1747505, - "urlMain": "http://wirednewyork.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Wishlistr": { - "tags": [ - "in", - "se" - ], - "checkType": "response_url", - "alexaRank": 27978, - "urlMain": "https://www.wishlistr.com", - "url": "https://www.wishlistr.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Wittyprofiles": { - "tags": [ - "in" - ], - "checkType": "message", - "absenceStrs": [ - "It looks like you are looking for something that isn't here." - ], - "alexaRank": 1736838, - "urlMain": "http://www.wittyprofiles.com/", - "url": "http://www.wittyprofiles.com/author/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Wix": { - "tags": [ - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 186, - "urlMain": "https://wix.com/", - "url": "https://{username}.wix.com", - "usernameClaimed": "support", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "WolniSlowianie": { - "checkType": "message", - "absenceStrs": [ - "Nie znaleziono strony, kt\u00f3rej szukasz." - ], - "presenseStrs": [ - "O\u015b czasu" - ], - "url": "https://wolnislowianie.pl/{username}", - "usernameClaimed": "janek", - "usernameUnclaimed": "noonewouldusethis7" - }, - "Wolpy": { - "tags": [ - "travel" - ], - "checkType": "status_code", - "alexaRank": 107661, - "urlMain": "http://wolpy.com", - "url": "http://wolpy.com/{username}/profile", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Wordnik": { - "checkType": "message", - "absenceStrs": [ - "Wordnik: Page Not Found" - ], - "presenseStrs": [ - "Welcome," - ], - "url": "https://www.wordnik.com/users/{username}", - "usernameClaimed": "elle", - "usernameUnclaimed": "noonewouldusethis7" - }, - "WordPress": { - "tags": [ - "blog" - ], - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "checkType": "response_url", - "alexaRank": 53, - "urlMain": "https://wordpress.com", - "url": "https://{username}.wordpress.com/", - "errorUrl": "wordpress.com/typo/?subdomain=", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "WordPressOrg": { - "tags": [ - "in" - ], - "checkType": "response_url", - "alexaRank": 368, - "urlMain": "https://wordpress.org/", - "url": "https://profiles.wordpress.org/{username}/", - "errorUrl": "https://wordpress.org", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "WordpressSupport": { - "checkType": "message", - "absenceStrs": [ - "User not found" - ], - "presenseStrs": [ - "s Profile | WordPress.org" - ], - "url": "https://wordpress.org/support/users/{username}/", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldusethis7" - }, - "Worldofplayers": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "alexaRank": 436032, - "urlMain": "https://worldofplayers.ru", - "usernameClaimed": "zern", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "WorlfOfTanksForum": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d" - ], - "alexaRank": 2410869, - "urlMain": "https://forum.wotanks.com", - "url": "https://forum.wotanks.com/member.php/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Wot-game": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 2727598, - "urlMain": "https://wot-game.com", - "url": "https://wot-game.com/user/{username}/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Wowhead": { - "tags": [ - "gaming", - "us" - ], - "checkType": "status_code", - "urlMain": "https://www.wowhead.com", - "url": "https://www.wowhead.com/user={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1325 - }, - "Writercenter": { - "tags": [ - "ru", - "ua" - ], - "checkType": "status_code", - "urlMain": "https://writercenter.ru", - "url": "https://writercenter.ru/profile/{username}/", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 989583 - }, - "Wuz": { - "disabled": true, - "ignore403": true, - "tags": [ - "by", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "urlMain": "http://wuz.by", - "url": "http://wuz.by/forum/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 2848353 - }, - "Wykop": { - "tags": [ - "pl" - ], - "checkType": "message", - "alexaRank": 2559, - "presenseStrs": [ - "Aktywno\u015b\u0107 u\u017cytkownika" - ], - "urlMain": "https://www.wykop.pl", - "url": "https://www.wykop.pl/ludzie/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Xanga": { - "checkType": "message", - "absenceStrs": [ - "Xanga 2.0 is Here!" - ], - "presenseStrs": [ - "s Xanga Site | Just" - ], - "url": "https://{username}.xanga.com/", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldusethis7" - }, - "XDA": { - "disabled": true, - "tags": [ - "apps", - "forum" - ], - "errors": { - "<title>Attention Required! | Cloudflare": "Cloudflare security protection detected" - }, - "engine": "vBulletin", - "alexaRank": 3291, - "urlMain": "https://forum.xda-developers.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "XXXForum.org": { - "disabled": true, - "tags": [ - "erotic", - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "urlMain": "https://xxxforum.org", - "url": "https://xxxforum.org/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "tangar", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Xbox Gamertag": { - "tags": [ - "us" - ], - "errors": { - "Something went wrong": "Site error", - "Why do I have to complete a CAPTCHA": "Captcha detected" - }, - "checkType": "status_code", - "alexaRank": 692675, - "urlMain": "https://xboxgamertag.com/", - "url": "https://xboxgamertag.com/search/{username}", - "usernameClaimed": "smrnov", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Xing": { - "tags": [ - "de", - "eu" - ], - "errors": { - "/assets/login-frontend/login-frontend": "Login required" - }, - "checkType": "status_code", - "alexaRank": 2314, - "urlMain": "https://www.xing.com/", - "url": "https://www.xing.com/profile/{username}", - "usernameClaimed": "Ivan_Ivanov", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Xvideos": { - "tags": [ - "porn", - "us" - ], - "checkType": "status_code", - "alexaRank": 107, - "urlMain": "https://xvideos.com/", - "url": "https://xvideos.com/profiles/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "XvideosModels": { - "checkType": "message", - "absenceStrs": [ - "THIS PROFILE DOESN'T EXIST" - ], - "presenseStrs": [ - "Total video views" - ], - "url": "https://www.xvideos.com/models/{username}", - "usernameClaimed": "tiffany-tyler", - "usernameUnclaimed": "noonewouldusethis7" - }, - "Ya-uchitel": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 167839, - "urlMain": "https://ya-uchitel.ru/", - "usernameClaimed": "Vesna", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "YaPishu.net": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "presenseStrs": [ - "for_profile" - ], - "alexaRank": 332628, - "urlMain": "https://yapishu.net", - "url": "https://yapishu.net/user/{username}", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Yalta-info": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "urlMain": "http://www.yalta-info.net", - "url": "http://www.yalta-info.net/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "%D0%96%D1%83%D0%BA%D0%BE%D0%B2", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "YandexReviews": { - "tags": [ - "ru" - ], - "type": "yandex_public_id", - "headers": { - "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36" - }, - "checkType": "message", - "presenseStrs": [ - "content=\"\u041e\u0442\u0437\u044b\u0432\u044b \u0438 \u043e\u0446\u0435\u043d\u043a\u0438" - ], - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441\u043a\u0440\u044b\u043b \u0441\u0432\u043e\u044e \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443" - ], - "alexaRank": 50, - "urlMain": "https://yandex.ru/", - "url": "https://reviews.yandex.ru/user/{username}", - "source": "Yandex", - "usernameClaimed": "20vpvmmwpnwyb0dpbnjvy3k14c", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "YandexBugbounty": { - "tags": [ - "hacking", - "ru" - ], - "checkType": "status_code", - "alexaRank": 50, - "urlMain": "https://yandex.ru/bugbounty/", - "url": "https://yandex.ru/bugbounty/researchers/{username}/", - "source": "Yandex", - "usernameClaimed": "pyrk1", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "YandexCollections API": { - "tags": [ - "ru", - "sharing" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36" - }, - "errors": { - "action=\"/checkcaptcha\" onsubmit": "Captcha detected, use proxy/vpn" - }, - "checkType": "message", - "presenseStrs": [ - "public_id" - ], - "absenceStrs": [ - "cl-not-found-content__title" - ], - "alexaRank": 34, - "urlMain": "https://yandex.ru/collections/", - "url": "https://yandex.ru/collections/api/users/{username}/", - "source": "Yandex", - "usernameClaimed": "yandex", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "YandexCollections API (by yandex_public_id)": { - "tags": [ - "ru", - "sharing" - ], - "type": "yandex_public_id", - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36" - }, - "errors": { - "action=\"/checkcaptcha\" onsubmit": "Captcha detected, use proxy/vpn" - }, - "checkType": "message", - "presenseStrs": [ - "public_id" - ], - "absenceStrs": [ - "cl-not-found-content__title" - ], - "alexaRank": 50, - "urlMain": "https://yandex.ru/collections/", - "url": "https://yandex.ru/collections/api/users/{username}/", - "source": "Yandex", - "usernameClaimed": "hx0aur0arkyebkxztq8pr8b4dg", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "YandexMarket": { - "tags": [ - "ru" - ], - "type": "yandex_public_id", - "checkType": "message", - "absenceStrs": [ - "//yastatic.net/market-export/_/i/zero-state/404.svg" - ], - "alexaRank": 50, - "urlMain": "https://market.yandex.ru/", - "url": "https://market.yandex.ru/user/{username}", - "source": "Yandex", - "usernameClaimed": "6j2uh4rhp5d9gqgbynaqy2p75m", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "YandexMusic": { - "tags": [ - "music", - "ru" - ], - "ignore403": true, - "headers": { - "Referer": "https://music.yandex.ru/users/test/playlists" - }, - "checkType": "status_code", - "alexaRank": 50, - "urlMain": "https://music.yandex.ru/", - "url": "https://music.yandex.ru/users/{username}/playlists", - "source": "Yandex", - "usernameClaimed": "YandexMusic", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "Soberu": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "urlMain": "https://yasobe.ru", - "url": "https://yasobe.ru/na/{username}", - "usernameClaimed": "snoop_project", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 10489582, - "disabled": true - }, - "YandexZnatoki": { - "tags": [ - "ru" - ], - "type": "yandex_public_id", - "checkType": "status_code", - "alexaRank": 50, - "urlMain": "https://yandex.ru/q/", - "url": "https://yandex.ru/q/profile/{username}", - "source": "Yandex", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "YandexZenChannel": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - ".zen-ui-page-404" - ], - "presenseStrs": [ - "zen_object_id" - ], - "alexaRank": 50, - "urlMain": "https://dzen.ru", - "url": "https://dzen.ru/channel/{username}", - "headers": { - "Cookie": "Session_id=noauth:1; yandex_login=; ys=c_chck.1; mda2_beacon=1; sso_status=sso.passport.yandex.ru:synchronized; _yasc=1; _ym_uid=1; _ym_d=1; _ym_isad=2; yandexuid=1" - }, - "source": "Yandex", - "usernameClaimed": "tema", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "YandexZenUser": { - "tags": [ - "ru" - ], - "type": "yandex_public_id", - "checkType": "status_code", - "alexaRank": 50, - "urlMain": "https://zen.yandex.ru", - "url": "https://zen.yandex.ru/user/{username}", - "source": "Yandex", - "usernameClaimed": "20vpvmmwpnwyb0dpbnjvy3k14c", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "Yapisal": { - "tags": [ - "forum", - "tr" - ], - "checkType": "message", - "absenceStrs": [ - "\"error_type\":\"not_found\"" - ], - "presenseStrs": [ - "\"user\":{\"id\":" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/116.0" - }, - "alexaRank": 2925378, - "urlProbe": "{urlMain}/u/{username}.json", - "urlMain": "https://forum.yapisal.net", - "url": "{urlMain}/u/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Yazbel": { - "tags": [ - "forum" - ], - "checkType": "status_code", - "url": "https://forum.yazbel.com/u/{username}/summary", - "usernameClaimed": "abdullah189", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "YouNow": { - "tags": [ - "be", - "us" - ], - "urlProbe": "https://api.younow.com/php/api/broadcast/info/user={username}/", - "checkType": "message", - "absenceStrs": [ - "No users found" - ], - "alexaRank": 25470, - "urlMain": "https://www.younow.com/", - "url": "https://www.younow.com/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "YouPic": { - "tags": [ - "photo" - ], - "checkType": "status_code", - "alexaRank": 42331, - "urlMain": "https://youpic.com/", - "url": "https://youpic.com/photographer/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "YouPorn": { - "tags": [ - "porn", - "us" - ], - "checkType": "message", - "presenseStrs": [ - "Videos uploaded by" - ], - "absenceStrs": [ - "BUT CAN'T FIND WHAT YOU'RE LOOKING FOR." - ], - "alexaRank": 663, - "urlMain": "https://youporn.com", - "url": "https://youporn.com/uservids/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "YouTube": { - "tags": [ - "video" - ], - "headers": { - "User-Agent": "curl/8.6.0", - "Accept": "*/*" - }, - "regexCheck": "^[^\\/]+$", - "checkType": "message", - "presenseStrs": [ - "visitorData", - "userAgent" - ], - "absenceStrs": [ - "404 Not Found" - ], - "alexaRank": 2, - "urlMain": "https://www.youtube.com/", - "url": "https://www.youtube.com/@{username}", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "YouTube User": { - "tags": [ - "video" - ], - "headers": { - "User-Agent": "curl/8.6.0", - "Accept": "*/*" - }, - "regexCheck": "^[^\\/]+$", - "checkType": "message", - "presenseStrs": [ - "visitorData", - "userAgent" - ], - "absenceStrs": [ - "404 Not Found" - ], - "alexaRank": 2, - "urlMain": "https://www.youtube.com/", - "url": "https://www.youtube.com/@{username}", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis777" - }, - "Yummly": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "profileName" - ], - "alexaRank": 8249, - "urlMain": "https://www.yummly.com", - "url": "https://mapi.yummly.com/mapi/v19/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Zagony": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d." - ], - "alexaRank": 72861, - "urlMain": "https://zagony.ru", - "url": "https://zagony.ru/user/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Zapravdu": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 3826988, - "urlMain": "http://zapravdu.ru/", - "url": "http://zapravdu.ru/forum/search.php?author={username}", - "usernameClaimed": "ccsr", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Zatrybi.pl": { - "checkType": "message", - "absenceStrs": [ - "Nie znaleziono strony" - ], - "presenseStrs": [ - "Zarejestrowany od:" - ], - "url": "https://zatrybi.pl/user/{username}", - "usernameClaimed": "fenrek", - "usernameUnclaimed": "noonewouldusethis7" - }, - "Zbiornik.com": { - "checkType": "message", - "absenceStrs": [ - "Szukaj" - ], - "presenseStrs": [ - "INFO" - ], - "url": "https://mini.zbiornik.com/{username}", - "usernameClaimed": "Soif", - "usernameUnclaimed": "noonewouldusethis7" - }, - "Zenitbol": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 6746731, - "urlMain": "http://zenitbol.ru", - "usernameClaimed": "vera", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Zhihu": { - "tags": [ - "cn" - ], - "checkType": "message", - "alexaRank": 139, - "urlMain": "https://www.zhihu.com/", - "url": "https://www.zhihu.com/people/{username}", - "absenceStrs": [ - "\u7528\u6237\u4e0d\u5b58\u5728" - ], - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "Zhyk": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 449117, - "urlMain": "https://zhyk.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Zmarsa.com": { - "checkType": "message", - "absenceStrs": [ - "B\u0142\u0105d na stronie" - ], - "presenseStrs": [ - "Galeria u\u017cytkownika" - ], - "url": "https://zmarsa.com/uzytkownik/{username}/glowna/", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldusethis7" - }, - "Zmey": { - "tags": [ - "forum", - "sport" - ], - "checkType": "response_url", - "urlMain": "https://zmey.ru", - "url": "https://zmey.ru/user/@{username}", - "usernameClaimed": "alec", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 6863219 - }, - "Zomato": { - "tags": [ - "geosocial", - "in" - ], - "headers": { - "Accept-Language": "en-US,en;q=0.9" - }, - "checkType": "status_code", - "alexaRank": 1300, - "urlMain": "https://www.zomato.com/", - "url": "https://www.zomato.com/pl/{username}/foodjourney", - "usernameClaimed": "deepigoyal", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "afsoc.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://afsoc.ucoz.ru", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "akniga": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 18723, - "urlMain": "https://akniga.org/", - "url": "https://akniga.org/profile/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "aliensoup.com": { - "engine": "XenForo", - "alexaRank": 1870623, - "urlMain": "https://aliensoup.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "allgaz": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 753089, - "urlMain": "https://forum.allgaz.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "alliedmods": { - "tags": [ - "forum", - "gb", - "in", - "jp", - "tr", - "us", - "uz" - ], - "engine": "vBulletin", - "alexaRank": 39020, - "urlMain": "https://forums.alliedmods.net/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "allmylinks": { - "tags": [ - "links" - ], - "checkType": "message", - "absenceStrs": [ - "Page not found" - ], - "alexaRank": 15293, - "urlMain": "https://allmylinks.com/", - "url": "https://allmylinks.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "alpanf.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://alpanf.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "amax-sb.ru": { - "engine": "uCoz", - "alexaRank": 7441128, - "urlMain": "http://amax-sb.ru", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "aminoapp": { - "tags": [ - "br", - "us" - ], - "checkType": "status_code", - "alexaRank": 3178, - "urlMain": "https://aminoapps.com/", - "url": "https://aminoapps.com/u/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis77777", - "disabled": true - }, - "analitika-forex.ru": { - "engine": "uCoz", - "alexaRank": 5995985, - "urlMain": "http://analitika-forex.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "andrei.moy.su": { - "engine": "uCoz", - "urlMain": "http://andrei.moy.su", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "antalya.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://antalya.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 12622701 - }, - "antihack.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://antihack.ucoz.net", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "antivirus.moy.su": { - "engine": "uCoz", - "urlMain": "http://antivirus.moy.su", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "antizombie.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://antizombie.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "movies", - "ru" - ] - }, - "army-rus.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://army-rus.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 12825102 - }, - "armyboots.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://armyboots.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "artinvestment": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 195417, - "urlMain": "https://forum.artinvestment.ru/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "asecurity.do.am": { - "engine": "uCoz", - "urlMain": "http://asecurity.do.am", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "atm-club.moy.su": { - "engine": "uCoz", - "urlMain": "http://atm-club.moy.su", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "australianfrequentflyer.com.au": { - "tags": [ - "au", - "forum" - ], - "engine": "XenForo", - "alexaRank": 257819, - "urlMain": "https://www.australianfrequentflyer.com.au/community/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "author.today": { - "tags": [ - "reading", - "ru" - ], - "checkType": "status_code", - "alexaRank": 12218, - "urlMain": "https://author.today", - "url": "https://author.today/u/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "authorSTREAM": { - "tags": [ - "documents", - "in", - "sharing" - ], - "checkType": "status_code", - "alexaRank": 6034, - "urlMain": "http://www.authorstream.com/", - "url": "http://www.authorstream.com/author/{username}/", - "usernameClaimed": "roxanne", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "autotob.ru": { - "engine": "uCoz", - "urlMain": "http://autotob.ru", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1156235 - }, - "av.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://av.3dn.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 9097927 - }, - "aviabaza-meria.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://aviabaza-meria.ucoz.ru", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "awd.ru": { - "tags": [ - "forum", - "ru", - "travel" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "presenseStrs": [ - "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043f\u043e\u0438\u0441\u043a\u0430:" - ], - "alexaRank": 32426, - "urlMain": "https://forum.awd.ru", - "url": "https://forum.awd.ru/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "babyboom.pl": { - "engine": "XenForo", - "alexaRank": 685508, - "urlMain": "http://www.babyboom.pl/forum/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "pl" - ] - }, - "barnaul-forum.ru": { - "engine": "uCoz", - "alexaRank": 8892304, - "urlMain": "http://barnaul-forum.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "bbs.evony.com": { - "tags": [ - "forum", - "in", - "pk", - "tr", - "us" - ], - "engine": "vBulletin", - "alexaRank": 457801, - "urlMain": "http://bbs.evony.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "bbs.huami.com": { - "disabled": true, - "tags": [ - "cn", - "in", - "ir", - "ru", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "\u63d0\u793a\u4fe1\u606f - huami\u8bba\u575b - Powered by Discuz!" - ], - "alexaRank": 137565, - "urlMain": "https://bbs.huami.com", - "url": "https://bbs.huami.com/home.php?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "beyond3d": { - "tags": [ - "forum", - "in", - "pk", - "ru", - "us" - ], - "engine": "XenForo", - "alexaRank": 500969, - "urlMain": "https://forum.beyond3d.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "bigfooty.com": { - "tags": [ - "au", - "forum" - ], - "engine": "XenForo", - "alexaRank": 153706, - "urlMain": "https://www.bigfooty.com/forum/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "biohack": { - "checkType": "status_code", - "alexaRank": 2248035, - "urlMain": "https://forum.biohack.me", - "url": "https://forum.biohack.me/index.php?p=/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "bluesystem": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "images/avatars/default_avatars/22.gif" - ], - "alexaRank": 2076846, - "urlMain": "http://forum.bluesystem.online", - "url": "http://forum.bluesystem.online/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "Tiffani", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "browncafe.com": { - "tags": [ - "forum" - ], - "engine": "XenForo", - "alexaRank": 449545, - "urlMain": "http://www.browncafe.com/community/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "caravelgames": { - "checkType": "message", - "absenceStrs": [ - "Guest" - ], - "alexaRank": 2871774, - "urlMain": "http://forum.caravelgames.com", - "url": "http://forum.caravelgames.com/member.php?Action=viewprofile&username={username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "catholic": { - "disabled": true, - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 66514, - "urlMain": "https://forums.catholic.com", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ceed.at.ua": { - "disabled": true, - "engine": "uCoz", - "alexaRank": 6723704, - "urlMain": "http://ceed.at.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "cfd-online": { - "tags": [ - "ca", - "de", - "fr", - "in", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "CFD Online Discussion Forums" - ], - "alexaRank": 90772, - "urlMain": "https://www.cfd-online.com", - "url": "https://www.cfd-online.com/Forums/members/{username}.html", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "chaos.social": { - "checkType": "status_code", - "alexaRank": 2073381, - "regexCheck": "^[a-zA-Z0-9_]+$", - "urlMain": "https://chaos.social/", - "url": "https://chaos.social/@{username}", - "usernameClaimed": "rixx", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "networking" - ] - }, - "cheat-master.ru": { - "tags": [ - "ru", - "ua" - ], - "engine": "uCoz", - "alexaRank": 498528, - "urlMain": "http://cheat-master.ru", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "chsnik-kz.ucoz.kz": { - "tags": [ - "kz" - ], - "engine": "uCoz", - "alexaRank": 280915, - "urlMain": "http://chsnik-kz.ucoz.kz", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "cigarpass.com": { - "tags": [ - "forum", - "ir" - ], - "engine": "XenForo", - "alexaRank": 1051756, - "urlMain": "http://www.cigarpass.com/forum", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "club-2105.at.ua": { - "engine": "uCoz", - "urlMain": "http://club-2105.at.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "club-fiat.org.ua": { - "tags": [ - "ua" - ], - "engine": "uCoz", - "alexaRank": 2757380, - "urlMain": "http://club-fiat.org.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "club.7ya.ru": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 38054, - "urlMain": "https://club.7ya.ru", - "url": "https://club.7ya.ru/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "club.cnews.ru": { - "disabled": true, - "tags": [ - "blog", - "ru" - ], - "checkType": "status_code", - "alexaRank": 19671, - "urlMain": "https://club.cnews.ru/", - "url": "https://club.cnews.ru/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "clubsnap.com": { - "tags": [ - "forum", - "in", - "sg", - "us" - ], - "engine": "XenForo", - "alexaRank": 463420, - "urlMain": "https://www.clubsnap.com/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "collectors.com": { - "tags": [ - "forum", - "us" - ], - "checkType": "status_code", - "alexaRank": 44338, - "urlMain": "https://forums.collectors.com", - "url": "https://forums.collectors.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "community.asterisk.org": { - "tags": [ - "forum", - "in", - "ir", - "jp", - "us" - ], - "engine": "Discourse", - "alexaRank": 60320, - "urlMain": "https://community.asterisk.org", - "usernameClaimed": "bford", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "community.p2pu.org": { - "engine": "Discourse", - "alexaRank": 657370, - "urlMain": "https://community.p2pu.org", - "usernameClaimed": "grif", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "couchsurfing": { - "tags": [ - "in" - ], - "checkType": "status_code", - "alexaRank": 19065, - "urlMain": "https://www.couchsurfing.com/", - "url": "https://www.couchsurfing.com/people/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "crown6.org": { - "engine": "uCoz", - "alexaRank": 677490, - "urlMain": "http://crown6.org", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "cs-ru.ucoz.org": { - "engine": "uCoz", - "urlMain": "http://cs-ru.ucoz.org", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "cs-strikez.org": { - "tags": [ - "by", - "ru", - "ua" - ], - "engine": "uCoz", - "alexaRank": 380907, - "urlMain": "http://cs-strikez.org", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "cyber.harvard.edu": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 575, - "urlMain": "https://cyber.harvard.edu", - "url": "https://cyber.harvard.edu/people/{username}", - "usernameClaimed": "dboyd", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "d3": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 45834, - "urlMain": "https://d3.ru/", - "url": "https://d3.ru/user/{username}/posts", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "dailykos": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 6815, - "urlMain": "https://www.dailykos.com", - "url": "https://www.dailykos.com/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "delta72.at.ua": { - "engine": "uCoz", - "alexaRank": 3634377, - "urlMain": "http://delta72.at.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "devRant": { - "tags": [ - "coding", - "in" - ], - "checkType": "response_url", - "alexaRank": 113177, - "urlMain": "https://devrant.com/", - "url": "https://devrant.com/users/{username}", - "errorUrl": "https://devrant.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "devushka": { - "urlSubpath": "/forum", - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 1755762, - "urlMain": "https://devushka.ru/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "diecastcrazy.com": { - "engine": "XenForo", - "alexaRank": 1796471, - "urlMain": "http://diecastcrazy.com/", - "usernameClaimed": "texas3", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "auto", - "forum" - ] - }, - "dieselmastera.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 1315813, - "urlMain": "http://dieselmastera.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "dimitrov.ucoz.ua": { - "engine": "uCoz", - "alexaRank": 9464803, - "urlMain": "http://dimitrov.ucoz.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "discourse.haskell.org": { - "tags": [ - "coding", - "forum", - "in", - "za" - ], - "engine": "Discourse", - "alexaRank": 64969, - "urlMain": "https://discourse.haskell.org", - "usernameClaimed": "philipgaudreau", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "diz-cs.ru": { - "engine": "uCoz", - "alexaRank": 5886610, - "urlMain": "http://diz-cs.ru", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "dnbforum.com": { - "engine": "XenForo", - "alexaRank": 4411168, - "urlMain": "http://dnbforum.com/", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "doctissimo": { - "tags": [ - "fr" - ], - "checkType": "status_code", - "alexaRank": 6721, - "urlMain": "https://club.doctissimo.fr", - "url": "https://club.doctissimo.fr/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "donate.stream": { - "tags": [ - "finance", - "ru" - ], - "checkType": "status_code", - "alexaRank": 373930, - "urlMain": "https://donate.stream/", - "url": "https://donate.stream/{username}", - "usernameClaimed": "moses91", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "dpils-scooter.ucoz.lv": { - "tags": [ - "ru", - "ua" - ], - "engine": "uCoz", - "alexaRank": 408770, - "urlMain": "http://dpils-scooter.ucoz.lv", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "drawmixpaint": { - "checkType": "status_code", - "alexaRank": 884576, - "urlMain": "https://forum.drawmixpaint.com", - "url": "https://forum.drawmixpaint.com/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "disabled": true - }, - "dremel.do.am": { - "engine": "uCoz", - "urlMain": "http://dremel.do.am", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "drive2": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "urlMain": "https://www.drive2.ru/", - "url": "https://www.drive2.ru/users/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1558 - }, - "dvocu.ru": { - "engine": "uCoz", - "alexaRank": 8131750, - "urlMain": "http://dvocu.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "dwg": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 45931, - "urlMain": "https://forum.dwg.ru/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "eBaumsWorld": { - "tags": [ - "news" - ], - "checkType": "status_code", - "alexaRank": 9556, - "urlMain": "https://www.ebaumsworld.com/", - "url": "https://www.ebaumsworld.com/user/profile/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "eGPU": { - "tags": [ - "forum", - "jp", - "tech", - "tw", - "us" - ], - "checkType": "status_code", - "alexaRank": 105020, - "urlMain": "https://egpu.io/", - "url": "https://egpu.io/forums/profile/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "easyen": { - "tags": [ - "ru" - ], - "presenseStrs": [ - "prof_12w_pr" - ], - "engine": "uCoz", - "alexaRank": 11663, - "urlMain": "https://easyen.ru", - "usernameClaimed": "wd", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "easyjob.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://easyjob.ucoz.ru", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "ru" - ] - }, - "egida.by": { - "tags": [ - "by" - ], - "engine": "uCoz", - "alexaRank": 421582, - "urlMain": "http://egida.by", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "eintracht": { - "tags": [ - "tr", - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "status_code", - "alexaRank": 416094, - "urlMain": "https://eintracht.de", - "url": "https://community.eintracht.de/fans/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ekzoticsad.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://ekzoticsad.3dn.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "elektrik-avto.ru": { - "engine": "uCoz", - "alexaRank": 2524316, - "urlMain": "http://elektrik-avto.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "empires.su": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://empires.su", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "espero-club.ru": { - "engine": "uCoz", - "urlMain": "http://espero-club.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "excelworld.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 283903, - "urlMain": "http://excelworld.ru", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "fablero.ucoz.ru": { - "tags": [ - "in" - ], - "engine": "uCoz", - "alexaRank": 926078, - "urlMain": "http://fablero.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "fanat1k": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 84823, - "urlMain": "https://forum.fanat1k.ru", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "fanficslandia.com": { - "engine": "XenForo", - "alexaRank": 9313550, - "urlMain": "https://fanficslandia.com/index.php", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "fire-team.clan.su": { - "engine": "uCoz", - "urlMain": "http://fire-team.clan.su", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "firesofheaven.org": { - "engine": "XenForo", - "alexaRank": 904078, - "urlMain": "https://www.firesofheaven.org", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "fixya": { - "tags": [ - "us" - ], - "checkType": "status_code", - "alexaRank": 4826, - "urlMain": "https://www.fixya.com", - "url": "https://www.fixya.com/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "fl": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 62704, - "urlMain": "https://www.fl.ru/", - "url": "https://www.fl.ru/users/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "fobia.at.ua": { - "engine": "uCoz", - "urlMain": "http://fobia.at.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "footballindex": { - "tags": [ - "forum", - "gb", - "in", - "sg", - "us" - ], - "checkType": "status_code", - "alexaRank": 960980, - "urlMain": "https://forums.footballindex.co.uk", - "url": "https://forums.footballindex.co.uk/user/{username}", - "usernameClaimed": "misto", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "forex-trader.do.am": { - "engine": "uCoz", - "urlMain": "http://forex-trader.do.am", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forum-b.ru": { - "disabled": true, - "tags": [ - "forum", - "freelance", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 1591283, - "urlMain": "https://forum-b.ru", - "url": "https://forum-b.ru/search.php?action=search&keywords=&author={username}", - "usernameClaimed": "pirat4761", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forum-mil.ru": { - "engine": "uCoz", - "alexaRank": 7895206, - "urlMain": "http://forum-mil.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "forum-ssc.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://forum-ssc.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "forum.cxem.net": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "errors": { - "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430": "Too many reqeusts" - }, - "checkType": "message", - "absenceStrs": [ - "\u041d\u0430\u0439\u0434\u0435\u043d\u043e 0 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432" - ], - "alexaRank": 45469, - "urlMain": "https://forum.cxem.net/", - "url": "https://forum.cxem.net/index.php?/search/&q={username}&quick=1&type=core_members", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forum.hr": { - "tags": [ - "forum", - "hr" - ], - "engine": "vBulletin", - "alexaRank": 47440, - "urlMain": "http://www.forum.hr", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forum.nameberry.com": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 18495, - "urlMain": "https://forum.nameberry.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forum.postupim.ru": { - "tags": [ - "education", - "forum", - "ru" - ], - "engine": "uCoz", - "alexaRank": 1026513, - "urlMain": "http://forum.postupim.ru", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forum.ubuntu-it.org": { - "tags": [ - "ch", - "forum", - "in", - "it" - ], - "engine": "phpBB", - "alexaRank": 120956, - "urlMain": "https://forum.ubuntu-it.org", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forum.ykt.ru": { - "tags": [ - "forum", - "ru" - ], - "checkType": "response_url", - "alexaRank": 20164, - "urlMain": "https://forum.ykt.ru", - "url": "https://forum.ykt.ru/viewprofile.jsp?forum_id=11&user={username}", - "usernameClaimed": "NINJA", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forums.battlefield.com": { - "disabled": true, - "tags": [ - "forum", - "gaming", - "gb", - "us" - ], - "checkType": "status_code", - "alexaRank": 30405, - "urlMain": "https://forums.battlefield.com", - "url": "https://forums.battlefield.com/en-us/profile/{username}", - "usernameClaimed": "NLBartmaN", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forums.bulbagarden.net": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 4189, - "urlMain": "http://forums.bulbagarden.net", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forums.digitalpoint.com": { - "tags": [ - "forum", - "in" - ], - "engine": "XenForo", - "alexaRank": 17020, - "urlMain": "https://forums.digitalpoint.com/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forums.docker.com": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 2797, - "urlMain": "https://forums.docker.com", - "usernameClaimed": "dafritz84", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forums.drom.ru": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u043f\u0440\u043e\u0444\u0438\u043b\u044f:" - ], - "alexaRank": 1272, - "urlMain": "https://www.forumsdrom.ru/", - "url": "https://www.forumsdrom.ru/member.php?username={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forums.ea.com": { - "disabled": true, - "tags": [ - "forum", - "gaming", - "us" - ], - "checkType": "status_code", - "alexaRank": 610, - "urlMain": "https://forums.ea.com", - "url": "https://forums.ea.com/en/nhl/profile/discussions/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forums.eagle.ru": { - "disabled": true, - "tags": [ - "ca", - "forum", - "gaming", - "gb", - "in", - "us" - ], - "engine": "vBulletin", - "alexaRank": 114146, - "urlMain": "https://forums.eagle.ru", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forums.opera.com": { - "tags": [ - "forum", - "us" - ], - "checkType": "status_code", - "alexaRank": 1523, - "urlMain": "https://forums.opera.com/", - "url": "https://forums.opera.com/user/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forums.overclockers.co.uk": { - "tags": [ - "forum", - "gb", - "uk" - ], - "disabled": true, - "engine": "XenForo", - "alexaRank": 17632, - "urlMain": "https://forums.overclockers.co.uk", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forums.sailboatowners.com": { - "disabled": true, - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 182197, - "urlMain": "http://forums.sailboatowners.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forums.serebii.net": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 6195, - "urlMain": "https://forums.serebii.net", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "forums.wrestlezone.com": { - "engine": "XenForo", - "alexaRank": 926689, - "urlMain": "http://forums.wrestlezone.com/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "foumds.universaldashboard.io": { - "engine": "Discourse", - "alexaRank": 1166714, - "urlMain": "https://forums.universaldashboard.io/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "tech" - ] - }, - "free-pass.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 2267468, - "urlMain": "http://free-pass.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Codeby.net": { - "tags": [ - "forum", - "hacking", - "ru" - ], - "engine": "XenForo", - "alexaRank": 174592, - "urlMain": "https://codeby.net", - "usernameClaimed": "pragmalion", - "disabled": true, - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "freelance.codeby.net": { - "disabled": true, - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430!" - ], - "alexaRank": 174592, - "urlMain": "https://freelance.codeby.net", - "url": "https://freelance.codeby.net/user/{username}/portfolio/", - "usernameClaimed": "agnerfist", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "funcom": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 133344, - "urlMain": "https://forums.funcom.com", - "usernameClaimed": "everqu", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "funny-games.biz": { - "disabled": true, - "tags": [ - "forum", - "lt", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 107518, - "urlMain": "https://forums.funny-games.biz", - "url": "https://forums.funny-games.biz/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "garminych": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "urlMain": "http://forum.garminych.ru/", - "url": "http://forum.garminych.ru/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "Corado", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "gcup.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 303192, - "urlMain": "http://gcup.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "gebirgs.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://gebirgs.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "hobby", - "ru" - ] - }, - "gentoo": { - "tags": [ - "fi", - "forum", - "in" - ], - "checkType": "message", - "absenceStrs": [ - "title>Gentoo Forums :: " - ], - "alexaRank": 60225, - "urlMain": "https://forums.gentoo.org", - "url": "https://forums.gentoo.org/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "geocaching": { - "tags": [ - "de", - "hobby", - "us" - ], - "checkType": "status_code", - "alexaRank": 17871, - "urlMain": "https://www.geocaching.com/", - "url": "https://www.geocaching.com/profile/?u={username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "getmyuni": { - "tags": [ - "in" - ], - "checkType": "message", - "absenceStrs": [ - "Error 404" - ], - "alexaRank": 8345, - "urlMain": "https://getmyuni.com/", - "url": "https://www.getmyuni.com/user/{username}", - "usernameClaimed": "Subeesh.S30b0", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "gfycat": { - "tags": [ - "photo", - "sharing" - ], - "checkType": "status_code", - "alexaRank": 2166, - "urlMain": "https://gfycat.com/", - "url": "https://gfycat.com/@{username}", - "usernameClaimed": "Test", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "gitarizm": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 7680768, - "urlMain": "https://forum.gitarizm.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "gloria.tv": { - "tags": [ - "ar", - "mx", - "pl", - "sk", - "us" - ], - "checkType": "status_code", - "alexaRank": 38090, - "urlMain": "https://gloria.tv", - "url": "https://gloria.tv/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "goha": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 57862, - "urlMain": "https://forums.goha.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Habr": { - "tags": [ - "blog", - "discussion", - "ru" - ], - "checkType": "status_code", - "alexaRank": 1265, - "urlMain": "https://habr.com/", - "url": "https://habr.com/ru/users/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "hackings.ru": { - "engine": "uCoz", - "urlMain": "http://hackings.ru", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Hackster": { - "tags": [ - "in", - "tech" - ], - "checkType": "status_code", - "alexaRank": 21573, - "urlMain": "https://www.hackster.io", - "url": "https://www.hackster.io/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "hikvision.msk.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 1279617, - "urlMain": "http://hikvision.msk.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "hiveos.farm": { - "tags": [ - "at", - "cz", - "forum", - "ru", - "us" - ], - "engine": "Discourse", - "alexaRank": 6288, - "urlMain": "https://forum.hiveos.farm", - "usernameClaimed": "halogenius", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "hochu": { - "tags": [ - "forum", - "ru", - "ua" - ], - "engine": "phpBB", - "alexaRank": 50460, - "urlMain": "http://forum.hochu.ua", - "usernameClaimed": "irina", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "hogwarts.nz": { - "engine": "XenForo", - "alexaRank": 7856081, - "urlMain": "https://hogwarts.nz/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "hondaswap.com": { - "engine": "XenForo", - "alexaRank": 1387532, - "urlMain": "http://hondaswap.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "hunting": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f." - ], - "alexaRank": 121760, - "urlMain": "https://www.hunting.ru/forum/", - "url": "https://www.hunting.ru/forum/members/?username={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "iPhoneForums.net": { - "disabled": true, - "checkType": "message", - "absenceStrs": [ - "The specified member cannot be found" - ], - "alexaRank": 1961168, - "urlMain": "https://www.iphoneforums.net", - "url": "https://www.iphoneforums.net/members/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "tech" - ] - }, - "iRecommend.RU": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 2482, - "urlMain": "https://irecommend.ru/", - "url": "https://irecommend.ru/users/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "igrarena": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f." - ], - "alexaRank": 2979975, - "urlMain": "https://forum.igrarena.ru", - "url": "https://forum.igrarena.ru/members/?username={username}", - "usernameClaimed": "forester", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "igromania": { - "tags": [ - "forum", - "gaming", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 21104, - "urlMain": "http://forum.igromania.ru/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "imgsrc.ru": { - "tags": [ - "be", - "de", - "es", - "in", - "pt", - "ru", - "us" - ], - "checkType": "response_url", - "alexaRank": 26075, - "urlMain": "https://imgsrc.ru/", - "url": "https://imgsrc.ru/main/user.php?user={username}", - "errorUrl": "https://imgsrc.ru/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "induste.com": { - "tags": [ - "forum", - "ma", - "re" - ], - "engine": "XenForo", - "alexaRank": 390003, - "urlMain": "https://induste.com/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "infopps.moy.su": { - "engine": "uCoz", - "urlMain": "http://infopps.moy.su", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "interpals": { - "tags": [ - "dating" - ], - "checkType": "message", - "absenceStrs": [ - "The requested user does not exist or is inactive" - ], - "alexaRank": 14174, - "urlMain": "https://www.interpals.net/", - "url": "https://www.interpals.net/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noneownsthisusername" - }, - "iXBT": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u0440\u043e\u0441\u0442\u0438\u0442\u0435, \u043d\u043e \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a" - ], - "alexaRank": 5024, - "urlMain": "https://forum.ixbt.com", - "url": "https://forum.ixbt.com/users.cgi?id=info:{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "izmailonline.com": { - "tags": [ - "ua" - ], - "engine": "uCoz", - "alexaRank": 1097031, - "urlMain": "http://izmailonline.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "izobil.ru": { - "engine": "uCoz", - "urlMain": "http://izobil.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "jeuxvideo": { - "tags": [ - "fr", - "gaming" - ], - "checkType": "message", - "presenseStrs": [ - "Messages Forums" - ], - "absenceStrs": [ - "Vous \u00eates" - ], - "alexaRank": 2436, - "urlMain": "http://www.jeuxvideo.com", - "url": "http://www.jeuxvideo.com/profil/{username}?mode=infos", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "jog.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://jog.3dn.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 5070099 - }, - "juce": { - "tags": [ - "ca", - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 356973, - "urlMain": "https://forum.juce.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "kali.org.ru": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 2028167, - "urlMain": "https://kali.org.ru", - "url": "https://kali.org.ru/profile/{username}", - "usernameClaimed": "Drozd", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "kiabongo.info": { - "engine": "uCoz", - "alexaRank": 6066870, - "urlMain": "http://kiabongo.info", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "kofi": { - "tags": [ - "freelance", - "in", - "ru", - "us" - ], - "regexCheck": "^[^\\.]+$", - "checkType": "message", - "absenceStrs": [ - "Make income from your art!", - "https://storage.ko-fi.com/cdn/og.png" - ], - "alexaRank": 5421, - "urlMain": "https://ko-fi.com", - "url": "https://ko-fi.com/{username}", - "usernameClaimed": "yeahkenny", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "komsomolskiy.at.ua": { - "engine": "uCoz", - "urlMain": "http://komsomolskiy.at.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "kursk46.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://kursk46.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "kursknet": { - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "urlMain": "https://forum.kursknet.ru", - "usernameClaimed": "Naffy", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 11566418 - }, - "kwork": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 7462, - "urlMain": "https://www.kwork.ru/", - "url": "https://kwork.ru/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "l2-best.clan.su": { - "engine": "uCoz", - "urlMain": "http://l2-best.clan.su", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "labpentestit": { - "tags": [ - "hacking", - "ru" - ], - "checkType": "response_url", - "alexaRank": 1309593, - "urlMain": "https://lab.pentestit.ru/", - "url": "https://lab.pentestit.ru/profile/{username}", - "errorUrl": "https://lab.pentestit.ru/{username}", - "usernameClaimed": "CSV", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "last.fm": { - "tags": [ - "music" - ], - "checkType": "status_code", - "alexaRank": 2183, - "urlMain": "https://last.fm/", - "url": "https://last.fm/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "leasehackr": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 37029, - "urlMain": "https://forum.leasehackr.com/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "linuxfoundation": { - "tags": [ - "forum", - "in", - "us" - ], - "checkType": "status_code", - "alexaRank": 26899, - "urlMain": "https://forum.linuxfoundation.org", - "url": "https://forum.linuxfoundation.org/profile/{username}", - "usernameClaimed": "chap92", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "linuxmint.info": { - "tags": [ - "ru" - ], - "disabled": true, - "checkType": "status_code", - "alexaRank": 6054365, - "urlMain": "http://linuxmint.info", - "url": "http://linuxmint.info/users/{username}", - "usernameClaimed": "freesoid", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "lithotherapy": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 2754382, - "urlMain": "https://forum.lithotherapy.ru", - "url": "https://forum.lithotherapy.ru/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "solomon", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "losinopetrovsk.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://losinopetrovsk.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "markweinguitarlessons.com": { - "engine": "XenForo", - "alexaRank": 2301424, - "urlMain": "http://markweinguitarlessons.com/forums/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "hobby" - ] - }, - "mastodon.cloud": { - "disabled": true, - "tags": [ - "in", - "pk" - ], - "checkType": "status_code", - "alexaRank": 377057, - "regexCheck": "^[a-zA-Z0-9_]+$", - "urlMain": "https://mastodon.cloud/", - "url": "https://mastodon.cloud/@{username}", - "usernameClaimed": "TheAdmin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "mastodon.social": { - "checkType": "status_code", - "alexaRank": 2073381, - "regexCheck": "^[a-zA-Z0-9_]+$", - "urlMain": "https://chaos.social/", - "url": "https://mastodon.social/@{username}", - "usernameClaimed": "Gargron", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "networking" - ] - }, - "mastodon.technology": { - "tags": [ - "th" - ], - "checkType": "status_code", - "alexaRank": 1182037, - "regexCheck": "^[a-zA-Z0-9_]+$", - "urlMain": "https://mastodon.xyz/", - "url": "https://mastodon.technology/@{username}", - "usernameClaimed": "ashfurrow", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "mastodon.xyz": { - "tags": [ - "th" - ], - "checkType": "status_code", - "alexaRank": 1182037, - "regexCheck": "^[a-zA-Z0-9_]+$", - "urlMain": "https://mastodon.xyz/", - "url": "https://mastodon.xyz/@{username}", - "usernameClaimed": "TheKinrar", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "mau": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" - ], - "alexaRank": 1139439, - "urlMain": "https://forum.mau.ru", - "url": "https://forum.mau.ru/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "curl", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "md": { - "tags": [ - "forum", - "md", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "404 - Not Found" - ], - "alexaRank": 2275804, - "urlMain": "https://forum.md/ru/", - "url": "https://forum.md/ru/users/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "medteh.info": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 1290738, - "urlMain": "http://medteh.info", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "mercadolivre": { - "tags": [ - "br" - ], - "checkType": "status_code", - "alexaRank": 361, - "urlMain": "https://www.mercadolivre.com.br", - "url": "https://www.mercadolivre.com.br/perfil/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "metacritic": { - "disabled": true, - "tags": [ - "us" - ], - "regexCheck": "^(?![-_])[A-Za-z0-9-_]{3,15}$", - "checkType": "message", - "absenceStrs": [ - "This user hasn\u2019t rated anything yet" - ], - "presenseStrs": [ - "Avg. User score" - ], - "alexaRank": 2409, - "urlMain": "https://www.metacritic.com/", - "url": "https://www.metacritic.com/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewould" - }, - "mfd": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d." - ], - "alexaRank": 61607, - "urlMain": "http://forum.mfd.ru", - "url": "http://forum.mfd.ru/forum/search/?query=&method=And&userQuery={username}", - "usernameClaimed": "rublevka", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "michigan-sportsman.com": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 475252, - "urlMain": "http://www.michigan-sportsman.com/forum/", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "microcap.forum24.ru": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" - ], - "alexaRank": 7087371, - "urlMain": "https://microcap.forum24.ru", - "url": "https://microcap.forum24.ru/?32-{username}", - "usernameClaimed": "asuus", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "millerovo161.ru": { - "engine": "uCoz", - "alexaRank": 7369958, - "urlMain": "http://millerovo161.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "milliarderr.com": { - "engine": "uCoz", - "urlMain": "http://milliarderr.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 7486145 - }, - "mirf": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 61648, - "urlMain": "https://forum.mirf.ru/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "mirmuzyki.ucoz.net": { - "engine": "uCoz", - "alexaRank": 7782396, - "urlMain": "http://mirmuzyki.ucoz.net", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "mistral.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://mistral.ucoz.net", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "mkr-rodniki.ru": { - "engine": "uCoz", - "urlMain": "http://mkr-rodniki.ru", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 12833632 - }, - "modnaya": { - "tags": [ - "forum", - "ru", - "ua" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - ], - "alexaRank": 589263, - "urlMain": "https://forum.modnaya.org/", - "url": "https://forum.modnaya.org/members/{username}.html", - "usernameClaimed": "werta", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "morshansk.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://morshansk.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 7727043 - }, - "moscherb.ru": { - "engine": "uCoz", - "alexaRank": 5638034, - "urlMain": "http://moscherb.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "moskovia.moy.su": { - "engine": "uCoz", - "urlMain": "http://moskovia.moy.su", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "moto-travels.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 1863517, - "urlMain": "http://moto-travels.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "motoomsk.ru": { - "engine": "uCoz", - "urlMain": "http://motoomsk.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 13211617 - }, - "motorhomefun.co.uk": { - "disabled": true, - "tags": [ - "forum" - ], - "engine": "XenForo", - "alexaRank": 834914, - "urlMain": "http://www.motorhomefun.co.uk/forum/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "mssg.me": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 90236, - "urlMain": "https://mssg.me", - "url": "https://mssg.me/{username}", - "usernameClaimed": "siamparagon", - "usernameUnclaimed": "asadasdsd" - }, - "mstdn.io": { - "checkType": "status_code", - "alexaRank": 1755522, - "urlMain": "https://mstdn.io/", - "url": "https://mstdn.io/@{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "mt5": { - "disabled": true, - "tags": [ - "forum", - "in", - "pk", - "us" - ], - "engine": "vBulletin", - "alexaRank": 44211, - "urlMain": "https://forum.mt5.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "my-citrus.at.ua": { - "engine": "uCoz", - "urlMain": "http://my-citrus.at.ua", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "naruto-base.tv": { - "engine": "uCoz", - "urlMain": "http://naruto-base.tv", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "narutoclan.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://narutoclan.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "medicine" - ], - "alexaRank": 7147964 - }, - "navi": { - "tags": [ - "forum", - "ru" - ], - "checkType": "status_code", - "alexaRank": 129479, - "urlMain": "http://forum.navi.gg/", - "url": "http://forum.navi.gg/profile/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "netbiz.at.ua": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://netbiz.at.ua", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 12174626 - }, - "news.toretsk.online": { - "engine": "uCoz", - "urlMain": "http://news.toretsk.online", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "ru" - ], - "alexaRank": 7164519 - }, - "nf-club.ru": { - "engine": "uCoz", - "alexaRank": 6042902, - "urlMain": "http://nf-club.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "nhattao.com": { - "tags": [ - "forum", - "shopping", - "vn" - ], - "engine": "XenForo", - "alexaRank": 41011, - "urlMain": "https://www.nhattao.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "night.kharkov.ua": { - "engine": "uCoz", - "urlMain": "http://night.kharkov.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 5634451 - }, - "nightbot": { - "tags": [ - "jp", - "us" - ], - "urlProbe": "https://api.nightbot.tv/1/channels/t/{username}", - "checkType": "status_code", - "alexaRank": 14181, - "urlMain": "https://nightbot.tv/", - "url": "https://nightbot.tv/t/{username}/commands", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis" - }, - "nikoncafe.com": { - "engine": "XenForo", - "alexaRank": 824284, - "urlMain": "https://www.nikoncafe.com/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "photo" - ] - }, - "nikos.at.ua": { - "engine": "uCoz", - "urlMain": "http://nikos.at.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "ua" - ] - }, - "not606.com": { - "engine": "XenForo", - "alexaRank": 3046188, - "urlMain": "http://www.not606.com/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "sport" - ] - }, - "notabug.org": { - "tags": [ - "in", - "ma", - "ro", - "us" - ], - "urlProbe": "https://notabug.org/{username}/followers", - "checkType": "status_code", - "alexaRank": 339415, - "urlMain": "https://notabug.org/", - "url": "https://notabug.org/{username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "note": { - "tags": [ - "jp" - ], - "checkType": "status_code", - "alexaRank": 885, - "urlMain": "https://note.com/", - "url": "https://note.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "nsk66.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://nsk66.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 4212350 - }, - "nucastle.co.uk": { - "engine": "XenForo", - "urlMain": "http://www.nucastle.co.uk/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "oakleyforum.com": { - "engine": "XenForo", - "alexaRank": 434544, - "urlMain": "https://www.oakleyforum.com", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "odonvv.ru": { - "engine": "uCoz", - "alexaRank": 8230602, - "urlMain": "http://odonvv.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "officiating": { - "tags": [ - "forum", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Euer Online Casino Forum Deutschland - PlaytimeNetwork" - ], - "urlMain": "https://forum.playtime-forum.info", - "url": "https://forum.playtime-forum.info/members/?username={username}", - "usernameClaimed": "Glumbi", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "podolsk": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 396940, - "urlMain": "https://forum.podolsk.ru", - "url": "https://forum.podolsk.ru/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "irina", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "polarsteps": { - "tags": [ - "in", - "us" - ], - "urlProbe": "https://api.polarsteps.com/users/byusername/{username}", - "checkType": "status_code", - "alexaRank": 311149, - "urlMain": "https://polarsteps.com/", - "url": "https://polarsteps.com/{username}", - "usernameClaimed": "james", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "popjustice": { - "tags": [ - "co", - "forum", - "in", - "sg", - "us" - ], - "engine": "XenForo", - "alexaRank": 225190, - "urlMain": "https://forum.popjustice.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "pr0gramm": { - "tags": [ - "de" - ], - "checkType": "status_code", - "urlMain": "https://pr0gramm.com/", - "url": "https://pr0gramm.com/api/profile/info?name={username}", - "usernameClaimed": "cha0s", - "usernameUnclaimed": "noonewouldeverusethis123123123123123123", - "alexaRank": 5355 - }, - "privateinvestor2000.com": { - "engine": "uCoz", - "urlMain": "http://privateinvestor2000.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "prizyvnikmoy.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 3195890, - "urlMain": "http://prizyvnikmoy.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "pro-cssteam.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://pro-cssteam.ucoz.ru", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "prog.hu": { - "tags": [ - "hu" - ], - "checkType": "response_url", - "alexaRank": 201253, - "urlMain": "https://prog.hu", - "url": "https://prog.hu/azonosito/info/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "prosportsdaily": { - "disabled": true, - "tags": [ - "forum", - "in", - "us" - ], - "engine": "vBulletin", - "alexaRank": 30882, - "urlMain": "https://forums.prosportsdaily.com", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "punx.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://punx.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "pv-afghan.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://pv-afghan.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 3932899 - }, - "pvpru": { - "disabled": true, - "tags": [ - "gaming", - "ru" - ], - "errors": { - "Access denied": "Cloudflare security protection detected" - }, - "checkType": "status_code", - "alexaRank": 474448, - "urlMain": "https://pvpru.com/", - "url": "https://pvpru.com/board/member.php?username={username}&tab=aboutme#aboutme", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "python.su": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 580826, - "urlMain": "https://python.su/", - "url": "https://python.su/forum/user/{username}", - "usernameClaimed": "AlexaPan", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "qiwi.me": { - "disabled": true, - "tags": [ - "finance", - "ru" - ], - "urlProbe": "https://api.qiwi.me/piggybox/{username}", - "checkType": "message", - "absenceStrs": [ - "no piggybox found", - "invalid alias" - ], - "urlMain": "https://qiwi.me", - "url": "https://qiwi.me/{username}", - "usernameClaimed": "videokursy", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "qna.center": { - "tags": [ - "ru" - ], - "checkType": "response_url", - "alexaRank": 153017, - "urlMain": "https://qna.center", - "url": "https://qna.center/user/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "quik": { - "tags": [ - "forum", - "ru" - ], - "checkType": "status_code", - "alexaRank": 363951, - "urlMain": "https://forum.quik.ru", - "url": "https://forum.quik.ru/user/{username}/", - "usernameClaimed": "swerg", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "radio_echo_msk": { - "tags": [ - "ru" - ], - "disabled": true, - "checkType": "status_code", - "alexaRank": 1460, - "urlMain": "https://echo.msk.ru/", - "url": "https://echo.msk.ru/users/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "radioskot": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 163733, - "urlMain": "https://radioskot.ru", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "railforums.co.uk": { - "tags": [ - "forum", - "jp" - ], - "engine": "XenForo", - "alexaRank": 39031, - "urlMain": "https://www.railforums.co.uk", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "reality-check.ca": { - "disabled": true, - "engine": "XenForo", - "alexaRank": 2973813, - "urlMain": "https://www.reality-check.ca", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "ca", - "forum", - "medicine" - ] - }, - "realitygaming.fr": { - "engine": "XenForo", - "urlMain": "http://realitygaming.fr/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 7867305 - }, - "relasko.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 58356, - "urlMain": "http://relasko.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "reverse4you": { - "tags": [ - "forum", - "lk", - "ru", - "ua" - ], - "disabled": true, - "engine": "Discourse", - "alexaRank": 718392, - "urlMain": "https://forum.reverse4you.org", - "usernameClaimed": "darwin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "rezzoclub.ru": { - "engine": "uCoz", - "urlMain": "http://rezzoclub.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 7286304 - }, - "ridemonkey.com": { - "engine": "XenForo", - "urlMain": "http://www.ridemonkey.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "ruboard": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." - ], - "alexaRank": 164556, - "urlMain": "https://forum.ruboard.ru", - "url": "https://forum.ruboard.ru/member.php/?username={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "rus-mmm.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://rus-mmm.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "russiinitalia.com": { - "disabled": true, - "engine": "uCoz", - "alexaRank": 6440689, - "urlMain": "http://russiinitalia.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "rybnoe.net": { - "tags": [ - "ru", - "ua" - ], - "engine": "uCoz", - "alexaRank": 1139706, - "urlMain": "http://rybnoe.net", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "salavat.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://salavat.3dn.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "salekhardnews.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://salekhardnews.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "samp-rus.com": { - "tags": [ - "ua" - ], - "engine": "uCoz", - "alexaRank": 3612318, - "urlMain": "http://samp-rus.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "samp-sektor.ru": { - "engine": "uCoz", - "alexaRank": 2318355, - "urlMain": "http://samp-sektor.ru", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "sanatorii": { - "tags": [ - "by", - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "alexaRank": 328058, - "urlMain": "http://forum.sanatorii.by", - "url": "http://forum.sanatorii.by/search.php?keywords=&terms=all&author={username}", - "usernameClaimed": "pavlovich", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "sciax2.it": { - "tags": [ - "forum", - "tr" - ], - "engine": "XenForo", - "alexaRank": 771385, - "urlMain": "https://www.sciax2.it/forum/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "scooterclub.kharkov.ua": { - "engine": "uCoz", - "alexaRank": 8737937, - "urlMain": "http://scooterclub.kharkov.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "scuba": { - "tags": [ - "forum", - "ru" - ], - "engine": "phpBB", - "alexaRank": 5923852, - "urlMain": "http://forum.scuba-divers.ru/", - "usernameClaimed": "bubonic", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "secret.kompas3d.su": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 5554446, - "urlMain": "http://secret.kompas3d.su", - "usernameClaimed": "irina", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "segmentfault": { - "disabled": true, - "tags": [ - "cn" - ], - "checkType": "message", - "absenceStrs": [ - "message\":\"Not Found\"" - ], - "presenseStrs": [ - "- SegmentFault \u601d\u5426" - ], - "alexaRank": 2697, - "urlMain": "https://segmentfault.com/", - "url": "https://segmentfault.com/u/{username}", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "shadow-belgorod.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://shadow-belgorod.ucoz.ru", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "sibmama": { - "tags": [ - "forum", - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435" - ], - "alexaRank": 37115, - "urlMain": "https://forum.sibmama.ru/", - "url": "https://forum.sibmama.ru/profile.php?mode=viewprofile&u={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "smart-lab.ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "404" - ], - "alexaRank": 10244, - "urlMain": "https://smart-lab.ru/", - "url": "https://smart-lab.ru/profile/{username}/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "soc-life.com": { - "presenseStrs": [ - "sc-tabs\"><div>\u041b\u043e\u0433\u0438\u043d:" - ], - "engine": "uCoz", - "alexaRank": 8235710, - "urlMain": "http://soc-life.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "socforum.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://socforum.3dn.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "social.tchncs.de": { - "tags": [ - "de", - "in" - ], - "checkType": "status_code", - "alexaRank": 489597, - "regexCheck": "^[a-zA-Z0-9_]+$", - "urlMain": "https://social.tchncs.de/", - "url": "https://social.tchncs.de/@{username}", - "usernameClaimed": "Milan", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "soft-wm.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://soft-wm.3dn.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "soldati-russian.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 1104342, - "urlMain": "http://soldati-russian.ru", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "somersoft.com": { - "engine": "XenForo", - "alexaRank": 1840542, - "urlMain": "https://www.somersoft.com/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "soslujivzi.ru": { - "engine": "uCoz", - "alexaRank": 3140321, - "urlMain": "http://soslujivzi.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "sourceruns": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "alexaRank": 824338, - "urlMain": "https://forums.sourceruns.org/", - "usernameClaimed": "cubedude", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "southbayriders.com": { - "engine": "XenForo", - "alexaRank": 998998, - "urlMain": "http://www.southbayriders.com/forums/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "sovgavan.ru": { - "engine": "uCoz", - "alexaRank": 7910939, - "urlMain": "http://sovgavan.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "ru" - ] - }, - "soylentnews": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "The user you requested does not exist, no matter how much you wish this might be the case." - ], - "alexaRank": 1226454, - "urlMain": "https://soylentnews.org", - "url": "https://soylentnews.org/~{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "sparkpeople": { - "tags": [ - "us" - ], - "checkType": "message", - "absenceStrs": [ - "We couldn't find that user", - "Page Not Found" - ], - "alexaRank": 24562, - "urlMain": "https://www.sparkpeople.com", - "url": "https://www.sparkpeople.com/mypage.asp?id={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Orbys": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "profile_user_image" - ], - "absenceStrs": [ - "The page you are looking for cannot be found." - ], - "alexaRank": 305135, - "urlMain": "https://orbys.net", - "url": "https://orbys.net/{username}", - "usernameClaimed": "txmustang302", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "spletnik": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "alexaRank": 13818, - "urlMain": "https://spletnik.ru/", - "url": "https://spletnik.ru/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "sports.ru": { - "tags": [ - "ru", - "sport" - ], - "checkType": "status_code", - "alexaRank": 1451, - "urlMain": "https://www.sports.ru/", - "url": "https://www.sports.ru/profile/{username}/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "sportsjournalists.com": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 704882, - "urlMain": "http://sportsjournalists.com/forum/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "stalkerbar.at.ua": { - "engine": "uCoz", - "urlMain": "http://stalkerbar.at.ua", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "studentur.com.ua": { - "tags": [ - "ua" - ], - "engine": "uCoz", - "alexaRank": 5842130, - "urlMain": "http://studentur.com.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "svidbook": { - "disabled": true, - "checkType": "status_code", - "alexaRank": 8078109, - "urlMain": "https://www.svidbook.ru/", - "url": "https://www.svidbook.ru/user/{username}", - "usernameClaimed": "green", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "swedroid.se": { - "tags": [ - "forum", - "se" - ], - "engine": "XenForo", - "alexaRank": 95322, - "urlMain": "http://swedroid.se/forum", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "swiftbook": { - "tags": [ - "forum", - "ru" - ], - "engine": "Discourse", - "alexaRank": 516808, - "urlMain": "https://forum.swiftbook.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "takr-kiev.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://takr-kiev.ucoz.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "tarjaturunen.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://tarjaturunen.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "tdo888.at.ua": { - "engine": "uCoz", - "urlMain": "http://tdo888.at.ua", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "techspot.com": { - "tags": [ - "forum", - "us" - ], - "errors": { - "You must be logged-in to do that.": "Login required" - }, - "engine": "XenForo", - "alexaRank": 3685, - "urlMain": "http://www.techspot.com/community/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "tfw2005.com": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 107783, - "urlMain": "http://www.tfw2005.com/boards/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "thaicat.ru": { - "engine": "uCoz", - "alexaRank": 2591501, - "urlMain": "http://thaicat.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "the-mainboard.com": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 1232016, - "urlMain": "http://the-mainboard.com/index.php", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "theburningprocess.com": { - "engine": "XenForo", - "urlMain": "http://www.theburningprocess.com/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "disabled": true - }, - "theprodigy": { - "disabled": true, - "tags": [ - "forum", - "ru", - "ua" - ], - "checkType": "message", - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u0447\u0435\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0432\u044b \u043f\u044b\u0442\u0430\u0435\u0442\u0435\u0441\u044c \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c, \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442." - ], - "alexaRank": 1785488, - "urlMain": "https://forum.theprodigy.ru/", - "url": "https://forum.theprodigy.ru/index.php?board=13&action=viewprofile&user={username}", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "theturboforums.com": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "alexaRank": 468075, - "urlMain": "https://www.theturboforums.com/forums/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "thewholesaleforums.co.uk": { - "tags": [ - "forum", - "in" - ], - "engine": "XenForo", - "alexaRank": 410075, - "urlMain": "http://www.thewholesaleforums.co.uk/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "tigerfan.com": { - "engine": "XenForo", - "alexaRank": 8504929, - "urlMain": "http://www.tigerfan.com/", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "sport" - ] - }, - "tks": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 64123, - "urlMain": "https://forum.tks.ru/", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "topcheats.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://topcheats.ucoz.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "tracr.co": { - "disabled": true, - "tags": [ - "gaming" - ], - "errors": { - "502 - Bad Gateway": "Site error", - "g-recaptcha": "Captcha detected" - }, - "regexCheck": "^[A-Za-z0-9]{2,32}$", - "checkType": "message", - "absenceStrs": [ - "No search results" - ], - "urlMain": "https://tracr.co/", - "url": "https://tracr.co/users/1/{username}", - "source": "Discord", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "transit-club.com": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 1224454, - "urlMain": "http://transit-club.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "uahack.at.ua": { - "engine": "uCoz", - "urlMain": "http://uahack.at.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "uaodessa.com": { - "engine": "uCoz", - "urlMain": "http://uaodessa.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 2222236 - }, - "ucozon.ru": { - "engine": "uCoz", - "alexaRank": 6574568, - "urlMain": "http://ucozon.ru", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "uID.me (by username)": { - "tags": [ - "ru" - ], - "checkType": "status_code", - "urlMain": "https://uid.me/", - "url": "http://uid.me/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 25111 - }, - "uID.me (by uguid)": { - "tags": [ - "ru" - ], - "type": "uidme_uguid", - "checkType": "status_code", - "alexaRank": 25111, - "urlMain": "https://uid.me/", - "url": "http://uid.me/uguid/{username}", - "usernameClaimed": "1050362129", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "usman48.ru": { - "disabled": true, - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 1974421, - "urlMain": "http://usman48.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "valinor.com.br": { - "engine": "XenForo", - "alexaRank": 2008219, - "urlMain": "http://www.valinor.com.br/forum/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "vauxhallownersnetwork.co.uk": { - "tags": [ - "forum", - "tr" - ], - "engine": "XenForo", - "alexaRank": 393373, - "urlMain": "http://www.vauxhallownersnetwork.co.uk", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "vdv-belarus.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://vdv-belarus.ucoz.com", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "by", - "forum", - "military" - ] - }, - "vegalab": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 99427, - "urlMain": "http://forum.vegalab.ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "vento-club.com": { - "engine": "uCoz", - "alexaRank": 5497827, - "urlMain": "http://vento-club.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "vii.at.ua": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://vii.at.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "vilinburg.net": { - "engine": "uCoz", - "urlMain": "http://vilinburg.net", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "virtual-auto.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://virtual-auto.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "vishivalochka.ru": { - "engine": "uCoz", - "alexaRank": 1294903, - "urlMain": "http://vishivalochka.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "vovdm.at.ua": { - "engine": "uCoz", - "urlMain": "http://vovdm.at.ua", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "vse1.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://vse1.ucoz.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "warcraft3ft.clan.su": { - "engine": "uCoz", - "alexaRank": 6475276, - "urlMain": "http://warcraft3ft.clan.su", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "warframe.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://warframe.3dn.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "watcheshop": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "alexaRank": 9470848, - "urlMain": "http://forum.watcheshop.ru", - "usernameClaimed": "211", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "weaponsas.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://weaponsas.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "websecurity.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://websecurity.3dn.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "wowjp.net": { - "disabled": true, - "tags": [ - "ru", - "ua" - ], - "engine": "uCoz", - "alexaRank": 504645, - "urlMain": "http://wowjp.net", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "wowpaksi.clan.su": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://wowpaksi.clan.su", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "writingforums.org": { - "tags": [ - "ca", - "forum" - ], - "engine": "XenForo", - "alexaRank": 197365, - "urlMain": "http://www.writingforums.org/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "ww2aircraft.net": { - "engine": "XenForo", - "urlMain": "https://ww2aircraft.net/forum/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 894556, - "tags": [ - "forum" - ] - }, - "x-h2o.com": { - "engine": "XenForo", - "alexaRank": 3352857, - "urlMain": "http://www.x-h2o.com/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "xHamster": { - "tags": [ - "porn", - "us" - ], - "checkType": "message", - "presenseStrs": [ - "user-info-section" - ], - "absenceStrs": [ - "User not found" - ], - "alexaRank": 136, - "urlMain": "https://xhamster.com", - "url": "https://xhamster.com/users/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis77777" - }, - "xakerminus.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://xakerminus.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "xenforo.com": { - "tags": [ - "forum", - "in", - "jp", - "tr", - "us" - ], - "engine": "XenForo", - "urlMain": "https://xenforo.com/community/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 21438 - }, - "z28.com": { - "engine": "XenForo", - "alexaRank": 4724035, - "urlMain": "https://www.z28.com/", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ] - }, - "zabselo.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://zabselo.ucoz.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "zid.moy.su": { - "engine": "uCoz", - "alexaRank": 8281383, - "urlMain": "http://zid.moy.su", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Znanylekarz.pl": { - "checkType": "status_code", - "url": "https://www.znanylekarz.pl/{username}", - "usernameClaimed": "janusz-nowak", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "gomel-dogs.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://gomel-dogs.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "rottweiler.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://rottweiler.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 5993590 - }, - "poteryashka.spb.ru": { - "engine": "uCoz", - "alexaRank": 3058596, - "urlMain": "http://poteryashka.spb.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "lai.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://lai.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "zennenhund.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://zennenhund.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "nada25.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://nada25.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "forum", - "ru" - ] - }, - "day-lapku.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://day-lapku.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "legendarus-veo.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://legendarus-veo.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "horek-samara.ru": { - "engine": "uCoz", - "urlMain": "http://horek-samara.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "animal-hope.ru": { - "engine": "uCoz", - "alexaRank": 5801383, - "urlMain": "http://animal-hope.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "staffbull.info": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://staffbull.info", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 7749226 - }, - "pushok.ucoz.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://pushok.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "pskovfaunaclub.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://pskovfaunaclub.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "valleykrosava.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://valleykrosava.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "alisaclub.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 7659436, - "urlMain": "http://alisaclub.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "vadimbondar.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://vadimbondar.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "alka-mine.at.ua": { - "engine": "uCoz", - "urlMain": "http://alka-mine.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 7178891 - }, - "endoctor.ru": { - "engine": "uCoz", - "alexaRank": 5608512, - "urlMain": "http://endoctor.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "n-ataeva.ru": { - "engine": "uCoz", - "urlMain": "http://n-ataeva.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 7956400 - }, - "oih.at.ua": { - "tags": [ - "ua" - ], - "engine": "uCoz", - "alexaRank": 4180623, - "urlMain": "http://oih.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "vadya.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://vadya.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "uroportal.com.ua": { - "engine": "uCoz", - "urlMain": "http://uroportal.com.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "forum.u-hiv.ru": { - "engine": "uCoz", - "urlMain": "http://forum.u-hiv.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 1918759, - "tags": [ - "forum", - "medicine", - "ru" - ] - }, - "stroyneemvmeste.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://stroyneemvmeste.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "dr-denisov.ru": { - "engine": "uCoz", - "alexaRank": 2237530, - "urlMain": "http://dr-denisov.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "electronic-cigarette.ru": { - "engine": "uCoz", - "urlMain": "http://electronic-cigarette.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "medkniga.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://medkniga.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "eyorkie.ucoz.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 2416579, - "urlMain": "http://eyorkie.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "pankreatitu.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://pankreatitu.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "sfinx-cats.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 3639009, - "urlMain": "http://sfinx-cats.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "help-baby.org": { - "engine": "uCoz", - "alexaRank": 7465701, - "urlMain": "http://help-baby.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "ugri.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://ugri.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "prenatal-club.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://prenatal-club.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "milnerelena.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://milnerelena.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "zebest.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 3534217, - "urlMain": "http://zebest.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "1klas.3dn.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://1klas.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "psy-dv.org": { - "disabled": true, - "engine": "uCoz", - "alexaRank": 7235113, - "urlMain": "http://psy-dv.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "medkarta.at.ua": { - "engine": "uCoz", - "urlMain": "http://medkarta.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "hmkids.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://hmkids.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "intoclassics.net": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://intoclassics.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 171348 - }, - "shanson.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://shanson.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "justmj.ru": { - "engine": "uCoz", - "urlMain": "http://justmj.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 7483085 - }, - "klas-crew.ucoz.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://klas-crew.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "allmus.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://allmus.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "psy-music.ru": { - "tags": [ - "fi", - "ru" - ], - "engine": "uCoz", - "alexaRank": 334332, - "urlMain": "http://psy-music.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "rotarusofi.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://rotarusofi.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "videomuzon.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 7386022, - "urlMain": "http://videomuzon.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "webmedia.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://webmedia.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "p1rat.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://p1rat.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "satisfacktion.ucoz.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://satisfacktion.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "music", - "ru" - ] - }, - "djfint.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://djfint.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "god" - }, - "aviaforum.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://aviaforum.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "forum" - ] - }, - "avia-forum.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 5879998, - "urlMain": "http://avia-forum.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "forum", - "ru" - ] - }, - "ford-mondeoff.ru": { - "engine": "uCoz", - "urlMain": "http://ford-mondeoff.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "lexus-club.at.ua": { - "engine": "uCoz", - "urlMain": "http://lexus-club.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "terralight.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 8587882, - "urlMain": "http://terralight.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john" - }, - "mytrans.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://mytrans.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "auto63.ru": { - "disabled": true, - "engine": "uCoz", - "alexaRank": 8199034, - "urlMain": "http://auto63.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "tachograph.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 8142326, - "urlMain": "http://tachograph.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "moto-master.ucoz.ru": { - "disabled": true, - "engine": "uCoz", - "alexaRank": 9057568, - "urlMain": "http://moto-master.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "prodigy.moy.su": { - "engine": "uCoz", - "urlMain": "http://prodigy.moy.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "wolga24.at.ua": { - "engine": "uCoz", - "urlMain": "http://wolga24.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 7344356 - }, - "w2l-g.ucoz.org": { - "engine": "uCoz", - "alexaRank": 8103283, - "urlMain": "http://w2l-g.ucoz.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "scb.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://scb.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "real-sp.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://real-sp.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "2el5.ucoz.ua": { - "engine": "uCoz", - "alexaRank": 7187783, - "urlMain": "http://2el5.ucoz.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "remzona-ekb.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 8160634, - "urlMain": "http://remzona-ekb.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "serwis.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://serwis.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "wedding-image.ru": { - "engine": "uCoz", - "urlMain": "http://wedding-image.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "cod.by": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://cod.by", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "klub-skidok.ru": { - "engine": "uCoz", - "urlMain": "http://klub-skidok.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "pubert.company": { - "engine": "uCoz", - "alexaRank": 7881956, - "urlMain": "http://pubert.company", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "avon-kiev.at.ua": { - "engine": "uCoz", - "urlMain": "http://avon-kiev.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "avon-registry.com.ua": { - "engine": "uCoz", - "urlMain": "http://avon-registry.com.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "disabled": true - }, - "vracing.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://vracing.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john", - "tags": [ - "ru" - ] - }, - "doska.hashmalay.co.il": { - "engine": "uCoz", - "urlMain": "http://doska.hashmalay.co.il", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john", - "disabled": true - }, - "hitechnic.org": { - "disabled": true, - "engine": "uCoz", - "alexaRank": 7479208, - "urlMain": "http://hitechnic.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "team-pros.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://team-pros.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "ankord.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://ankord.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "deutsch-auto68.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://deutsch-auto68.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "krum.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://krum.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "gallasy.com": { - "engine": "uCoz", - "alexaRank": 9539166, - "urlMain": "http://gallasy.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "satwarez.ru": { - "engine": "uCoz", - "alexaRank": 6029600, - "urlMain": "http://satwarez.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "wallpost.ucoz.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://wallpost.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "kpyto.pp.net.ua": { - "tags": [ - "ua" - ], - "engine": "uCoz", - "alexaRank": 943967, - "urlMain": "http://kpyto.pp.net.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "playlist-iptv.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 7760724, - "urlMain": "http://playlist-iptv.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "icq-bot.moy.su": { - "engine": "uCoz", - "urlMain": "http://icq-bot.moy.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "prof-rem-zona.at.ua": { - "engine": "uCoz", - "urlMain": "http://prof-rem-zona.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "ilan.clan.su": { - "engine": "uCoz", - "urlMain": "http://ilan.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "liza.my1.ru": { - "engine": "uCoz", - "urlMain": "http://liza.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "super-warez-por.at.ua": { - "engine": "uCoz", - "urlMain": "http://super-warez-por.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "zp-mama.ucoz.ua": { - "engine": "uCoz", - "alexaRank": 5664402, - "urlMain": "http://zp-mama.ucoz.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "aquamen.ru": { - "engine": "uCoz", - "urlMain": "http://aquamen.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "kam-mamochka.ru": { - "engine": "uCoz", - "urlMain": "http://kam-mamochka.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "girl.at.ua": { - "engine": "uCoz", - "alexaRank": 9089237, - "urlMain": "http://girl.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "shkolnikov.clan.su": { - "engine": "uCoz", - "urlMain": "http://shkolnikov.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john" - }, - "sputnikkey.ru": { - "engine": "uCoz", - "alexaRank": 5436066, - "urlMain": "http://sputnikkey.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "mamki-papki.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://mamki-papki.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "fordating.ru": { - "engine": "uCoz", - "alexaRank": 3264073, - "urlMain": "http://fordating.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "forum", - "ru" - ] - }, - "ikorovka.ucoz.net": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://ikorovka.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "goba6372.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 3341174, - "urlMain": "http://goba6372.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "obkon.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://obkon.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 4629017 - }, - "movi.my1.ru": { - "engine": "uCoz", - "urlMain": "http://movi.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "xorazm-viloyati.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://xorazm-viloyati.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "magic-square.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://magic-square.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "free-proxy.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://free-proxy.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "oskolfishing.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://oskolfishing.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "morozovka.my1.ru": { - "engine": "uCoz", - "alexaRank": 9513899, - "urlMain": "http://morozovka.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "sherwood.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://sherwood.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "bull-baza.at.ua": { - "engine": "uCoz", - "urlMain": "http://bull-baza.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "letitbit-film.my1.ru": { - "engine": "uCoz", - "urlMain": "http://letitbit-film.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "student-telecom.ru": { - "engine": "uCoz", - "urlMain": "http://student-telecom.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "kliki-doma.ru": { - "engine": "uCoz", - "urlMain": "http://kliki-doma.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "god" - }, - "christian-video.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://christian-video.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "movies", - "ru" - ] - }, - "rabotenka.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://rabotenka.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "magictarot.ru": { - "engine": "uCoz", - "urlMain": "http://magictarot.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "avtoexamen.com": { - "engine": "uCoz", - "alexaRank": 2380849, - "urlMain": "http://avtoexamen.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "my-tucson.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://my-tucson.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "sms.portalsms.ru": { - "engine": "uCoz", - "urlMain": "http://sms.portalsms.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "potystorony.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://potystorony.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "kiev-live.com": { - "engine": "uCoz", - "alexaRank": 8294628, - "urlMain": "http://kiev-live.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "tatyana-art.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://tatyana-art.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 6703103 - }, - "96.moy.su": { - "engine": "uCoz", - "urlMain": "http://96.moy.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "svadba-orel.com": { - "engine": "uCoz", - "urlMain": "http://svadba-orel.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "nokia6233.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://nokia6233.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "killer.ucoz.ua": { - "engine": "uCoz", - "urlMain": "http://killer.ucoz.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "nojay-urt.ru": { - "engine": "uCoz", - "alexaRank": 5999911, - "urlMain": "http://nojay-urt.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "goddamn.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://goddamn.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "virtualrift.ru": { - "engine": "uCoz", - "urlMain": "http://virtualrift.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "starfiles.at.ua": { - "engine": "uCoz", - "urlMain": "http://starfiles.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "haogan.3dn.ru": { - "engine": "uCoz", - "alexaRank": 7889794, - "urlMain": "http://haogan.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "expressinfo.at.ua": { - "engine": "uCoz", - "urlMain": "http://expressinfo.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "classified", - "ua" - ] - }, - "vfarte.ru": { - "engine": "uCoz", - "urlMain": "http://vfarte.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "uface.at.ua": { - "engine": "uCoz", - "urlMain": "http://uface.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "poshtovik.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://poshtovik.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 7305224 - }, - "muzika.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://muzika.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "ooo.do.am": { - "engine": "uCoz", - "alexaRank": 7921270, - "urlMain": "http://ooo.do.am", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "golasa-vk-free.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://golasa-vk-free.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "kakvkontakte.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://kakvkontakte.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "ic.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://ic.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "440101.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://440101.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "uralstanko.ru": { - "engine": "uCoz", - "alexaRank": 9600138, - "urlMain": "http://uralstanko.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "podsnezhniksad.ucoz.com": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 2593222, - "urlMain": "http://podsnezhniksad.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "kotel-torg.ru": { - "engine": "uCoz", - "urlMain": "http://kotel-torg.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "babymama.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://babymama.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "autocb.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://autocb.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "drujba.at.ua": { - "engine": "uCoz", - "urlMain": "http://drujba.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "so4ineniya.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://so4ineniya.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "4948.ru": { - "engine": "uCoz", - "urlMain": "http://4948.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "red" - }, - "toneto.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://toneto.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "abc-accounting.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://abc-accounting.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "xn--90anbhklk.xn--p1ai": { - "engine": "uCoz", - "alexaRank": 6151022, - "urlMain": "http://xn--90anbhklk.xn--p1ai", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "disabled": true - }, - "igra-online.ucoz.com": { - "engine": "uCoz", - "alexaRank": 5914773, - "urlMain": "http://igra-online.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "fat.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://fat.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "tags": [ - "forum", - "ru" - ] - }, - "risefilm.ru": { - "tags": [ - "movies", - "ru" - ], - "engine": "uCoz", - "alexaRank": 8160677, - "urlMain": "http://risefilm.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "disabled": true - }, - "yka.kz": { - "tags": [ - "kz" - ], - "engine": "uCoz", - "alexaRank": 559558, - "urlMain": "http://yka.kz", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "tavr-obrazovanie.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 5837356, - "urlMain": "http://tavr-obrazovanie.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "manuals.clan.su": { - "engine": "uCoz", - "alexaRank": 7313728, - "urlMain": "http://manuals.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "holodilshchik.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://holodilshchik.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "sladkiydesert.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://sladkiydesert.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "nokia-love.ru": { - "engine": "uCoz", - "urlMain": "http://nokia-love.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ], - "alexaRank": 5635652 - }, - "nicholassparks.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://nicholassparks.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "rapbeat.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://rapbeat.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "semenova-klass.moy.su": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 2015508, - "urlMain": "http://semenova-klass.moy.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "catinboots.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://catinboots.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "red" - }, - "timich.ru": { - "engine": "uCoz", - "alexaRank": 8146721, - "urlMain": "http://timich.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "app.clan.su": { - "engine": "uCoz", - "urlMain": "http://app.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "electroprom.my1.ru": { - "engine": "uCoz", - "urlMain": "http://electroprom.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "nicefriendcats.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://nicefriendcats.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "dcsoft.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://dcsoft.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "ruslangxp.ucoz.org": { - "engine": "uCoz", - "alexaRank": 7467108, - "urlMain": "http://ruslangxp.ucoz.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "englishinfo.ru": { - "engine": "uCoz", - "urlMain": "http://englishinfo.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "vl-dimir.ru": { - "engine": "uCoz", - "urlMain": "http://vl-dimir.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "litgeroy.ucoz.net": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 2680273, - "urlMain": "http://litgeroy.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "zhelezyaka.at.ua": { - "engine": "uCoz", - "urlMain": "http://zhelezyaka.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "sokal.ucoz.lv": { - "tags": [ - "ru", - "ua" - ], - "engine": "uCoz", - "alexaRank": 408770, - "urlMain": "http://sokal.ucoz.lv", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "aleks2.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://aleks2.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "upbyte.net": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 1339189, - "urlMain": "http://upbyte.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "dok17.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://dok17.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "mamasuper.ru": { - "engine": "uCoz", - "urlMain": "http://mamasuper.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "tags": [ - "ru" - ] - }, - "cadaverzian.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://cadaverzian.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "puru.do.am": { - "engine": "uCoz", - "urlMain": "http://puru.do.am", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 8999453 - }, - "reklama-x.at.ua": { - "engine": "uCoz", - "urlMain": "http://reklama-x.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "rurip.ucoz.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://rurip.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "yras.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://yras.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "doccarb.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://doccarb.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 10841743 - }, - "online-movies.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://online-movies.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "hamradio.at.ua": { - "engine": "uCoz", - "urlMain": "http://hamradio.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "lock.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://lock.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "torworld.at.ua": { - "engine": "uCoz", - "urlMain": "http://torworld.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "myfootball-1.ucoz.ua": { - "engine": "uCoz", - "urlMain": "http://myfootball-1.ucoz.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "gadjet.moy.su": { - "engine": "uCoz", - "urlMain": "http://gadjet.moy.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "artmilitaire.ru": { - "engine": "uCoz", - "urlMain": "http://artmilitaire.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 8764926 - }, - "stop-nazi.at.ua": { - "engine": "uCoz", - "urlMain": "http://stop-nazi.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "velozone.ucoz.ua": { - "engine": "uCoz", - "urlMain": "http://velozone.ucoz.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "chelentano.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://chelentano.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "osiris.at.ua": { - "engine": "uCoz", - "urlMain": "http://osiris.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "vch3469.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://vch3469.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "sloboganec.at.ua": { - "engine": "uCoz", - "urlMain": "http://sloboganec.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "pticevodov.ru": { - "engine": "uCoz", - "urlMain": "http://pticevodov.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 4277724, - "disabled": true - }, - "nwo-team.ru": { - "disabled": true, - "engine": "uCoz", - "alexaRank": 8639189, - "urlMain": "http://nwo-team.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "aviahistory.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 3681403, - "urlMain": "http://aviahistory.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "nuzar.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://nuzar.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "toys22.ru": { - "engine": "uCoz", - "urlMain": "http://toys22.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "red" - }, - "sharzh-portret.ru": { - "engine": "uCoz", - "urlMain": "http://sharzh-portret.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "ohorona.at.ua": { - "engine": "uCoz", - "urlMain": "http://ohorona.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "grigorovo.clan.su": { - "engine": "uCoz", - "urlMain": "http://grigorovo.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "ganjaspice.at.ua": { - "engine": "uCoz", - "urlMain": "http://ganjaspice.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "muz-fresh.ucoz.kz": { - "tags": [ - "kz" - ], - "engine": "uCoz", - "alexaRank": 280915, - "urlMain": "http://muz-fresh.ucoz.kz", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "78-3.do.am": { - "engine": "uCoz", - "urlMain": "http://78-3.do.am", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "uko.at.ua": { - "engine": "uCoz", - "urlMain": "http://uko.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "faillyuboi.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://faillyuboi.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "koshtoris.at.ua": { - "engine": "uCoz", - "alexaRank": 6118066, - "urlMain": "http://koshtoris.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "pio-bets.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://pio-bets.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "clan-sg.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://clan-sg.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "samsungmobile.pp.net.ua": { - "tags": [ - "ua" - ], - "engine": "uCoz", - "alexaRank": 943967, - "urlMain": "http://samsungmobile.pp.net.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "specchiasol.ru": { - "engine": "uCoz", - "urlMain": "http://specchiasol.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "mytechbook.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://mytechbook.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "led-vector.ru": { - "engine": "uCoz", - "urlMain": "http://led-vector.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "mariupol4x4.clan.su": { - "engine": "uCoz", - "urlMain": "http://mariupol4x4.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ua" - ] - }, - "shansonportal.ru": { - "engine": "uCoz", - "urlMain": "http://shansonportal.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "alikgor.at.ua": { - "engine": "uCoz", - "alexaRank": 8327078, - "urlMain": "http://alikgor.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "diablocool.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://diablocool.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "chastysc.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 5983476, - "urlMain": "http://chastysc.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "torrents-igra.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 9435758, - "urlMain": "http://torrents-igra.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "schonin.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 8240852, - "urlMain": "http://schonin.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "sa-mp.ucoz.de": { - "tags": [ - "in", - "ua" - ], - "engine": "uCoz", - "alexaRank": 692260, - "urlMain": "http://sa-mp.ucoz.de", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "medvestnic.ru": { - "engine": "uCoz", - "urlMain": "http://medvestnic.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "ruanekdot.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 842368, - "urlMain": "http://ruanekdot.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "novayamebel.at.ua": { - "engine": "uCoz", - "urlMain": "http://novayamebel.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "directx10.org": { - "engine": "uCoz", - "alexaRank": 4492767, - "urlMain": "http://directx10.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "3glaz.org": { - "engine": "uCoz", - "urlMain": "http://3glaz.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "forum", - "ru" - ] - }, - "kfir-zahav.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://kfir-zahav.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "kadroviku.ru": { - "engine": "uCoz", - "alexaRank": 3541673, - "urlMain": "http://kadroviku.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "necromancers.clan.su": { - "engine": "uCoz", - "urlMain": "http://necromancers.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "iberia-pw.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://iberia-pw.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "greenbacks.at.ua": { - "engine": "uCoz", - "urlMain": "http://greenbacks.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "tags": [ - "finance", - "ru" - ] - }, - "lakshmi-fm.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://lakshmi-fm.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "death-note.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://death-note.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "moneysfirst.ru": { - "engine": "uCoz", - "urlMain": "http://moneysfirst.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "pirohimic.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://pirohimic.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "goroskop.ucoz.ua": { - "engine": "uCoz", - "urlMain": "http://goroskop.ucoz.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "warez-pirati.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://warez-pirati.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "icu.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://icu.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john" - }, - "kinomir.org": { - "engine": "uCoz", - "urlMain": "http://kinomir.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "disabled": true - }, - "tmk.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://tmk.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "yerkramas.do.am": { - "engine": "uCoz", - "urlMain": "http://yerkramas.do.am", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "gt-garazh.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://gt-garazh.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "firasmartincome.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://firasmartincome.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "gifts.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://gifts.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "bashtanka.at.ua": { - "engine": "uCoz", - "urlMain": "http://bashtanka.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "spishu.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 737634, - "urlMain": "http://spishu.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "psychotype.info": { - "engine": "uCoz", - "urlMain": "http://psychotype.info", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "partner.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://partner.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "sony127.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://sony127.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "sat-electronics.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://sat-electronics.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "teplohorosho.ru": { - "engine": "uCoz", - "alexaRank": 5706091, - "urlMain": "http://teplohorosho.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "pro-svet.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://pro-svet.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "memory57.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 3796777, - "urlMain": "http://memory57.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "memory.lol": { - "tags": [ - "messaging" - ], - "regexCheck": "^[a-zA-Z0-9_]{1,15}$", - "checkType": "message", - "absenceStrs": [ - "{\"accounts\":[]}" - ], - "presenseStrs": [ - "{\"accounts\":[{" - ], - "source": "Twitter", - "urlMain": "https://memory.lol", - "url": "https://api.memory.lol/v1/tw/{username}", - "usernameClaimed": "libsoftiktok", - "usernameUnclaimed": "noonewould123" - }, - "metroman.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://metroman.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "tv.ucoz.club": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "alexaRank": 84821, - "urlMain": "http://tv.ucoz.club", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "baggi.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://baggi.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "xn--90aybfeg.xn--p1ai": { - "engine": "uCoz", - "urlMain": "http://xn--90aybfeg.xn--p1ai", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "mediatv.ucoz.net": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://mediatv.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "kazamuza.net": { - "tags": [ - "kz" - ], - "engine": "uCoz", - "alexaRank": 453200, - "urlMain": "http://kazamuza.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "gorbuha.ucoz.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://gorbuha.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "komarovo.clan.su": { - "engine": "uCoz", - "urlMain": "http://komarovo.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "kino-hit.clan.su": { - "engine": "uCoz", - "urlMain": "http://kino-hit.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "big-game.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://big-game.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "rodobozhie.ru": { - "engine": "uCoz", - "alexaRank": 6023633, - "urlMain": "http://rodobozhie.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "mox.vo.uz": { - "engine": "uCoz", - "alexaRank": 2604530, - "urlMain": "http://mox.vo.uz", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "zareshetkoi.my1.ru": { - "engine": "uCoz", - "urlMain": "http://zareshetkoi.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "bot-cs.at.ua": { - "engine": "uCoz", - "urlMain": "http://bot-cs.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "gool-live.at.ua": { - "engine": "uCoz", - "urlMain": "http://gool-live.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "gsm-standart.clan.su": { - "engine": "uCoz", - "urlMain": "http://gsm-standart.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "soft-deniz.ucoz.ru": { - "engine": "uCoz", - "alexaRank": 4126874, - "urlMain": "http://soft-deniz.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "rasskazovskie.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://rasskazovskie.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "162nord.org": { - "engine": "uCoz", - "urlMain": "http://162nord.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "lifeway.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://lifeway.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "pochikimyk.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://pochikimyk.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "counter-art.ru": { - "engine": "uCoz", - "urlMain": "http://counter-art.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 3125198 - }, - "karkulis.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://karkulis.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "bce-tyt.ru": { - "engine": "uCoz", - "alexaRank": 5539610, - "urlMain": "http://bce-tyt.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "moments.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://moments.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john" - }, - "ibmt.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://ibmt.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "shipsondesk.info": { - "engine": "uCoz", - "urlMain": "http://shipsondesk.info", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "vrn-sms.ru": { - "engine": "uCoz", - "urlMain": "http://vrn-sms.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "inetjob.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://inetjob.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "russemya.do.am": { - "engine": "uCoz", - "urlMain": "http://russemya.do.am", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "metod-psv.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://metod-psv.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "pogz5615.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://pogz5615.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "elektron.ucoz.ua": { - "engine": "uCoz", - "urlMain": "http://elektron.ucoz.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "baltnethub.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://baltnethub.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "topreklama.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://topreklama.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "cosmotarolog.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://cosmotarolog.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "buyforex.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://buyforex.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "9interi.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://9interi.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "sefirut.ru": { - "engine": "uCoz", - "urlMain": "http://sefirut.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "vseotkritki.ru": { - "engine": "uCoz", - "urlMain": "http://vseotkritki.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "disabled": true - }, - "trainmodels.at.ua": { - "engine": "uCoz", - "urlMain": "http://trainmodels.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "povarenok.nov.ru": { - "engine": "uCoz", - "urlMain": "http://povarenok.nov.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "disabled": true - }, - "stay.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://stay.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "ercevo.ru": { - "engine": "uCoz", - "urlMain": "http://ercevo.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "abho.ru": { - "engine": "uCoz", - "urlMain": "http://abho.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 4301122 - }, - "l2bz.ru": { - "engine": "uCoz", - "urlMain": "http://l2bz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 9956854 - }, - "sstalkers.ru": { - "engine": "uCoz", - "urlMain": "http://sstalkers.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "dhelp.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://dhelp.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "famouspeople.ucoz.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://famouspeople.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "lavkachudec.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://lavkachudec.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 6702666 - }, - "krasnovodsk.net": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://krasnovodsk.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "sbuda.at.ua": { - "engine": "uCoz", - "urlMain": "http://sbuda.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ua" - ] - }, - "vse-o-zaz.at.ua": { - "engine": "uCoz", - "urlMain": "http://vse-o-zaz.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "apelmon.od.ua": { - "engine": "uCoz", - "urlMain": "http://apelmon.od.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "vinbazar.at.ua": { - "engine": "uCoz", - "urlMain": "http://vinbazar.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "angell.at.ua": { - "engine": "uCoz", - "urlMain": "http://angell.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "fareast.clan.su": { - "engine": "uCoz", - "urlMain": "http://fareast.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "foxrecord.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://foxrecord.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 10968042 - }, - "konibodom.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://konibodom.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "kupluradiodetal.at.ua": { - "engine": "uCoz", - "urlMain": "http://kupluradiodetal.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "forum", - "ua" - ] - }, - "lksmu-lg.at.ua": { - "engine": "uCoz", - "urlMain": "http://lksmu-lg.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "provincialynews.ru": { - "engine": "uCoz", - "urlMain": "http://provincialynews.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 7556891 - }, - "ural-sloboda.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://ural-sloboda.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "bbclub.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://bbclub.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "tv-android.at.ua": { - "engine": "uCoz", - "urlMain": "http://tv-android.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "webdom.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://webdom.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "smartplay.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://smartplay.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "fcbarca.at.ua": { - "engine": "uCoz", - "urlMain": "http://fcbarca.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "gym5.net": { - "engine": "uCoz", - "urlMain": "http://gym5.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 6607323 - }, - "softgame.3dn.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://softgame.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "piratapes.at.ua": { - "engine": "uCoz", - "urlMain": "http://piratapes.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john" - }, - "azovmore.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://azovmore.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "vega.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://vega.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "xn----7sbb0bfjrbhdi.xn--p1ai": { - "engine": "uCoz", - "urlMain": "http://xn----7sbb0bfjrbhdi.xn--p1ai", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "str-upravlenie.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://str-upravlenie.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "magia.at.ua": { - "engine": "uCoz", - "urlMain": "http://magia.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "mcfc-fan.ru": { - "engine": "uCoz", - "urlMain": "http://mcfc-fan.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 5904389 - }, - "jek-auto.ru": { - "engine": "uCoz", - "urlMain": "http://jek-auto.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "1001facts.ru": { - "engine": "uCoz", - "urlMain": "http://1001facts.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "sayty.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://sayty.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "nk-cs.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://nk-cs.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "xn----7sbfejdvocrv7adem.xn--p1ai": { - "engine": "uCoz", - "urlMain": "http://xn----7sbfejdvocrv7adem.xn--p1ai", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "disabled": true - }, - "religionlaw.ru": { - "engine": "uCoz", - "urlMain": "http://religionlaw.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "chelny-diplom.ru": { - "engine": "uCoz", - "urlMain": "http://chelny-diplom.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "binhot.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://binhot.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "cybers.clan.su": { - "engine": "uCoz", - "urlMain": "http://cybers.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "likerr.ru": { - "engine": "uCoz", - "urlMain": "http://likerr.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 6972018, - "disabled": true - }, - "iptv-free.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://iptv-free.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "pozdrawlandiya.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://pozdrawlandiya.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 468606 - }, - "aktualno.lv": { - "engine": "uCoz", - "urlMain": "http://aktualno.lv", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "red", - "alexaRank": 6387028 - }, - "nicemusic.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://nicemusic.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "liderdzr.my1.ru": { - "engine": "uCoz", - "urlMain": "http://liderdzr.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "megabravo.tk": { - "engine": "uCoz", - "urlMain": "http://megabravo.tk", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "disabled": true - }, - "vip-icq.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://vip-icq.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "nod32-forever.clan.su": { - "engine": "uCoz", - "urlMain": "http://nod32-forever.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "dvk-style.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://dvk-style.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "kotik.my1.ru": { - "engine": "uCoz", - "urlMain": "http://kotik.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "kuzini.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://kuzini.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "razborka-japan.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://razborka-japan.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "jump.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://jump.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "once-upon-a-time-tv.ru": { - "engine": "uCoz", - "urlMain": "http://once-upon-a-time-tv.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john" - }, - "5i8.ucoz.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://5i8.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "gdz.at.ua": { - "engine": "uCoz", - "urlMain": "http://gdz.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "wakeup.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://wakeup.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "obmanunet.clan.su": { - "engine": "uCoz", - "urlMain": "http://obmanunet.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "dreddmc.ru": { - "engine": "uCoz", - "urlMain": "http://dreddmc.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "spygaming.clan.su": { - "engine": "uCoz", - "urlMain": "http://spygaming.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "bashteplovent.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://bashteplovent.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "okm.org.ru": { - "engine": "uCoz", - "urlMain": "http://okm.org.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "kapusta.do.am": { - "engine": "uCoz", - "urlMain": "http://kapusta.do.am", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "sharing-sat.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://sharing-sat.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john" - }, - "svoimirykami.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://svoimirykami.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "demon-art.ru": { - "engine": "uCoz", - "urlMain": "http://demon-art.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "hackapp.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://hackapp.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 10176942 - }, - "prosmart.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://prosmart.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john" - }, - "collegy.ucoz.ru": { - "tags": [ - "kz" - ], - "engine": "uCoz", - "urlMain": "http://collegy.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 116587 - }, - "greenvisa.at.ua": { - "engine": "uCoz", - "urlMain": "http://greenvisa.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "all-gta.info": { - "engine": "uCoz", - "urlMain": "http://all-gta.info", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 12202015 - }, - "generalu.at.ua": { - "engine": "uCoz", - "urlMain": "http://generalu.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 2233303 - }, - "anschula.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://anschula.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "garmin.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://garmin.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 4729385 - }, - "655iap.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://655iap.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "bestclips.ws": { - "engine": "uCoz", - "urlMain": "http://bestclips.ws", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "crossfaernet.my1.ru": { - "engine": "uCoz", - "urlMain": "http://crossfaernet.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "lemfo-russia.ru": { - "engine": "uCoz", - "urlMain": "http://lemfo-russia.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "laserwar48.ru": { - "engine": "uCoz", - "urlMain": "http://laserwar48.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "duz.ucoz.com": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://duz.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "freedom.kiev.ua": { - "engine": "uCoz", - "urlMain": "http://freedom.kiev.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "japanesedolls.ru": { - "engine": "uCoz", - "urlMain": "http://japanesedolls.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 4307732 - }, - "el-pizza.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://el-pizza.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "patent.3dn.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://patent.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "lesbeyanka.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://lesbeyanka.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "tags": [ - "ru" - ] - }, - "israelrent.info": { - "engine": "uCoz", - "urlMain": "http://israelrent.info", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "tgi.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://tgi.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "grand-magic.ru": { - "engine": "uCoz", - "urlMain": "http://grand-magic.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "darkart3d.ru": { - "engine": "uCoz", - "urlMain": "http://darkart3d.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "wm-maximum.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://wm-maximum.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 6589085 - }, - "ukrelektrik.com": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://ukrelektrik.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 2914242 - }, - "mark.szenprogs.ru": { - "engine": "uCoz", - "urlMain": "http://mark.szenprogs.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 2737851 - }, - "berea.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://berea.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "japara.clan.su": { - "engine": "uCoz", - "urlMain": "http://japara.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "azovmore.dn.ua": { - "engine": "uCoz", - "urlMain": "http://azovmore.dn.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "disabled": true - }, - "parusa-magellana.ru": { - "engine": "uCoz", - "urlMain": "http://parusa-magellana.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "red" - }, - "zerkalastekla.ru": { - "engine": "uCoz", - "urlMain": "http://zerkalastekla.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "zdorov10.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://zdorov10.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "russianfoxmail.at.ua": { - "engine": "uCoz", - "urlMain": "http://russianfoxmail.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "skorozamuj.com": { - "engine": "uCoz", - "urlMain": "http://skorozamuj.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "ourfunnypets.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://ourfunnypets.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "lname.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://lname.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "kino-horror.ru": { - "tags": [ - "ru", - "ua" - ], - "engine": "uCoz", - "urlMain": "http://kino-horror.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "disabled": true - }, - "moedelo.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://moedelo.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "umorbos.at.ua": { - "engine": "uCoz", - "urlMain": "http://umorbos.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "tags": [ - "ua" - ] - }, - "centr-spektr.ru": { - "engine": "uCoz", - "urlMain": "http://centr-spektr.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "ofc65.ru": { - "engine": "uCoz", - "urlMain": "http://ofc65.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "avangard-basket.at.ua": { - "engine": "uCoz", - "urlMain": "http://avangard-basket.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "xitlar.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://xitlar.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "mechta-sev.at.ua": { - "engine": "uCoz", - "urlMain": "http://mechta-sev.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "soundfactory.ucoz.org": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://soundfactory.ucoz.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 4563409 - }, - "sibcoins.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://sibcoins.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "dushschool.moy.su": { - "engine": "uCoz", - "urlMain": "http://dushschool.moy.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "halol.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://halol.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 12748883 - }, - "v3de.ru": { - "engine": "uCoz", - "urlMain": "http://v3de.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "vgorah.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://vgorah.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "school-23elista.ucoz.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://school-23elista.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 2788790 - }, - "videhelp-comp.my1.ru": { - "engine": "uCoz", - "urlMain": "http://videhelp-comp.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "trays.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://trays.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "tags": [ - "forum", - "ru" - ] - }, - "xn--80aqkf5cb.xn--p1ai": { - "engine": "uCoz", - "urlMain": "http://xn--80aqkf5cb.xn--p1ai", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "school1065.moy.su": { - "engine": "uCoz", - "urlMain": "http://school1065.moy.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "baykovoshkola.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://baykovoshkola.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "naruto-fan.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://naruto-fan.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "oldones.org": { - "engine": "uCoz", - "urlMain": "http://oldones.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 3282252 - }, - "coffeeworld.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://coffeeworld.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "trainz-vl.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://trainz-vl.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 6995958 - }, - "kashanya.com": { - "engine": "uCoz", - "urlMain": "http://kashanya.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "novomoskovsk.my1.ru": { - "engine": "uCoz", - "urlMain": "http://novomoskovsk.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "polotno.at.ua": { - "engine": "uCoz", - "urlMain": "http://polotno.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "focus-pocus.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://focus-pocus.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "resource-mta.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://resource-mta.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "hulyaganka.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://hulyaganka.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john" - }, - "symbian9.clan.su": { - "engine": "uCoz", - "urlMain": "http://symbian9.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "love-magic.clan.su": { - "engine": "uCoz", - "urlMain": "http://love-magic.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "mix-best.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://mix-best.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ], - "alexaRank": 2351759 - }, - "southparkz.net": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://southparkz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 614025 - }, - "shporgalki.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://shporgalki.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "vivasan.mobi": { - "engine": "uCoz", - "urlMain": "http://vivasan.mobi", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 4789531 - }, - "budo52.ru": { - "engine": "uCoz", - "urlMain": "http://budo52.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru", - "sport" - ], - "alexaRank": 7451934 - }, - "iceberg-116.ru": { - "engine": "uCoz", - "urlMain": "http://iceberg-116.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "android-gameworld.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://android-gameworld.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 559673 - }, - "cosmoforum.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://cosmoforum.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "tags": [ - "forum" - ] - }, - "mastersoap.ru": { - "engine": "uCoz", - "urlMain": "http://mastersoap.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "club-gas.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://club-gas.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 3148854 - }, - "mychildren.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://mychildren.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 7027071 - }, - "icook.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://icook.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "music-one.my1.ru": { - "engine": "uCoz", - "urlMain": "http://music-one.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 7565485 - }, - "podolog.su": { - "engine": "uCoz", - "urlMain": "http://podolog.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "school2dobrinka.ru": { - "engine": "uCoz", - "urlMain": "http://school2dobrinka.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 7539499 - }, - "futajik.at.ua": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://futajik.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 2373708 - }, - "masterkosta.com": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://masterkosta.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 6471976 - }, - "vip-cccp.clan.su": { - "engine": "uCoz", - "urlMain": "http://vip-cccp.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "dzhida2000.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://dzhida2000.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "softal.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://softal.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "5level.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://5level.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "game-mobi.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://game-mobi.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "dreamteam43.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://dreamteam43.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 2663173 - }, - "liozno.info": { - "engine": "uCoz", - "urlMain": "http://liozno.info", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "snegovaya-pad.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://snegovaya-pad.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "razvilnoe.ru": { - "engine": "uCoz", - "urlMain": "http://razvilnoe.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "avto-box.at.ua": { - "engine": "uCoz", - "urlMain": "http://avto-box.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "smarton.at.ua": { - "engine": "uCoz", - "urlMain": "http://smarton.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 9782826 - }, - "rielt55.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://rielt55.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "anime-grand.moy.su": { - "engine": "uCoz", - "urlMain": "http://anime-grand.moy.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "xemera.at.ua": { - "engine": "uCoz", - "urlMain": "http://xemera.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "mistoodesa.ucoz.ua": { - "engine": "uCoz", - "urlMain": "http://mistoodesa.ucoz.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "coins.my1.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://coins.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "shkola3.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://shkola3.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 4615760 - }, - "pmpkbirsk.ucoz.org": { - "engine": "uCoz", - "urlMain": "http://pmpkbirsk.ucoz.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "mystyle.at.ua": { - "engine": "uCoz", - "urlMain": "http://mystyle.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "wow-game.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://wow-game.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 414268 - }, - "csi.ucoz.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://csi.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "smart-phone.ucoz.ua": { - "engine": "uCoz", - "urlMain": "http://smart-phone.ucoz.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "sense.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://sense.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "rcprim.ru": { - "engine": "uCoz", - "urlMain": "http://rcprim.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "marchenkov.do.am": { - "engine": "uCoz", - "urlMain": "http://marchenkov.do.am", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "taxi-belgorod.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://taxi-belgorod.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "tsibulskiy.my1.ru": { - "engine": "uCoz", - "urlMain": "http://tsibulskiy.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "doytrunt.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://doytrunt.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "naruto-rolegame.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://naruto-rolegame.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "domfrunze.kg": { - "engine": "uCoz", - "urlMain": "http://domfrunze.kg", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "pc-world.at.ua": { - "engine": "uCoz", - "urlMain": "http://pc-world.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "kraskiprazdnika.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://kraskiprazdnika.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "santeh-sinfo.ru": { - "engine": "uCoz", - "urlMain": "http://santeh-sinfo.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "xristos.vo.uz": { - "engine": "uCoz", - "urlMain": "http://xristos.vo.uz", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "molodezh-ua.at.ua": { - "engine": "uCoz", - "urlMain": "http://molodezh-ua.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "101vzvod.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://101vzvod.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "si-sv.com": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://si-sv.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john", - "alexaRank": 303536 - }, - "actikom.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://actikom.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "school9korolev.moy.su": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://school9korolev.moy.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 3354755 - }, - "metanoia.at.ua": { - "engine": "uCoz", - "urlMain": "http://metanoia.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "motomanual.at.ua": { - "engine": "uCoz", - "urlMain": "http://motomanual.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "mlm.at.ua": { - "engine": "uCoz", - "urlMain": "http://mlm.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "ohypnose.ru": { - "engine": "uCoz", - "urlMain": "http://ohypnose.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "disabled": true - }, - "musicbunker.ru": { - "engine": "uCoz", - "urlMain": "http://musicbunker.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 5949746 - }, - "edumonch.ru": { - "engine": "uCoz", - "urlMain": "http://edumonch.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 4837317 - }, - "futajist-studio.moy.su": { - "engine": "uCoz", - "urlMain": "http://futajist-studio.moy.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "ksmsp.ru": { - "engine": "uCoz", - "urlMain": "http://ksmsp.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "tags": [ - "ru" - ] - }, - "worldofdragonage.ru": { - "engine": "uCoz", - "urlMain": "http://worldofdragonage.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "red", - "alexaRank": 5709035 - }, - "programm.at.ua": { - "engine": "uCoz", - "urlMain": "http://programm.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "marym.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://marym.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "aikido-mariupol.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://aikido-mariupol.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "zapravkaavto.ru": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://zapravkaavto.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 8974969 - }, - "mir-stalkera.ru": { - "engine": "uCoz", - "urlMain": "http://mir-stalkera.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john" - }, - "maslinka.at.ua": { - "engine": "uCoz", - "urlMain": "http://maslinka.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "talimger.org": { - "tags": [ - "kz" - ], - "engine": "uCoz", - "urlMain": "http://talimger.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 239259 - }, - "fanacmilan.com": { - "engine": "uCoz", - "urlMain": "http://fanacmilan.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "red", - "alexaRank": 5471650, - "disabled": true - }, - "allmobile.vo.uz": { - "engine": "uCoz", - "urlMain": "http://allmobile.vo.uz", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "gorposmos.ru": { - "engine": "uCoz", - "urlMain": "http://gorposmos.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "css-play4fun.ru": { - "engine": "uCoz", - "urlMain": "http://css-play4fun.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "unreal.at.ua": { - "engine": "uCoz", - "urlMain": "http://unreal.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "kaiserslautern.su": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://kaiserslautern.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "nordar.at.ua": { - "engine": "uCoz", - "urlMain": "http://nordar.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "7x.net.ua": { - "engine": "uCoz", - "urlMain": "http://7x.net.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "icq-telefon.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://icq-telefon.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "salutm.ru": { - "engine": "uCoz", - "urlMain": "http://salutm.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 7662520 - }, - "azhack.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://azhack.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "admin-soft.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://admin-soft.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "grodnofish.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://grodnofish.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "kinohouse.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://kinohouse.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "spectrum-z.ru": { - "engine": "uCoz", - "urlMain": "http://spectrum-z.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "disabled": true - }, - "satsoft.at.ua": { - "engine": "uCoz", - "urlMain": "http://satsoft.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "theatre.my1.ru": { - "engine": "uCoz", - "urlMain": "http://theatre.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "photoaura.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://photoaura.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "stroy-s-nami.ucoz.com": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://stroy-s-nami.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "god" - }, - "ltsai.at.ua": { - "engine": "uCoz", - "urlMain": "http://ltsai.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "fst-kolos.do.am": { - "engine": "uCoz", - "urlMain": "http://fst-kolos.do.am", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "mozga-net.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://mozga-net.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 5613210 - }, - "promalp.dp.ua": { - "engine": "uCoz", - "urlMain": "http://promalp.dp.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "disabled": true - }, - "css-nn-52-rus.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://css-nn-52-rus.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "zdesvsyo.com": { - "engine": "uCoz", - "urlMain": "http://zdesvsyo.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "tags": [ - "ru" - ] - }, - "sebastopol.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://sebastopol.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "autosila.at.ua": { - "engine": "uCoz", - "urlMain": "http://autosila.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "ladpremiya.ru": { - "engine": "uCoz", - "urlMain": "http://ladpremiya.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "kaz.ionyk.ru": { - "engine": "uCoz", - "urlMain": "http://kaz.ionyk.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "electronic-component.org": { - "engine": "uCoz", - "urlMain": "http://electronic-component.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 7078895 - }, - "xn--80aepdb4ag.xn--p1ai": { - "engine": "uCoz", - "urlMain": "http://xn--80aepdb4ag.xn--p1ai", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "remont56.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://remont56.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "personagra-ta.ru": { - "engine": "uCoz", - "urlMain": "http://personagra-ta.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "compline.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://compline.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "thelike.ru": { - "engine": "uCoz", - "urlMain": "http://thelike.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 6696802 - }, - "wwork.my1.ru": { - "engine": "uCoz", - "urlMain": "http://wwork.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "fs-mods-rus.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://fs-mods-rus.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 2022177 - }, - "show.co.ua": { - "engine": "uCoz", - "urlMain": "http://show.co.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "disabled": true - }, - "viupetra.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://viupetra.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 5005149 - }, - "irteam.ru": { - "engine": "uCoz", - "urlMain": "http://irteam.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "zvukinadezdy.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://zvukinadezdy.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 4494749 - }, - "ps-cs.ucoz.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://ps-cs.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 4701999 - }, - "gta-fan-zone.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://gta-fan-zone.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "tovyanskaya.at.ua": { - "engine": "uCoz", - "urlMain": "http://tovyanskaya.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "scooter-helper.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://scooter-helper.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "opinion.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://opinion.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "staroverovka.ucoz.ua": { - "engine": "uCoz", - "urlMain": "http://staroverovka.ucoz.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 10724495 - }, - "hevc-club.ucoz.net": { - "engine": "uCoz", - "urlMain": "http://hevc-club.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 907643 - }, - "fx-profit.at.ua": { - "engine": "uCoz", - "urlMain": "http://fx-profit.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "spaceserials.ru": { - "engine": "uCoz", - "urlMain": "http://spaceserials.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "profsouz-au.ru": { - "engine": "uCoz", - "urlMain": "http://profsouz-au.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "avto.dzerghinsk.org": { - "disabled": true, - "tags": [ - "ua" - ], - "engine": "uCoz", - "urlMain": "http://avto.dzerghinsk.org", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 1423460 - }, - "sufficit.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://sufficit.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "fly.my1.ru": { - "engine": "uCoz", - "urlMain": "http://fly.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "schoolteacher.moy.su": { - "engine": "uCoz", - "urlMain": "http://schoolteacher.moy.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "vkusnyashkino.ru": { - "engine": "uCoz", - "urlMain": "http://vkusnyashkino.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "urmai-urmaevo.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://urmai-urmaevo.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "metrologika.ru": { - "engine": "uCoz", - "urlMain": "http://metrologika.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "bookz.su": { - "engine": "uCoz", - "urlMain": "http://bookz.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "pik100.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://pik100.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 3466485 - }, - "ahera.ru": { - "engine": "uCoz", - "urlMain": "http://ahera.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "drawings-base.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://drawings-base.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "mycomputer.ks.ua": { - "engine": "uCoz", - "urlMain": "http://mycomputer.ks.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "disabled": true - }, - "portal-cs-1-6.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://portal-cs-1-6.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "forum4.ucoz.net": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://forum4.ucoz.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "tags": [ - "forum" - ] - }, - "tvigra.clan.su": { - "engine": "uCoz", - "urlMain": "http://tvigra.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "xn----7sbcctevcqafop1aviko5l.xn--p1ai": { - "engine": "uCoz", - "urlMain": "http://xn----7sbcctevcqafop1aviko5l.xn--p1ai", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 4364152 - }, - "lori.at.ua": { - "engine": "uCoz", - "urlMain": "http://lori.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "minnac.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://minnac.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "xyuivet-mailcpy.moy.su": { - "engine": "uCoz", - "urlMain": "http://xyuivet-mailcpy.moy.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "dubrovo.moy.su": { - "engine": "uCoz", - "urlMain": "http://dubrovo.moy.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "animelend.my1.ru": { - "engine": "uCoz", - "urlMain": "http://animelend.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "art-nata.my1.ru": { - "tags": [ - "kz" - ], - "engine": "uCoz", - "urlMain": "http://art-nata.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 1151909 - }, - "wmmail-wmmail.3dn.ru": { - "engine": "uCoz", - "urlMain": "http://wmmail-wmmail.3dn.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "zornet.ru": { - "disabled": true, - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://zornet.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "red", - "alexaRank": 462105 - }, - "top10allservers.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://top10allservers.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "na-sochi.ru": { - "engine": "uCoz", - "urlMain": "http://na-sochi.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "disabled": true - }, - "simf-mama.ucoz.ua": { - "engine": "uCoz", - "urlMain": "http://simf-mama.ucoz.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "kredituemall.ru": { - "engine": "uCoz", - "urlMain": "http://kredituemall.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "mircasov.ru": { - "engine": "uCoz", - "urlMain": "http://mircasov.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 3446959 - }, - "vsemobile.my1.ru": { - "engine": "uCoz", - "urlMain": "http://vsemobile.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "art-color.my1.ru": { - "engine": "uCoz", - "urlMain": "http://art-color.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "xn--24-6kcaal6ajt1cpibnu7d5dtc.xn--p1ai": { - "engine": "uCoz", - "urlMain": "http://xn--24-6kcaal6ajt1cpibnu7d5dtc.xn--p1ai", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "red", - "tags": [ - "medicine", - "ru" - ] - }, - "usersoft.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://usersoft.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "zapgame.ru": { - "engine": "uCoz", - "urlMain": "http://zapgame.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "yagubov.site": { - "engine": "uCoz", - "urlMain": "http://yagubov.site", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "disabled": true - }, - "ships.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://ships.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "masseffect-universe.com": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://masseffect-universe.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 928328 - }, - "histroom.my1.ru": { - "engine": "uCoz", - "urlMain": "http://histroom.my1.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "music2dj.clan.su": { - "engine": "uCoz", - "urlMain": "http://music2dj.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "osta.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://osta.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "cpu.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://cpu.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "ufive.ru": { - "engine": "uCoz", - "urlMain": "http://ufive.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "mir2007.ru": { - "engine": "uCoz", - "urlMain": "http://mir2007.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "popugi.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://popugi.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "hokage.tv": { - "engine": "uCoz", - "urlMain": "http://hokage.tv", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "dzintarsmos09.ru": { - "engine": "uCoz", - "urlMain": "http://dzintarsmos09.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "wm.ucoz.com": { - "engine": "uCoz", - "urlMain": "http://wm.ucoz.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "margaritas.clan.su": { - "engine": "uCoz", - "urlMain": "http://margaritas.clan.su", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john" - }, - "kotneko.at.ua": { - "engine": "uCoz", - "urlMain": "http://kotneko.at.ua", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "aribut.ru": { - "engine": "uCoz", - "urlMain": "http://aribut.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "death-legion.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://death-legion.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "tom.do.am": { - "engine": "uCoz", - "urlMain": "http://tom.do.am", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin" - }, - "beatl.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://beatl.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "homeofsky.ucoz.ru": { - "engine": "uCoz", - "urlMain": "http://homeofsky.ucoz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex" - }, - "tlgrm.pro": { - "disabled": true, - "engine": "uCoz", - "urlMain": "http://tlgrm.pro", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "ru" - ] - }, - "ucozzz.ru": { - "engine": "uCoz", - "urlMain": "http://ucozzz.ru", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john" - }, - "appleinsider.ru": { - "tags": [ - "news", - "ru", - "tech" - ], - "engine": "engine404", - "urlMain": "https://appleinsider.ru", - "url": "https://appleinsider.ru/author/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 49678 - }, - "accounts.eclipse.org": { - "tags": [ - "coding" - ], - "engine": "engine404", - "urlMain": "https://accounts.eclipse.org", - "url": "https://accounts.eclipse.org/users/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 6446 - }, - "amp.flipboard.com": { - "tags": [ - "news" - ], - "engine": "engine404", - "urlMain": "https://amp.flipboard.com", - "url": "https://amp.flipboard.com/@{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 2079 - }, - "banki.ru": { - "disabled": true, - "tags": [ - "ru" - ], - "engine": "engine404", - "urlMain": "https://banki.ru", - "url": "https://banki.ru/blog/{username}/", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 3616 - }, - "colourlovers.com": { - "tags": [ - "in" - ], - "engine": "engine404", - "urlMain": "http://colourlovers.com", - "url": "http://colourlovers.com/lover/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 30699 - }, - "Basecamphq": { - "tags": [ - "us" - ], - "engine": "engine404", - "urlMain": "https://basecamphq.com", - "url": "https://{username}.basecamphq.com/login", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 37337 - }, - "community.getpostman.com": { - "tags": [ - "forum", - "in", - "tech" - ], - "engine": "Discourse", - "urlMain": "https://community.getpostman.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 3556 - }, - "designspiration.com": { - "tags": [ - "art" - ], - "engine": "engine404", - "urlMain": "https://designspiration.com", - "url": "https://designspiration.com/{username}/", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 23471 - }, - "drupal.ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "absenceStrs": [ - "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430 - 404" - ], - "presenseStrs": [ - "<ul class=\"tabs--primary\">" - ], - "urlMain": "https://drupal.ru", - "url": "https://drupal.ru/username/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 346804 - }, - "followus.com": { - "tags": [ - "in" - ], - "engine": "engine404", - "urlMain": "https://followus.com", - "url": "https://followus.com/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 107398 - }, - "discuss.codecademy.com": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "urlMain": "https://discuss.codecademy.com", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "red", - "alexaRank": 2347 - }, - "fancy.com": { - "disabled": true, - "tags": [ - "shopping" - ], - "engine": "engine404", - "urlMain": "https://fancy.com", - "url": "https://fancy.com/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 55415 - }, - "fotostrana.ru": { - "tags": [ - "ru" - ], - "engine": "engine404", - "urlMain": "https://fotostrana.ru", - "url": "https://fotostrana.ru/{username}/", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 3672 - }, - "freelancehunt.ru": { - "tags": [ - "ru", - "uz" - ], - "engine": "engine404", - "urlMain": "https://freelancehunt.ru", - "url": "https://freelancehunt.ru/freelancer/{username}.html", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 1248520 - }, - "freelance.ua": { - "tags": [ - "ua" - ], - "errors": { - "https://freelance.ua/war/": "Site censorship" - }, - "engine": "engine404", - "urlMain": "https://freelance.ua", - "url": "https://freelance.ua/en/user/{username}/portfolio/", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 264688 - }, - "linktr.ee": { - "tags": [ - "links" - ], - "checkType": "message", - "absenceStrs": [ - "The page you\u2019re looking for doesn\u2019t exist.", - "Want this to be your username?" - ], - "presenseStrs": [ - "@container/profile-container" - ], - "urlMain": "https://linktr.ee", - "url": "https://linktr.ee/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "Blisscartoos", - "alexaRank": 134 - }, - "jsfiddle.net": { - "tags": [ - "coding", - "sharing" - ], - "engine": "engine404", - "urlMain": "https://jsfiddle.net", - "url": "https://jsfiddle.net/user/{username}/", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "john", - "alexaRank": 2375 - }, - "rive.app": { - "tags": [ - "in" - ], - "engine": "engine404", - "urlMain": "https://rive.app", - "url": "https://rive.app/a/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 100125 - }, - "stopgame.ru": { - "tags": [ - "ru" - ], - "engine": "engine404", - "urlMain": "https://stopgame.ru", - "url": "https://stopgame.ru/users/profile/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 36379 - }, - "social.msdn.microsoft.com": { - "disabled": true, - "tags": [ - "us" - ], - "engine": "engine404", - "urlMain": "https://social.msdn.microsoft.com", - "url": "https://social.msdn.microsoft.com/profile/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 19 - }, - "selly.gg": { - "engine": "engine404", - "urlMain": "https://selly.gg", - "url": "https://selly.gg/@{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 1735049 - }, - "{username}.tilda.ws": { - "tags": [ - "ru" - ], - "engine": "engine404", - "urlMain": "https://tilda.ws", - "url": "https://{username}.tilda.ws", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 2251 - }, - "{username}.portfoliobox.net": { - "tags": [ - "in", - "jp", - "us" - ], - "engine": "engine404", - "urlMain": "https://portfoliobox.net", - "url": "https://{username}.portfoliobox.net", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "red", - "alexaRank": 56594 - }, - "teamtreehouse.com": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "Member Since" - ], - "absenceStrs": [ - "Bummer! You must be logged in to access this page." - ], - "urlMain": "https://teamtreehouse.com", - "url": "https://teamtreehouse.com/profiles/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "god", - "alexaRank": 16193 - }, - "twentysix.ru": { - "tags": [ - "ru" - ], - "engine": "engine404", - "urlMain": "https://twentysix.ru", - "url": "https://twentysix.ru/profile/{username}/", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 935029 - }, - "xakep.ru": { - "tags": [ - "ru" - ], - "engine": "engine404", - "urlMain": "https://xakep.ru", - "url": "https://xakep.ru/author/{username}/", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 67953 - }, - "hi-news.ru": { - "tags": [ - "ru" - ], - "engine": "engine404", - "urlMain": "https://hi-news.ru", - "url": "https://hi-news.ru/author/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 51542 - }, - "russpuss.ru": { - "engine": "engine404", - "urlMain": "https://www.russpuss.ru", - "url": "https://www.russpuss.ru/profile/{username}/", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "tags": [ - "erotic", - "forum", - "ru" - ], - "alexaRank": 1893858 - }, - "upwork.com": { - "tags": [ - "us" - ], - "engine": "engine404", - "urlMain": "https://upwork.com", - "url": "https://upwork.com/fl/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 215 - }, - "joyreactor.cc": { - "tags": [ - "art", - "nl", - "ru" - ], - "engine": "engineRedirect", - "urlMain": "http://joyreactor.cc", - "url": "http://joyreactor.cc/user/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 12813 - }, - "codeforces.com": { - "tags": [ - "coding", - "in" - ], - "errors": { - "The page is temporarily blocked by administrator.": "IP ban" - }, - "checkType": "message", - "presenseStrs": [ - "Contest rating" - ], - "urlMain": "http://codeforces.com", - "url": "http://codeforces.com/profile/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 6824 - }, - "GitHubGist": { - "tags": [ - "coding", - "sharing" - ], - "engine": "engineRedirect", - "urlMain": "https://gist.github.com", - "url": "https://gist.github.com/{username}", - "source": "GitHub", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 26 - }, - "hosting.kitchen": { - "tags": [ - "ru" - ], - "engine": "engineRedirect", - "urlMain": "https://hosting.kitchen", - "url": "https://hosting.kitchen/profile/{username}/", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "admin", - "alexaRank": 1363479 - }, - "tripit.com": { - "disabled": true, - "tags": [ - "us" - ], - "engine": "engineRedirect", - "urlMain": "https://tripit.com", - "url": "https://tripit.com/people/{username}#/profile/basic-info", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 29179 - }, - "freelance.ru": { - "tags": [ - "ru" - ], - "engine": "engine404get", - "urlMain": "https://freelance.ru", - "url": "https://freelance.ru/{username}/", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 63852 - }, - "freelansim.ru": { - "engine": "engine404get", - "urlMain": "https://freelansim.ru", - "url": "https://freelansim.ru/freelancers/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 8720399 - }, - "fotolog.com": { - "tags": [ - "in" - ], - "engine": "engine404get", - "urlMain": "http://fotolog.com", - "url": "http://fotolog.com/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "red", - "alexaRank": 30498 - }, - "thoughts.com": { - "tags": [ - "blog" - ], - "checkType": "message", - "absenceStrs": [ - "<title>Page not found" - ], - "presenseStrs": [ - "user-activity" - ], - "urlMain": "http://thoughts.com", - "url": "http://thoughts.com/members/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "jules60", - "alexaRank": 313408 - }, - "hackernoon.com": { - "tags": [ - "news", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "<title>HackerNoon" - ], - "presenseStrs": [ - " | HackerNoon" - ], - "urlMain": "https://hackernoon.com", - "url": "https://hackernoon.com/u/{username}", - "usernameUnclaimed": "noonewouldeverusethis71", - "usernameClaimed": "god", - "alexaRank": 4611 - }, - "Intigriti": { - "tags": [ - "eu", - "hacking" - ], - "checkType": "message", - "presenseStrs": [ - "avatar-container" - ], - "absenceStrs": [ - "We didn't find what you're looking for" - ], - "urlMain": "https://intigriti.com", - "url": "https://app.intigriti.com/profile/{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 128097 - }, - "yamaya.ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "Skype:" - ], - "absenceStrs": [ - "

" - ], - "urlMain": "https://yamaya.ru", - "url": "https://yamaya.ru/profile/?{username}", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "maya", - "alexaRank": 3335220 - }, - "Tinkoff Invest": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "ProfileHeader__nickname" - ], - "absenceStrs": [ - "ProductError" - ], - "urlMain": "https://www.tinkoff.ru/invest/", - "url": "https://tinkoff.ru/invest/social/profile/{username}/", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "adam", - "alexaRank": 1020 - }, - "Protovary.style": { - "checkType": "response_url", - "urlMain": "https://protovary.style", - "url": "https://protovary.style/user/{username}/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 5350288 - }, - "beacons.ai": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "https://cdn.beacons.ai/profile_pictures" - ], - "absenceStrs": [ - "https://beacons.ai/bw_logo_full.png" - ], - "urlMain": "https://beacons.ai", - "url": "https://beacons.ai/{username}", - "usernameClaimed": "pasteljellies", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 4488 - }, - "are.na": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "Profile--view" - ], - "absenceStrs": [ - "Are.na home" - ], - "urlMain": "https://www.are.na", - "url": "https://www.are.na/{username}", - "usernameClaimed": "nate-cassel", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 27323 - }, - "mywishboard.com": { - "tags": [ - "in" - ], - "checkType": "message", - "presenseStrs": [ - "profile-header", - " profile-header__col" - ], - "absenceStrs": [ - "This page could not be found" - ], - "urlMain": "https://mywishboard.com", - "url": "https://mywishboard.com/@{username}", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 379990 - }, - "crafta.ua": { - "tags": [ - "ua" - ], - "checkType": "message", - "presenseStrs": [ - "cft-profile-about" - ], - "absenceStrs": [ - "Page not found" - ], - "urlMain": "https://crafta.ua", - "url": "https://{username}.crafta.ua/", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 239025 - }, - "m.smutty.com": { - "tags": [ - "erotic", - "us" - ], - "checkType": "message", - "presenseStrs": [ - "profile_stats_n" - ], - "absenceStrs": [ - "Not Found" - ], - "urlMain": "https://m.smutty.com", - "url": "https://m.smutty.com/user/{username}/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 25248, - "disabled": true - }, - "www.marykay.ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "email" - ], - "absenceStrs": [ - "errorPage" - ], - "urlMain": "https://www.marykay.ru", - "url": "https://www.marykay.ru/{username}", - "usernameClaimed": "anna", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 195582, - "disabled": true - }, - "profile.hatena.ne.jp": { - "tags": [ - "jp" - ], - "checkType": "message", - "presenseStrs": [ - "profile" - ], - "absenceStrs": [ - "404 Not Found" - ], - "urlMain": "https://profile.hatena.ne.jp", - "url": "https://profile.hatena.ne.jp/{username}/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 2204 - }, - "www.freelancejob.ru": { - "tags": [ - "ru" - ], - "checkType": "message", - "presenseStrs": [ - "\u041a\u043e\u043b-\u0432\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - ], - "absenceStrs": [ - "

\u041e\u0448\u0438\u0431\u043a\u0430 404

" - ], - "urlMain": "https://www.freelancejob.ru", - "url": "https://www.freelancejob.ru/users/{username}/", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 230462 - }, - "forum.exkavator.ru": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "urlMain": "https://forum.exkavator.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 129118 - }, - "forum.kineshemec.ru": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "urlMain": "http://forum.kineshemec.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 183592 - }, - "forum.nemodniy.ru": { - "disabled": true, - "engine": "vBulletin", - "urlMain": "http://forum.nemodniy.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 2074283 - }, - "forum.zone-game.info": { - "engine": "vBulletin", - "urlMain": "https://forum.zone-game.info", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 913014 - }, - "forum.uinsell.net": { - "engine": "vBulletin", - "urlMain": "http://forum.uinsell.net", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true, - "tags": [ - "forum" - ] - }, - "forum.heroesworld.ru": { - "tags": [ - "forum", - "ru" - ], - "engine": "vBulletin", - "urlMain": "https://forum.heroesworld.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 403451 - }, - "brute.pw": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "urlMain": "https://brute.pw", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "dapf.ru": { - "engine": "XenForo", - "urlMain": "https://dapf.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 3930895 - }, - "cubecraft.net": { - "tags": [ - "forum", - "in", - "us" - ], - "engine": "XenForo", - "urlMain": "https://www.cubecraft.net", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 175256 - }, - "cowboyszone.com": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "urlMain": "https://cowboyszone.com", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 209568 - }, - "forums.golfmonthly.com": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "urlMain": "https://forums.golfmonthly.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 42573 - }, - "Tom's guide": { - "tags": [ - "forum", - "tech" - ], - "engine": "XenForo", - "urlMain": "http://forums.tomsguide.com", - "usernameClaimed": "matthewvel", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 929 - }, - "onanizm.club": { - "disabled": true, - "engine": "XenForo", - "urlMain": "http://onanizm.club", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 1254774 - }, - "mednolit.ru": { - "tags": [ - "ru" - ], - "engine": "uCoz", - "urlMain": "http://mednolit.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1105020 - }, - "mikele-loconte.ru": { - "engine": "uCoz", - "urlMain": "http://mikele-loconte.ru", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "mkuniverse.ru": { - "engine": "uCoz", - "urlMain": "http://mkuniverse.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "hashnode": { - "tags": [ - "in" - ], - "checkType": "message", - "presenseStrs": [ - "email", - "profile-tags", - "name", - "og:site_name", - " name=" - ], - "absenceStrs": [ - "We can\u2019t find the page you\u2019re looking for!" - ], - "urlMain": "https://hashnode.com", - "url": "https://hashnode.com/@{username}", - "usernameClaimed": "melwinalm", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 15106 - }, - "www.change.org": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "first_name", - "last_name", - "Email", - "email", - "pathname" - ], - "urlMain": "https://www.change.org", - "url": "https://www.change.org/o/{username}", - "usernameClaimed": "changedotorg", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1540 - }, - "ifunny.co": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "subscribers" - ], - "urlMain": "https://www.ifunny.co", - "url": "https://www.ifunny.co/user/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 6540 - }, - "LocalCryptos": { - "urlProbe": "https://localcryptosapi.com/v1/accounts/profile/{username}", - "checkType": "message", - "presenseStrs": [ - "username", - "email_verified", - "Email verified", - "phone_verified", - "Phone verified" - ], - "absenceStrs": [ - "error" - ], - "urlMain": "https://localcryptosapi.com", - "url": "http://localcryptos.com/en/profile/{username}", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "djskt.lnk.to": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "artistName", - " legalName" - ], - "absenceStrs": [ - "No page with this URL exists" - ], - "urlMain": "https://djskt.lnk.to", - "url": "https://djskt.lnk.to/{username}", - "usernameClaimed": "LoveDontFadeTW", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 2490 - }, - "Amazon": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "authorName" - ], - "absenceStrs": [ - "Sorry! We couldn't find that page" - ], - "urlMain": "https://amazon.com", - "url": "https://amazon.com/author/{username}", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 11 - }, - "calendly.com": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "profile", - " User" - ], - "absenceStrs": [ - "The page you are looking for could not be found" - ], - "urlMain": "https://calendly.com", - "url": "https://calendly.com/{username}/15min", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 468 - }, - "depop.com": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "first_name" - ], - "absenceStrs": [ - "invalidUrlError__message" - ], - "urlMain": "https://www.depop.com", - "url": "https://www.depop.com/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 7825 - }, - "community.brave.com": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "urlMain": "https://community.brave.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 952 - }, - "community.endlessos.com": { - "tags": [ - "forum", - "us" - ], - "engine": "Discourse", - "urlMain": "https://community.endlessos.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 530563 - }, - "forum.endeavouros.com": { - "tags": [ - "forum", - "in" - ], - "engine": "Discourse", - "urlMain": "https://forum.endeavouros.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 113264 - }, - "forum.garudalinux.org": { - "tags": [ - "forum", - "in", - "us" - ], - "engine": "Discourse", - "urlMain": "https://forum.garudalinux.org", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 166470 - }, - "forum.snapcraft.io": { - "tags": [ - "forum", - "in" - ], - "engine": "Discourse", - "urlMain": "https://forum.snapcraft.io", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 14266 - }, - "forum.zorin.com": { - "engine": "Discourse", - "urlMain": "https://forum.zorin.com", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "tech" - ], - "alexaRank": 70747 - }, - "codeseller.ru": { - "tags": [ - "kz", - "ru" - ], - "engine": "Wordpress/Author", - "urlMain": "https://codeseller.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 561266 - }, - "linuxpip.org": { - "tags": [ - "us" - ], - "engine": "Wordpress/Author", - "urlMain": "https://linuxpip.org", - "usernameClaimed": "diehard", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 43088 - }, - "Taringa": { - "disabled": true, - "tags": [ - "ar" - ], - "checkType": "message", - "presenseStrs": [ - "User", - " user-username", - " UserFeed" - ], - "absenceStrs": [ - "problema" - ], - "urlMain": "https://www.taringa.net", - "url": "https://www.taringa.net/{username}", - "usernameClaimed": "UniversoGIA", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 9671 - }, - "webonrails.ru": { - "checkType": "message", - "presenseStrs": [ - "post_feed_title" - ], - "absenceStrs": [ - "

\u041e\u0448\u0438\u0431\u043a\u0430

" - ], - "urlMain": "https://webonrails.ru", - "url": "https://webonrails.ru/user/{username}/", - "usernameClaimed": "spawn", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "coding", - "forum" - ], - "alexaRank": 962455, - "disabled": true - }, - "support.blue-systems.com": { - "engine": "Discourse", - "urlMain": "https://support.blue-systems.com", - "usernameClaimed": "santosmosley", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 6159329 - }, - "samesound.ru": { - "tags": [ - "ru" - ], - "engine": "Wordpress/Author", - "urlMain": "https://samesound.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 196795 - }, - "universemc.us": { - "tags": [ - "forum", - "us" - ], - "engine": "XenForo", - "urlMain": "https://universemc.us", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 11324976 - }, - "slivsklad.ru": { - "disabled": true, - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "urlMain": "https://slivsklad.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "slivap.ru": { - "tags": [ - "forum", - "ru" - ], - "engine": "XenForo", - "urlMain": "https://slivap.ru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1238007 - }, - "skynetzone.net": { - "engine": "XenForo", - "urlMain": "https://skynetzone.net", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 3111796 - }, - "https:": { - "engine": "XenForo", - "urlMain": "https://skyblock.net", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "gaming" - ], - "alexaRank": 349635 - }, - "codeberg.org": { - "tags": [ - "in" - ], - "checkType": "message", - "presenseStrs": [ - "user profile", - " username text center" - ], - "absenceStrs": [ - "og:description", - " ui centered image" - ], - "urlMain": "https://codeberg.org", - "url": "https://codeberg.org/{username}", - "usernameClaimed": "pcastela", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 102679 - }, - "1x": { - "tags": [ - "photo" - ], - "checkType": "message", - "presenseStrs": [ - " onload=", - "photos-feed", - "gallery-loadmore", - "lm_mode", - "create_exhibition_name" - ], - "absenceStrs": [ - "1x.com \u2022 In Pursuit of the Sublime", - " >404
" - ], - "urlMain": "https://1x.com", - "url": "https://1x.com/{username}", - "usernameClaimed": "michaelafiresova", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 81236 - }, - "TAP'D": { - "urlProbe": "https://tapd.co/api/user/getPublicProfile/{username}", - "checkType": "message", - "presenseStrs": [ - "\"_id\":" - ], - "absenceStrs": [ - "User does not exist" - ], - "urlMain": "https://tapd.co", - "url": "https://tapd.co/{username}", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "networking" - ], - "alexaRank": 743883 - }, - "wblitz.net": { - "checkType": "message", - "presenseStrs": [ - "profileBlock", - "tournaments", - "serverna", - " role=", - " name=" - ], - "absenceStrs": [ - "404 \u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430

404 \u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430

" - ], - "urlMain": "https://wblitz.net", - "url": "https://wblitz.net/stat/ru/{username}", - "usernameClaimed": "lucklev12", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "gaming" - ], - "alexaRank": 1919115 - }, - "unc.ua": { - "tags": [ - "ua" - ], - "checkType": "message", - "presenseStrs": [ - "page-user_profile" - ], - "absenceStrs": [ - "Error Site" - ], - "urlMain": "https://unc.ua", - "url": "https://unc.ua/{username}", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1214262 - }, - "kloomba.com": { - "tags": [ - "ua" - ], - "checkType": "message", - "presenseStrs": [ - "\u043e\u0441\u0442\u0430\u043d\u043d\u0456\u0439 \u0432\u0456\u0437\u0438\u0442" - ], - "absenceStrs": [ - "\u0422\u0430\u043a\u043e\u0457 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438 \u043d\u0435 \u0456\u0441\u043d\u0443\u0454" - ], - "urlMain": "https://kloomba.com", - "url": "https://kloomba.com/users/{username}", - "usernameClaimed": "dima", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 265975 - }, - "nevrotic.net": { - "checkType": "message", - "presenseStrs": [ - "profile-tabs", - " profile-rating" - ], - "absenceStrs": [ - "table-404" - ], - "urlMain": "http://nevrotic.net", - "url": "http://nevrotic.net/user/{username}", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "ru" - ] - }, - "pikabu.monster": { - "tags": [ - "ru", - "sharing" - ], - "checkType": "message", - "presenseStrs": [ - "usertotalcomments", - " usertotalposts" - ], - "absenceStrs": [ - "\u041e\u0448\u0438\u0431\u043a\u0430" - ], - "urlMain": "https://pikabu.monster", - "url": "https://pikabu.monster/user/{username}-summary", - "source": "Pikabu", - "usernameClaimed": "Avezenit", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1115375 - }, - "steamdb.info": { - "tags": [ - "gaming" - ], - "type": "steam_id", - "checkType": "message", - "presenseStrs": [ - "profileForm", - " player-name", - " progress", - " data-not-game=" - ], - "absenceStrs": [ - "error-page", - " Error 404" - ], - "urlMain": "https://steamdb.info", - "url": "https://steamdb.info/calculator/{username}", - "source": "Steam", - "usernameClaimed": "76561197978866368", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1743 - }, - "Niftygateway": { - "tags": [ - "us" - ], - "urlProbe": "https://api.niftygateway.com/user/profile-and-offchain-nifties-by-url/?profile_url={username}", - "checkType": "message", - "presenseStrs": [ - "profile_url", - "name", - "profile_pic_url", - "verified", - "bio" - ], - "absenceStrs": [ - "not_found", - " User profile not located in our system." - ], - "urlMain": "https://api.niftygateway.com", - "url": "https://niftygateway.com/profile/{username}", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 18499 - }, - "opensea.io": { - "tags": [ - "us" - ], - "checkType": "message", - "presenseStrs": [ - "username\\", - "lastSale", - "publicUsername", - "name" - ], - "absenceStrs": [ - "This page is lost." - ], - "urlMain": "https://opensea.io", - "url": "https://opensea.io/accounts/{username}", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 259 - }, - "SmiHub": { - "disabled": true, - "tags": [ - "photo" - ], - "checkType": "message", - "presenseStrs": [ - "profile", - "user-page", - "user", - " data-name=", - "user__img" - ], - "absenceStrs": [ - "text-lg mb-3" - ], - "urlMain": "https://smihub.com", - "url": "https://smihub.com/v/{username}", - "source": "Instagram", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 869859 - }, - "do100verno.info": { - "checkType": "message", - "presenseStrs": [ - "white-space: nowrap;" - ], - "absenceStrs": [ - "l-main", - " l-mainDcL", - " l-usrMenu" - ], - "urlMain": "https://do100verno.info", - "url": "https://do100verno.info/card/{username}", - "usernameClaimed": "ekostyle", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "blog" - ], - "disabled": true - }, - "www.kinokopilka.pro": { - "tags": [ - "il" - ], - "checkType": "message", - "presenseStrs": [ - "profile", - "user", - "people", - "users", - "/people" - ], - "urlMain": "https://www.kinokopilka.pro", - "url": "https://www.kinokopilka.pro/users/{username}", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 257521 - }, - "www.turpravda.com": { - "tags": [ - "ua" - ], - "checkType": "message", - "presenseStrs": [ - "email", - " name" - ], - "absenceStrs": [ - "Title", - " Shortcut Icon", - " submit" - ], - "urlMain": "https://www.turpravda.com", - "url": "https://www.turpravda.com/profile/{username}", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 532724 - }, - "www.minds.com": { - "tags": [ - "in" - ], - "checkType": "message", - "presenseStrs": [ - "username", - " email" - ], - "absenceStrs": [ - "> ItemFix - Channel: " - ], - "presenseStrs": [ - "user_token" - ], - "url": "https://www.itemfix.com/c/{username}", - "urlMain": "https://www.itemfix.com", - "usernameClaimed": "William_Pickton", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "us" - ], - "alexaRank": 8543 - }, - "www.opendiary.com": { - "urlSubpath": "/m", - "urlMain": "https://www.opendiary.com", - "engine": "Wordpress/Author", - "usernameClaimed": "oniongirl", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "us" - ], - "alexaRank": 1316800 - }, - "fediverse.party": { - "absenceStrs": [ - "Fediverse.Party - explore federated networks", - " error__page" - ], - "presenseStrs": [ - "mastodon-share", - "mastodon", - "socialhome", - "> 400 Bad Request" - ], - "presenseStrs": [ - "{\"ok\":1,\"data\":{\"user\":" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", - "Accept-Language": "en-US,en;q=0.5", - "Upgrade-Insecure-Requests": "1", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "cross-site", - "Priority": "u=0, i", - "Pragma": "no-cache", - "Cache-Control": "no-cache", - "Accept-Encoding": "gzip, deflate, br, zstd", - "TE": "trailers", - "Cookie": "SUB=_2AkMQDkYqf8NxqwFRmf4QzWnqbop-wwHEieKmUrfxJRMxHRl-yT9kqm4gtRB6O45oxc8K9O2Jsarg5zYMmQy3bR_LfISF; expires=Saturday, 06-Dec-2025 09:51:25 GMT; path=/; domain=.weibo.com; secure; httponly; SameSite=None, SUBP=0033WrSXqPxfM72-Ws9jqgMF55529P9D9Whze9rurqv2pUdg7sY.DTbO; expires=Saturday, 06-Dec-2025 09:51:25 GMT; path=/; domain=.weibo.com, SRT=D.QqHBTrsMMFkSVdRtOeYoWrSNUdRr4Q9QUeE8U3vkW3WzMdbbN-sPVcStNbHi5mYNUCsuPDbhVdrrS3MNAZSLiDP65FJtNqbLJ%219qRQHeiQ9SOdsM5Oi84byJS%21bOMX77%2AB.vAflW-P9Rc0lR-ykKDvnJqiQVbiRVPBtS%21r3J8sQVqbgVdWiMZ4siOzu4DbmKPWf5c4uVePpVQRpVEP%21SqWqdNumPFHL; expires=Mon, 04-Dec-2034 09:51:25 GMT; Max-Age=315360000; path=/; domain=.passport.weibo.com; secure; HttpOnly, SRF=1733478685; expires=Mon, 04-Dec-2034 09:51:25 GMT; Max-Age=315360000; path=/; domain=.passport.weibo.com; secure" - }, - "activation": { - "method": "weibo", - "marks": [ - "\u5fae\u535a</title", - "<title>Sina Visitor System" - ], - "url": "https://passport.weibo.com/visitor/genvisitor2" - }, - "urlProbe": "https://weibo.com/ajax/profile/info?custom={username}", - "url": "https://weibo.com/{username}", - "urlMain": "https://weibo.com", - "usernameClaimed": "clairekuo", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "cn", - "networking" - ], - "alexaRank": 24 - }, - "Hatena": { - "absenceStrs": [ - "404 Not Found" - ], - "presenseStrs": [ - "profile", - "myprofile", - "profile-dt", - "profile-dd", - "hatena-profile" - ], - "url": "http://profile.hatena.com/{username}/", - "urlMain": "http://profile.hatena.com", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "bookmarks", - "jp" - ], - "alexaRank": 606246 - }, - "angel.co": { - "absenceStrs": [ - "render_not_found" - ], - "presenseStrs": [ - "Profile", - "profiles", - "User profile", - "name", - "layouts/profile" - ], - "url": "https://angel.co/u/{username}", - "urlMain": "https://angel.co", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "business" - ], - "alexaRank": 3661 - }, - "nelubit.ru": { - "urlMain": "https://nelubit.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 3887958 - }, - "actual-porn.org": { - "disabled": true, - "urlMain": "http://actual-porn.org", - "engine": "vBulletin", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 147937 - }, - "Aminus3": { - "absenceStrs": [ - "Expires", - " no-cache" - ], - "presenseStrs": [ - "image/ico", - " title=" - ], - "url": "https://{username}.aminus3.com/", - "urlMain": "https://aminus3.com", - "usernameClaimed": "beautifulworld", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "photo" - ], - "alexaRank": 320009 - }, - "lomography": { - "absenceStrs": [ - "404 \u00b7 Lomography" - ], - "presenseStrs": [ - "Lomography", - " @lomography" - ], - "url": "https://www.lomography.com/homes/{username}", - "urlMain": "https://www.lomography.com", - "usernameClaimed": "steved7755", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "photo" - ], - "alexaRank": 35937 - }, - "jAlbum.net": { - "absenceStrs": [ - "section", - " error_head" - ], - "regexCheck": "^[^\\.]+$", - "presenseStrs": [ - "alternate", - " og:image" - ], - "url": "https://{username}.jalbum.net/", - "urlMain": "https://jalbum.net", - "usernameClaimed": "laza", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "photo" - ], - "alexaRank": 273823 - }, - "23hq": { - "absenceStrs": [ - "my-modal", - " enable", - " modal", - "The requested file couldn't be located" - ], - "presenseStrs": [ - "frame", - "first active", - "user", - "last", - "country-name" - ], - "url": "http://www.23hq.com/{username}", - "urlMain": "http://www.23hq.com", - "usernameClaimed": "nellyb", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "photo" - ], - "alexaRank": 24678 - }, - "bliphoto": { - "absenceStrs": [ - "Your photo journal | Blipfoto" - ], - "presenseStrs": [ - "biography", - "biography-full", - "profile-sidebar", - "profile-content", - "state" - ], - "url": "https://www.blipfoto.com/{username}", - "urlMain": "https://www.blipfoto.com", - "usernameClaimed": "Wildstar", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "photo" - ], - "alexaRank": 434270 - }, - "Fotki": { - "absenceStrs": [ - "'404 - Member Not Found'" - ], - "presenseStrs": [ - "profile-cities", - "profile-friends", - "profile-aboutme", - "profile-country", - "user_profile_info" - ], - "url": "https://members.fotki.com/{username}/about/", - "urlMain": "https://fotki.com", - "usernameClaimed": "normargab", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "photo" - ], - "alexaRank": 45941 - }, - "viewbug": { - "absenceStrs": [ - "missing-photos" - ], - "presenseStrs": [ - "profile", - " profile_content" - ], - "url": "https://www.viewbug.com/member/{username}", - "urlMain": "https://www.viewbug.com", - "usernameClaimed": "melaniejwood", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "photo" - ], - "alexaRank": 35377 - }, - "Piccsy": { - "absenceStrs": [ - "my-modal", - "Looks like you're a little lost." - ], - "presenseStrs": [ - "Username" - ], - "regexCheck": "^[^\\.]+$", - "url": "http://{username}.piccsy.com/", - "urlMain": "http://piccsy.com", - "usernameClaimed": "orientcement", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "photo" - ], - "alexaRank": 152719 - }, - "iStock": { - "absenceStrs": [ - "subheading" - ], - "presenseStrs": [ - "collectionName" - ], - "errors": { - "recaptchaKey": "Captcha detected" - }, - "url": "https://www.istockphoto.com/ru/portfolio/{username}", - "urlMain": "https://www.istockphoto.com", - "usernameClaimed": "leowilde", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "photo", - "stock" - ], - "alexaRank": 245 - }, - "Brusheezy": { - "absenceStrs": [ - "masthead" - ], - "presenseStrs": [ - "username", - " user-name" - ], - "url": "https://www.brusheezy.com/members/{username}", - "urlMain": "https://www.brusheezy.com", - "usernameClaimed": "artistmef", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "photo", - "stock" - ], - "alexaRank": 12487 - }, - "lightstalking.com": { - "urlMain": "https://www.lightstalking.com", - "presenseStrs": [ - "NPRL.onLoadStyle" - ], - "absenceStrs": [ - "location:" - ], - "checkType": "message", - "requestHeadOnly": true, - "url": "https://www.lightstalking.com/author/{username}/", - "usernameClaimed": "jasonrow", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "blog", - "photo" - ], - "alexaRank": 104676 - }, - "morguefile.com": { - "absenceStrs": [ - "free photographs for commercial use" - ], - "presenseStrs": [ - "sortName", - " profile-data" - ], - "url": "https://morguefile.com/creative/{username}", - "urlMain": "https://morguefile.com", - "usernameClaimed": "thesuccess", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "photo" - ], - "alexaRank": 41779 - }, - "wls.social": { - "urlSubpath": "/wls", - "urlMain": "https://wls.social", - "engine": "Wordpress/Author", - "usernameClaimed": "nathaliemariel", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "blog" - ], - "disabled": true - }, - "steemit": { - "absenceStrs": [ - "NotFound__menu" - ], - "presenseStrs": [ - "profile", - " username" - ], - "url": "https://steemit.com/@{username}", - "urlMain": "https://steemit.com", - "usernameClaimed": "apiprincz", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "news" - ], - "alexaRank": 4449 - }, - "StackOverflow": { - "similarSearch": true, - "absenceStrs": [ - "no-search-results" - ], - "presenseStrs": [ - "user-info", - " user-details" - ], - "url": "https://stackoverflow.com/users/filter?search={username}", - "urlMain": "https://stackoverflow.com", - "usernameClaimed": "maigret", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "coding" - ], - "alexaRank": 37 - }, - "many.link": { - "absenceStrs": [ - "Couldn't find a profile" - ], - "presenseStrs": [ - "og:site_name" - ], - "url": "https://many.link/{username}", - "urlMain": "https://many.link", - "usernameClaimed": "lartisto", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "links" - ], - "alexaRank": 42687 - }, - "Linkkle": { - "absenceStrs": [ - "anonymous" - ], - "presenseStrs": [ - "profile-top", - " profile-head", - " profile-info" - ], - "url": "https://linkkle.com/{username}", - "urlMain": "https://linkkle.com", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "links" - ], - "alexaRank": 166062 - }, - "ContactInBio (domain)": { - "absenceStrs": [ - "img/coffee.png" - ], - "presenseStrs": [ - "user-area" - ], - "url": "http://{username}.contactin.bio/", - "urlMain": "http://username.contactin.bio", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "links" - ], - "alexaRank": 120192 - }, - "ContactInBio (URL)": { - "absenceStrs": [ - "Page not found." - ], - "presenseStrs": [ - "user-area" - ], - "url": "http://allmy.link/{username}", - "urlMain": "http://allmy.link", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "links" - ], - "alexaRank": 3705822 - }, - "shor.by": { - "absenceStrs": [ - "page-not-found" - ], - "presenseStrs": [ - "og:title" - ], - "url": "https://shor.by/{username}", - "urlMain": "https://shor.by", - "usernameClaimed": "0gs0", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "links" - ], - "alexaRank": 40396 - }, - "lnk.bio": { - "absenceStrs": [ - "Not Found - Lnk.Bio" - ], - "presenseStrs": [ - "data-username" - ], - "url": "https://lnk.bio/{username}", - "urlMain": "https://lnk.bio", - "usernameClaimed": "tamirawill", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "links" - ], - "alexaRank": 14930 - }, - "Anobii": { - "absenceStrs": [ - ">{}" - ], - "presenseStrs": [ - "og:site_name" - ], - "url": "https://www.anobii.com/{username}/profile/activity", - "urlMain": "https://www.anobii.com", - "usernameClaimed": "jjordan", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "books" - ], - "alexaRank": 38465 - }, - "Zoomir.ir": { - "absenceStrs": [ - "txtSearch" - ], - "presenseStrs": [ - "Email" - ], - "url": "https://www.zoomit.ir/user/{username}", - "urlMain": "https://www.zoomit.ir", - "usernameClaimed": "kossher", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "forum", - "ir", - "news" - ], - "alexaRank": 1739 - }, - "Skypli": { - "absenceStrs": [ - "Nothing found" - ], - "presenseStrs": [ - "profile-box__info" - ], - "url": "https://www.skypli.com/profile/{username}", - "urlMain": "https://www.skypli.com", - "usernameClaimed": "roxana19739", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "messaging" - ], - "alexaRank": 2426694, - "disabled": true - }, - "21buttons": { - "absenceStrs": [ - "not-found__main" - ], - "presenseStrs": [ - "profile-info" - ], - "url": "https://www.21buttons.com/buttoner/{username}", - "urlMain": "https://www.21buttons.com", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "fashion", - "networking" - ], - "alexaRank": 154418 - }, - "99designs.com": { - "absenceStrs": [ - "mobile-only" - ], - "presenseStrs": [ - "profileUrl" - ], - "url": "https://99designs.com/profiles/{username}", - "urlMain": "https://99designs.com", - "usernameClaimed": "t6s", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "design", - "photo" - ], - "alexaRank": 3399 - }, - "Expono": { - "absenceStrs": [ - "404 - Page not found<" - ], - "presenseStrs": [ - "page-user-badge" - ], - "url": "http://www.expono.com/{username}", - "urlMain": "http://www.expono.com", - "usernameClaimed": "snila", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "photo" - ], - "alexaRank": 132649 - }, - "picturepush.com": { - "absenceStrs": [ - ".stage img" - ], - "presenseStrs": [ - "loginname" - ], - "url": "https://{username}.picturepush.com/", - "urlMain": "https://picturepush.com", - "usernameClaimed": "yoskark", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "photo" - ], - "alexaRank": 130110 - }, - "Purephoto": { - "absenceStrs": [ - "Not found Page not found" - ], - "presenseStrs": [ - "user-profile-title" - ], - "url": "https://www.myinstants.com/profile/{username}/", - "urlMain": "https://www.myinstants.com", - "usernameClaimed": "john122", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "music" - ], - "alexaRank": 21299 - }, - "ozvolvo.org": { - "absenceStrs": [ - "dashboard_home_filenotfound" - ], - "presenseStrs": [ - "realusername" - ], - "url": "https://ozvolvo.org/profile/{username}", - "urlMain": "https://ozvolvo.org", - "usernameClaimed": "John122", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "auto" - ], - "alexaRank": 1541775 - }, - "community.startupnation.com": { - "absenceStrs": [ - "Default404" - ], - "presenseStrs": [ - "ProfileOptions" - ], - "url": "https://community.startupnation.com/profile/{username}", - "urlMain": "https://community.startupnation.com", - "usernameClaimed": "John122", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "business" - ], - "alexaRank": 56319 - }, - "hi5": { - "absenceStrs": [ - "birthDay" - ], - "presenseStrs": [ - "provider", - "loggedInUserName", - "profile_banner", - "main", - "groupName" - ], - "url": "http://www.hi5.com/{username}", - "urlMain": "http://www.hi5.com", - "usernameClaimed": "johnnflorence", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "networking" - ], - "alexaRank": 10971 - }, - "mymfb.com": { - "absenceStrs": [ - "Page Not Found" - ], - "presenseStrs": [ - "profile-info" - ], - "url": "https://mymfb.com/{username}/", - "urlMain": "https://mymfb.com", - "usernameClaimed": "mortician", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "networking" - ], - "alexaRank": 1513399 - }, - "Baidu": { - "absenceStrs": [ - "error_404_iframe" - ], - "presenseStrs": [ - "user_name" - ], - "url": "https://tieba.baidu.com/home/main?un={username}", - "urlMain": "https://tieba.baidu.com", - "usernameClaimed": "reneecong", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "cn" - ], - "alexaRank": 3 - }, - "Douban": { - "absenceStrs": [ - "\u8fd4\u56de\u9996\u9875" - ], - "presenseStrs": [ - "db-usr-profile" - ], - "url": "https://www.douban.com/people/{username}/", - "urlMain": "https://www.douban.com", - "usernameClaimed": "darkmage", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "cn" - ], - "alexaRank": 56 - }, - "Dumpor": { - "absenceStrs": [ - "Profile doesn't exist" - ], - "presenseStrs": [ - "user__title" - ], - "url": "https://dumpor.com/v/{username}", - "urlMain": "https://dumpor.com", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "source": "Instagram", - "tags": [ - "photo" - ], - "alexaRank": 17764 - }, - "forum.leerlingen.com": { - "urlSubpath": "/vbb", - "disabled": true, - "urlMain": "http://forum.leerlingen.com", - "engine": "vBulletin", - "usernameClaimed": "john122", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 1976440 - }, - "Porevo": { - "absenceStrs": [ - "last_news" - ], - "presenseStrs": [ - "profile_all" - ], - "url": "https://porevo.site/index.php?{username}", - "urlMain": "https://porevo.site", - "usernameClaimed": "ejdolon", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "porn" - ], - "alexaRank": 452197 - }, - "discuss.hashicorp.com": { - "urlMain": "https://discuss.hashicorp.com", - "engine": "Discourse", - "usernameClaimed": "jfinnigan", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "tech" - ], - "alexaRank": 19997 - }, - "Blogger (by GAIA id)": { - "absenceStrs": [ - "/edit-profile.g" - ], - "presenseStrs": [ - ">" - ], - "url": "http://{username}.weebly.com/", - "urlMain": "http://weebly.com", - "usernameClaimed": "designguild", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "business" - ], - "alexaRank": 385 - }, - "HiddenAnswers": { - "tags": [ - "q&a", - "tor" - ], - "protocol": "tor", - "url": "http://answerszuvs3gg2l64e6hmnryudl5zgrmwm3vh65hzszdghblddvfiqd.onion/user/{username}", - "urlMain": "http://answerszuvs3gg2l64e6hmnryudl5zgrmwm3vh65hzszdghblddvfiqd.onion", - "usernameClaimed": "theredqueen", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "absenceStrs": [ - "Page not found" - ], - "presenseStrs": [ - "qa-part-form-profile" - ] - }, - "{username}.com": { - "protocol": "dns", - "url": "{username}.com", - "urlMain": "{username}.com", - "usernameClaimed": "soxoj", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "status_code" - }, - "{username}.pro": { - "protocol": "dns", - "url": "{username}.pro", - "urlMain": "{username}.pro", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "status_code" - }, - "{username}.me": { - "protocol": "dns", - "url": "{username}.me", - "urlMain": "{username}.me", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "status_code" - }, - "{username}.biz": { - "protocol": "dns", - "url": "{username}.biz", - "urlMain": "{username}.biz", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "status_code" - }, - "{username}.email": { - "protocol": "dns", - "url": "{username}.email", - "urlMain": "{username}.email", - "usernameClaimed": "phone", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "status_code" - }, - "{username}.guru": { - "protocol": "dns", - "url": "{username}.guru", - "urlMain": "{username}.guru", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "status_code" - }, - "{username}.ddns.net": { - "protocol": "dns", - "url": "{username}.ddns.net", - "urlMain": "{username}.ddns.net", - "usernameClaimed": "repack", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "status_code" - }, - "Ameblo": { - "absenceStrs": [ - "THROW_NOT_FOUND_EXCEPTION" - ], - "presenseStrs": [ - "profile" - ], - "url": "https://ameblo.jp/{username}", - "urlMain": "https://ameblo.jp", - "usernameClaimed": "senpai", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 374, - "tags": [ - "blog", - "jp" - ] - }, - "Observable": { - "absenceStrs": [ - "Observable" - ], - "presenseStrs": [ - "profile_email" - ], - "url": "https://observablehq.com/@{username}", - "urlMain": "https://observablehq.com", - "usernameClaimed": "theabbie", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 25120, - "tags": [ - "sharing" - ] - }, - "galactictalk.org": { - "urlMain": "https://galactictalk.org", - "engine": "Flarum", - "usernameClaimed": "theabbie", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 935585 - }, - "discuss.bootstrapped.fm": { - "urlMain": "https://discuss.bootstrapped.fm", - "engine": "Discourse", - "usernameClaimed": "theabbie", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 2691289 - }, - "discourse.mozilla.org": { - "urlMain": "https://discourse.mozilla.org", - "engine": "Discourse", - "usernameClaimed": "adamlui", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 132 - }, - "ipinit.in": { - "disabled": true, - "urlMain": "http://ipinit.in", - "engine": "Wordpress/Author", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 462514 - }, - "donorbox": { - "absenceStrs": [ - "/orgs/new" - ], - "presenseStrs": [ - "donation_first_name" - ], - "url": "https://donorbox.org/{username}", - "urlMain": "https://donorbox.org", - "usernameClaimed": "theabbie", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 19812, - "tags": [ - "finance" - ] - }, - "telescope.ac": { - "disabled": true, - "absenceStrs": [ - ">Not found" - ], - "presenseStrs": [ - "og:site_name", - "alternate", - "article", - "project", - "og:title" - ], - "url": "https://telescope.ac/{username}", - "urlMain": "https://telescope.ac", - "usernameClaimed": "theabbie", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 167480, - "tags": [ - "blog" - ] - }, - "sessionize.com": { - "absenceStrs": [ - "Page Not Found" - ], - "presenseStrs": [ - "role=", - "filter" - ], - "url": "https://sessionize.com/{username}/", - "urlMain": "https://sessionize.com", - "usernameClaimed": "theabbie", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 132025, - "tags": [ - "business" - ] - }, - "getmakerlog.com": { - "absenceStrs": [ - "Home | Makerlog" - ], - "presenseStrs": [ - "profile", - "first_name", - "username\\" - ], - "url": "https://getmakerlog.com/@{username}", - "urlMain": "https://getmakerlog.com", - "usernameClaimed": "theabbie", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 224990, - "tags": [ - "business" - ] - }, - "giphy.com": { - "absenceStrs": [ - "404 Not Found" - ], - "presenseStrs": [ - "Giphy", - "al:ios:app_name" - ], - "url": "https://giphy.com/channel/{username}", - "urlMain": "https://giphy.com", - "usernameClaimed": "theabbie", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 695, - "tags": [ - "video" - ] - }, - "clarity.fm": { - "absenceStrs": [ - "On Demand Business Advice" - ], - "presenseStrs": [ - "\u041f\u0440\u043e\u0444\u0438\u043b\u044c" - ], - "url": "https://partnerkin.com/user/{username}", - "urlMain": "https://partnerkin.com", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "finance" - ], - "alexaRank": 43267 - }, - "hozpitality": { - "presenseStrs": [ - "USERNAME" - ], - "url": "https://www.hozpitality.com/{username}/profile", - "urlMain": "https://www.hozpitality.com", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "response_url", - "alexaRank": 227277 - }, - "blogs.klerk.ru": { - "presenseStrs": [ - "profile-links" - ], - "url": "https://blogs.klerk.ru/users/{username}/", - "urlMain": "https://blogs.klerk.ru", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 6859 - }, - "Worldis.me": { - "absenceStrs": [ - "user_password", - "send_email" - ], - "presenseStrs": [ - "my_profile", - "profile_upi", - "UserInfo" - ], - "url": "http://en.worldis.me/{username}", - "urlMain": "http://en.worldis.me", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 3233509, - "tags": [ - "ru" - ] - }, - "photoshop-kopona.com": { - "absenceStrs": [ - "<div id='dle-content'></div></div></main></div></div><footer class=\"footer\">" - ], - "presenseStrs": [ - "uspusertitle" - ], - "url": "https://photoshop-kopona.com/ru/user/{username}/", - "urlMain": "https://photoshop-kopona.com", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 44106, - "tags": [ - "ru" - ] - }, - "dumskaya.net": { - "absenceStrs": [ - "><img class=nobo src=/banner/ps2_/ alt=" - ], - "presenseStrs": [ - "><img class=nobo src=/banner/prague_/ alt=" - ], - "url": "https://dumskaya.net/user/{username}/", - "urlMain": "https://dumskaya.net", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 73617, - "tags": [ - "ru" - ] - }, - "rblx.trade": { - "absenceStrs": [ - "isRblxTradeException" - ], - "presenseStrs": [ - "userId" - ], - "url": "https://rblx.trade/p/{username}", - "urlMain": "https://rblx.trade", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 362185, - "source": "Roblox", - "tags": [ - "gaming" - ] - }, - "monitoringminecraft.ru": { - "absenceStrs": [ - "shadowi" - ], - "presenseStrs": [ - "small" - ], - "url": "https://monitoringminecraft.ru/player/{username}", - "urlMain": "https://monitoringminecraft.ru", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 115209, - "tags": [ - "gaming" - ] - }, - "profi.ru": { - "absenceStrs": [ - "page-404__paragraph" - ], - "presenseStrs": [ - "PROFILE", - "profiles", - "profileOIO", - "fullProfile", - "profileUGC2" - ], - "url": "https://profi.ru/profile/{username}/", - "urlMain": "https://profi.ru", - "usernameClaimed": "EgorovRV", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 12037, - "tags": [ - "freelance" - ] - }, - "app.airnfts.com": { - "absenceStrs": [ - "user-not-found-div" - ], - "presenseStrs": [ - "username", - "ownerUsername", - "creatorUsername", - "name", - "user" - ], - "url": "https://app.airnfts.com/creators/{username}", - "urlMain": "https://app.airnfts.com", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 30223 - }, - "xgm.guru": { - "presenseStrs": [ - "\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c:" - ], - "absenceStrs": [ - "\u0410\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u044f" - ], - "url": "https://xgm.guru/user/{username}", - "urlMain": "https://xgm.guru", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 692341, - "tags": [ - "forum", - "gaming" - ] - }, - "giters.com": { - "absenceStrs": [ - "This page could not be found" - ], - "presenseStrs": [ - "nofollow" - ], - "url": "https://giters.com/{username}", - "urlMain": "https://giters.com", - "usernameClaimed": "soxoj", - "source": "GitHub", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 16094, - "tags": [ - "coding" - ] - }, - "githubplus.com": { - "absenceStrs": [ - "preconnect" - ], - "presenseStrs": [ - "collapse" - ], - "url": "https://githubplus.com/{username}", - "urlMain": "https://githubplus.com", - "usernameClaimed": "soxoj", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 222994, - "source": "GitHub", - "tags": [ - "coding" - ] - }, - "coder.social": { - "disabled": true, - "absenceStrs": [ - "<title>Coder Social Home" - ], - "presenseStrs": [ - "nofollow" - ], - "url": "https://coder.social/{username}", - "urlMain": "https://coder.social", - "usernameClaimed": "soxoj", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 2318473, - "source": "GitHub", - "tags": [ - "coding" - ] - }, - "tg.rip": { - "disabled": true, - "absenceStrs": [ - "btn_label" - ], - "presenseStrs": [ - "\u0422\u0435\u043b\u0435\u0433\u0440\u0430\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c" - ], - "url": "https://tg.rip/{username}", - "urlMain": "https://tg.rip", - "usernameClaimed": "soxoj", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 5553957, - "source": "Telegram", - "tags": [ - "messaging" - ] - }, - "Realmeye-graveyard": { - "absenceStrs": [ - "player-not-found" - ], - "presenseStrs": [ - "entity-name" - ], - "regexCheck": "^[a-zA-Z]+$", - "url": "https://www.realmeye.com/graveyard-of-player/{username}", - "urlMain": "https://www.realmeye.com", - "usernameClaimed": "Eatil", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 69701, - "source": "Realmeye", - "tags": [ - "gaming" - ] - }, - "mel.fm": { - "absenceStrs": [ - "l-page-404__text-not-found" - ], - "presenseStrs": [ - "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 e-mail" - ], - "url": "https://mel.fm/blog/{username}", - "urlMain": "https://mel.fm", - "usernameClaimed": "ivan-ivanov30", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 15670, - "tags": [ - "ru" - ] - }, - "tikbuddy.com": { - "presenseStrs": [ - "nickName" - ], - "url": "https://tikbuddy.com/en/tiktok/{username}", - "urlMain": "https://tikbuddy.com", - "usernameClaimed": "sergey.ivanov29", - "usernameUnclaimed": "noonewouldeverusethis9", - "checkType": "message", - "alexaRank": 187661, - "source": "TikTok", - "tags": [ - "hobby", - "video" - ] - }, - "Djagi": { - "absenceStrs": [ - "noindex" - ], - "presenseStrs": [ - "profile-menu" - ], - "url": "https://www.djagi.com/cards/{username}", - "urlMain": "https://www.djagi.com", - "usernameClaimed": "ivan.ivanov28", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 63627, - "tags": [ - "bg" - ] - }, - "kazanlashkigalab.com": { - "urlMain": "https://kazanlashkigalab.com", - "engine": "Wordpress/Author", - "usernameClaimed": "boncho-bonev", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "kz" - ] - }, - "Yumpu": { - "disabled": true, - "absenceStrs": [ - "float-left" - ], - "presenseStrs": [ - "yp-grid-mag-container yp-content-container" - ], - "url": "https://www.yumpu.com/user/{username}", - "urlMain": "https://www.yumpu.com", - "usernameClaimed": "26vadim.ivanov26", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 951, - "tags": [ - "stock" - ] - }, - "999.md": { - "absenceStrs": [ - "error-404-page" - ], - "presenseStrs": [ - "user-profile" - ], - "url": "https://999.md/ru/profile/{username}", - "urlMain": "https://999.md", - "usernameClaimed": "ivanov25", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 3344, - "tags": [ - "freelance", - "md", - "shopping" - ] - }, - "Muckrack": { - "absenceStrs": [ - "(404) Page Not Found" - ], - "presenseStrs": [ - "profile-details-item" - ], - "url": "https://muckrack.com/{username}", - "urlMain": "https://muckrack.com", - "usernameClaimed": "adam-flomenbaum", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 4820, - "tags": [ - "us" - ] - }, - "Aparat": { - "absenceStrs": [ - "404 - Page Not Found" - ], - "presenseStrs": [ - "Profile", - "username", - "ProfileMore", - "name", - "provider" - ], - "urlProbe": "https://www.aparat.com/api/fa/v1/user/user/information/username/{username}", - "url": "https://www.aparat.com/{username}", - "urlMain": "https://www.aparat.com", - "usernameClaimed": "BoHBiG", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 61, - "tags": [ - "ir", - "video" - ] - }, - "airlinepilot.life": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://airlinepilot.life/u/{username}" - }, - "algowiki-project.org": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://algowiki-project.org/en/User:{username}" - }, - "alimero.ru": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://alimero.ru/profile/{username}" - }, - "baseball-reference.com": { - "checkType": "status_code", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://baseball-reference.com/bullpen/User:{username}" - }, - "bbpress.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://bbpress.org/forums/profile/{username}/" - }, - "betawiki.net": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://betawiki.net/wiki/User:{username}" - }, - "bitcoin.it": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://bitcoin.it/wiki/User:{username}" - }, - "bookafly.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://bookafly.com/users/{username}" - }, - "brainscale.net": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://brainscale.net/users/{username}" - }, - "bulbapedia.bulbagarden.net": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://bulbapedia.bulbagarden.net/wiki/User:{username}" - }, - "bulbapp.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://bulbapp.com/{username}" - }, - "caddy.community": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://caddy.community/u/{username}" - }, - "chiefdelphi.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://chiefdelphi.com/u/{username}" - }, - "choice.community": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://choice.community/u/{username}" - }, - "cloudromance.com": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://cloudromance.com/{username}" - }, - "club.myce.com": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://club.myce.com/u/{username}" - }, - "cnblogs.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://cnblogs.com/{username}" - }, - "commons.commondreams.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://commons.commondreams.org/u/{username}" - }, - "community.cartalk.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.cartalk.com/u/{username}" - }, - "community.gamedev.tv": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.gamedev.tv/u/{username}" - }, - "community.gemsofwar.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.gemsofwar.com/u/{username}" - }, - "community.glowforge.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.glowforge.com/u/{username}" - }, - "community.home-assistant.io": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.home-assistant.io/u/{username}" - }, - "community.infiniteflight.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.infiniteflight.com/u/{username}" - }, - "community.kodular.io": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.kodular.io/u/{username}" - }, - "community.letsencrypt.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.letsencrypt.org/u/{username}" - }, - "community.mycroft.ai": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.mycroft.ai/u/{username}" - }, - "community.mydevices.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.mydevices.com/u/{username}" - }, - "community.quickfile.co.uk": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.quickfile.co.uk/u/{username}" - }, - "community.roonlabs.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.roonlabs.com/u/{username}" - }, - "community.rstudio.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.rstudio.com/u/{username}" - }, - "community.unbounce.com": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://community.unbounce.com/u/{username}" - }, - "creationwiki.org": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://creationwiki.org/User:{username}" - }, - "credly.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://credly.com/users/{username}" - }, - "cruiserswiki.org": { - "checkType": "status_code", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://cruiserswiki.org/wiki/User:{username}" - }, - "dandwiki.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://dandwiki.com/wiki/User:{username}" - }, - "dariawiki.org": { - "checkType": "status_code", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://dariawiki.org/wiki/User:{username}" - }, - "detectiveconanworld.com": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://detectiveconanworld.com/wiki/User:{username}" - }, - "develop.consumerium.org": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://develop.consumerium.org/wiki/User:{username}" - }, - "devforum.zoom.us": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://devforum.zoom.us/u/{username}" - }, - "discourse.huel.com": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discourse.huel.com/u/{username}" - }, - "discourse.julialang.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discourse.julialang.org/u/{username}" - }, - "discourse.mc-stan.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discourse.mc-stan.org/u/{username}" - }, - "discourse.nodered.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discourse.nodered.org/u/{username}" - }, - "discourse.snowplowanalytics.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discourse.snowplowanalytics.com/u/{username}" - }, - "discoursedb.org": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discoursedb.org/wiki/User:{username}" - }, - "discuss.circleci.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discuss.circleci.com/u/{username}" - }, - "discuss.elastic.co": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discuss.elastic.co/u/{username}" - }, - "discuss.huel.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discuss.huel.com/u/{username}" - }, - "discuss.ipfs.io": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discuss.ipfs.io/u/{username}" - }, - "discuss.kotlinlang.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discuss.kotlinlang.org/u/{username}" - }, - "discuss.kubernetes.io": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discuss.kubernetes.io/u/{username}" - }, - "discuss.newrelic.com": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discuss.newrelic.com/u/{username}" - }, - "discuss.pixls.us": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discuss.pixls.us/u/{username}" - }, - "discuss.prosemirror.net": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discuss.prosemirror.net/u/{username}" - }, - "discuss.pytorch.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discuss.pytorch.org/u/{username}" - }, - "discussion.dreamhost.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://discussion.dreamhost.com/u/{username}" - }, - "dnd-wiki.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://dnd-wiki.org/wiki/User:{username}" - }, - "dogcraft.net": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://dogcraft.net/wiki/User:{username}" - }, - "elixirforum.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://elixirforum.com/u/{username}" - }, - "en.brickimedia.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://en.brickimedia.org/wiki/User:{username}" - }, - "en.illogicopedia.org": { - "checkType": "status_code", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://en.illogicopedia.org/wiki/User:{username}" - }, - "en.uncyclopedia.co": { - "checkType": "status_code", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://en.uncyclopedia.co/wiki/User:{username}" - }, - "en.wikifur.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://en.wikifur.com/wiki/User:{username}" - }, - "encyc.org": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://encyc.org/wiki/User:{username}" - }, - "Pixilart": { - "tags": [ - "art" - ], - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://pixilart.com/{username}" - }, - "eve.community": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://eve.community/u/{username}" - }, - "exploretalent.com": { - "checkType": "message", - "presenseStrs": [ - "userNode\":{\"id\"" - ], - "absenceStrs": [ - "userNode\":{}" - ], - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://exploretalent.com/{username}" - }, - "fandalism.com": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://fandalism.com/{username}" - }, - "fanfiktion.de": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://fanfiktion.de/u/{username}" - }, - "ffm.bio": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://ffm.bio/{username}" - }, - "finmessage.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://finmessage.com/{username}" - }, - "flipsnack.com": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://flipsnack.com/{username}" - }, - "flirtic.ee": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://flirtic.ee/{username}", - "regexCheck": "^[^\\.]+$" - }, - "forum.banana-pi.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.banana-pi.org/u/{username}" - }, - "forum.bonsaimirai.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.bonsaimirai.com/u/{username}" - }, - "forum.cfx.re": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.cfx.re/u/{username}" - }, - "forum.cockroachlabs.com": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.cockroachlabs.com/u/{username}" - }, - "forum.core-electronics.com.au": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.core-electronics.com.au/u/{username}" - }, - "forum.freecodecamp.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.freecodecamp.org/u/{username}" - }, - "forum.gitlab.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.gitlab.com/u/{username}" - }, - "forum.golangbridge.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.golangbridge.org/u/{username}" - }, - "forum.juce.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.juce.com/u/{username}" - }, - "forum.leasehackr.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.leasehackr.com/u/{username}/summary" - }, - "forum.mattermost.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.mattermost.org/u/{username}" - }, - "forum.obsidian.md": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.obsidian.md/u/{username}" - }, - "forum.seeedstudio.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.seeedstudio.com/u/{username}" - }, - "forum.sublimetext.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.sublimetext.com/u/{username}" - }, - "forum.tudiabetes.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.tudiabetes.org/u/{username}" - }, - "forum.uipath.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.uipath.com/u/{username}" - }, - "forum.vuejs.org": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forum.vuejs.org/u/{username}" - }, - "forums.balena.io": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forums.balena.io/u/{username}" - }, - "forums.cgsociety.org": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forums.cgsociety.org/u/{username}" - }, - "forums.developer.nvidia.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forums.developer.nvidia.com/u/{username}" - }, - "forums.episodeinteractive.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forums.episodeinteractive.com/u/{username}", - "disabled": true - }, - "forums.gearboxsoftware.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forums.gearboxsoftware.com/u/{username}", - "disabled": true - }, - "forums.lawrencesystems.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forums.lawrencesystems.com/u/{username}" - }, - "forums.mmorpg.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forums.mmorpg.com/profile/{username}" - }, - "forums.penny-arcade.com": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forums.penny-arcade.com/profile/discussions/{username}" - }, - "forums.pimoroni.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forums.pimoroni.com/u/{username}" - }, - "forums.t-nation.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forums.t-nation.com/u/{username}" - }, - "forums.theanimenetwork.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forums.theanimenetwork.com/u/{username}" - }, - "forums.wyzecam.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://forums.wyzecam.com/u/{username}" - }, - "gamedev.net": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://gamedev.net/{username}/" - }, - "gearheadwiki.com": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://gearheadwiki.com/wiki/User:{username}" - }, - "globulation2.org": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://globulation2.org/wiki/User:{username}" - }, - "hiveblocks.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://hiveblocks.com/@{username}" - }, - "inaturalist.nz": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://inaturalist.nz/people/{username}" - }, - "inaturalist.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://inaturalist.org/people/{username}" - }, - "irl.com": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://irl.com/{username}" - }, - "is.theorizeit.org": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://is.theorizeit.org/wiki/User:{username}" - }, - "ising.pl": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://ising.pl/{username}" - }, - "kidicaruswiki.org": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://kidicaruswiki.org/wiki/User:{username}" - }, - "love2d.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://love2d.org/wiki/User:{username}" - }, - "mansonwiki.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://mansonwiki.com/wiki/User:{username}" - }, - "meta.discourse.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://meta.discourse.org/u/{username}" - }, - "metroidwiki.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://metroidwiki.org/wiki/User:{username}" - }, - "micro.blog": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://micro.blog/{username}" - }, - "micronations.wiki": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://micronations.wiki/User:{username}" - }, - "minnit.chat": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://minnit.chat/{username}" - }, - "mintme.com": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://mintme.com/token/{username}" - }, - "modelhub.com": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://modelhub.com/{username}/videos" - }, - "uviu.com": { - "tags": [ - "porn", - "us" - ], - "checkType": "message", - "absenceStrs": [ - "Oops! Page Not Found", - "We're sorry, but the requested page cannot be found" - ], - "presenseStrs": [ - "<div class=\"profilePhotoSection\">", - "<v-avatar username=\"{username}\" wrapper-class=\"largeAvatar profilePhoto\"" - ], - "usernameClaimed": "destinationkat", - "usernameUnclaimed": "noonewouldeverusethis7", - "urlMain": "https://www.uviu.com", - "url": "https://www.uviu.com/model/{username}" - }, - "monoskop.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://monoskop.org/User:{username}" - }, - "mql5.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://mql5.com/es/users/{username}" - }, - "musicinafrica.net": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://musicinafrica.net/fr/users/{username}" - }, - "nitrc.org": { - "checkType": "status_code", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://nitrc.org/users/{username}/" - }, - "nookipedia.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://nookipedia.com/wiki/User:{username}" - }, - "oldschool.runescape.wiki": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://oldschool.runescape.wiki/wiki/User:{username}" - }, - "openhub.net": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://openhub.net/accounts/{username}" - }, - "openriskmanual.org": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://openriskmanual.org/wiki/User:{username}" - }, - "openwetware.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://openwetware.org/wiki/User:{username}" - }, - "oyoy.com": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://oyoy.com/{username}" - }, - "padlet.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://padlet.com/{username}" - }, - "padrim.com.br": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://padrim.com.br/{username}" - }, - "patch.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://patch.com/users/{username}" - }, - "pcgamingwiki.com": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://pcgamingwiki.com/wiki/User:{username}" - }, - "pidgi.net": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://pidgi.net/wiki/User:{username}" - }, - "pinataisland.info": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://pinataisland.info/viva/User:{username}" - }, - "postcrossing.com": { - "disabled": true, - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://postcrossing.com/user/{username}" - }, - "premium.chat": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://premium.chat/{username}" - }, - "profile.typepad.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://profile.typepad.com/{username}" - }, - "pttweb.cc": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://pttweb.cc/user/{username}" - }, - "qiita.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://qiita.com/{username}" - }, - "rationalwiki.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://rationalwiki.org/wiki/User:{username}" - }, - "raymanpc.com": { - "checkType": "status_code", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://raymanpc.com/wiki/en/User:{username}" - }, - "reactos.org": { - "checkType": "status_code", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://reactos.org/wiki/User:{username}" - }, - "realcty.org": { - "checkType": "status_code", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://realcty.org/wiki/User:{username}" - }, - "renderosity.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://renderosity.com/users/{username}" - }, - "run-log.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://run-log.com/live/{username}" - }, - "runescape.wiki": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://runescape.wiki/wiki/User:{username}" - }, - "sketchfab.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://sketchfab.com/{username}" - }, - "snipplr.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://snipplr.com/users/{username}" - }, - "society6.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://society6.com/{username}/all" - }, - "splatoonwiki.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://splatoonwiki.org/wiki/User:{username}" - }, - "spreadshirt.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://spreadshirt.com/shop/user/{username}/" - }, - "ssbwiki.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://ssbwiki.com/User:{username}" - }, - "stackshare.io": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://stackshare.io/{username}" - }, - "starfywiki.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://starfywiki.org/wiki/User:{username}" - }, - "steller.co": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://steller.co/{username}" - }, - "strategywiki.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://strategywiki.org/wiki/User:{username}" - }, - "talk.macpowerusers.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://talk.macpowerusers.com/u/{username}" - }, - "teflpedia.com": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://teflpedia.com/User:{username}" - }, - "testwiki.wiki": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://testwiki.wiki/wiki/User:{username}" - }, - "thinkwiki.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://thinkwiki.org/wiki/User:{username}" - }, - "tokyvideo.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://tokyvideo.com/user/{username}" - }, - "trailville.com": { - "checkType": "message", - "presenseStrs": [ - "wgRelevantUserName" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36" - }, - "usernameClaimed": "Admin", - "usernameUnclaimed": "noonewouldevereverusethis7", - "url": "https://www.trailville.com/wiki/User:{username}" - }, - "trepup.com": { - "checkType": "message", - "absenceStrs": [ - "<title>" - ], - "usernameClaimed": "partybusservice", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://trepup.com/{username}" - }, - "ubuntu-mate.community": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://ubuntu-mate.community/u/{username}" - }, - "users.rust-lang.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://users.rust-lang.org/u/{username}" - }, - "v2ex.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://v2ex.com/member/{username}" - }, - "vidamora.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://www.vidamora.com/profile/{username}" - }, - "vingle.net": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://vingle.net/{username}" - }, - "webflow.com": { - "checkType": "status_code", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://webflow.com/{username}" - }, - "wiki.creativecommons.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://wiki.creativecommons.org/wiki/User:{username}" - }, - "wiki.linuxquestions.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://wiki.linuxquestions.org/wiki/User:{username}" - }, - "wiki.mozilla.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://wiki.mozilla.org/wiki/User:{username}" - }, - "wiki.mtasa.com": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://wiki.mtasa.com/User:{username}" - }, - "wiki.teamfortress.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://wiki.teamfortress.com/wiki/User:{username}" - }, - "wiki.tfes.org": { - "checkType": "message", - "presenseStrs": [ - "History" - ], - "absenceStrs": [ - "is not registered." - ], - "usernameClaimed": "Tom_Bishop", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://wiki.tfes.org/User:{username}" - }, - "wiki.themanaworld.org": { - "checkType": "status_code", - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://wiki.themanaworld.org/wiki/User:{username}" - }, - "wiki.wesnoth.org": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://wiki.wesnoth.org/wiki/User:{username}" - }, - "wiki.xkcd.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://wiki.xkcd.com/geohashing/User:{username}" - }, - "wikialpha.org": { - "checkType": "status_code", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://wikialpha.org/wiki/User:{username}", - "disabled": true - }, - "wikiapiary.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://wikiapiary.com/wiki/User:{username}" - }, - "wikiislam.net": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://wikiislam.net/wiki/User:{username}" - }, - "wikizilla.org": { - "checkType": "message", - "absenceStrs": [ - "is not registered." - ], - "presenseStrs": [ - "class=\"mw-socialprofile-avatar\" alt=\"avatar\"/><" - ], - "usernameClaimed": "test", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://wikizilla.org/wiki/User:{username}" - }, - "zeldadungeon.net": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://zeldadungeon.net/wiki/User:{username}" - }, - "zoig.com": { - "checkType": "status_code", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "url": "https://zoig.com/profile/{username}" - }, - "free-otvet.ru": { - "absenceStrs": [ - "qam-sidepanel-mobile" - ], - "presenseStrs": [ - "userfield-2" - ], - "url": "https://free-otvet.ru/user/{username}_zn", - "urlMain": "https://free-otvet.ru", - "usernameClaimed": "Triolana", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 121560, - "tags": [ - "q&a" - ] - }, - "TemplateMonster": { - "absenceStrs": [ - "ErrorPage__title" - ], - "presenseStrs": [ - "profile", - "header_profile", - "mailer", - "name", - "@graph" - ], - "url": "https://www.templatemonster.com/authors/{username}/", - "urlMain": "https://www.templatemonster.com", - "usernameClaimed": "zemez", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 3590, - "tags": [ - "coding" - ] - }, - "dolap": { - "absenceStrs": [ - " role=" - ], - "presenseStrs": [ - "setEmail" - ], - "url": "https://dolap.com/profil/{username}", - "urlMain": "https://dolap.com", - "usernameClaimed": "burcakmeric", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 46439, - "tags": [ - "shopping", - "tr" - ] - }, - "Gardrops": { - "absenceStrs": [ - "> Gardrops" - ], - "presenseStrs": [ - "/reviews" - ], - "url": "https://www.gardrops.com/{username}", - "urlMain": "https://www.gardrops.com", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 114405, - "tags": [ - "shopping", - "tr" - ] - }, - "27r.ru": { - "urlMain": "https://27r.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 291847 - }, - "diorama.ru": { - "urlMain": "https://diorama.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 876209 - }, - "chelfishing.ru": { - "urlMain": "http://www.chelfishing.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ] - }, - "coffeeforum.ru": { - "urlMain": "http://coffeeforum.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 6816330 - }, - "car72.ru": { - "urlMain": "https://www.car72.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 180112 - }, - "caravanliga.ru": { - "urlMain": "http://caravanliga.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 5134546, - "disabled": true - }, - "fkclub.ru": { - "urlMain": "https://fkclub.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 1217359 - }, - "e36club.com.ua": { - "urlMain": "http://e36club.com.ua/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ua" - ], - "alexaRank": 6481717 - }, - "audi-belarus.by": { - "urlMain": "https://audi-belarus.by/forum", - "engine": "phpBB/Search", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "by", - "forum" - ], - "alexaRank": 955306 - }, - "cedia-club.ru": { - "urlMain": "https://cedia-club.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 3575772 - }, - "308-club.ru": { - "urlMain": "https://www.308-club.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 1174213 - }, - "as8.ru": { - "urlMain": "http://as8.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 1657866 - }, - "chevrolet-daewoo.ru": { - "urlMain": "http://chevrolet-daewoo.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 2212329 - }, - "forum.c-o-k.com.ua": { - "urlMain": "https://forum.c-o-k.com.ua", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ua" - ], - "alexaRank": 8982091 - }, - "forum.blackmagicdesign.com": { - "urlMain": "https://forum.blackmagicdesign.com", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 4572 - }, - "forum-dollplanet.ru": { - "urlMain": "http://forum-dollplanet.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 1155897 - }, - "bashohota.ru": { - "urlMain": "http://www.bashohota.ru", - "engine": "phpBB/Search", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 5597207 - }, - "dfpd-forum.siemens.ru": { - "urlMain": "https://dfpd-forum.siemens.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 1936926, - "disabled": true - }, - "doublecmd.h1n.ru": { - "urlMain": "https://doublecmd.h1n.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 180551 - }, - "fforum.ru": { - "urlMain": "http://www.fforum.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 5399949 - }, - "ghisler.ch": { - "urlMain": "https://ghisler.ch/board", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 188223 - }, - "forum.finance.ua": { - "urlMain": "https://forum.finance.ua", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ua" - ], - "alexaRank": 57250 - }, - "figarohair.ru": { - "urlMain": "http://www.figarohair.ru/conf", - "engine": "phpBB/Search", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 3389425 - }, - "hairforum.ru": { - "urlMain": "https://hairforum.ru", - "engine": "phpBB/Search", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ] - }, - "hcv.ru": { - "urlMain": "http://www.hcv.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 2482497 - }, - "forum.injectorservice.com.ua": { - "urlMain": "https://forum.injectorservice.com.ua", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ua" - ], - "alexaRank": 826126 - }, - "hunting.karelia.ru": { - "urlMain": "http://hunting.karelia.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 20040 - }, - "forum.audacityteam.org": { - "urlMain": "https://forum.audacityteam.org", - "engine": "phpBB/Search", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 7424 - }, - "memoriam.ru": { - "urlMain": "https://memoriam.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 820052 - }, - "megapolis.org": { - "urlMain": "http://www.megapolis.org/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 3405817 - }, - "forums.linuxmint.com": { - "urlMain": "https://forums.linuxmint.com", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 9207 - }, - "moto-arena.ru": { - "urlMain": "https://moto-arena.ru", - "engine": "phpBB/Search", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 2421270 - }, - "forum.mxlinux.org": { - "urlMain": "https://forum.mxlinux.org", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 124468 - }, - "forum.pskovchess.ru": { - "urlMain": "http://forum.pskovchess.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ] - }, - "forum.openoffice.org": { - "urlMain": "https://forum.openoffice.org/en/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 15359 - }, - "forum.rosalinux.ru": { - "urlMain": "https://forum.rosalinux.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 702811 - }, - "forum.pressball.by": { - "urlMain": "https://forum.pressball.by", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "by", - "forum" - ], - "alexaRank": 63233, - "disabled": true - }, - "rt20.getbb.ru": { - "urlMain": "http://www.rt20.getbb.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 133412 - }, - "siava.ru": { - "urlMain": "https://siava.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 1892135 - }, - "forum.ua-vet.com": { - "urlMain": "http://forum.ua-vet.com", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 3355047 - }, - "forum.virtualsoccer.ru": { - "urlMain": "https://forum.virtualsoccer.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 467162 - }, - "tuning.lviv.ua": { - "urlMain": "http://tuning.lviv.ua/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ua" - ], - "alexaRank": 8021246 - }, - "forum.tathunter.ru": { - "urlMain": "http://forum.tathunter.ru", - "engine": "phpBB/Search", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 4276869 - }, - "forum.volnistye.ru": { - "urlMain": "https://forum.volnistye.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 1114259 - }, - "forum.web.ru": { - "urlMain": "https://forum.web.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 460111 - }, - "frauflora.com": { - "urlMain": "http://frauflora.com", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 2048362 - }, - "guitar.by": { - "urlMain": "https://www.guitar.by/forum", - "engine": "phpBB/Search", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "by", - "forum" - ], - "alexaRank": 720038 - }, - "kidshockey.ru": { - "urlMain": "https://kidshockey.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 438115 - }, - "jeepspb.ru": { - "urlMain": "http://jeepspb.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ] - }, - "khabmama.ru": { - "urlMain": "https://khabmama.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 1528197 - }, - "lifeintravel.ru": { - "urlMain": "https://lifeintravel.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "disabled": true - }, - "forums.mageia.org": { - "urlMain": "https://forums.mageia.org/en", - "engine": "phpBB/Search", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 423825 - }, - "make-ups.ru": { - "urlMain": "http://make-ups.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ] - }, - "mama.tomsk.ru": { - "urlMain": "https://mama.tomsk.ru/forums", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 15559 - }, - "mitsubishi-asx.net": { - "urlMain": "https://www.mitsubishi-asx.net/forum", - "engine": "phpBB/Search", - "usernameClaimed": "god", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 1622080 - }, - "moto26.ru": { - "urlMain": "http://moto26.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 9730748 - }, - "pajero4x4.ru": { - "urlMain": "http://www.pajero4x4.ru/bbs/phpBB2", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 412080 - }, - "phpbbguru.net": { - "urlMain": "https://www.phpbbguru.net/community", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 506137 - }, - "motoforum.ru": { - "urlMain": "https://www.motoforum.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "red", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 1396312 - }, - "myce.wiki": { - "checkType": "message", - "presenseStrs": [ - "<span class=\"td-author-post-count\">", - "<span class=\"td-author-comments-count\">" - ], - "usernameClaimed": "vroom", - "usernameUnclaimed": "noonewouldeverusethis7", - "urlMain": "https://myce.wiki", - "url": "https://myce.wiki/author/{username}" - }, - "lviv4x4.club": { - "urlMain": "http://lviv4x4.club/forum", - "engine": "phpBB/Search", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 5561346 - }, - "politsrach.ru": { - "urlMain": "https://politsrach.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 6900738 - }, - "popgun.ru": { - "urlMain": "https://popgun.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 155325, - "disabled": true - }, - "rest.feo.ru": { - "urlMain": "https://rest.feo.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ] - }, - "sanatatur.ru": { - "urlMain": "http://sanatatur.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 246142 - }, - "rt21.getbb.ru": { - "urlMain": "http://www.rt21.getbb.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 133412 - }, - "pobedish.ru": { - "urlMain": "https://pobedish.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 1002551 - }, - "sorento.kia-club.ru": { - "urlMain": "http://sorento.kia-club.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 435313 - }, - "shipmodeling.ru": { - "urlMain": "https://www.shipmodeling.ru/phpbb", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 441056 - }, - "trworkshop.net": { - "urlMain": "http://www.trworkshop.net/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 517619 - }, - "spb-projects.ru": { - "urlMain": "http://spb-projects.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 5138594 - }, - "ttsport.ru": { - "urlMain": "https://www.ttsport.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 812848 - }, - "spartak.msk.ru": { - "urlMain": "http://spartak.msk.ru/guest", - "engine": "phpBB/Search", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 1281707 - }, - "uazpatriot.ru": { - "urlMain": "https://uazpatriot.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 807713 - }, - "volga-gaz.nnov.ru": { - "urlMain": "http://volga-gaz.nnov.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 37898 - }, - "yiiframework.ru": { - "urlMain": "https://yiiframework.ru/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum", - "ru" - ], - "alexaRank": 240757 - }, - "sasgis.org": { - "urlMain": "http://www.sasgis.org/forum", - "engine": "phpBB/Search", - "usernameClaimed": "john", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 424362 - }, - "unixforum.org": { - "urlMain": "https://unixforum.org", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "forum" - ], - "alexaRank": 287590 - }, - "mnogodetok.ru": { - "urlMain": "https://mnogodetok.ru", - "engine": "phpBB/Search", - "tags": [ - "forum", - "ru" - ], - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1331927 - }, - "vcfm.ru": { - "urlMain": "https://vcfm.ru/forum", - "engine": "phpBB/Search", - "tags": [ - "forum", - "ru" - ], - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1635578 - }, - "gaz-24.com": { - "urlMain": "http://gaz-24.com/forum", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "tags": [ - "forum", - "ru" - ], - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1132552 - }, - "mikrob.ru": { - "urlMain": "https://mikrob.ru", - "engine": "phpBB/Search", - "tags": [ - "forum", - "ru" - ], - "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 134780 - }, - "promalp.ru": { - "urlMain": "http://promalp.ru", - "engine": "phpBB/Search", - "usernameClaimed": "alex", - "tags": [ - "forum", - "ru" - ], - "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 3482358 - }, - "goodgame.ru": { - "absenceStrs": [ - "not-found-wrap", - "images/404.gif" - ], - "presenseStrs": [ - "name", - "streamer_name", - "user", - " role=", - "streamer" - ], - "url": "https://goodgame.ru/channel/{username}", - "urlMain": "https://goodgame.ru", - "usernameClaimed": "Nikichar", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 55420, - "tags": [ - "ru", - "streaming" - ] - }, - "breakers.tv": { - "absenceStrs": [ - "Channel you are looking for doesn't exist", - "Stream Not Found - Breakers.TV" - ], - "presenseStrs": [ - "</span> followers", - "{username}</span>", - "{username} on Breakers.TV" - ], - "url": "https://breakers.tv/{username}", - "urlMain": "https://breakers.tv", - "usernameClaimed": "friendlyboxbreaks", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 987478, - "tags": [ - "streaming", - "us" - ] - }, - "AfreecaTV": { - "absenceStrs": [ - "Blog does not exist." - ], - "presenseStrs": [ - "profile_text", - "profile_image", - "name", - "station_name", - "user_nick" - ], - "url": "http://bjapi.afreecatv.com/api/{username}/station", - "urlMain": "http://bjapi.afreecatv.com", - "usernameClaimed": "showsaovivo", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 905, - "tags": [ - "streaming" - ] - }, - "Picarto": { - "absenceStrs": [ - "We are the world\\u2019s leading live streaming platform for creative minds. Come join us" - ], - "presenseStrs": [ - "\"success\":true" - ], - "url": "https://ptvintern.picarto.tv/metadescription/{username}", - "urlMain": "https://ptvintern.picarto.tv", - "usernameClaimed": "tamarinfrog", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 15844, - "tags": [ - "art", - "streaming" - ] - }, - "stripchat.global": { - "disabled": true, - "presenseStrs": [ - "profile email", - "setVersionName", - ",SITE_NAME=", - "input[name=", - "project" - ], - "absenceStrs": [ - "<div class=\"text-wrapper\">404</div>" - ], - "url": "https://stripchat.global/{username}", - "urlMain": "https://stripchat.global", - "usernameClaimed": "lunagirl13", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 117062, - "tags": [ - "webcam" - ] - }, - "Harvard Scholar": { - "checkType": "status_code", - "url": "https://scholar.harvard.edu/{username}", - "urlMain": "https://scholar.harvard.edu/", - "usernameClaimed": "ousmanekane", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "Google Scholar": { - "checkType": "status_code", - "url": "https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&q={username}&btnG=", - "urlMain": "https://scholar.google.com/", - "usernameClaimed": "Blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "HuggingFace": { - "checkType": "status_code", - "url": "https://huggingface.co/{username}", - "urlMain": "https://huggingface.co/", - "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "dlive.tv": { - "absenceStrs": [ - "Channel not found" - ], - "presenseStrs": [ - "username", - "profile-part", - "profile-about" - ], - "url": "https://dlive.tv/{username}", - "urlMain": "https://dlive.tv", - "usernameClaimed": "TomTourettes", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 17235, - "tags": [ - "streaming" - ] - }, - "ManifoldMarkets": { - "checkType": "message", - "absenceStrs": [ - "404: Oops!", - "Less than 1% chance anything exists at this url." - ], - "presenseStrs": [ - ">Comments</div>", - ">Balance log</div>", - ">Payments</div>", - "@<!-- -->{username}<!-- --> </span>" - ], - "url": "https://manifold.markets/{username}", - "urlMain": "https://manifold.markets/", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "instaprofi.ru": { - "absenceStrs": [ - "/static/img/pages/profile/nobody.jpg" - ], - "presenseStrs": [ - "profile__nextProfile flex-ajc" - ], - "url": "https://instaprofi.ru/profile/{username}", - "urlMain": "https://instaprofi.ru", - "usernameClaimed": "morgen_shtern", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "source": "Instagram", - "alexaRank": 252838, - "tags": [ - "photo" - ] - }, - "Pixwox": { - "absenceStrs": [ - "Page not found</div>" - ], - "presenseStrs": [ - "username", - "profile", - " data-name=", - "fullname", - "alternate" - ], - "url": "https://www.pixwox.com/profile/{username}/", - "urlMain": "https://www.pixwox.com", - "usernameClaimed": "mami_ishioka", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 12080, - "source": "Instagram", - "tags": [ - "photo" - ] - }, - "ImgInn": { - "absenceStrs": [ - "Page Not Found", - "The content has been deleted" - ], - "presenseStrs": [ - "followers", - "{username}" - ], - "url": "https://imginn.com/{username}/", - "urlMain": "https://imginn.com", - "usernameClaimed": "morgen_shtern", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "alexaRank": 4271, - "source": "Instagram", - "tags": [ - "photo" - ] - }, - "lyricsTraining": { - "tags": [ - "music" - ], - "checkType": "message", - "presenseStrs": [ - "Lyrics by" - ], - "absenceStrs": [ - "Sorry, there are no results for your search." - ], - "url": "https://lyricstraining.com/search?user={username}", - "usernameClaimed": "Purrito", - "usernameUnclaimed": "noonewouldeverusethis12" - }, - "expoForum": { - "tags": [ - "coding", - "forum" - ], - "checkType": "status_code", - "url": "https://forums.expo.dev/u/{username}", - "usernameClaimed": "wodin", - "usernameUnclaimed": "noonewouldeverusethis12" - }, - "rawg.io": { - "tags": [ - "gaming" - ], - "checkType": "status_code", - "url": "https://rawg.io/@{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis12" - }, - "SchemeColor": { - "tags": [ - "art", - "design" - ], - "checkType": "status_code", - "url": "https://www.schemecolor.com/author/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis12" - }, - "aetherhub": { - "tags": [ - "gaming" - ], - "checkType": "status_code", - "url": "https://aetherhub.com/User/{username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis12" - }, - "bugbounty": { - "disabled": true, - "tags": [ - "hacking" - ], - "checkType": "status_code", - "url": "https://bugbounty.gg/members/{username}", - "usernameClaimed": "marco", - "usernameUnclaimed": "noonewouldeverusethis12" - }, - "universocraft": { - "tags": [ - "gaming" - ], - "checkType": "message", - "presenseStrs": [ - "\u00daltima conexi\u00f3n" - ], - "absenceStrs": [ - "No se ha encontrado ning\u00fan usuario con ese nombre" - ], - "url": "https://stats.universocraft.com/stats.php?player={username}", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis12" - }, - "fragment.com": { - "absenceStrs": [ - "data-username=", - "data-item-title=" - ], - "presenseStrs": [ - "tm-datetime", - "tm-wallet" - ], - "url": "https://fragment.com/username/{username}", - "urlMain": "https://fragment.com", - "usernameClaimed": "yazheg", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ] - }, - "UnstoppableDomains": { - "presenseStrs": [ - "reservedForUserId", - "\"registered\"", - "DomainProduct" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/114.0", - "Accept": "*/*", - "Accept-Language": "en-US,en;q=0.5", - "Accept-Encoding": "gzip, deflate, br", - "Referer": "https://unstoppabledomains.com/", - "Connection": "keep-alive", - "Sec-Fetch-Dest": "empty", - "Sec-Fetch-Mode": "cors", - "Sec-Fetch-Site": "same-origin", - "Pragma": "no-cache", - "Cache-Control": "no-cache", - "TE": "trailers" - }, - "urlProbe": "https://unstoppabledomains.com/api/domain/search?q={username}", - "url": "https://ud.me/{username}", - "urlMain": "https://ud.me", - "usernameClaimed": "mlfed", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ] - }, - "edns.domains/meta": { - "absenceStrs": [ - "\"available\":true" - ], - "presenseStrs": [ - "PURCHASED_BY_OTHER" - ], - "url": "https://api.edns.domains/domain/lookup/{username}.meta", - "urlMain": "https://api.edns.domains", - "usernameClaimed": "everlast88", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ], - "disabled": true - }, - "edns.domains/music": { - "absenceStrs": [ - "\"available\":true" - ], - "presenseStrs": [ - "PURCHASED_BY_OTHER" - ], - "url": "https://api.edns.domains/domain/lookup/{username}.music", - "urlMain": "https://api.edns.domains", - "usernameClaimed": "everlast88", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ], - "disabled": true - }, - "edns.domains/ass": { - "absenceStrs": [ - "\"available\":true" - ], - "presenseStrs": [ - "PURCHASED_BY_OTHER" - ], - "url": "https://api.edns.domains/domain/lookup/{username}.ass", - "urlMain": "https://api.edns.domains", - "usernameClaimed": "everlast88", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ], - "disabled": true - }, - "edns.domains/404": { - "absenceStrs": [ - "\"available\":true" - ], - "presenseStrs": [ - "PURCHASED_BY_OTHER" - ], - "url": "https://api.edns.domains/domain/lookup/{username}.404", - "urlMain": "https://api.edns.domains", - "usernameClaimed": "everlast88", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ], - "disabled": true - }, - "edns.domains/sandbox": { - "absenceStrs": [ - "\"available\":true" - ], - "presenseStrs": [ - "PURCHASED_BY_OTHER" - ], - "url": "https://api.edns.domains/domain/lookup/{username}.sandbox", - "urlMain": "https://api.edns.domains", - "usernameClaimed": "everlast88", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ], - "disabled": true - }, - "edns.domains/web3": { - "absenceStrs": [ - "\"available\":true" - ], - "presenseStrs": [ - "PURCHASED_BY_OTHER" - ], - "url": "https://api.edns.domains/domain/lookup/{username}.web3", - "urlMain": "https://api.edns.domains", - "usernameClaimed": "everlast88", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ], - "disabled": true - }, - "edns.domains/gamefi": { - "absenceStrs": [ - "\"available\":true" - ], - "presenseStrs": [ - "PURCHASED_BY_OTHER" - ], - "url": "https://api.edns.domains/domain/lookup/{username}.gamefi", - "urlMain": "https://api.edns.domains", - "usernameClaimed": "everlast88", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ], - "disabled": true - }, - "edns.domains/iotex": { - "absenceStrs": [ - "\"available\":true" - ], - "presenseStrs": [ - "PURCHASED_BY_OTHER" - ], - "url": "https://api.edns.domains/domain/lookup/{username}.iotex", - "urlMain": "https://api.edns.domains", - "usernameClaimed": "everlast88", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ] - }, - "peername.com/bit": { - "presenseStrs": [ - "<name>" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/112.0", - "Origin": "https://peername.com", - "Referer": "https://peername.com" - }, - "url": "https://peername.net/api/?name={username}&namespace=bit", - "urlMain": "https://peername.com/", - "usernameClaimed": "everlast", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ] - }, - "peername.com/coin": { - "presenseStrs": [ - "<name>" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/112.0", - "Origin": "https://peername.com", - "Referer": "https://peername.com" - }, - "url": "https://peername.net/api/?name={username}&namespace=coin", - "urlMain": "https://peername.com/", - "usernameClaimed": "everlast", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ] - }, - "peername.com/onion": { - "presenseStrs": [ - "<name>" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/112.0", - "Origin": "https://peername.com", - "Referer": "https://peername.com" - }, - "url": "https://peername.net/api/?name={username}&namespace=onion", - "urlMain": "https://peername.com/", - "usernameClaimed": "everlast", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ] - }, - "peername.com/bazar": { - "presenseStrs": [ - "<name>" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/112.0", - "Origin": "https://peername.com", - "Referer": "https://peername.com" - }, - "url": "https://peername.net/api/?name={username}&namespace=bazar", - "urlMain": "https://peername.com/", - "usernameClaimed": "everlast", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ] - }, - "peername.com/lib": { - "presenseStrs": [ - "<name>" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/112.0", - "Origin": "https://peername.com", - "Referer": "https://peername.com" - }, - "url": "https://peername.net/api/?name={username}&namespace=lib", - "urlMain": "https://peername.com/", - "usernameClaimed": "everlast", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ] - }, - "peername.com/emc": { - "presenseStrs": [ - "<name>" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/112.0", - "Origin": "https://peername.com", - "Referer": "https://peername.com" - }, - "url": "https://peername.net/api/?name={username}&namespace=emv", - "urlMain": "https://peername.com/", - "usernameClaimed": "everlast", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ] - }, - "peername.com/tor": { - "presenseStrs": [ - "<name>" - ], - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/112.0", - "Origin": "https://peername.com", - "Referer": "https://peername.com" - }, - "url": "https://peername.net/api/?name={username}&namespace=tor", - "urlMain": "https://peername.com/", - "usernameClaimed": "everlast", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ] - }, - "PromptBase": { - "absenceStrs": [ - "NotFound" - ], - "presenseStrs": [ - "1" - ], - "url": "https://promptbase.com/profile/{username}", - "urlMain": "https://promptbase.com", - "usernameClaimed": "admin", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "ai" - ] - }, - "ngl.link": { - "absenceStrs": [ - "Could not find user" - ], - "presenseStrs": [ - "1" - ], - "url": "https://ngl.link/{username}", - "urlMain": "https://ngl.link", - "usernameClaimed": "youbutdumberr", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "q&a" - ] - }, - "bitpapa.com": { - "absenceStrs": [ - "/static/page-crash.svg" - ], - "presenseStrs": [ - "lbcUsername" - ], - "url": "https://bitpapa.com/ru/user/{username}", - "urlMain": "https://bitpapa.com", - "usernameClaimed": "Larisa70", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "crypto" - ] - }, - "sst.hiberworld.com": { - "checkType": "message", - "absenceStrs": [ - "User not found" - ], - "presenceStrs": [ - "email", - "birthdate", - "role", - "Profile Image", - "User" - ], - "url": "https://sst.hiberworld.com/user/{username}", - "urlMain": "https://sst.hiberworld.com/user/{username}", - "usernameClaimed": "pixelpwnz", - "usernameUnclaimed": "foxefwvigz" - }, - "DeepDreamGenerator": { - "checkType": "message", - "absenceStrs": [ - "Page not found" - ], - "presenseStrs": [ - "user-name", - "profile-cover", - "user-info" - ], - "url": "https://deepdreamgenerator.com/u/{username}", - "urlMain": "https://deepdreamgenerator.com", - "usernameClaimed": "sparkles99", - "usernameUnclaimed": "lyazybfqoh" - }, - "PeriscopeTv": { - "checkType": "message", - "absenceStrs": [ - "error-fill" - ], - "presenseStrs": [ - "profile", - "ProfileAuthor", - "ProfileUsername" - ], - "url": "https://www.pscp.tv/{username}", - "urlMain": "https://www.pscp.tv", - "usernameClaimed": "moonlitraven", - "usernameUnclaimed": "higfjqmiez" - }, - "fanscout.com": { - "checkType": "message", - "absenceStrs": [ - "This page is under construction" - ], - "presenseStrs": [ - "birthday cake" - ], - "url": "https://fanscout.com/{username}", - "urlMain": "https://fanscout.com", - "usernameClaimed": "moonlitraven", - "usernameUnclaimed": "sicuoozvul" - }, - "app.samsungfood.com": { - "checkType": "message", - "absenceStrs": [ - ">User not found</h1></div>" - ], - "presenseStrs": [ - "alternateName", - "totalTime" - ], - "url": "https://app.samsungfood.com/u/{username}", - "urlMain": "https://app.samsungfood.com", - "usernameClaimed": "moonlitraven", - "usernameUnclaimed": "onpigjbowo" - }, - "DimensionalMe": { - "checkType": "message", - "absenceStrs": [ - "error_main_" - ], - "presenseStrs": [ - "userName", - "publicProfile" - ], - "url": "https://www.dimensional.me/{username}", - "urlMain": "https://www.dimensional.me", - "usernameClaimed": "sparkles99", - "usernameUnclaimed": "hbtybxpuon" - }, - "www.portal-pisarski.pl": { - "checkType": "message", - "absenceStrs": [ - "obrazki/404.png" - ], - "presenseStrs": [ - "profil/" - ], - "url": "https://www.portal-pisarski.pl/profil/{username}", - "urlMain": "https://www.portal-pisarski.pl", - "usernameClaimed": "sparkles99", - "usernameUnclaimed": "hlwifvxnqw" - }, - "www.dateamillionaire.com": { - "checkType": "message", - "absenceStrs": [ - "input[name=" - ], - "presenseStrs": [ - "patch_fill profile_box" - ], - "url": "https://www.dateamillionaire.com/members/{username}", - "urlMain": "https://www.dateamillionaire.com", - "usernameClaimed": "pixie23", - "usernameUnclaimed": "vmvasupgog" - }, - "www.stopstalk.com": { - "checkType": "message", - "absenceStrs": [ - "pupil", - "my-owlie", - "/user/custom_friend", - "owl", - "beak" - ], - "presenseStrs": [ - "<html>", - " <body>", - "><tbody>", - "uva-profile-url", - " <style>" - ], - "url": "https://www.stopstalk.com/user/profile/{username}", - "urlMain": "https://www.stopstalk.com", - "usernameClaimed": "sunny2000", - "usernameUnclaimed": "vgjxobkpsp" - }, - "www.polywork.com": { - "checkType": "message", - "absenceStrs": [ - ">404</h3>", - "ml-1", - "twitter:site", - "/users/sign_in", - " data-toggle=" - ], - "presenseStrs": [ - "</style>", - "profile-name", - "profile_display_name", - "profile-username", - "active" - ], - "url": "https://www.polywork.com/{username}", - "urlMain": "https://www.polywork.com", - "usernameClaimed": "zoey123", - "usernameUnclaimed": "timhhdgent" - }, - "oshwlab.com": { - "checkType": "message", - "absenceStrs": [ - "<body>", - "error-wrap", - "error-part", - "btn-blue", - " <title>error" - ], - "presenseStrs": [ - "profile", - " style=", - " title=", - "Twitter", - "profile-header" - ], - "url": "https://oshwlab.com/{username}", - "urlMain": "https://oshwlab.com", - "usernameClaimed": "zoey123", - "usernameUnclaimed": "uckupswapv" - }, - "www.xshaker.net": { - "checkType": "message", - "absenceStrs": [ - "/tube/txxxtv.html" - ], - "presenseStrs": [ - "og:title", - "serve", - "og:type", - "/>\u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0438 \u0432\u0438\u0434\u0435\u043e\u0447\u0430\u0442 \u0434\u0440\u0443\u0433\u0438\u0445 \u043c\u043e\u0434\u0435\u043b\u0435\u0439.
", - ">\t

404 Page Not Found

\r", - "404 Page Not Found\r", - "info-page ibox", - "\t\t

Or maybe the Were you looking for the The username ", - " could not be found.", - "standardpage", - "redirect-message", - "section-body alignleft" - ], - "presenseStrs": [ - "og:title", - "display:flex", - "user-title", - " />\r" - ], - "presenseStrs": [ - " ", - "replaceState", - "

404 - Page not found

" - ], - "presenseStrs": [ - " title=", - " style=", - "og:title", - "page-title", - "female" - ], - "url": "https://massagerepublic.com/u/{username}", - "urlMain": "https://massagerepublic.com", - "usernameClaimed": "lily88", - "usernameUnclaimed": "xzhsxfyfzi" - }, - "mynickname.com": { - "checkType": "message", - "absenceStrs": [ - "

Error 404: Page not found

", - "Nickname , certificate for username ", - "btn green", - "mailto:info@mynickname.com", - ">Register nickname

" - ], - "presenseStrs": [ - " title=", - "bold", - "title-line", - "codehtml", - "User offline" - ], - "url": "https://mynickname.com/{username}", - "urlMain": "https://mynickname.com", - "usernameClaimed": "godbrithil", - "usernameUnclaimed": "fqiakbtdhu" - }, - "Substack": { - "absenceStrs": [ - "Found. Redirecting to" - ], - "presenseStrs": [ - "profile\\" - ], - "url": "https://substack.com/@{username}", - "urlMain": "https://substack.com", - "usernameClaimed": "user23", - "usernameUnclaimed": "noonewouldeverusethis7", - "checkType": "message", - "tags": [ - "blog" - ] - }, - "OP.GG [LeagueOfLegends] Brazil": { - "tags": [ - "br", - "gaming" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=br", - "usernameClaimed": "Blaze51", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] North America": { - "tags": [ - "gaming" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=na", - "usernameClaimed": "Blaze51", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] Middle East": { - "tags": [ - "gaming" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=me", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] Europe Nordic & East": { - "tags": [ - "gaming" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=eune", - "usernameClaimed": "Blaze51", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] Europe West": { - "tags": [ - "gaming" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=euw", - "usernameClaimed": "Blaze51", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] Oceania": { - "tags": [ - "gaming" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=oce", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] Korea": { - "tags": [ - "gaming", - "kr" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=kr", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] Japan": { - "tags": [ - "gaming", - "jp" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=jp", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] LAS": { - "tags": [ - "gaming" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=las", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] LAN": { - "tags": [ - "gaming" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=lan", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] Russia": { - "tags": [ - "gaming", - "ru" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=ru", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] Turkey": { - "tags": [ - "gaming", - "tr" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=tr", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] Singapore": { - "tags": [ - "gaming", - "sg" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=sg", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] Phillippines": { - "tags": [ - "gaming", - "ph" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=ph", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] Taiwan": { - "tags": [ - "gaming", - "tw" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=tw", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] Vietnam": { - "tags": [ - "gaming", - "vn" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=vn", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [LeagueOfLegends] Thailand": { - "tags": [ - "gaming", - "th" - ], - "engine": "op.gg", - "url": "https://www.op.gg/summoners/search?q={username}®ion=th", - "usernameClaimed": "adam", - "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true - }, - "OP.GG [PUBG]": { - "tags": [ - "gaming" - ], - "checkType": "message", - "presenceStrs": [ - "userNickname" - ], - "absenceStrs": [ - "notFoundPlayer" - ], - "url": "https://pubg.op.gg/user/{username}", - "urlMain": "https://pubg.op.gg", - "usernameClaimed": "Kevin_CH", - "usernameUnclaimed": "noonewouldeverusethis7" - }, - "OP.GG [Valorant]": { - "tags": [ - "gaming" - ], - "presenceStrs": [ - "[{" - ], - "absenceStrs": [ - "[]" - ], - "checkType": "message", - "url": "https://valorant.op.gg/api/player/search?keyword={username}", - "urlMain": "https://valorant.op.gg", - "usernameClaimed": "rayquaza", - "usernameUnclaimed": "noonewouldeverusethis7", - "similarSearch": true, - "headers": { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0", - "Accept": "application/json, text/plain, */*", - "Accept-Language": "en-US,en;q=0.5", - "Accept-Encoding": "gzip, deflate, br, zstd", - "Connection": "keep-alive", - "Referer": "https://valorant.op.gg/leaderboards", - "Sec-Fetch-Dest": "empty", - "Sec-Fetch-Mode": "cors", - "Sec-Fetch-Site": "same-origin", - "Pragma": "no-cache", - "Cache-Control": "no-cache", - "TE": "trailers" - } - }, - "Eksisozluk": { - "absenceStrs": [ - "

b\u00f6yle bir yazar yok

\r" - ], - "presenseStrs": [ - "profile-dots", - "profile-logo", - "profile-cards", - "profile-biography", - " data-title=" - ], - "alexaRank": 977, - "url": "https://eksisozluk.com/biri/{username}", - "urlMain": "https://eksisozluk.com", - "usernameClaimed": "kartalbafilerrr", - "usernameUnclaimed": "rlcvuwlxqh", - "checkType": "message", - "tags": [ - "tr" - ] - }, - "write.as": { - "tags": [ - "writefreely" - ], - "checkType": "status_code", - "url": "https://write.as/{username}", - "urlMain": "https://write.as", - "usernameClaimed": "pylapp", - "usernameUnclaimed": "noonewouldeverusethis42" - } - }, - "engines": { - "XenForo": { - "name": "XenForo", - "site": { - "ignore403": true, - "absenceStrs": [ - "The requested page could not be found.", - "The specified member cannot be found. Please enter a member", - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", - "Le membre sp\u00e9cifi\u00e9 est introuvable. Veuillez saisir le nom complet d'un membre.", - "Belirtilen \u00fcye bulunamad\u0131. L\u00fctfen bir \u00fcyenin tam ad\u0131n\u0131 giriniz." - ], - "presenseStrs": [ - "\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u044b, \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u044d\u0442\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0438\u043b\u0438 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u044d\u0442\u0443 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443.", - "\u0414\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u044d\u0442\u043e \u0441\u0434\u0435\u043b\u0430\u0442\u044c, \u043d\u0443\u0436\u043d\u043e \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u0432\u043e\u0439\u0442\u0438 \u043d\u0430 \u0444\u043e\u0440\u0443\u043c.", - "You must be logged-in to do that.", - "You must be logged in to do that.", - "memberHeader-content", - "profilePage" - ], - "checkType": "message", - "url": "{urlMain}{urlSubpath}/members/?username={username}" - }, - "presenseStrs": [ - "XenForo" - ] - }, - "phpBB/Search": { - "name": "phpBB/Search", - "site": { - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." - ], - "presenseStrs": [ - "postprofile", - " username-coloured" - ], - "checkType": "message", - "url": "{urlMain}{urlSubpath}/search.php?author={username}" - }, - "presenseStrs": [ - "./memberlist.php?mode=viewprofile" - ] - }, - "phpBB": { - "name": "phpBB", - "site": { - "absenceStrs": [ - "No members found for this search criterion.", - "\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043f\u043e \u0437\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u043a\u0440\u0438\u0442\u0435\u0440\u0438\u044f\u043c" - ], - "presenseStrs": [ - "You must be logged in to do that.", - "./memberlist.php?mode=viewprofile" - ], - "checkType": "message", - "url": "{urlMain}{urlSubpath}/memberlist.php?username={username}" - }, - "presenseStrs": [ - "phpBB" - ] - }, - "phpBB2/Search": { - "name": "phpBB2/Search", - "site": { - "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" - ], - "presenseStrs": [ - "\"postdetails" - ], - "checkType": "message", - "url": "{urlMain}{urlSubpath}/search.php?search_author={username}" - }, - "presenseStrs": [ - "phpBB 2.0" - ] - }, - "uCoz": { - "name": "uCoz", - "site": { - "absenceStrs": [ - "HTTP 404", - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - ], - "presenseStrs": [ - "udtlb\">\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c:</div>", - "\u0413\u043e\u0441\u0442\u044f\u043c \u0437\u0430\u043f\u0440\u0435\u0449\u0435\u043d\u043e \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443, \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u0432\u043e\u0439\u0434\u0438\u0442\u0435 \u043d\u0430 \u0441\u0430\u0439\u0442 \u043a\u0430\u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c.", - "<center><b>\u041b\u0438\u0447\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435</b>", - "\u0413\u043e\u0441\u0442\u044f\u043c \u0437\u0430\u043f\u0440\u0435\u0449\u0435\u043d\u043e \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443, \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u043e\u0439\u0434\u0438\u0442\u0435 \u043d\u0430 \u0441\u0430\u0439\u0442 \u043a\u0430\u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c.", - "<img alt=\"\" name=\"rankimg\" border=\"0\" src=\"/.s/rnk/", - "\u0413\u043e\u0441\u0442\u044f\u043c \u0437\u0430\u043f\u0440\u0435\u0449\u0435\u043d\u043e \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439.", - "profile-section-name", - "webo4ka_dannii", - "\u0414\u0430\u0442\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438" - ], - "checkType": "message", - "regexCheck": "^[^\\.]+$", - "url": "{urlMain}/index/8-0-{username}" - } - }, - "vBulletin": { - "name": "vBulletin", - "site": { - "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", - "Bu \u00dcye kay\u0131tl\u0131 \u00dcyemiz de\u011fildir. Bu sebebten dolay\u0131 \u00dcyeye ait Profil g\u00f6sterilemiyor.", - "This user has not registered and therefore does not have a profile to view.", - "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447 \u043d\u0435 \u0437\u0430\u0440\u0435\u0454\u0441\u0442\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0456 \u043d\u0435 \u043c\u0430\u0454 \u043f\u0440\u043e\u0444\u0456\u043b\u044e, \u044f\u043a\u0438\u0439 \u043c\u043e\u0436\u043d\u0430 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u0443\u0442\u0438.", - "Deze gebruiker is niet geregistreerd, zodat je zijn of haar profiel niet kunt bekijken." - ], - "checkType": "message", - "errors": { - "\u041f\u0440\u043e\u0441\u0442\u0438\u0442\u0435, \u043d\u043e \u0432\u0430\u0448 IP \u0432 \u0441\u043f\u0438\u0441\u043a\u0435 \u0437\u0430\u043f\u0440\u0435\u0449\u0435\u043d\u043d\u044b\u0445 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0435\u0439 \u0444\u043e\u0440\u0443\u043c\u0430": "IP ban", - "You have been banned": "IP ban", - "The administrator has banned your IP address": "IP ban", - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0441\u0435\u0440\u0432\u0435\u0440 \u043f\u0435\u0440\u0435\u0433\u0440\u0443\u0436\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0437\u0430\u0439\u0442\u0438 \u043f\u043e\u0437\u0436\u0435.": "Server is overloaded" - }, - "url": "{urlMain}{urlSubpath}/member.php?username={username}" - }, - "presenseStrs": [ - "content=\"vBulletin " - ] - }, - "Discourse": { - "name": "Discourse", - "site": { - "presenseStrs": [ - "<meta name=\"generator\" content=\"Discourse" - ], - "absenceStrs": [ - "Oops! That page doesn\u2019t exist or is private.", - "wrap not-found-container" - ], - "checkType": "message", - "url": "{urlMain}/u/{username}/summary" - }, - "presenseStrs": [ - "<meta name=\"generator\" content=\"Discourse" - ] - }, - "Wordpress/Author": { - "name": "Wordpress/Author", - "site": { - "presenseStrs": [ - "author-", - "author/" - ], - "absenceStrs": [ - "error404" - ], - "checkType": "message", - "requestHeadOnly": false, - "url": "{urlMain}{urlSubpath}/author/{username}/" - }, - "presenseStrs": [ - "/wp-admin", - "/wp-includes/wlwmanifest.xml" - ] - }, - "Flarum": { - "name": "Flarum", - "site": { - "presenseStrs": [ - "\"attributes\":{\"username\"" - ], - "absenceStrs": [ - "NotFound" - ], - "checkType": "message", - "url": "{urlMain}/u/{username}" - }, - "presenseStrs": [ - "flarum-loading-error" - ] - }, - "engine404": { - "name": "engine404", - "site": { - "checkType": "status_code" - } - }, - "engineRedirect": { - "name": "engineRedirect", - "site": { - "checkType": "response_url" - } - }, - "engine404get": { - "name": "engine404get", - "site": { - "checkType": "status_code", - "requestHeadOnly": false - } - }, - "engine404message": { - "name": "engine404message", - "site": { - "checkType": "message", - "absenceStrs": [ - "404" - ] - } - }, - "op.gg": { - "name": "op.gg", - "site": { - "checkType": "message", - "presenseStrs": [ - "This is the search result for the summoner", - "- Summoner Stats - " - ], - "absenceStrs": [ - "<h1>No search results for" - ], - "urlMain": "https://www.op.gg/", - "alexaRank": 331 - } - } - }, - "tags": [ - "gaming", - "coding", - "photo", - "music", - "blog", - "finance", - "freelance", - "dating", - "tech", - "forum", - "porn", - "erotic", - "webcam", - "video", - "movies", - "hacking", - "art", - "discussion", - "sharing", - "writing", - "wiki", - "business", - "shopping", - "sport", - "books", - "news", - "documents", - "travel", - "maps", - "hobby", - "apps", - "classified", - "career", - "geosocial", - "streaming", - "education", - "networking", - "torrent", - "science", - "medicine", - "reading", - "stock", - "messaging", - "trading", - "links", - "fashion", - "tasks", - "military", - "auto", - "gambling", - "cybercriminal", - "review", - "bookmarks", - "design", - "tor", - "i2p", - "q&a", - "crypto", - "ai", - "mastodon", - "writefreely", - "lemmy", - "pixelfed" - ] -} \ No newline at end of file diff --git a/data/sites/nexfil.json b/data/sites/nexfil.json deleted file mode 100644 index 5708d6a..0000000 --- a/data/sites/nexfil.json +++ /dev/null @@ -1,1696 +0,0 @@ -[ - { - "url": "https://flare.rive.app/a/{}/", - "test": null, - "data": null - }, - { - "url": "https://www.7cups.com/@{}", - "test": null, - "data": null - }, - { - "url": "https://9gag.com/u/{}", - "test": null, - "data": null - }, - { - "url": "https://about.me/{}", - "test": null, - "data": null - }, - { - "url": "https://independent.academia.edu/{}", - "test": "string", - "data": "Oops! Something went wrong on our end" - }, - { - "url": "https://www.alik.cz/u/{}", - "test": null, - "data": null - }, - { - "url": "https://www.alltrails.com/members/{}/lists", - "test": "headless", - "data": { - "found": "/html/body/div[1]/div[4]/div/div[3]/div/div/div/div[1]/article/div[2]/div/div/div[2]/a/div[contains(text(), 'favorites')]", - "not_found": "/html/body/div[1]/div[4]/div/div/div[2]/div[contains(text(), 'end of the trail')]" - } - }, - { - "url": "https://discussions.apple.com/profile/{}", - "test": null, - "data": null - }, - { - "url": "https://archive.org/details/@{}", - "test": "string", - "data": "cannot find account" - }, - { - "url": "https://asciinema.org/~{}", - "test": null, - "data": null - }, - { - "url": "https://ask.fedoraproject.org/u/{}", - "test": null, - "data": null - }, - { - "url": "https://ask.fm/{}", - "test": "string", - "data": "Well, apparently not anymore." - }, - { - "url": "https://audiojungle.net/user/{}", - "test": null, - "data": null - }, - { - "url": "https://www.avizo.cz/{}/", - "test": "url", - "data": null - }, - { - "url": "https://blip.fm/{}", - "test": null, - "data": null - }, - { - "url": "https://{}.booth.pm/", - "test": "subdomain", - "data": null - }, - { - "url": "https://bandcamp.com/{}", - "test": null, - "data": null - }, - { - "url": "https://www.bazar.cz/{}/", - "test": "method", - "data": null - }, - { - "url": "https://www.behance.net/{}", - "test": null, - "data": null - }, - { - "url": "https://bitbucket.org/{}/", - "test": null, - "data": null - }, - { - "url": "https://bitcoinforum.com/profile/{}", - "test": "string", - "data": "The user whose profile you are trying to view does not exist." - }, - { - "url": "https://{}.blogspot.com/", - "test": null, - "data": null - }, - { - "url": "https://bodyspace.bodybuilding.com/{}/", - "test": "url", - "data": null - }, - { - "url": "https://www.bookcrossing.com/mybookshelf/{}/", - "test": null, - "data": null - }, - { - "url": "https://www.buymeacoffee.com/{}", - "test": null, - "data": null - }, - { - "url": "https://www.buzzfeed.com/{}", - "test": null, - "data": null - }, - { - "url": "https://www.cnet.com/profiles/{}/", - "test": null, - "data": null - }, - { - "url": "https://www.capfriendly.com/users/{}", - "test": "string", - "data": "<h5>Forum Posts</h5><div class=\"ml10\">0</div>" - }, - { - "url": "https://{}.carbonmade.com/", - "test": null, - "data": null - }, - { - "url": "https://career.habr.com/{}", - "test": null, - "data": null - }, - { - "url": "https://beta.cent.co/{}/", - "test": "api", - "data": "https://beta.cent.co/data/user/profile?userHandles={}" - }, - { - "url": "https://www.championat.com/user/{}/", - "test": null, - "data": null - }, - { - "url": "https://profil.chatujme.cz/{}", - "test": "string", - "data": "Neexistujicí profil" - }, - { - "url": "https://www.chess.com/member/{}", - "test": null, - "data": null - }, - { - "url": "https://community.cloudflare.com/u/{}", - "test": "headless", - "data": { - "found": "/html/body/section/div/div[4]/div[2]/div[2]/div/div/section/nav/ul/li[1]/a/span[contains(text(), 'Summary')]", - "not_found": "/html/body/section/div/div[1]/h1[contains(text(), 'exist or is private')]" - } - }, - { - "url": "https://www.clozemaster.com/players/{}", - "test": "string", - "data": "Player not found" - }, - { - "url": "https://www.codecademy.com/profiles/{}", - "test": "string", - "data": "This profile could not be found" - }, - { - "url": "https://www.codechef.com/users/{}", - "test": "url", - "data": null - }, - { - "url": "https://www.codewars.com/users/{}", - "test": null, - "data": null - }, - { - "url": "https://www.colourlovers.com/lover/{}", - "test": "string", - "data": "No one's home" - }, - { - "url": "https://{}.contently.com/", - "test": null, - "data": null - }, - { - "url": "https://www.coroflot.com/{}", - "test": null, - "data": null - }, - { - "url": "https://www.causes.com/api/v3/users?id={}", - "test": null, - "data": null - }, - { - "url": "https://www.cracked.com/members/{}/", - "test": "url", - "data": null - }, - { - "url": "https://{}.crevado.com/", - "test": null, - "data": null - }, - { - "url": "https://dev.to/{}", - "test": null, - "data": null - }, - { - "url": "https://www.dailymotion.com/{}", - "test": null, - "data": null - }, - { - "url": "https://www.designspiration.com/{}/", - "test": null, - "data": null - }, - { - "url": "https://www.deviantart.com/{}", - "test": null, - "data": null - }, - { - "url": "https://www.discogs.com/user/{}", - "test": null, - "data": null - }, - { - "url": "https://discuss.elastic.co/u/{}", - "test": null, - "data": null - }, - { - "url": "https://disqus.com/by/{}/", - "test": null, - "data": null - }, - { - "url": "https://hub.docker.com/u/{}/", - "test": "api", - "data": "https://hub.docker.com/v2/users/{}/" - }, - { - "url": "https://dribbble.com/{}/about", - "test": null, - "data": null - }, - { - "url": "https://www.duolingo.com/profile/{}", - "test": "api", - "data": "https://www.duolingo.com/2017-06-30/users?username={}" - }, - { - "url": "https://ello.co/{}", - "test": "headless", - "data": { - "found": "/html/body/div[1]/section/div[2]/div/div[2]/div[2]/div/span[2][contains(text(), 'Views')]", - "not_found": "/html/body/article/h1[contains(text(), 'find the page')]" - } - }, - { - "url": "https://www.etsy.com/shop/{}", - "test": null, - "data": null - }, - { - "url": "https://euw.op.gg/summoner/userName={}", - "test": "string", - "data": "This summoner is not registered" - }, - { - "url": "https://www.eyeem.com/u/{}", - "test": "string", - "data": "Whoops! We can't find the page you're looking for..." - }, - { - "url": "https://f3.cool/{}/", - "test": null, - "data": null - }, - { - "url": "https://www.facebook.com/{}", - "test": "headless", - "data": { - "found": "//*[contains(text(), 'Photos')]", - "not_found": "//*[contains(text(), 'You must log in to continue')]" - } - }, - { - "url": "https://www.fandom.com/u/{}", - "test": null, - "data": null - }, - { - "url": "https://www.flickr.com/people/{}", - "test": null, - "data": null - }, - { - "url": "https://my.flightradar24.com/{}", - "test": "string", - "data": "<body class=\"landing" - }, - { - "url": "https://flipboard.com/@{}", - "test": null, - "data": null - }, - { - "url": "https://www.rusfootball.info/user/{}/", - "test": null, - "data": null - }, - { - "url": "https://fortnitetracker.com/profile/all/{}", - "test": null, - "data": null - }, - { - "url": "https://freelance.habr.com/freelancers/{}", - "test": null, - "data": null - }, - { - "url": "https://www.freelancer.com/u/{}", - "test": null, - "data": null - }, - { - "url": "https://freesound.org/people/{}/", - "test": null, - "data": null - }, - { - "url": "https://www.gamespot.com/profile/{}/", - "test": null, - "data": null - }, - { - "url": "https://www.getmyuni.com/user/{}", - "test": null, - "data": null - }, - { - "url": "https://giphy.com/{}", - "test": null, - "data": null - }, - { - "url": "https://github.com/{}", - "test": null, - "data": null - }, - { - "url": "https://gitlab.com/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://www.goodreads.com/{}", - "test": null, - "data": null - }, - { - "url": "http://en.gravatar.com/{}", - "test": null, - "data": null - }, - { - "url": "https://{}.gumroad.com/", - "test": null, - "data": null - }, - { - "url": "https://forums.gunsandammo.com/profile/{}", - "test": null, - "data": null - }, - { - "url": "https://gurushots.com/{}/photos", - "test": "headless", - "data": { - "found": "/html/body/app-root/div/div/div[1]/profile-page/div[2]/div[1]/div[2]/div[3]/span[2][contains(text(), 'POINTS')]", - "not_found": "/html/body/app-root/div/div/div[1]/ui-view/page404/div/div[1][contains(text(), 'exist')]" - } - }, - { - "url": "https://forum.hackthebox.eu/profile/{}", - "test": null, - "data": null - }, - { - "url": "https://hackaday.io/{}", - "test": null, - "data": null - }, - { - "url": "https://hackerone.com/{}", - "test": null, - "data": null - }, - { - "url": "https://hackerrank.com/{}", - "test": "string", - "data": "Something went wrong!" - }, - { - "url": "https://www.house-mixes.com/profile/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://houzz.com/user/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://hubpages.com/@{}", - "test": null, - "data": null - }, - { - "url": "https://hubski.com/user/{}", - "test": "string", - "data": "No such user." - }, - { - "url": "https://icq.im/{}", - "test": null, - "data": null - }, - { - "url": "https://www.ifttt.com/p/{}", - "test": null, - "data": null - }, - { - "url": "https://imgup.cz/{}", - "test": null, - "data": null - }, - { - "url": "https://www.instructables.com/member/{}", - "test": null, - "data": null - }, - { - "url": "https://issuu.com/{}", - "test": null, - "data": null - }, - { - "url": "https://{}.itch.io/", - "test": null, - "data": null - }, - { - "url": "https://{}.jimdosite.com", - "test": "headless", - "data": { - "found": "//*[contains(text(), 'jimdo')]", - "not_found": "/html/body/h1[contains(text(), 'Not Found')]" - } - }, - { - "url": "https://www.kaggle.com/{}", - "test": null, - "data": null - }, - { - "url": "https://keybase.io/{}", - "test": null, - "data": null - }, - { - "url": "https://kik.me/{}", - "test": "string", - "data": "class=\"pic-none\"" - }, - { - "url": "https://www.kongregate.com/accounts/{}", - "test": null, - "data": null - }, - { - "url": "https://www.linux.org.ru/people/{}/profile", - "test": null, - "data": null - }, - { - "url": "https://launchpad.net/~{}", - "test": null, - "data": null - }, - { - "url": "https://leetcode.com/{}", - "test": null, - "data": null - }, - { - "url": "https://letterboxd.com/{}", - "test": null, - "data": null - }, - { - "url": "https://lichess.org/@/{}", - "test": null, - "data": null - }, - { - "url": "https://{}.livejournal.com", - "test": null, - "data": null - }, - { - "url": "https://lobste.rs/u/{}", - "test": null, - "data": null - }, - { - "url": "https://lolchess.gg/profile/na/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://medium.com/@{}", - "test": "string", - "data": "PAGE NOT FOUND" - }, - { - "url": "https://www.memrise.com/user/{}/", - "test": null, - "data": null - }, - { - "url": "https://www.mixcloud.com/{}/", - "test": "api", - "data": "https://api.mixcloud.com/{}/" - }, - { - "url": "https://www.munzee.com/m/{}", - "test": null, - "data": null - }, - { - "url": "https://myanimelist.net/profile/{}", - "test": null, - "data": null - }, - { - "url": "https://www.myminifactory.com/users/{}", - "test": null, - "data": null - }, - { - "url": "https://myspace.com/{}", - "test": null, - "data": null - }, - { - "url": "https://community.native-instruments.com/profile/{}", - "test": "string", - "data": "User Not Found" - }, - { - "url": "https://namemc.com/search?q={}", - "test": "headless", - "data": { - "found": "/html/body/main/div/div[2]/div[1]/div/div/div/div[1]/div[2][contains(text(), 'Unavailable')]", - "not_found": "/html/body/main/div/div/div[1]/div/div/div/div[1]/div[2][contains(text(), 'Available')]" - } - }, - { - "url": "https://blog.naver.com/{}", - "test": "string", - "data": "<h1 class=\"error_h1\">죄송합니다. 유효하지 않은 요청입니다.</h1>" - }, - { - "url": "https://ok.ru/{}", - "test": null, - "data": null - }, - { - "url": "https://www.openstreetmap.org/user/{}", - "test": null, - "data": null - }, - { - "url": "https://opensource.com/users/{}", - "test": null, - "data": null - }, - { - "url": "https://ourdjtalk.com/members?username={}", - "test": "string", - "data": "The specified member cannot be found. Please enter a member's entire name." - }, - { - "url": "https://forums.pcgamer.com/members/?username={}", - "test": "string", - "data": "The specified member cannot be found. Please enter a member's entire name." - }, - { - "url": "https://pcpartpicker.com/user/{}", - "test": "headless", - "data": { - "found": "/html/body/section/div/div[1]/section/nav/ul/li[2]/a[contains(text(), 'Comments')]", - "not_found": "/html/body/section/div/div[1]/section/h1[contains(text(), 'Page Not Found')]" - } - }, - { - "url": "https://psnprofiles.com/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://pastebin.com/u/{}", - "test": null, - "data": null - }, - { - "url": "https://www.patreon.com/{}", - "test": null, - "data": null - }, - { - "url": "https://www.pinkbike.com/u/{}/", - "test": null, - "data": null - }, - { - "url": "https://www.pinterest.com/{}/", - "test": "string", - "data": "<title>" - }, - { - "url": "https://play.google.com/store/apps/developer?id={}", - "test": null, - "data": null - }, - { - "url": "https://pokemonshowdown.com/users/{}", - "test": null, - "data": null - }, - { - "url": "https://polarsteps.com/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://www.polygon.com/users/{}", - "test": null, - "data": null - }, - { - "url": "https://www.producthunt.com/@{}", - "test": null, - "data": null - }, - { - "url": "http://promodj.com/{}", - "test": null, - "data": null - }, - { - "url": "https://pypi.org/user/{}", - "test": null, - "data": null - }, - { - "url": "https://quizlet.com/{}", - "test": null, - "data": null - }, - { - "url": "https://www.quora.com/{}", - "test": "method", - "data": null - }, - { - "url": "https://{}.rajce.idnes.cz/", - "test": "string", - "data": "Uživatel neexistuje" - }, - { - "url": "https://www.redbubble.com/people/{}", - "test": null, - "data": null - }, - { - "url": "https://old.reddit.com/user/{}", - "test": null, - "data": null - }, - { - "url": "https://repl.it/@{}", - "test": null, - "data": null - }, - { - "url": "https://www.reverbnation.com/{}", - "test": null, - "data": null - }, - { - "url": "https://www.roblox.com/user.aspx?username={}", - "test": null, - "data": null - }, - { - "url": "https://rubygems.org/profiles/{}", - "test": null, - "data": null - }, - { - "url": "https://www.sbazar.cz/{}", - "test": null, - "data": null - }, - { - "url": "https://scratch.mit.edu/users/{}", - "test": null, - "data": null - }, - { - "url": "https://www.scribd.com/{}", - "test": null, - "data": null - }, - { - "url": "https://www.shitpostbot.com/user/{}", - "test": null, - "data": null - }, - { - "url": "https://community.signalusers.org/u/{}", - "test": null, - "data": null - }, - { - "url": "https://{}.slack.com", - "test": null, - "data": null - }, - { - "url": "https://slashdot.org/~{}", - "test": null, - "data": null - }, - { - "url": "https://slideshare.net/{}", - "test": null, - "data": null - }, - { - "url": "https://www.smule.com/{}", - "test": "string", - "data": "Smule | Page Not Found (404)" - }, - { - "url": "https://soundcloud.com/{}", - "test": null, - "data": null - }, - { - "url": "https://sourceforge.net/u/{}", - "test": null, - "data": null - }, - { - "url": "https://soylentnews.org/~{}", - "test": "string", - "data": "The user you requested does not exist, no matter how much you wish this might be the case." - }, - { - "url": "https://www.sparkpeople.com/mypage.asp?id={}", - "test": "string", - "data": "We couldn't find that user." - }, - { - "url": "https://speedrun.com/user/{}", - "test": null, - "data": null - }, - { - "url": "https://splits.io/users/{}", - "test": null, - "data": null - }, - { - "url": "https://www.sporcle.com/user/{}/people", - "test": null, - "data": null - }, - { - "url": "https://www.sports.ru/profile/{}/", - "test": null, - "data": null - }, - { - "url": "https://open.spotify.com/user/{}", - "test": "string", - "data": "Spotify – Web Player" - }, - { - "url": "https://robertsspaceindustries.com/citizens/{}", - "test": "string", - "data": "404 - Roberts Space Industries" - }, - { - "url": "https://steamcommunity.com/id/{}", - "test": "string", - "data": "The specified profile could not be found." - }, - { - "url": "https://steamcommunity.com/groups/{}", - "test": "string", - "data": "No group could be retrieved for the given URL." - }, - { - "url": "https://www.strava.com/athletes/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://forum.sublimetext.com/u/{}", - "test": null, - "data": null - }, - { - "url": "https://ch.tetr.io/u/{}", - "test": "api", - "data": "https://ch.tetr.io/api/users/{}" - }, - { - "url": "https://t.me/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://www.tinder.com/@{}", - "test": "string", - "data": "Tinder | Dating, Make Friends & Meet New People" - }, - { - "url": "http://en.tm-ladder.com/{}_rech.php", - "test": "string", - "data": "player unknown or invalid" - }, - { - "url": "https://www.tradingview.com/u/{}/", - "test": null, - "data": null - }, - { - "url": "https://trakt.tv/users/{}", - "test": null, - "data": null - }, - { - "url": "https://trashbox.ru/users/{}", - "test": "string", - "data": "Пользователь не найден" - }, - { - "url": "https://trello.com/{}/activity", - "test": "api", - "data": "https://trello.com/1/Members/{}" - }, - { - "url": "https://www.tripadvisor.com/Profile/{}", - "test": "headless", - "data": { - "found": "/html/body/div[2]/div/div/div[3]/div[1]/div/ul/li[1]/a[contains(text(), 'Activity')]", - "not_found": "/html/body/div[3]/div[2]/div/div[2]/div[2]/div/div[1][contains(text(), 'This page is on vacation')]" - } - }, - { - "url": "https://tryhackme.com/p/{}", - "test": null, - "data": null - }, - { - "url": "https://m.twitch.tv/{}", - "test": "string", - "data": "Sorry, that page is in another castle!" - }, - { - "url": "https://data.typeracer.com/pit/profile?user={}", - "test": "string", - "data": "Profile Not Found" - }, - { - "url": "https://ultimate-guitar.com/u/{}", - "test": "string", - "data": "Oops! We couldn't find that page." - }, - { - "url": "https://unsplash.com/@{}", - "test": null, - "data": null - }, - { - "url": "https://vk.com/{}", - "test": "method", - "data": null - }, - { - "url": "https://vsco.co/{}", - "test": null, - "data": null - }, - { - "url": "https://forum.velomania.ru/member.php?username={}", - "test": "string", - "data": "Пользователь не зарегистрирован и не имеет профиля для просмотра." - }, - { - "url": "https://venmo.com/{}", - "test": null, - "data": null - }, - { - "url": "https://vero.co/{}", - "test": null, - "data": null - }, - { - "url": "https://vimeo.com/{}", - "test": null, - "data": null - }, - { - "url": "https://virgool.io/@{}", - "test": "string", - "data": "۴۰۴" - }, - { - "url": "https://www.virustotal.com/gui/user/{}", - "test": "alt", - "data": "https://www.virustotal.com/ui/users/{}/avatar" - }, - { - "url": "https://www.warriorforum.com/members/{}.html", - "test": "string", - "data": "Error 400" - }, - { - "url": "https://www.wattpad.com/user/{}", - "test": null, - "data": null - }, - { - "url": "https://{}.webnode.cz/", - "test": null, - "data": null - }, - { - "url": "http://www.wikidot.com/user:info/{}", - "test": "string", - "data": "User does not exist." - }, - { - "url": "https://www.wikipedia.org/wiki/User:{}", - "test": null, - "data": null - }, - { - "url": "https://community.windy.com/user/{}", - "test": null, - "data": null - }, - { - "url": "https://{}.wix.com", - "test": null, - "data": null - }, - { - "url": "https://{}.wordpress.com/", - "test": "redirect", - "data": null - }, - { - "url": "https://profiles.wordpress.org/{}/", - "test": null, - "data": null - }, - { - "url": "https://www.younow.com/{}", - "test": "api", - "data": "https://api.younow.com/php/api/broadcast/info/curId=0/lang=en/user={}" - }, - { - "url": "https://youpic.com/photographer/{}/", - "test": null, - "data": null - }, - { - "url": "https://www.youtube.com/{}", - "test": null, - "data": null - }, - { - "url": "https://www.zhihu.com/people/{}", - "test": "string", - "data": "你似乎来到了没有知识存在的荒原" - }, - { - "url": "https://akniga.org/profile/{}", - "test": null, - "data": null - }, - { - "url": "https://allmylinks.com/{}", - "test": "headless", - "data": { - "found": "/html/body/div[1]/div/section/div/div/div/div[2]/div/button/span[1][contains(text(), 'Follow')]", - "not_found": "/html/body/div[1]/div[1]/section/div/div/div/div/div/h1[contains(text(), '404')]" - } - }, - { - "url": "https://www.baby.ru/u/{}/", - "test": "method", - "data": null - }, - { - "url": "https://www.babyblog.ru/user/info/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://chaos.social/@{}", - "test": null, - "data": null - }, - { - "url": "https://www.couchsurfing.com/people/{}", - "test": null, - "data": null - }, - { - "url": "https://d3.ru/user/{}/posts", - "test": null, - "data": null - }, - { - "url": "https://www.dailykos.com/user/{}", - "test": null, - "data": null - }, - { - "url": "http://dating.ru/{}", - "test": null, - "data": null - }, - { - "url": "https://devrant.com/users/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://www.drive2.ru/users/{}", - "test": null, - "data": null - }, - { - "url": "https://egpu.io/forums/profile/{}/", - "test": null, - "data": null - }, - { - "url": "https://community.eintracht.de/fans/{}", - "test": null, - "data": null - }, - { - "url": "https://www.fixya.com/users/{}", - "test": "headless", - "data": { - "found": "/html/body/div[3]/div[4]/div/div[2]/div/div[1]/h3[contains(text(), 'Stats')]", - "not_found": "/html/body/div[2]/div/fieldset/h2[contains(text(), '404')]" - } - }, - { - "url": "https://www.fl.ru/users/{}", - "test": null, - "data": null - }, - { - "url": "https://forum.guns.ru/forummisc/blog/{}", - "test": "string", - "data": "нет такого участника" - }, - { - "url": "https://www.forumhouse.ru/members/?username={}", - "test": "string", - "data": "Указанный пользователь не найден. Пожалуйста, введите другое имя." - }, - { - "url": "https://www.geocaching.com/p/default.aspx?u={}", - "test": null, - "data": null - }, - { - "url": "https://gfycat.com/@{}", - "test": null, - "data": null - }, - { - "url": "https://habr.com/ru/users/{}", - "test": null, - "data": null - }, - { - "url": "https://www.hackster.io/{}", - "test": null, - "data": null - }, - { - "url": "https://www.hunting.ru/forum/members/?username={}", - "test": "string", - "data": "Указанный пользователь не найден. Пожалуйста, введите другое имя." - }, - { - "url": "https://imgsrc.ru/main/user.php?user={}", - "test": "redirect", - "data": null - }, - { - "url": "http://forum.igromania.ru/member.php?username={}", - "test": "string", - "data": "Пользователь не зарегистрирован и не имеет профиля для просмотра." - }, - { - "url": "https://www.interpals.net/{}", - "test": "string", - "data": "The requested user does not exist or is inactive." - }, - { - "url": "https://irecommend.ru/users/{}", - "test": null, - "data": null - }, - { - "url": "https://jbzd.com.pl/uzytkownik/{}", - "test": null, - "data": null - }, - { - "url": "http://www.jeuxvideo.com/profil/{}?mode=infos", - "test": "method", - "data": null - }, - { - "url": "https://kwork.ru/user/{}", - "test": null, - "data": null - }, - { - "url": "https://lab.pentestit.ru/profile/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://last.fm/user/{}", - "test": null, - "data": null - }, - { - "url": "https://forum.leasehackr.com/u/{}/summary/", - "test": null, - "data": null - }, - { - "url": "https://www.livelib.ru/reader/{}", - "test": null, - "data": null - }, - { - "url": "https://mastodon.cloud/@{}", - "test": null, - "data": null - }, - { - "url": "https://mastodon.social/@{}", - "test": null, - "data": null - }, - { - "url": "https://mastodon.xyz/@{}", - "test": null, - "data": null - }, - { - "url": "https://www.mercadolivre.com.br/perfil/{}", - "test": null, - "data": null - }, - { - "url": "https://www.metacritic.com/user/{}", - "test": "headless", - "data": { - "found": "/html/body/div[1]/div[2]/div[1]/div[1]/div/div/div[2]/div/div/div/div[1]/div[2]/div/h2[contains(text(), 'SCORES')]", - "not_found": "/html/body/div[1]/div[2]/div[1]/div[1]/div/div/div[2]/div/div/div/div[1]/div[1]/div[contains(text(), 'User not found')]" - } - }, - { - "url": "https://moikrug.ru/{}", - "test": null, - "data": null - }, - { - "url": "https://mstdn.io/@{}", - "test": null, - "data": null - }, - { - "url": "https://www.nairaland.com/{}", - "test": "headless", - "data": { - "found": "/html/body/div/table[2]/tbody/tr/td/p[1]/b[contains(text(), 'registered')]", - "not_found": "/html/body/div/h2[contains(text(), '404')]" - } - }, - { - "url": "https://{}.www.nn.ru/", - "test": null, - "data": null - }, - { - "url": "https://note.com/{}", - "test": null, - "data": null - }, - { - "url": "https://www.npmjs.com/~{}", - "test": null, - "data": null - }, - { - "url": "https://www.opennet.ru/~{}", - "test": "string", - "data": "Имя участника не найдено" - }, - { - "url": "https://osu.ppy.sh/users/{}", - "test": null, - "data": null - }, - { - "url": "https://php.ru/forum/members/?username={}", - "test": "string", - "data": "Указанный пользователь не найден. Пожалуйста, введите другое имя." - }, - { - "url": "https://pikabu.ru/@{}", - "test": null, - "data": null - }, - { - "url": "https://pr0gramm.com/user/{}", - "test": "api", - "data": "https://pr0gramm.com/api/profile/info?name={}" - }, - { - "url": "https://satsis.info/user/{}", - "test": null, - "data": null - }, - { - "url": "https://social.tchncs.de/@{}", - "test": null, - "data": null - }, - { - "url": "https://spletnik.ru/user/{}", - "test": null, - "data": null - }, - { - "url": "https://www.svidbook.ru/user/{}", - "test": null, - "data": null - }, - { - "url": "https://www.toster.ru/user/{}/answers", - "test": null, - "data": null - }, - { - "url": "http://uid.me/{}", - "test": null, - "data": null - }, - { - "url": "https://www.instagram.com/{}/", - "test": "headless", - "data": { - "found": "/html/body/div[2]/div/div/div[1]/div/div/div/div[1]/section/main/div/header/section/div[1]/div/div/div/button/div/div[contains(text(), 'Follow')]", - "not_found": "/html/body/div[2]/div/div/div[1]/div/div/div/div[1]/section/main/div/div/h2[contains(text(), 'Sorry')]" - } - }, - { - "url": "https://gist.github.com/{}/", - "test": null, - "data": null - }, - { - "url": "https://www.zoomit.ir/user/{}/", - "test": null, - "data": null - }, - { - "url": "https://{}.github.io/", - "test": null, - "data": null - }, - { - "url": "https://code.golf/golfers/{}", - "test": "method", - "data": null - }, - { - "url": "https://hashnode.com/@{}", - "test": null, - "data": null - }, - { - "url": "https://pixelfed.de/{}", - "test": null, - "data": null - }, - { - "url": "https://pixelfed.tokyo/{}", - "test": null, - "data": null - }, - { - "url": "https://pixelfed.se/{}", - "test": null, - "data": null - }, - { - "url": "https://pixelfed.uno/{}", - "test": null, - "data": null - }, - { - "url": "https://pixelfed.nz/{}", - "test": null, - "data": null - }, - { - "url": "https://www.change.org/o/{}", - "test": null, - "data": null - }, - { - "url": "https://forum.antichat.ru/search/search?users={}", - "test": "string", - "data": "The following members could not be found" - }, - { - "url": "https://forums.majorgeeks.com/search/search?users={}", - "test": "string", - "data": "The following members could not be found" - }, - { - "url": "https://musicbrainz.org/user/{}", - "test": null, - "data": null - }, - { - "url": "https://archiveofourown.org/users/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://{}.tumblr.com/", - "test": null, - "data": null - }, - { - "url": "https://codeforces.com/profile/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://boardgamegeek.com/user/{}", - "test": "string", - "data": "Error: User does not exist." - }, - { - "url": "http://www.vimgolf.com/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://ifunny.co/user/{}", - "test": null, - "data": null - }, - { - "url": "https://linktr.ee/{}", - "test": null, - "data": null - }, - { - "url": "https://www.hackerearth.com/@{}", - "test": "string", - "data": "404. URL not found." - }, - { - "url": "https://valorantforums.com/u/{}", - "test": null, - "data": null - }, - { - "url": "https://discourse.jupyter.org/u/{}/summary", - "test": null, - "data": null - }, - { - "url": "https://cplusplus.com/user/{}/", - "test": "string", - "data": "404 Page Not Found" - }, - { - "url": "https://www.ruby-forum.com/u/{}/summary", - "test": null, - "data": null - }, - { - "url": "https://discuss.python.org/u/{}/summary", - "test": null, - "data": null - }, - { - "url": "https://baraza.africa/u/{}", - "test": "string", - "data": "couldnt_find_that_username_or_email" - }, - { - "url": "https://{}.bitbucket.io/", - "test": null, - "data": null - }, - { - "url": "https://www.bitchute.com/channel/{}/", - "test": null, - "data": null - }, - { - "url": "https://{}.carrd.co/", - "test": null, - "data": null - }, - { - "url": "https://casually.cat/@{}", - "test": null, - "data": null - }, - { - "url": "https://codeberg.org/{}", - "test": null, - "data": null - }, - { - "url": "https://{}.codeberg.page/", - "test": null, - "data": null - }, - { - "url": "http://{}.ctcin.bio/", - "test": "string", - "data": "Page not found" - }, - { - "url": "https://{}.contactin.bio/", - "test": "string", - "data": "Page not found" - }, - { - "url": "http://{}.contactinbio.com/", - "test": "string", - "data": "Page not found" - }, - { - "url": "https://coub.com/{}", - "test": null, - "data": null - }, - { - "url": "https://dlive.tv/{}", - "test": "headless", - "data": { - "found": "//*[contains(text(), 'ABOUT')]", - "not_found": "//*[contains(text(), 'Channel not found')]" - } - }, - { - "url": "https://ds9.lemmy.ml/u/{}", - "test": "string", - "data": "couldnt_find_that_username_or_email" - }, - { - "url": "https://app.realunify.com/users/{}", - "test": null, - "data": null - }, - { - "url": "https://www.flowcode.com/page/{}", - "test": "string", - "data": "Nobody's reserved this Flowpage yet" - }, - { - "url": "https://tv.gab.com/channel/{}", - "test": "method", - "data": null - }, - { - "url": "https://lemmy.glasgow.social/u/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://hypel.ink/{}", - "test": null, - "data": null - }, - { - "url": "https://{}.imgbb.com/", - "test": "redirect", - "data": null - }, - { - "url": "https://lemmy.ml/u/{}", - "test": "string", - "data": "couldnt_find_that_username_or_email" - }, - { - "url": "https://lemmy.eus/u/{}", - "test": "string", - "data": "couldnt_find_that_username_or_email" - }, - { - "url": "https://lemmy.tedomum.net/u/{}", - "test": "string", - "data": "couldnt_find_that_username_or_email" - }, - { - "url": "https://lemmygrad.ml/u/{}", - "test": "string", - "data": "couldnt_find_that_username_or_email" - }, - { - "url": "https://voyager.lemmy.ml/u/{}", - "test": "string", - "data": "couldnt_find_that_username_or_email" - }, - { - "url": "https://www.liinks.co/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://linktube.com/{}", - "test": null, - "data": null - }, - { - "url": "https://litelink.at/{}", - "test": null, - "data": null - }, - { - "url": "https://lnk.bio/{}", - "test": "redirect", - "data": null - }, - { - "url": "https://many.link/{}", - "test": "string", - "data": "Couldn't find a profile named" - }, - { - "url": "https://{}.neocities.org/", - "test": null, - "data": null - }, - { - "url": "https://pixelhub.me/pixelhub1/index.php?user={}", - "test": "redirect", - "data": null - }, - { - "url": "https://shor.by/{}", - "test": null, - "data": null - }, - { - "url": "https://solo.to/{}", - "test": "headless", - "data": { - "found": "/html/body/div[2]/a[contains(text(), 'create your own')]", - "not_found": "/html/body/div[2]/div/div/h1[contains(text(), 'Hmm')]" - } - }, - { - "url": "https://sr.ht/~{}/", - "test": null, - "data": null - }, - { - "url": "https://www.spreaker.com/user/{}", - "test": null, - "data": null - }, - { - "url": "https://{}.squarespace.com/", - "test": null, - "data": null - }, - { - "url": "https://{}.surge.sh", - "test": null, - "data": null - }, - { - "url": "https://{}.weebly.com/", - "test": null, - "data": null - }, - { - "url": "https://www.worldtruth.online/{}", - "test": null, - "data": null - }, - { - "url": "https://www.twitter.com/{}", - "test": "headless", - "data": { - "found": "//*[contains(text(), 'Followers')]", - "not_found": "//*[contains(text(), 'This account doesn')]" - } - }, - { - "url": "https://bugcrowd.com/{}", - "test": null, - "data": null - }, - { - "url": "https://www.fiverr.com/{}", - "test": "headless", - "data": { - "found": "/html/body/div[2]/div[2]/div[2]/div/div/div[2]/div[2]/div[1]/div[2]/div[2]/div/h3[contains(text(), 'Languages')]", - "not_found": "//*[contains(text(), 'Find the perfect') or contains(text(), 'what you were')]" - } - }, - { - "url": "https://tenor.com/users/{}", - "test": null, - "data": null - } -] diff --git a/data/sites/reveal_my_name.json b/data/sites/reveal_my_name.json deleted file mode 100644 index e58d608..0000000 --- a/data/sites/reveal_my_name.json +++ /dev/null @@ -1,7076 +0,0 @@ -{ - "license" : ["Copyright (C) 2023 Micah Hoffman", - "This work is licensed under the Creative Commons Attribution-ShareAlike", - "4.0 International License. To view a copy of this license, visit", - "http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to", - "Creative Commons, PO Box 1866, Mountain View, CA 94042, USA."], - "authors" : ["Micah 'WebBreacher' Hoffman","C3n7ral051nt4g3ncy","Munchko","L0r3m1p5um","lehuff", - "janbinx","bcoles","arnydo","mccartney","salaheldinaz","camhoff","jocephus", - "swedishmike","soxoj","jspinel","ef1500","zewen","jocejocejoe","P3run","seintpl", - "djahren","K2SOsint","Sector035","AccentuSoft"], - "categories" : ["archived","art","blog","business","coding","dating","finance","gaming","health", - "hobby","images","misc","music","news","political","search","shopping","social", - "tech","video","XXXPORNXXX"], - "sites" : [ - { - "name" : "Mastodon-101010.pl", - "uri_check" : "https://101010.pl/@{account}", - "e_code" : 200, - "e_string" : "@101010.pl", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["szekspir", "xaphanpl"], - "cat" : "social", - "valid" : true - }, - { - "name" : "1001mem", - "uri_check" : "http://1001mem.ru/{account}", - "e_code" : 200, - "e_string" : "| Новости - Приколы - Комиксы - Мемы", - "m_string" : "Этот пользователь не существует, или заблокирован.", - "m_code" : 200, - "known" : ["ruslan", "dima"], - "cat" : "social", - "valid" : true - }, - { - "name" : "3DNews", - "uri_check" : "http://forum.3dnews.ru/member.php?username={account}", - "e_code" : 200, - "e_string" : "Форум 3DNews - Просмотр профиля:", - "m_string" : "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "m_code" : 200, - "known" : ["bob", "red"], - "cat" : "social", - "valid" : true - }, - { - "name" : "247sports", - "uri_check" : "https://247sports.com/User/{account}/", - "e_code" : 200, - "e_string" : "<meta property=", - "m_string" : "<title>247Sports", - "m_code" : 404, - "known" : ["bob", "john"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "3dtoday", - "uri_check" : "https://3dtoday.ru/blogs/{account}", - "e_code" : 200, - "e_string" : "Блог владельца 3d-принтера", - "m_string" : "404 Not Found", - "m_code" : 302, - "known" : ["sergei", "vlad"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "7cup", - "uri_check" : "https://www.7cups.com/@{account}", - "e_code" : 200, - "e_string" : "Profile - 7 Cups", - "m_string" : "Oops! The content you're attempting to access could not be found.", - "m_code" : 404, - "known" : [ "john", "jbob"], - "cat" : "social", - "valid" : true - }, - { - "name" : "7dach", - "uri_check" : "https://7dach.ru/profile/{account}", - "e_code" : 200, - "e_string" : "Информация / Профиль", - "m_string" : "Ошибка / 7dach.ru", - "m_code" : 200, - "known" : ["lana", "svetlana"], - "cat" : "social", - "valid" : true - }, - { - "name" : "21buttons", - "uri_check" : "https://www.21buttons.com/buttoner/{account}", - "e_code" : 200, - "e_string" : "profile_user_followers", - "m_string" : "This is not the page you're looking for", - "m_code" : 404, - "known" : ["teedawod", "ginamariahoffmann"], - "cat" : "social", - "valid" : true - }, - { - "name" : "aaha_chat", - "uri_check" : "https://www.aahachat.org/profile/{account}/", - "e_code" : 200, - "e_string" : "og:title", - "m_string" : "<title>Aaha Chat Rooms - ", - "m_code" : 301, - "known" : ["crazy", "dog"], - "cat" : "social", - "valid" : true - }, - { - "name" : "about.me", - "uri_check" : "https://about.me/{account}", - "e_code" : 200, - "e_string" : " | about.me", - "m_string" : "<title>about.me", - "m_code" : 404, - "known" : ["john", "jill"], - "cat" : "social", - "valid" : true - }, - { - "name" : "ACF", - "uri_check" : "https://support.advancedcustomfields.com/forums/users/{account}", - "e_code" : 200, - "e_string" : "ACF Support", - "m_string" : "Page Not Found", - "m_code" : 200, - "known" : ["mike", "greg"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "admire_me", - "uri_check" : "https://admireme.vip/{account}/", - "e_code" : 200, - "e_string" : "<div id=", - "m_string" : "<title>Page Not Found |", - "m_code" : 404, - "known" : ["justjessicarabbit", "savannah250xo"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Adult_Forum", - "uri_check" : "https://adultforum.gr/{account}-glamour-escorts/", - "e_code" : 200, - "e_string" : "Glamour Escorts ", - "m_string" : "Page not found - Adult Forum Gr", - "m_code" : 404, - "known" : ["nastya3", "ekaterina"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "adultism", - "uri_check" : "https://www.adultism.com/profile/{account}", - "e_code" : 200, - "e_string" : "static/r-1OqQ4o/css/www/main.css", - "m_string" : "<title> Not Found", - "m_code" : 404, - "known" : ["laura", "sara"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "ADVFN", - "uri_check" : "https://uk.advfn.com/forum/profile/{account}", - "e_code" : 200, - "e_string" :"Profile | ADVFN", - "m_string" : "ADVFN ERROR - Page Not Found", - "m_code" : 404, - "known" : ["crypto", "crypto1"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "aflam", - "uri_check" : "https://www.aflam4you.net/profile.html?u={account}", - "post_body" : "", - "e_code" : 200, - "e_string" : ") on بث حي و مباشر", - "m_string" : "Plz Visit", - "m_code" : 302, - "known" : ["ahmed", "brahim01"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Airline_Pilot_Life", - "uri_check" : "https://airlinepilot.life/u/{account}", - "e_code" : 200, - "e_string" : "<title> Profile -", - "m_string" : "Page Not Found - Airline Pilot Life", - "m_code" : 404, - "known" : ["hannah", "addison"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Airliners", - "uri_check" : "https://www.airliners.net/user/{account}/profile", - "e_code" : 200, - "e_string" : "'s Profile | Airliners Members | Airliners.net", - "m_string" : "An Error Occurred", - "m_code" : 404, - "known" : ["pilot", "pilota"], - "cat" : "social", - "valid" : true - }, - { - "name" : "akniga", - "uri_check" : "https://akniga.org/profile/{account}", - "e_code" : 200, - "e_string" : " - Аудиокниги Клуб", - "m_string" : "Vizitka nenalezena", - "m_code" : 404, - "known" : ["igor", "pavel"], - "cat" : "social", - "valid" : true - }, - { - "name" : "allesovercrypto", - "uri_check" : "https://allesovercrypto.nl/user/{account}", - "e_code" : 200, - "e_string" : "Favoriete coins", - "m_string" : "De opgevraagde pagina kon niet gevonden worden.", - "m_code" : 200, - "known" : ["gijsv", "patrick-suiker"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "allmylinks", - "uri_check" : "https://allmylinks.com/{account}", - "e_code" : 200, - "e_string" : "message", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["blue", "beccaturner"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Alloannonces", - "uri_check" : "https://www.alloannonces.ma/{account}/", - "e_code" : 200, - "e_string" : "Vendeurs/Agents", - "m_string" : "Page non defini", - "m_code" : 404, - "known" : ["Rachid13", "Ayoub"], - "cat" : "social", - "valid" : true - }, - { - "name" : "AllTrails", - "uri_check" : "https://www.alltrails.com/members/{account}", - "e_code" : 200, - "e_string" : "'s Profile | ", - "m_string" : "User could not be found.", - "m_code" : 302, - "known" : ["breckt", "rdoghartwig"], - "cat" : "health", - "valid" : true - }, - { - "name" : "Ameblo", - "uri_check" : "https://ameblo.jp/{account}", - "e_code" : 200, - "e_string" : "画像一覧", - "m_string" : "削除された可能性がございます。", - "m_code" : 404, - "known" : ["ereko-blog", "senpai"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "AmericanThinker", - "uri_check" : "https://www.americanthinker.com/author/{account}/", - "e_code" : 200, - "e_string" : "Articles &", - "m_string" : "American Thinker", - "m_code" : 301, - "known" : ["terrypaulding", "monicashowalter"], - "cat" : "political", - "valid" : true - }, - { - "name" : "AnimePlanet", - "uri_check" : "https://www.anime-planet.com/users/{account}", - "e_code" : 200, - "e_string" : "Joined", - "m_string" : "Meet new friends, make reviews and recommendations.", - "m_code" : 302, - "known" : ["zala", "lindapearl"], - "cat" : "social", - "valid" : true - }, - { - "name" : "aNobii", - "uri_check" : "https://www.anobii.com/{account}/profile/activity", - "e_code" : 200, - "e_string" : ">Anobian since", - "m_string" : "A user matching the specified criteria could not be found", - "m_code" : 200, - "known" : ["albertoricci", "trynyty01"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "anonup", - "uri_check" : "https://anonup.com/@{account}", - "e_code" : 200, - "e_string" : "Show followings", - "m_string" : "Page not found!", - "m_code" : 302, - "known" : ["john", "peter"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Apex Legends", - "uri_check" : "https://apex.tracker.gg/apex/profile/origin/{account}/overview", - "e_code" : 200, - "e_string" : "Overview", - "m_code" : 404, - "m_string" : "PLAYER NOT FOUND", - "known" : ["tttcheekyttt", "RollsRoyce_Dawn"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Appian", - "uri_check" : "https://community.appian.com/members/{account}", - "e_code" : 200, - "e_string" : "User Profile", - "m_string" : "Go back to our", - "m_code" : 301, - "known" : ["mikec", "varunkumarb0001"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "apteka", - "uri_check" : "https://apteka.ee/user/id/{account}", - "e_code" : 200, - "e_string" : "/gifts/user_id/", - "m_string" : "account-data-error", - "m_code" : 200, - "known" : ["lana", "oleg"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Archive Of Our Own Account", - "uri_check" : "https://archiveofourown.org/users/{account}", - "e_code" : 200, - "e_string" : ">Profile<", - "m_string" : ">redirected<", - "m_code" : 302, - "known" : ["test", "john"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Arduino", - "uri_check" : "https://create.arduino.cc/projecthub/{account}", - "e_code" : 200, - "e_string" : "- Arduino Project Hub", - "m_string" : "Arduino Project Hub", - "m_code" : 404, - "known" : ["peter", "john"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "ArmorGames", - "uri_check" : "https://armorgames.com/user/{account}", - "e_code" : 200, - "e_string" : "about", - "m_string" : "404: Oh Noes!", - "m_code" : 302, - "known" : ["john", "sammy"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "ArtBreeder", - "uri_check" : "https://www.artbreeder.com/{account}", - "e_code" : 200, - "e_string" : "", - "m_string" : "Not found:", - "m_code" : 404, - "known" : ["dolores", "cyborghyena"], - "cat" : "art", - "valid" : true - }, - { - "name" : "Artists & Clients", - "uri_check" : "https://artistsnclients.com/people/{account}", - "e_code" : 200, - "e_string" : "Member Since", - "m_code" : 404, - "m_string" : "The page you requested wasn't there when we tried to get it for you. What a bother!", - "known" : ["luluc0", "MuraArts"], - "cat" : "art", - "valid" : true - }, - { - "name" : "ArtStation", - "uri_check" : "https://www.artstation.com/{account}", - "e_code" : 200, - "e_string" : "Portfolio", - "m_code" : 404, - "m_string" : "Page not found", - "known" : ["kongaxl_design", "alex_pi"], - "cat" : "art", - "valid" : true - }, - { - "name" : "asciinema", - "uri_check" : "https://asciinema.org/~{account}", - "e_code" : 200, - "e_string" : "s profile - asciinema", - "m_string" : "This page doesn't exist. Sorry!", - "m_code" : 404, - "known" : ["john", "red"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "ask.fm", - "uri_check" : "https://ask.fm/{account}", - "e_code" : 200, - "e_string" : "answers,", - "m_string" : "Well, apparently not anymore.", - "m_code" : 200, - "known" : ["test", "bob"], - "cat" : "social", - "valid" : true - }, - { - "name" : "au.ru", - "uri_check" : "https://au.ru/user/{account}/", - "e_code" : 200, - "e_string" : "Лоты пользователя ", - "m_string" : "Пользователь не найден", - "m_code" : 404, - "known" : ["Svetlana7", "nastya"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Audiojungle", - "uri_check" : "https://audiojungle.net/user/{account}", - "e_code" : 200, - "e_string" : "s profile on AudioJungle", - "m_string" : "404 - Nothing to see here", - "m_code" : 404, - "known" : ["john", "reds"], - "cat" : "music", - "valid" : true - }, - { - "name" : "authorSTREAM", - "uri_check" : "http://www.authorstream.com/{account}/", - "e_code" : 200, - "e_string" : "Presentations on authorSTREAM", - "m_string" : "", - "m_code" : 404, - "known" : ["test", "john"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Avid Community", - "uri_check" : "https://community.avid.com/members/{account}/default.aspx", - "e_code" : 200, - "e_string" : "My Activity", - "m_code" : 302, - "m_string" : "The user you requested cannot be found.", - "known" : ["Thayne", "Admin"], - "cat" : "music", - "valid" : true - }, - { - "name" : "babepedia", - "uri_check" : "https://www.babepedia.com/user/{account}", - "e_code" : 200, - "e_string" : "'s Page", - "m_string" : "Profile not found", - "m_code" : 404, - "known" : ["cherry", "betty"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "BabyPips", - "uri_check" : "https://forums.babypips.com/u/{account}.json", - "uri_pretty" : "https://forums.babypips.com/u/{account}/summary", - "e_code" : 200, - "e_string" : "user_badges", - "m_string" : "The requested URL or resource could not be found", - "m_code" : 404, - "known" : ["baemax023", "scottycarsonmvp"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Bandcamp", - "uri_check" : "https://bandcamp.com/{account}", - "e_code" : 200, - "e_string" : " collection | Bandcamp", - "m_string" : "

Sorry, that something isn’t here.

", - "m_code" : 404, - "known" : ["alice", "bob"], - "cat" : "music", - "valid" : true - }, - { - "name" : "Bandlab", - "uri_check" : "https://www.bandlab.com/api/v1.3/users/{account}", - "uri_pretty" : "https://www.bandlab.com/{account}", - "e_code" : 200, - "e_string" : "about", - "m_string" : "Couldn't find any matching element, it might be deleted", - "m_code" : 404, - "known" : ["rave_flawless", "delutaya"], - "cat" : "music", - "valid" : true - }, - { - "name" : "bblog_ru", - "uri_check" : "https://www.babyblog.ru/user/{account}", - "e_code" : 200, - "e_string" : "@", - "m_string" : "БэбиБлог - беременность, календарь беременности, дневники", - "m_code" : 301, - "known" : ["igor", "olga"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "BDSMLR", - "uri_check" : "https://{account}.bdsmlr.com", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "login", - "m_string" : "This blog doesn't exist.", - "m_code" : 200, - "known" : ["themunch", "shibari4all"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "bdsmsingles", - "uri_check" : "https://www.bdsmsingles.com/members/{account}/", - "e_code" : 200, - "e_string" : "Profile", - "m_string" : "BDSM Singles", - "m_code" : 302, - "known" : ["GoddessBlueDiamo", "aalama"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Behance", - "uri_check" : "https://www.behance.net/{account}", - "e_code" : 200, - "e_string" : "<title>Behance", - "m_string" : "Behance :: Oops! We can’t find that page.", - "m_code" : 404, - "known" : ["alice", "john"], - "cat" : "business", - "valid" : true - }, - { - "name" : "Bentbox", - "uri_check" : "https://bentbox.co/{account}", - "e_code" : 200, - "e_string" : "
", - "m_string" : "This user is currently not available", - "m_code" : 200, - "known" : ["brockdoom", "witchhouse", "hotoptics"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "BiggerPockets", - "uri_check" : "https://www.biggerpockets.com/users/{account}", - "e_code" : 200, - "e_string" : "| BiggerPockets", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["trustgreene", "chasel9"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "BIGO Live", - "uri_check" : "https://www.bigo.tv/user/{account}", - "e_code" : 200, - "e_string" : "userInfo:{nickName", - "m_string" : "userInfo:{}", - "m_code" : 200, - "known" : ["treasdior", "Jacin19"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Bikemap", - "uri_check" : "https://www.bikemap.net/en/u/{account}/routes/created/", - "e_code" : 200, - "e_string" : "- 🚲 Bikemap", - "m_string" : "Page not found - Error 404 ", - "m_code" : 404, - "known" : ["mike", "greg"], - "cat" : "health", - "valid" : true - }, - { - "name" : "Bimpos", - "uri_check" : "https://ask.bimpos.com/user/{account}", - "e_code" : 200, - "e_string" : "<title>User ", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["john", "db"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "biolink", - "uri_check" : "https://bio.link/{account}", - "e_code" : 200, - "e_string" : "profile:username", - "m_string" : "The page you’re looking for doesn’t exist", - "m_code" : 404, - "known" : ["adli_hm", "jake"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Bitbucket", - "uri_check" : "https://bitbucket.org/{account}/", - "e_code" : 200, - "e_string" : "Repositories", - "m_string" : "That link has no power here", - "m_code" : 404, - "known" : ["test", "WebBreacher"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "Bitchute", - "uri_check" : "https://www.bitchute.com/channel/{account}/", - "e_code" : 200, - "e_string" : "subscribers", - "m_string" : "404 - Page not found", - "m_code" : 404, - "known" : ["simon_parkes", "americafloats", "daindor"], - "cat" : "political", - "valid" : true - }, - { - "name" : "bitcoin forum", - "uri_check" : "https://bitcoinforum.com/profile/{account}", - "e_code" : 200, - "e_string" : "Profile of", - "m_string" : "An Error Has Occurred!", - "m_code" : 200, - "known" : ["alex", "boss"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "bittube", - "uri_check" : "https://bittube.video/c/{account}/videos", - "e_code" : 200, - "e_string" : "- BitTube", - "m_string" : "

We are sorry but it seems", - "m_code" : 404, - "known" : ["nmt0", "sashaponce"], - "cat" : "video", - "valid" : true - }, - { - "name" : "BLIP.fm", - "uri_check" : "https://blip.fm/{account}", - "e_code" : 200, - "e_string" : "recommended", - "m_string" : "", - "m_code" : 404, - "known" : ["john", "walnuts"], - "cat" : "music", - "valid" : true - }, - { - "name" : "Blogger", - "uri_check" : "https://www.blogger.com/profile/{account}", - "e_code" : 200, - "e_string" : ">On Blogger since", - "m_string" : "Sorry, the blog you were looking for does not exist.", - "m_code" : 404, - "known" : ["07333944864481878697", "05941544278367416980"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "blogi.pl", - "uri_check" : "https://www.blogi.pl/osoba,{account}.html", - "e_code" : 200, - "e_string" : "Informacje ogólne", - "m_string" : "Niepoprawny adres.", - "m_code" : 200, - "known" : ["naukowa", "izkpaw"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "Blogmarks", - "uri_check" : "http://blogmarks.net/user/{account}", - "e_code" : 200, - "e_string" : "class=\"mark\"", - "m_string" : "", - "m_code" : 200, - "known" : ["test", "mike"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Blogspot", - "uri_check" : "http://{account}.blogspot.com", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "Blogger Template Style", - "m_string" : "Blog not found", - "m_code" : 404, - "known" : ["test"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "BodyBuilding.com", - "uri_check" : "http://api.bodybuilding.com/api-proxy/bbc/get?slug={account}", - "uri_pretty" : "http://bodyspace.bodybuilding.com/{account}/", - "e_code" : 200, - "e_string" : "username", - "m_string" : "data\" :\"\"", - "m_code" : 200, - "known" : ["mike"], - "cat" : "health", - "valid" : true - }, - { - "name" : "bonga_cams", - "uri_check" : "https://pt.bongacams.com/{account}", - "e_code" : 200, - "e_string" : "Chat público ao vivo de", - "m_string" : "Câmaras de sexo free: chat pornô ao vivo", - "m_code" : 404, - "known" : ["PrettyKatea", "milaowens"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Bookcrossing", - "uri_check" : "https://www.bookcrossing.com/mybookshelf/{account}", - "e_code" : 200, - "e_string" : "Recent Book Activity", - "m_string" : "Sorry, we were unable to locate the content that you requested.", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "boosty", - "uri_check" : "https://boosty.to/{account}", - "e_code" : 200, - "e_string" : "- exclusive content on Boosty", - "m_string" : "Blog not found", - "m_code" : 200, - "known" : ["evdokia", "lana"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Booth", - "uri_check" : "https://{account}.booth.pm/", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "- BOOTH", - "m_string" : "BOOTH - The International Indie Art Marketplace", - "m_code" : 302, - "known" : ["monoliorder", "hasya"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "Breach Forums", - "uri_check" : "https://breached.vc/User-{account}", - "e_code" : 200, - "e_string" : "Time Spent Online", - "m_code" : 404, - "m_string" : "The member you specified is either invalid or doesn't exist.", - "known" : ["dubudubw", "pompompurin"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Brickset", - "uri_check" : "https://forum.brickset.com/profile/{account}", - "e_code" : 200, - "e_string" : "Activity", - "m_string" : "User Not Found", - "m_code" : 404, - "known" : ["lowlead", "vwong19"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Bugcrowd", - "uri_check" : "https://bugcrowd.com/{account}", - "e_code" : 200, - "e_string" : "s researcher profile on Bugcrowd", - "m_string" : ">Bugcrowd | Error", - "m_code" : 404, - "known" : ["bitquark", "mert"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Bunpro", - "uri_check" : "https://community.bunpro.jp/u/{account}.json", - "e_code" : 200, - "e_string" : "username", - "m_code" : 404, - "m_string" : "The requested URL or resource could not be found.", - "known" : ["blacktide", "honey"], - "cat" : "social", - "valid" : true - }, - { - "name" : "buymeacoffee", - "uri_check" : "https://www.buymeacoffee.com/{account}", - "e_code" : 200, - "e_string" : "supporters", - "m_string" : "The page you’re looking for doesn’t exist.", - "m_code" : 404, - "known" : ["freebird", "robinwong"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "BuzzFeed", - "uri_check" : "https://www.buzzfeed.com/{account}", - "e_code" : 200, - "e_string" : "memberSince", - "m_string" : "We can't find the page you're looking for", - "m_code" : 404, - "known" : ["janelytvynenko", "RobertK"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Buzznet", - "uri_check" : "https://www.buzznet.com/author/{account}/", - "e_code" : 200, - "e_string" : "Author:", - "m_string" : "The page you are looking for can't be found.", - "m_code" : 404, - "known" : ["carolinegawlik"], - "cat" : "news", - "valid" : true - }, - { - "name" : "cafecito", - "uri_check" : "https://cafecito.app/{account}", - "e_code" : 200, - "e_string" : " | Cafecito", - "m_string" : "Es posible que el enlace que seleccionaste esté roto o que se haya eliminado la página", - "m_code" : 404, - "known" : ["braftty", "guillermo"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Calendy", - "uri_check" : "https://calendly.com/{account}", - "e_code" : 200, - "e_string" : "og:author", - "m_code" : 404, - "m_string" : "Sorry, but the page you were looking for could not be found.", - "known" : ["honey", "roger"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Cameo", - "uri_check" : "https://www.cameo.com/{account}", - "e_code" : 200, - "e_string" : "aggregateRating", - "m_string" : "", - "m_code" : 301, - "known" : ["ryansandes", "sarahall3"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "Carbonmade", - "uri_check" : "https://{account}.carbonmade.com/", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "s online portfolio", - "m_string" : "site not found", - "m_code" : 404, - "known" : ["jenny", "bob"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Career.habr", - "uri_check" : "https://career.habr.com/{account}", - "e_code" : 200, - "e_string" : "— Хабр Карьера", - "m_string" : "Ошибка 404", - "m_code" : 404, - "known" : ["alex", "bob"], - "cat" : "business", - "valid" : true - }, - { - "name" : "CaringBridge", - "uri_check" : "https://www.caringbridge.org/visit/{account}", - "e_code" : 200, - "e_string" : "| CaringBridge", - "m_string" : "Sorry, we can’t find that site", - "m_code" : 404, - "known" : ["robertherring"], - "cat" : "health", - "valid" : true - }, - { - "name" : "carrd.co", - "uri_check" : "https://{account}.carrd.co", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "( Made with Carrd )", - "m_code" : 404, - "m_string" : "Sorry, the requested page could not be found.", - "known" : ["liam", "peter"], - "cat" : "business", - "valid" : true - }, - { - "name" : "cash.app", - "uri_check" : "https://cash.app/${account}", - "e_code" : 200, - "e_string" : " on Cash App", - "m_string" : "The page you are looking for can't be found", - "m_code" : 404, - "known" : ["Jill", "john"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "CastingCallClub", - "uri_check" : "https://www.castingcall.club/{account}", - "e_code" : 200, - "e_string" : "| Casting Call Club", - "m_code" : 302, - "m_string" : "404: This is not the page you were looking for. In the future, our AI robot overlords will be able to better predict exactly what you were looking for.", - "known" : ["Lindz", "Danye"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "CD-Action", - "uri_check" : "https://cdaction.pl/uzytkownicy/{account}", - "e_code" : 200, - "e_string" : "Lista gier:", - "m_string" : "Coś się popsuło...", - "m_code" : 404, - "known" : ["saczuan", "cormac"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "cda.pl", - "uri_check" : "https://www.cda.pl/{account}", - "e_code" : 200, - "e_string" : "Foldery", - "m_string" : "Strona na którą chcesz wejść nie istnieje", - "m_code" : 200, - "known" : ["test2", "janek"], - "cat" : "video", - "valid" : true - }, - { - "name" : "championat", - "uri_check" : "https://www.championat.com/user/{account}/", - "e_code" : 200, - "e_string" : "Личный профил", - "m_string" : "Извините, запрашиваемая страница не найдена", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "news", - "valid" : true - }, - { - "name" : "Mastodon-Chaos.social", - "uri_check" : "https://chaos.social/@{account}", - "e_code" : 200, - "e_string" : "@chaos.social) - chaos.social", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["dictvm", "sml"], - "cat" : "social", - "valid" : true - }, - { - "name" : "chaturbate", - "uri_check" : "https://chaturbate.com/{account}/", - "e_code" : 200, - "e_string" : "'s Bio and Free Webcam", - "m_string" : "It's probably just a broken link", - "m_code" : 404, - "known" : ["pussylovekate", "kemii"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "cHEEZburger", - "uri_check" : "https://profile.cheezburger.com/{account}", - "e_code" : 200, - "e_string" : "profile-header", - "m_string" : "Home - ", - "m_code" : 302, - "known" : ["john"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Chamsko", - "uri_check" : "https://www.chamsko.pl/profil/{account}", - "e_code" : 200, - "e_string" : "W serwisie od", - "m_string" : "Strona nie istnieje.", - "m_code" : 404, - "known" : ["test", "janek"], - "cat" : "images", - "valid" : true - }, - { - "name" : "Chess.com", - "uri_check" : "https://www.chess.com/member/{account}", - "e_code" : 200, - "e_string" : "Last Online", - "m_string" : "<title>Missing Page?! - Chess.com", - "m_code" : 404, - "known" : ["john", "peter", "josh"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Chomikuj.pl", - "uri_check" : "https://chomikuj.pl/{account}/", - "e_code" : 200, - "e_string" : "Foldery", - "m_string" : "Chomik o takiej nazwie nie istnieje", - "m_code" : 404, - "known" : ["test", "test2"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Chyoa", - "uri_check" : "https://chyoa.com/user/{account}", - "e_code" : 200, - "e_string" : "When I'm not reading erotica I like to read", - "m_string" : "Sorry, I got distracted...", - "m_code" : 404, - "known" : ["joe", "carlos01"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Climatejustice.rocks (Mastodon Instance)", - "uri_check" : "https://climatejustice.rocks/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://climatejustice.rocks/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["paula", "ClimbitJustice"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Cloudflare", - "uri_check" : "https://community.cloudflare.com/u/{account}", - "e_code" : 200, - "e_string" : "- Cloudflare Community", - "m_string" : "Oops! That page doesn’t exist or is private.", - "m_code" : 404, - "known" : ["bob", "john"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Clubhouse", - "uri_check" : "https://www.clubhouse.com/@{account}", - "e_code" : 200, - "e_string" : ">followers

", - "m_string" : "t find what you were looking for", - "m_code" : 404, - "known" : ["kirbyplessas", "rohan"], - "cat" : "social", - "valid" : true - }, - { - "name" : "clusterdafrica", - "uri_check" : "https://clusterdafrica.com/@{account}", - "e_code" : 200, - "e_string" : "Membre depuis -", - "m_string" : "- Page non trouvée!", - "m_code" : 302, - "known" : ["mamadou", "konate"], - "cat" : "social", - "valid" : true - }, - { - "name" : "cnet", - "uri_check" : "https://www.cnet.com/profiles/{account}/", - "e_code" : 200, - "e_string" : "Member Since:", - "m_string" : "Page Not Found (404) - CNET", - "m_code" : 301, - "known" : ["john", "bob"], - "cat" : "news", - "valid" : true - }, - { - "name" : "Codeberg", - "uri_check" : "https://codeberg.org/{account}", - "e_code" : 200, - "e_string" : "ui avatar vm", - "m_code" : 404, - "m_string" : "The page you are trying to reach either", - "known" : ["dachary", "happy"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "Codecademy", - "uri_check" : "https://discuss.codecademy.com/u/{account}/summary", - "e_code" : 200, - "e_string" : " Profile - ", - "m_string" : "Oops! That page doesn’t exist", - "m_code" : 404, - "known" : ["doctypeme", "jon_morris"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "codeforces", - "uri_check" : "https://codeforces.com/profile/{account}", - "e_code" : 200, - "e_string" : " - Codeforces", - "m_string" : "Codeforces", - "m_code" : 302, - "known" : ["Abdul01", "Abdullah"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "codementor", - "uri_check" : "https://www.codementor.io/@{account}", - "e_code" : 200, - "e_string" : "ABOUT ME", - "m_string" : "404/favicon.png", - "m_code" : 404, - "known" : ["e4c5", "juanelfers"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "Code Project", - "uri_check" : "https://www.codeproject.com/Members/{account}", - "e_code" : 200, - "e_string" : "member since", - "m_string" : "Unable to load the requested member's information", - "m_code" : 200, - "known" : ["WmCraig", "Rick-York"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "Codewars", - "uri_check" : "https://www.codewars.com/users/{account}", - "e_code" : 200, - "e_string" : "| Codewars", - "m_string" : "Whoops! The page you were looking for doesn't seem to exist.", - "m_code" : 404, - "known" : ["john", "reds"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "Coderwall", - "uri_check" : "https://coderwall.com/{account}/", - "e_code" : 200, - "e_string" : "s profile |", - "m_string" : "404! Our feels when that url is used", - "m_code" : 404, - "known" : ["john", "test"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "cohost", - "uri_check" : "https://cohost.org/{account}", - "e_code" : 200, - "e_string" : "cohost! - @", - "m_string" : "Something went wrong", - "m_code" : 404, - "known" : ["vogon", "jkap"], - "cat" : "social", - "valid" : true - }, - { - "name" : "COLOURlovers", - "uri_check" : "https://www.colourlovers.com/lover/{account}", - "e_code" : 200, - "e_string" : "Color lovin' since", - "m_string" : "Lover has gone missing", - "m_code" : 410, - "known" : ["amorremanet", "bezzalopoly"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "contactos.sex", - "uri_check" : "https://www.contactossex.com/profile/{account}", - "e_code" : 200, - "e_string" : "Información Personal", - "m_string" : "Desde 2001 conectando gente!", - "m_code" : 302, - "known" : ["danijak", "darkfox"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "coroflot", - "uri_check" : "https://www.coroflot.com/{account}", - "e_code" : 200, - "e_string" : "portfolio", - "m_string" : "Looking for something?", - "m_code" : 404, - "known" : ["john", "blue"], - "cat" : "art", - "valid" : true - }, - { - "name" : "Mastodon-counter.social", - "uri_check" : "https://counter.social/@{account}", - "e_code" : 200, - "e_string" : "@counter.social) - CounterSocial", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["ericconrad", "webbreacher"], - "cat" : "social", - "valid" : true - }, - { - "name" : "cowboys4angels", - "uri_check" : "https://cowboys4angels.com/cowboy/{account}/", - "e_code" : 200, - "e_string" : " | Cowboys 4 Angels |", - "m_string" : "Elite Male Escorts", - "m_code" : 301, - "known" : ["jaxjames", "mike"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "cracked_io", - "uri_check" : "https://cracked.io/{account}", - "e_code" : 200, - "e_string" : "Cracked.io - Profile of", - "m_string" : "The member you specified is either invalid or doesn't exist", - "m_code" : 404, - "known" : ["RealPsycho", "SamWinchester"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Cracked", - "uri_check" : "https://www.cracked.com/members/{account}", - "e_code" : 200, - "e_string" : "Member Since", - "m_string" : "", - "m_code" : 302, - "known" : ["mbattagl","Hatchback"], - "cat" : "social", - "valid" : true - }, - { - "name" : "crevado", - "uri_check" : "https://{account}.crevado.com/", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "Portfolio", - "m_string" : "Site not found :-(", - "m_code" : 404, - "known" : ["john", "red"], - "cat" : "images", - "valid" : true - }, - { - "name" : "crowdin", - "uri_check" : "https://crowdin.com/profile/{account}", - "e_code" : 200, - "e_string" : ") – Crowdin", - "m_string" : "Page Not Found - Crowdin", - "m_code" : 404, - "known" : ["alex", "peter"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Cults3D", - "uri_check" : "https://cults3d.com/en/users/{account}/creations", - "e_code" : 200, - "e_string" : "All the 3D models of", - "m_string" : "Oh dear, this page is not working!", - "m_code" : 404, - "known" : ["Bstar3Dart", "john"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Curiouscat", - "uri_check" : "https://curiouscat.live/api/v2.1/profile?username={account}", - "uri_pretty" : "https://curiouscat.live/{account}", - "e_code" : 200, - "e_string" : "is_followed_by_me", - "m_code" : 200, - "m_string" : "\"error\": 404", - "known" : ["kindokja9158", "saki"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Cytoid", - "uri_check" : "https://cytoid.io/profile/{account}", - "e_code" : 200, - "e_string" : "Joined", - "m_code" : 404, - "m_string" : "Profile not found", - "known" : ["nyala", "speedymlg7"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Dailymotion", - "uri_check" : "https://www.dailymotion.com/{account}", - "e_code" : 200, - "e_string" : "og:url", - "m_string" : "404 Page not found", - "m_code" : 404, - "known" : ["WeHappyKids", "john"], - "cat" : "video", - "valid" : true - }, - { - "name" : "darudar", - "uri_check" : "https://darudar.org/users/{account}/", - "e_code" : 200, - "e_string" : ". Дарудар", - "m_string" : "404. Дару~дар: миру~мир!", - "m_code" : 404, - "known" : ["svetlana7", "igor"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "datezone", - "uri_check" : "https://www.datezone.com/users/{account}/", - "e_code" : 200, - "e_string" : "profile_status", - "m_string" : "Błąd wczytywania", - "m_code" : 200, - "known" : ["gpower550","tgoat2022"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "dateinasia", - "uri_check" : "https://www.dateinasia.com/{account}", - "e_code" : 200, - "e_string" : "About me", - "m_string" : "The page you are looking for does not exist", - "m_code" : 404, - "known" : ["Lars01", "janeferater"], - "cat" : "dating", - "valid" : true - }, - { - "name" : "Dating.ru", - "uri_check" : "https://dating.ru/{account}/", - "e_code" : 200, - "e_string" : "| dating.ru", - "m_string" : "Такой страницы не существует.", - "m_code" : 404, - "known" : ["john", "blue"], - "cat" : "dating", - "valid" : true - }, - { - "name" : "Mastodon-Defcon", - "uri_check" : "https://defcon.social/@{account}", - "e_code" : 200, - "e_string" : "- DEF CON Social", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["defcon", "buttersnatcher"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Demotywatory", - "uri_check" : "https://demotywatory.pl/user/{account}", - "e_code" : 200, - "e_string" : "Z nami od:", - "m_string" : "Użytkownik o podanym pseudonimie nie istnieje.", - "m_code" : 200, - "known" : ["test", "test2"], - "cat" : "images", - "valid" : true - }, - { - "name" : "depop", - "uri_check" : "https://www.depop.com/{account}/", - "e_code" : 200, - "e_string" : "s Shop - Depop", - "m_string" : "Sorry, that page doesn't exist", - "m_code" : 404, - "known" : ["sara", "susan"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "Designspriation", - "uri_check" : "https://www.designspiration.com/{account}/", - "e_code" : 200, - "e_string" : "has discovered on Designspiration", - "m_string" : "Content Not Found", - "m_code" : 404, - "known" : ["sam", "smith"], - "cat" : "art", - "valid" : true - }, - { - "name" : "Destructoid", - "uri_check" : "https://www.destructoid.com/?name={account}", - "e_code" : 200, - "e_string" : "Follow", - "m_string" : "Error in query", - "m_code" : 200, - "known" : ["john", "alice", "bob"], - "cat" : "social", - "valid" : true - }, - { - "name" : "DeviantArt", - "uri_check" : "https://www.deviantart.com/{account}", - "e_code" : 200, - "e_string" : " | DeviantArt", - "m_string" : "DeviantArt: 404", - "m_code" : 404, - "known" : ["rattybike", "john"], - "cat" : "images", - "valid" : true - }, - { - "name" : "dev.to", - "uri_check" : "https://dev.to/{account}", - "e_code" : 200, - "e_string" : "- DEV", - "m_string" : "This page does not exist", - "m_code" : 301, - "known" : ["john", "bob"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "devRant", - "uri_check" : "https://devrant.com/users/{account}", - "e_code" : 200, - "e_string" : "Joined devRant on", - "m_string" : "", - "m_code" : 302, - "known" : ["dfox", "trogus"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "dfgames", - "uri_check" : "https://www.dfgames.com.br/user/{account}", - "e_code" : 200, - "e_string" : "Reputa", - "m_string" : "404 Not Found", - "m_code" : 404, - "known" : ["carlos01", "eduardo"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Diablo", - "uri_check" : "https://diablo2.io/member/{account}/", - "e_code" : 200, - "e_string" :"Viewing profile - ", - "m_string" : "The requested user does not exist", - "m_code" : 404, - "known" : ["Mike01", "John"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "diigo", - "uri_check" : "https://www.diigo.com/interact_api/load_profile_info?name={account}", - "uri_pretty" : "https://www.diigo.com/profile/{account}", - "e_code" : 200, - "e_string" : "regist_at", - "m_string" : "{}", - "m_code" : 200, - "known" : ["whoami", "johndoe"], - "cat" : "images", - "valid" : true - }, - { - "name" : "DIBIZ", - "uri_check" : "https://www.dibiz.com/{account}", - "e_code" : 200, - "e_string" : "mailto:?subject=", - "m_string" : "An Error Has Occurred", - "m_code" : 404, - "known" : ["fractalhue", "rid"], - "cat" : "business", - "valid" : true - }, - { - "name" : "Digitalspy", - "uri_check" : "https://forums.digitalspy.com/profile/discussions/{account}", - "e_code" : 200, - "e_string" : "About", - "m_string" : "User not found", - "m_code" : 404, - "known" : ["JeffG1", "Maxatoria"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Disabled.rocks (Mastodon Instance)", - "uri_check" : "https://disabled.rocks/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://disabled.rocks/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["McCullohMD", "empressofcheer"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Discogs", - "uri_check" : "https://www.discogs.com/user/{account}", - "e_code" : 200, - "e_string" : "Joined on", - "m_code" : 404, - "m_string" : "We couldn't find that page.", - "known" : ["7jlong", "venetian-guy"], - "cat" : "music", - "valid" : true - }, - { - "name" : "Discourse", - "uri_check" : "https://meta.discourse.org/u/{account}/summary.json", - "uri_pretty" : "https://meta.discourse.org/u/{account}", - "e_code" : 200, - "e_string" : "topics", - "m_code" : 404, - "m_string" : "The requested URL or resource could not be found.", - "known" : ["ndalliard", "gerhard"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "discuss.elastic.co", - "uri_check" : "https://discuss.elastic.co/u/{account}", - "e_code" : 200, - "e_string" : " Profile", - "m_string" : "Oops!", - "m_code" : 404, - "known" : ["whoami", "johndoe"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Discuss.social (Mastodon Instance)", - "uri_check" : "https://discuss.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://discuss.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["dan", "itepe18"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Dissenter", - "uri_check" : "https://dissenter.com/user/{account}", - "e_code" : 200, - "e_string" : "Dissenter | The Comment Section of the Internet", - "m_string" : "That user is not registered here.", - "m_code" : 404, - "known" : ["pryerlee", "archdukeofevil"], - "cat" : "political", - "valid" : true - }, - { - "name" : "Disqus", - "uri_check" : "https://disqus.com/by/{account}/", - "e_code" : 200, - "e_string" : "<title>Disqus Profile", - "m_string" : "Page not found (404) - Disqus", - "m_code" : 404, - "known" : ["Aristotelian1", "50calibercat"], - "cat" : "social", - "valid" : true - }, - { - "name" : "DockerHub", - "uri_check" : "https://hub.docker.com/v2/users/{account}/", - "e_code" : 200, - "e_string" : "username", - "m_string" : "Not Found", - "m_code" : 404, - "known" : ["soxoj", "torvalds"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "Donation Alerts", - "uri_check" : "https://www.donationalerts.com/api/v1/user/{account}/donationpagesettings", - "uri_pretty" : "https://www.donationalerts.com/r/{account}", - "e_code" : 200, - "e_string" : "background_image_url", - "m_code" : 202, - "m_string" : "does not exist", - "known" : ["gorou", "saku"], - "cat" : "business", - "valid" : true - }, - { - "name" : "dot.cards", - "uri_check" : "https://dot.cards/{account}", - "e_code" : 200, - "e_string" : "'s dot.Profile", - "m_string" : "Username does not exist.", - "m_code" : 404, - "known" : ["dakmusic", "seattlevoiceactor"], - "cat" : "business", - "valid" : true - }, - { - "name" : "Dojoverse", - "uri_check" : "https://dojoverse.com/members/{account}/", - "e_code" : 200, - "e_string" : "Joined", - "m_string" : "Looks like you got lost!.", - "m_code" : 404, - "known" : ["eric", "danielrivera10927"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Dribbble", - "uri_check" : "https://dribbble.com/{account}", - "e_code" : 200, - "e_string" : " | Dribbble", - "m_string" : "(404)", - "m_code" : 404, - "known" : ["UI8", "keeplegend"], - "cat" : "art", - "valid" : true - }, - { - "name" : "Droners", - "uri_check" : "https://droners.io/accounts/{account}/", - "e_code" : 200, - "e_string" : "- Professional Drone Pilot", - "m_string" : "(404)", - "m_code" : 302, - "known" : ["chriskahn", "swilken"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Drum", - "uri_check" : "https://drum.io/{account}/", - "e_code" : 200, - "e_string" : "firstName", - "m_string" : "Page not found", - "m_code" : 302, - "known" : ["kingdirtdig", "oscarqbdrums"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Duolingo", - "uri_check" : "https://www.duolingo.com/2017-06-30/users?username={account}&_=1628308619574", - "uri_pretty" : "https://www.duolingo.com/profile/{account}", - "e_code" : 200, - "e_string" : "joinedClassroomIds", - "m_string" : "\"users\" : []", - "m_code" : 200, - "known" : ["sdfsdf", "duolingo"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "easyen", - "uri_check" : "https://easyen.ru/index/8-0-{account}", - "e_code" : 200, - "e_string" : "День рождения", - "m_string" : "Пользователь не найден", - "m_code" : 200, - "known" : ["wd"], - "cat" : "social", - "valid" : true - }, - { - "name" : "eBay", - "uri_check" : "https://www.ebay.com/usr/{account}", - "e_code" : 200, - "e_string" : "on eBay", - "m_string" : "The User ID you entered was not found", - "m_code" : 200, - "known" : ["the_gqs", "johnny"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "ebay_stores", - "uri_check" : "https://www.ebay.com/str/{account}", - "e_code" : 200, - "e_string" : "| eBay Stores", - "m_string" : "Sorry, this store was not found.", - "m_code" : 410, - "known" : ["tactical", "tactical-security"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "Ello.co", - "uri_check" : "https://ello.co/{account}", - "e_code" : 200, - "e_string" : "| Ello", - "m_string" : "| [404] Not Found", - "m_code" : 404, - "known" : ["john", "franalvez"], - "cat" : "art", - "valid" : true - }, - { - "name" : "Engadget", - "uri_check" : "https://www.engadget.com/about/editors/{account}/", - "e_code" : 200, - "e_string" : "- Engadget", - "m_string" : ", -", - "m_code" : 404, - "known" : ["devindra-hardawar", "kris-holt"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "EPORNER", - "uri_check" : "https://www.eporner.com/profile/{account}/", - "e_code" : 200, - "e_string" : "Video/Pics views", - "m_string" : "Profile not found", - "m_code" : 404, - "known" : ["enron456", "Jomat999", "hicnobu"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Etsy", - "uri_check" : "https://www.etsy.com/people/{account}", - "e_code" : 200, - "e_string" : " on Etsy", - "m_string" : "Sorry, the member you are looking for does not exist", - "m_code" : 404, - "known" : ["david", "happiness"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "Mastodon-EU_Voice", - "uri_pretty" : "https://social.network.europa.eu/@{account}", - "uri_check" : "https://social.network.europa.eu/api/v1/accounts/lookup?acct={account}", - "e_code" : 200, - "e_string" : "social.network.europa.eu", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["EC_DIGIT", "EUSPA"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Expressional.social (Mastodon Instance)", - "uri_check" : "https://expressional.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://expressional.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["jippi", "poolesen"], - "cat" : "social", - "valid" : true - }, - { - "name" : "ExtraLunchMoney", - "uri_check" : "https://extralunchmoney.com/user/{account}", - "e_code" : 200, - "e_string" : "Public Profile Page", - "m_string" : "Closed Profile Page", - "m_code" : 404, - "known" : ["ThatWitchMaeve", "Nudekiki"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Eyeem", - "uri_check" : "https://www.eyeem.com/u/{account}", - "e_code" : 200, - "e_string" : "| EyeEm Photographer", - "m_string" : "Not Found (404) | EyeEm", - "m_code" : 301, - "known" : ["john", "bob"], - "cat" : "art", - "valid" : true - }, - { - "name" : "F3", - "uri_check" : "https://f3.cool/{account}", - "e_code" : 200, - "e_string" : "@", - "m_string" : "Page Not Found - F3", - "m_code" : 404, - "known" : ["nick", "john"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Fabswingers", - "uri_check" : "https://www.fabswingers.com/profile/{account}", - "e_code" : 200, - "e_string" : "View Profile", - "m_string" : "The user you tried to view doesn't seem to be on the site any more", - "m_code" : 200, - "known" : ["naughty_nymphomaniac", "hellfireclub", "fabswingers.com"], - "cat" : "dating", - "valid" : true - }, - { - "name" : "Faktopedia", - "uri_check" : "https://faktopedia.pl/user/{account}", - "e_code" : 200, - "e_string" : "Zamieszcza fakty od:", - "m_string" : "Nie znaleziono użytkownika o podanym loginie.", - "m_code" : 200, - "known" : ["janek", "ania"], - "cat" : "images", - "valid" : true - }, - { - "name" : "FanCentro", - "uri_check" : "https://fancentro.com/api/profile.get?profileAlias={account}&limit=1", - "uri_pretty" : "https://fancentro.com/{account}/", - "e_code" : 200, - "e_string" : "\"status\" :true", - "m_string" : "\"status\" :false", - "m_code" : 200, - "known" : ["medroxy","miaaamador"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "fandalism", - "uri_check" : "https://fandalism.com/{account}", - "e_code" : 200, - "e_string" : "fandalism_:user", - "m_string" : "404 - File or directory not found", - "m_code" : 404, - "known" : ["mike", "ted"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Fandom", - "uri_check" : "https://www.fandom.com/u/{account}", - "e_code" : 200, - "e_string" : "| Profile | Fandom", - "m_string" : "Not Found", - "m_code" : 404, - "known" : ["EJacobs94", "Drew_Dietsch"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "fanpop", - "uri_check" : "https://www.fanpop.com/fans/{account}", - "e_code" : 200, - "e_string" : "Fanpopping since", - "m_string" : "", - "m_code" : 302, - "known" : ["test", "johndoe"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Fark", - "uri_check" : "https://www.fark.com/users/{account}", - "e_code" : 200, - "e_string" : "Fark account number", - "m_string" : "Tastes like chicken.", - "m_code" : 200, - "known" : ["bob", "bobby"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Farkascity", - "uri_check" : "https://farkascity.org/{account}/", - "e_code" : 200, - "e_string" : "blog-title", - "m_code" : 404, - "m_string" : "Are you sure it was ever here?", - "known" : ["gutimet", "nlowell"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "fansly", - "uri_check" : "https://apiv2.fansly.com/api/v1/account?usernames={account}", - "uri_pretty" : "https://fansly.com/{account}/posts", - "e_code" : 200, - "e_string" : "username", - "m_string" : "response: []", - "m_code" : 200, - "known" : ["Mikomin","test"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "FatSecret", - "uri_check" : "https://www.fatsecret.com/member/{account}", - "e_code" : 200, - "e_string" : "- Member", - "m_string" : "Your Key to Success", - "m_code" : 302, - "known" : ["bob", "bobby"], - "cat" : "health", - "valid" : true - }, - { - "name" : "Federated.press (Mastodon Instance)", - "uri_check" : "https://federated.press/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://federated.press/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["wood", "cliffcheney"], - "cat" : "social", - "valid" : true - }, - { - "name" : "fcv", - "uri_check" : "https://fcv.if.ua/index.php/component/comprofiler/userprofile/{account}/", - "e_code" : 200, - "e_string" : "сторінка профілю", - "m_string" : "Цей профіль або більше не існує або більше не доступний", - "m_code" : 200, - "known" : ["Ruslan", "oleg"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "figma", - "uri_check" : "https://www.figma.com/@{account}", - "e_code" : 200, - "e_string" : ") on Figma Community", - "m_string" : "The page you are looking for can't be found.", - "m_code" : 404, - "known" : ["bob", "mike"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Filmweb", - "uri_check" : "https://www.filmweb.pl/user/{account}", - "e_code" : 200, - "e_string" : "Na filmwebie od", - "m_string" : "Przepraszamy. Strona, której szukasz nie została odnaleziona.", - "m_code" : 200, - "known" : ["test", "test2"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "fine_art_america", - "uri_check" : "https://fineartamerica.com/profiles/{account}", - "e_code" : 200, - "e_string" : "Shop for artwork by", - "m_string" : "Browse through millions of independent artists in our extensive", - "m_code" : 301, - "known" : ["scott-norris", "mary-helmreich"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "Fiverr", - "uri_check" : "https://www.fiverr.com/{account}", - "e_code" : 200, - "e_string" : "member-since", - "m_string" : "", - "m_code" : 302, - "known" : ["yellowdd", "samanvay"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "Flickr", - "uri_check" : "https://www.flickr.com/photos/{account}/", - "e_code" : 200, - "e_string" : "| Flickr", - "m_string" : "", - "m_code" : 404, - "known" : ["glaciernps", "test"], - "cat" : "images", - "valid" : true - }, - { - "name" : "Flipboard", - "uri_check" : "https://flipboard.com/@{account}", - "e_code" : 200, - "e_string" : ") on Flipboard", - "m_string" : "", - "m_code" : 404, - "known" : ["cosmopolitan", "Mashable"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "flowcode", - "uri_check" : "https://www.flowcode.com/page/{account}", - "e_code" : 200, - "e_string" : ";s Flowpage", - "m_string" : "Nobody's reserved this Flowpage yet.", - "m_code" : 404, - "known" : ["evdokia", "irina"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Fodors Forum", - "uri_check" : "https://www.fodors.com/community/profile/{account}/forum-activity", - "e_code" : 200, - "e_string" : "Member since", - "m_string" : "Plan Your Trip Online", - "m_code" : 302, - "known" : ["mms", "gooster"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Fortnite Tracker", - "uri_check" : "https://fortnitetracker.com/profile/all/{account}", - "e_code" : 200, - "e_string" : "s Fortnite Stats - Fortnite Tracker", - "m_string" : "Fortnite Player Stats -", - "m_code" : 404, - "known" : ["steph", "sam"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "forumprawne.org", - "uri_check" : "https://forumprawne.org/members/{account}.html", - "e_code" : 200, - "e_string" : "Wiadomość", - "m_string" : "", - "m_code" : 500, - "known" : ["test", "test2"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Fosstodon.org (Mastodon Instance)", - "uri_check" : "https://fosstodon.org/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://fosstodon.org/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["linux", "Phil35"], - "cat" : "social", - "valid" : true - }, - { - "name" : "fotka", - "uri_check" : "https://api.fotka.com/v2/user/dataStatic?login={account}", - "uri_pretty" : "https://fotka.com/profil/{account}", - "e_code" : 200, - "e_string" : "profil", - "m_string" : "ERROR", - "m_code" : 200, - "known" : ["test", "test2"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Foursquare", - "uri_check" : "https://foursquare.com/{account}", - "e_code" : 200, - "e_string" : "on Foursquare", - "m_string" : "Foursquare - Independent Location Data Platform", - "m_code" : 302, - "known" : ["john", "ncyp23"], - "cat" : "social", - "valid" : true - }, - { - "name" : "freelancer", - "uri_check" : "https://www.freelancer.com/u/{account}", - "e_code" : 200, - "e_string" : "> joined", - "m_string" : "Looks like the page you are looking for doesn't exist.", - "m_code" : 404, - "known" : ["desiaunty", "creatvmind"], - "cat" : "business", - "valid" : true - }, - { - "name" : "freesound", - "uri_check" : "https://freesound.org/people/{account}/", - "e_code" : 200, - "e_string" : "START of Content area", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["test", "JohnDoe"], - "cat" : "music", - "valid" : true - }, - { - "name" : "FriendFinder", - "uri_check" : "https://friendfinder.com/profile/{account}", - "e_code" : 200, - "e_string" : "Last Visit:", - "m_string" : "302 Found", - "m_code" : 302, - "known" : ["alex56", "john"], - "cat" : "dating", - "valid" : true - }, - { - "name" : "FriendFinder-X", - "uri_check" : "https://www.friendfinder-x.com/profile/{account}", - "e_code" : 200, - "e_string" : "'s Dating Profile on FriendFinder-x", - "m_string" : "The document has moved", - "m_code" : 302, - "known" : ["john"], - "cat" : "dating", - "valid" : true - }, - { - "name" : "Friendweb", - "uri_check" : "https://friendweb.nl/{account}", - "e_code" : 200, - "e_string" : "friendweb.nl", - "m_string" : "Page Not Found", - "m_code" : 404, - "known" : ["HoogtePiet", "JeePee"], - "cat" : "social", - "valid" : true - }, - { - "name" : "FurAffinity", - "uri_check" : "https://www.furaffinity.net/user/{account}", - "e_code" : 200, - "e_string" : "Userpage of", - "m_string" : "user cannot be found", - "m_code" : 200, - "known" : ["karintina", "mikrogoat"], - "cat" : "images", - "valid" : true - }, - { - "name" : "Furiffic", - "uri_check" : "https://www.furiffic.com/{account}", - "e_code" : 200, - "e_string" : "Registered Since", - "m_string" : "<title>Whoops · Furiffic", - "m_code" : 404, - "known" : ["furiffic", "test", "admin"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Gab", - "uri_check" : "https://gab.com/api/v1/account_by_username/{account}", - "uri_pretty" : "https://gab.com/{account}", - "e_code" : 200, - "e_string" : "followers_count", - "m_string" : "Record not found", - "m_code" : 404, - "known" : ["RealMarjorieGreene", "LaurenBoebert"], - "cat" : "political", - "valid" : true - }, - { - "name" : "game_debate", - "uri_check" : "https://www.game-debate.com/profile/{account}", - "e_code" : 200, - "e_string" : "| , , GB pc game performance", - "m_string" : "Not Found", - "m_code" : 404, - "known" : ["Johnboy", "Crazy"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Game Jolt", - "uri_check" : "https://gamejolt.com/site-api/web/profile/@{account}/", - "uri_pretty" : "https://gamejolt.com/@{account}", - "e_code" : 200, - "e_string" : "created_on", - "m_string" : "null,", - "m_code" : 404, - "known" : ["nilllzz", "KorbloxTeams"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Gamespot", - "uri_check" : "https://www.gamespot.com/profile/{account}/", - "e_code" : 200, - "e_string" : "'s Profile - GameSpot", - "m_string" : "404: Not Found - GameSpot", - "m_code" : 200, - "known" : ["alice", "bob"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Garmin connect", - "uri_check" : "https://connect.garmin.com/modern/profile/{account}", - "e_code" : 200, - "e_string" : "window.ERROR_VIEW = null", - "m_string" : "resourceNotFoundRoute", - "m_code" : 200, - "known" : ["danielebarison", "cderalow"], - "cat" : "health", - "valid" : true - }, - { - "name" : "Geocaching", - "uri_check" : "https://www.geocaching.com/p/?u={account}", - "e_code" : 200, - "e_string" : "Groundspeak - User Profile", - "m_string" : "Error 404: DNF", - "m_code" : 404, - "known" : ["moun10bike", "niraD"], - "cat" : "social", - "valid" : true - }, - { - "name" : "getmonero", - "uri_check" : "https://forum.getmonero.org/user/{account}", - "e_code" : 200, - "e_string" :"Monero | User", - "m_string" : "Monero | Page not found. Error: 404", - "m_code" : 200, - "known" : ["silverfox", "monero"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Gettr", - "uri_check" : "https://api.gettr.com/s/user/{account}/exist", - "uri_pretty" : "https://gettr.com/user/{account}", - "e_code" : 200, - "e_string" : "success\":{", - "m_string" : "success\":false", - "m_code" : 200, - "known" : ["gettr", "support"], - "cat" : "social", - "valid" : true - }, - { - "name" : "gfycat", - "uri_check" : "https://gfycat.com/@{account}", - "e_code" : 200, - "e_string" : "gfycat-username", - "m_string" : "

Page not found

", - "m_code" : 404, - "known" : ["timviechanoi", "sannahparker"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Gigapan", - "uri_check" : "https://www.gigapan.com/profiles/{account}", - "e_code" : 200, - "e_string" : "width=\"100\"", - "m_string" : "View Gigapans", - "m_code" : 404, - "known" : ["test", "lucahammer"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Giphy", - "uri_check" : "https://giphy.com/channel/{account}", - "e_code" : 200, - "e_string" : "Share on GIPHY", - "m_string" : "404 Not Found", - "m_code" : 404, - "known" : ["buzz", "test"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Girlfriendsmeet", - "uri_check" : "http://www.girlfriendsmeet.com/profile/{account}", - "e_code" : 200, - "e_string" : "online dating profile", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["john", "junech"], - "cat" : "dating", - "valid" : true - }, - { - "name" : "gitea", - "uri_check" : "https://gitea.com/{account}", - "e_code" : 200, - "e_string" : "(Git with a cup of tea)", - "m_string" : "Not found.", - "m_code" : 404, - "known" : ["xin", "dev"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "giters", - "uri_check" : "https://giters.com/{account}", - "e_code" : 200, - "e_string" : " - Giters", - "m_string" : "This page could not be found", - "m_code" : 404, - "known" : ["WebBreacher", "C3n7ral051nt4g3ncy"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "GitHub", - "uri_check" : "https://github.com/{account}", - "e_code" : 200, - "e_string" : "p-nickname vcard-username d-block", - "m_string" : "Page not found ", - "m_code" : 404, - "known" : ["test", "WebBreacher"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "GitLab", - "uri_check" : "https://gitlab.com/{account}", - "e_code" : 200, - "e_string" : "Member since", - "m_string" : "GitLab.com offers free unlimited", - "m_code" : 302, - "known" : ["skennedy", "KennBro", "alex", "bob"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "gitee", - "uri_check" : "https://gitee.com/{account}", - "e_code" : 200, - "e_string" : "Commits, issues, and pull requests will appear", - "m_string" : "Gitee is more than a development platform", - "m_code" : 404, - "known" : ["maxim"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "gloria.tv", - "uri_check" : "https://gloria.tv/{account}", - "e_code" : 200, - "e_string" : "Last online", - "m_string" : "Page unavailable", - "m_code" : 404, - "known" : ["test", "test2"], - "cat" : "social", - "valid" : true - }, - { - "name" : "gnome_extensions", - "uri_check" : "https://extensions.gnome.org/accounts/profile/{account}", - "e_code" : 200, - "e_string" : "s Profile - GNOME Shell Extensions", - "m_string" : "Uh oh...", - "m_code" : 400, - "known" : ["johnny", "dev"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "Goodgame_Russia", - "uri_check" : "https://goodgame.ru/channel/{account}/", - "e_code" : 200, - "e_string" : "Онлайн-трансляция", - "m_string" : "Такой страницы не существует", - "m_code" : 400, - "known" : ["ejysarmat", "gegeboyz"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "gpodder.net", - "uri_check" : "https://gpodder.net/user/{account}/", - "e_code" : 200, - "e_string" : "mdash; gpodder.net", - "m_string" : "404 - Not found", - "m_code" : 404, - "known" : ["blue", "red"], - "cat" : "music", - "valid" : true - }, - { - "name" : "grandprof", - "uri_check" : "https://grandprof.org/communaute/{account}", - "e_code" : 200, - "e_string" : "s Profile", - "m_string" : "Mauvaise pioche", - "m_code" : 404, - "known" : ["mohamed01", "amine"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Gravatar", - "uri_check" : "http://en.gravatar.com/profiles/{account}.json", - "uri_pretty" : "http://en.gravatar.com/profiles/{account}", - "e_code" : 200, - "e_string" : "entry", - "m_string" : "User not found", - "m_code" : 404, - "known" : ["test"], - "cat" : "images", - "valid" : true - }, - { - "name" : "Graphics.social (Mastodon Instance)", - "uri_check" : "https://graphics.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://graphics.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["brian", "moonpotato"], - "cat" : "social", - "valid" : true - }, - { - "name" : "gumroad", - "uri_check" : "https://{account}.gumroad.com/", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "s profile picture", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["ellietalksmoney", "reallyniceimages"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "Hackaday", - "uri_check" : "https://hackaday.io/{account}", - "e_code" : 200, - "e_string" : "'s Profile | Hackaday.io", - "m_string" : "The requested URL was not found on this server. That’s all we know.", - "m_code" : 404, - "known" : ["john", "adam"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Hacker News", - "uri_check" : "https://news.ycombinator.com/user?id={account}", - "e_code" : 200, - "e_string" : "created:", - "m_string" : "No such user.", - "m_code" : 200, - "known" : ["mubix", "egypt"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Hackernoon", - "uri_check" : "https://hackernoon.com/_next/data/foL6JC7ro2FEEMD-gMKgQ/u/{account}.json", - "uri_pretty" : "https://hackernoon.com/u/{account}", - "e_code" : 200, - "e_string" : "\"profile\"", - "m_string" : "__N_REDIRECT", - "m_code" : 200, - "known" : ["john", "alex"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "hackerearth", - "uri_check" : "https://www.hackerearth.com/@{account}", - "e_code" : 200, - "e_string" : "| Developer Profile on HackerEarth", - "m_string" : "404 | HackerEarth", - "m_code" : 200, - "known" : ["peter", "liam"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "HackerOne", - "uri_check" : "https://hackerone.com/{account}", - "e_code" : 200, - "e_string" : "profile that highlights", - "m_string" : "Page not found", - "m_code" : 301, - "known" : ["yashrs", "ameerpornillos"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "HackerRank", - "uri_check" : "https://www.hackerrank.com/profile/{account}", - "e_code" : 200, - "e_string" : " | HackerRank", - "m_string" : ":: HackerRank", - "m_code" : 302, - "known" : ["johnsmith", "FMota"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "hackster", - "uri_check" : "https://www.hackster.io/{account}", - "e_code" : 200, - "e_string" : "- Hackster.io", - "m_string" : "Hackster.io - The community dedi", - "m_code" : 404, - "known" : ["ian", "bob"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "hamaha", - "uri_check" : "https://hamaha.net/{account}", - "e_code" : 200, - "e_string" : "- трейдинг форекс фьючерсы акции фондовый рынок ", - "m_string" : "HAMAHA Биткоин форум.", - "m_code" : 200, - "known" : ["oleg", "misha"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "Hanime", - "uri_check" : "https://hanime.tv/channels/{account}", - "e_code" : 200, - "e_string" : "Channel Views", - "m_code" : 302, - "m_string" : "DYNAMIC", - "known" : ["z", "god"], - "cat" : "XXXPORNXXX", - "valid": true - }, - { - "name" : "Hcommons.social (Mastodon Instance)", - "uri_check" : "https://hcommons.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://hcommons.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["hello", "iuulaio"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Heylink", - "uri_check" : "https://heylink.me/{account}/", - "e_code" : 200, - "e_string" : "HeyLink.me |", - "m_string" : "We can't find the page that you're looking for :(", - "m_code" : 404, - "known" : ["mohammed13", "johnny"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "hiberworld", - "uri_check" : "https://hiberworld.com/u/{account}", - "e_code" : 200, - "e_string" : "Creations by ", - "m_string" : "Looks like you got lost ", - "m_code" : 200, - "known" : ["Axeman", "Silver01"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "HiHello", - "uri_check" : "https://www.hihello.me/author/{account}", - "e_code" : 200, - "e_string" : "HiHello Blog Author: ", - "m_string" : "Well, this is awkward", - "m_code" : 404, - "known" : ["pascal-theriault", "kortnee-paiha"], - "cat" : "business", - "valid" : true - }, - { - "name" : "Historians.social (Mastodon Instance)", - "uri_check" : "https://historians.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://historians.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["lizcovart", "Ejoiner"], - "cat" : "social", - "valid" : true - }, - { - "name" : "HomeDesign3D", - "uri_check" : "https://en.homedesign3d.net/user/{account}", - "e_code" : 200, - "e_string" : "userspace", - "m_string" : "An Error Occurred: Internal Server Error", - "m_code" : 500, - "known" : ["carlos01", "paul"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Hometech.social (Mastodon Instance)", - "uri_check" : "https://hometech.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://hometech.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["one4ll", "seth"], - "cat" : "social", - "valid" : true - }, - { - "name" : "hoo.be", - "uri_check" : "https://hoo.be/{account}", - "e_code" : 200, - "e_string" : "--profile-name-color", - "m_string" : "Page Not Found</h3>", - "m_code" : 404, - "known" : ["chrishemsworth", "alextackie"], - "cat" : "business", - "valid" : true - }, - { - "name" : "Hostux.social (Mastodon Instance)", - "uri_check" : "https://hostux.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://hostux.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["alarig", "rsmela"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Houzz", - "uri_check" : "https://www.houzz.com/user/{account}", - "e_code" : 200, - "e_string" : "Followers", - "m_string" : "Page Not Found", - "m_code" : 404, - "known" : ["liam", "alex"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "HubPages", - "uri_check" : "https://hubpages.com/@{account}", - "e_code" : 200, - "e_string" : "name\">Followers", - "m_string" : "Sorry, that user does not exist", - "m_code" : 404, - "known" : ["greeneyes1607", "lmmartin"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "Hubski", - "uri_check" : "https://hubski.com/user/{account}", - "e_code" : 200, - "e_string" : "'s profile", - "m_string" : "No such user.", - "m_code" : 200, - "known" : ["john", "blue"], - "cat" : "social", - "valid" : true - }, - { - "name" : "hugging_face", - "uri_check" : "https://huggingface.co/{account}", - "e_code" : 200, - "e_string" : "thumbnails.huggingface.co/social-thumbnails/", - "m_string" : "Sorry, we can't find the page you are looking for.", - "m_code" : 404, - "known" : ["hack", "dev"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Iconfinder", - "uri_check" : "https://www.iconfinder.com/{account}", - "e_code" : 200, - "e_string" : "iconsets", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["roundicons", "iconfinder"], - "cat" : "images", - "valid" : true - }, - { - "name" : "icq-chat", - "uri_check" : "https://icq.icqchat.co/members/{account}/", - "e_code" : 200, - "e_string" : "ICQ chat", - "m_string" : "Oops! We ran into some problems", - "m_code" : 404, - "known" : ["brookenora.54", "bigdaddy.77"], - "cat" : "social", - "valid" : true - }, - { - "name" : "IFTTT", - "uri_check" : "https://ifttt.com/p/{account}", - "e_code" : 200, - "e_string" : "Joined", - "m_string" : "The requested page or file does not exist", - "m_code" : 404, - "known" : ["nr9992", "sss90"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "ifunny", - "uri_check" : "https://ifunny.co/user/{account}", - "e_code" : 200, - "e_string" :"subscribers", - "m_string" : "404 - page not found", - "m_code" : 404, - "known" : ["hacker", "john"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "igromania", - "uri_check" : "http://forum.igromania.ru/member.php?username={account}", - "e_code" : 200, - "e_string" : "Форум Игромании - Просмотр профиля:", - "m_string" : "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "m_code" : 200, - "known" : ["bob", "blue"], - "cat" : "social", - "valid" : true - }, - { - "name" : "ilovegrowingmarijuana", - "uri_check" : "https://support.ilovegrowingmarijuana.com/u/{account}", - "e_code" : 200, - "e_string" : "<title> Profile - ", - "m_string" : "Oops! That page doesn’t exist or is private", - "m_code" : 404, - "known" : ["ILGM.Stacy", "Mosaicmind9x"], - "cat" : "social", - "valid" : true - }, - { - "name" : "imagefap", - "uri_check" : "https://www.imagefap.com/profile/{account}", - "e_code" : 200, - "e_string" : "s Profile", - "m_string" : "Invalid uid", - "m_code" : 200, - "known" : ["lover03", "SecretSide15"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "ImageShack", - "uri_check" : "https://imageshack.com/user/{account}", - "e_code" : 200, - "e_string" : "s Images", - "m_string" : "", - "m_code" : 302, - "known" : ["test"], - "cat" : "images", - "valid" : true - }, - { - "name" : "iMGSRC.RU", - "uri_check" : "https://imgsrc.ru/main/user.php?lang=ru&user={account}", - "e_code" : 200, - "e_string" : "Присоединился", - "m_string" : "", - "m_code" : 302, - "known" : ["natalisn","andydiamond","natalyck"], - "cat" : "images", - "valid" : true - }, - { - "name" : "imgur", - "uri_check" : "https://api.imgur.com/account/v1/accounts/{account}?client_id=546c25a59c58ad7&include=trophies%2Cmedallions", - "uri_pretty" : "https://imgur.com/user/{account}/about", - "e_code" : 200, - "e_string" : "created_at", - "m_string" : "unable to find account", - "m_code" : 404, - "known" : ["OliverClothesoff70", "DadOnTheInternet"], - "cat" : "images", - "valid" : true - }, - { - "name" : "inaturalist", - "uri_check" : "https://inaturalist.nz/people/{account}", - "e_code" : 200, - "e_string" : "s Profile", - "m_string" : "404 Not Found", - "m_code" : 404, - "known" : ["greg", "tom"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Independent academia", - "uri_check" : "https://independent.academia.edu/{account}", - "e_code" : 200, - "e_string" : "- Academia.edu", - "m_string" : "Academia.edu", - "m_code" : 404, - "known" : ["peter", "LiamM"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "InkBunny", - "uri_check" : "https://inkbunny.net/{account}", - "e_code" : 200, - "e_string" : "Profile | Inkbunny, the Furry Art Community", - "m_string" : "Members | Inkbunny, the Furry Art Community", - "m_code" : 302, - "known" : ["AdminBunny", "test"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "InsaneJournal", - "uri_check" : "https://{account}.insanejournal.com/profile", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "User:", - "m_string" : "The requested URL /profile was not found on this server", - "m_code" : 200, - "known" : ["test", "pint-sized", "acroamatica"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Instagram", - "uri_pretty" : "https://instagram.com/{account}", - "uri_check" : "https://www.picuki.com/profile/{account}", - "e_code" : 200, - "e_string" : "Instagram profile with posts and stories", - "m_string" : "Nothing found!", - "m_code" : 404, - "known" : ["katyperry", "kirbstr"], - "cat" : "social", - "valid" : true - }, - { - "name" : "instructables", - "uri_check" : "https://www.instructables.com/member/{account}/", - "e_code" : 200, - "e_string" : ">Joined", - "m_string" : "", - "m_code" : 404, - "known" : ["davidandora", "test"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Internet Archive Account", - "uri_check" : "https://archive.org/details/@{account}", - "e_code" : 200, - "e_string" : "User Account", - "m_string" : "<title>cannot find account", - "m_code" : 200, - "known" : ["webbreacher", "jason_scott"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Internet Archive User Search", - "uri_check" : "https://archive.org/search.php?query={account}", - "e_code" : 200, - "e_string" : "<!--/.item-ia-->", - "m_string" : "", - "m_code" : 200, - "known" : ["test", "mubix"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "interpals", - "uri_check" : "https://www.interpals.net/{account}", - "e_code" : 200, - "e_string" : "Looking for", - "m_string" : "User not found", - "m_code" : 200, - "known" : ["test"], - "cat" : "dating", - "valid" : true - }, - { - "name" : "isMyGirl", - "uri_check" : "https://api.fxcservices.com/pub/user/{account}", - "uri_pretty" : "https://ismygirl.com/{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "User does not exist", - "known" : ["kasumineechan", "blinky"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "issuu", - "uri_check" : "https://issuu.com/{account}", - "e_code" : 200, - "e_string" : "- Issuu", - "m_string" : "Oops — we can’t seem to find the page you’re looking for.", - "m_code" : 404, - "known" : ["john", "smith"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "itch.io", - "uri_check" : "https://itch.io/profile/{account}", - "e_code" : 200, - "e_string" : "A member registered", - "m_code" : 404, - "m_string" : "We couldn't find your page", - "known" : ["prestent", "finch"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Japandict", - "uri_check" : "https://forum.japandict.com/u/{account}", - "e_code" : 200, - "e_string" : "Mentions", - "m_code" : 404, - "m_string" : "The page you requested could not be found.", - "known" : ["Yan", "Happy"], - "cat" : "social", - "valid" : true - }, - { - "name" : "jeja.pl", - "uri_check" : "https://www.jeja.pl/user,{account}", - "e_code" : 200, - "e_string" : "Profil użytkownika", - "m_string" : "Niepoprawny login", - "m_code" : 200, - "known" : ["kowal", "janek"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "JBZD", - "uri_check" : "https://jbzd.com.pl/uzytkownik/{account}", - "e_code" : 200, - "e_string" : "Dzidy użytkownika", - "m_string" : "Błąd 404", - "m_code" : 404, - "known" : ["test", "janek"], - "cat" : "images", - "valid" : true - }, - { - "name" : "Jeuxvideo", - "uri_check" : "https://www.jeuxvideo.com/profil/{account}?mode=infos", - "e_code" : 200, - "e_string" : "- jeuxvideo.com", - "m_string" : "rence des gamers", - "m_code" : 404, - "known" : ["jane", "alex"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Joe Monster", - "uri_check" : "https://joemonster.org/bojownik/{account}", - "e_code" : 200, - "e_string" : "jest prywatny", - "m_string" : "Nie wiem jak ci to powiedzieć", - "m_code" : 200, - "known" : ["dandris", "lasior"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "JSFiddle", - "uri_check" : "https://jsfiddle.net/user/{account}/", - "e_code" : 200, - "e_string" : "Settings - JSFiddle - Code Playground", - "m_string" : "That page doesn't exist.", - "m_code" : 404, - "known" : ["john", "alex"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "Justforfans", - "uri_check" : "https://justfor.fans/{account}", - "e_code" : 200, - "e_string" : " @ JustFor.Fans", - "m_string" : "", - "m_code" : 302, - "known" : ["devinfrancoxxx", "RileyChaux"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "kaggle", - "uri_check" : "https://www.kaggle.com/{account}", - "e_code" : 200, - "e_string" : "| Kaggle", - "m_string" : "Kaggle: Your Home for Data Science", - "m_code" : 404, - "known" : ["babyoda", "residentmario"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "karab.in", - "uri_check" : "https://karab.in/u/{account}", - "e_code" : 200, - "e_string" : "Dołączył:", - "m_string" : "Błąd 404", - "m_code" : 404, - "known" : ["ernest", "puszkapandory"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Keybase", - "uri_check" : "https://keybase.io/{account}", - "e_code" : 200, - "e_string" : "username", - "m_string" : "sorry, not found", - "m_code" : 404, - "known" : ["test", "mubix"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Kickstarter", - "uri_check" : "https://www.kickstarter.com/profile/{account}", - "e_code" : 200, - "e_string" : "projects", - "m_string" : "Oops, Something went missing", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "kik", - "uri_check" : "https://ws2.kik.com/user/{account}", - "e_code" : 200, - "e_string" : "firstName", - "m_string" : "The page you requested was not found", - "m_code" : 200, - "known" : ["adam", "smith", "jones"], - "cat" : "social", - "valid" : true - }, - { - "name" : "kipin", - "uri_check" : "https://kipin.app/{account}", - "e_code" : 200, - "e_string" : "kipin.app/data/photos/resized2/", - "m_string" : "Page not found. Link expired, broken or wrong.", - "m_code" : 302, - "known" : ["monethica", "asd_fca"], - "cat" : "business", - "valid" : true - }, - { - "name" : "KnowYourMeme", - "uri_check" : "https://knowyourmeme.com/users/{account}", - "e_code" : 200, - "e_string" : "Contributions", - "m_code" : 400, - "m_string" : "404, File Not Found!", - "known" : ["ayumukasuga", "butterin-yobread"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Ko-Fi", - "uri_check" : "https://ko-fi.com/{account}", - "e_code" : 200, - "e_string" : "> Buy a Coffee for", - "m_string" : "Object moved to", - "m_code" : 302, - "known" : ["frank", "marcmakescomics"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Kongregate", - "uri_check" : "https://www.kongregate.com/accounts/{account}", - "e_code" : 200, - "e_string" : "Member Since", - "m_string" : "Sorry, no account with that name was found", - "m_code" : 404, - "known" : ["test"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Kotburger", - "uri_check" : "https://kotburger.pl/user/{account}", - "e_code" : 200, - "e_string" : "Zamieszcza kotburgery od:", - "m_string" : "Nie znaleziono użytkownika o podanym loginie.", - "m_code" : 200, - "known" : ["ania", "janek"], - "cat" : "images", - "valid" : true - }, - { - "name" : "kwejk.pl", - "uri_check" : "https://kwejk.pl/uzytkownik/{account}#/tablica/", - "e_code" : 200, - "e_string" : "Kwejki użytkownika", - "m_string" : "404 - strona nie została znaleziona - KWEJK.pl", - "m_code" : 404, - "known" : ["test", "janek"], - "cat" : "images", - "valid" : true - }, - { - "name" : "LibraryThing", - "uri_check" : "https://www.librarything.com/profile/{account}", - "e_code" : 200, - "e_string" : "Collections", - "m_string" : "Error: This user doesn't exist", - "m_code" : 200, - "known" : ["test", "john"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Libretooth.gr (Mastodon Instance)", - "uri_check" : "https://libretooth.gr/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://libretooth.gr/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["infolibre", "tzinalilik"], - "cat" : "social", - "valid" : true - }, - { - "name" : "lichess", - "uri_check" : "https://lichess.org/@/{account}", - "e_code" : 200, - "e_string" : "Activity", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["mohammed01", "mohammed03"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "likeevideo", - "uri_check" : "https://likee.video/@{account}", - "e_code" : 200, - "e_string" : "https://img.like.video/", - "m_string" : " </h1>", - "m_code" : 404, - "known" : ["owlthorns", "Severkosh"], - "cat" : "social", - "valid" : true - }, - { - "name" : "LINE", - "uri_check" : "https://line.me/R/ti/p/@{account}?from=page", - "e_code" : 200, - "e_string" : "Add LINE Friends via QR Code", - "m_code" : 404, - "m_string" : "404 Not Found", - "known" : [ "roseareal", "yoasobi" ], - "cat" : "social", - "valid" : true - }, - { - "name" : "Linktree", - "uri_check" : "https://linktr.ee/{account}", - "e_code" : 200, - "e_string" : "| Linktree", - "m_string" : "The page you’re looking for doesn’t exist.", - "m_code" : 404, - "known" : ["anne", "alex"], - "cat" : "social", - "valid" : true - }, - { - "name" : "linux.org.ru", - "uri_check" : "https://www.linux.org.ru/people/{account}/profile", - "e_code" : 200, - "e_string" : "Дата регистрации", - "m_string" : "Пользователя не существует", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Litmind.club (Mastodon Instance)", - "uri_check" : "https://litmind.club/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://litmind.club/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["litmind", "aperture"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Livejournal", - "uri_check" : "https://{account}.livejournal.com", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "<link rel=\"canonical\" href=\"", - "m_string" : "<title>Unknown Journal", - "m_code" : 404, - "known" : ["jill", "john"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "livemaster.ru", - "uri_check" : "https://www.livemaster.ru/{account}", - "e_code" : 200, - "e_string" : "<title>Магазин мастера", - "m_string" : "<title>Вы попали на несуществующую страницу", - "m_code" : 404, - "known" : ["redart", "ellentoy"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "lobste.rs", - "uri_check" : "https://lobste.rs/u/{account}", - "e_code" : 200, - "e_string" : "Joined", - "m_string" : "The resource you requested was not found, or the story has been deleted.", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Lor.sh (Mastodon Instance)", - "uri_check" : "https://lor.sh/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://lor.sh/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["dump_stack", "lamountain"], - "cat" : "social", - "valid" : true - }, - { - "name" : "love_ru", - "uri_check" : "https://love.ru/{account}", - "e_code" : 200, - "e_string" : "Love.ru", - "m_string" : "404", - "m_code" : 404, - "known" : ["igor", "anna"], - "cat" : "social", - "valid" : true - }, - { - "name" : "lowcygier.pl", - "uri_check" : "https://bazar.lowcygier.pl/user/{account}", - "e_code" : 200, - "e_string" : "Zarejestrowany", - "m_string" : "Błąd 404 - Podana strona nie istnieje", - "m_code" : 404, - "known" : ["armin", "janek"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "MAGABOOK", - "uri_check" : "https://magabook.com/{account}", - "e_code" : 200, - "e_string" : "Recent Updates", - "m_string" : "Page Not Be Found", - "m_code" : 200, - "known" : ["PamelaElliott62", "eric"], - "cat" : "social", - "valid" : true - }, - { - "name" : "MAGA-CHAT", - "uri_check" : "https://maga-chat.com/{account}", - "e_code" : 200, - "e_string" : "Recent Updates", - "m_string" : "Page Not Be Found", - "m_code" : 200, - "known" : ["Rich", "RjosephJr"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Magix", - "uri_check" : "https://www.magix.info/us/users/profile/{account}/", - "e_code" : 200, - "e_string" : "About me", - "m_string" : "Page not found", - "m_code" : 200, - "known" : ["baywolfmusic", "johnebaker"], - "cat" : "music", - "valid" : true - }, - { - "name" : "MANYVIDS", - "uri_check" : "https://www.manyvids.com/results.php?keywords={account}", - "e_code" : 200, - "e_string" : " Vids</h3>", - "m_string" : "did not return any results", - "m_code" : 200, - "known" : ["alexbreecooper", "sweetkiss_69"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "MapMyTracks", - "uri_check" : "https://www.mapmytracks.com/{account}", - "e_code" : 200, - "e_string" : "Daily distance this week", - "m_string" : "Outside together", - "m_code" : 302, - "known" : ["ulirad", "CBSloan"], - "cat" : "health", - "valid" : true - }, - { - "name" : "Mapstodon.space (Mastodon Instance)", - "uri_check" : "https://mapstodon.space/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://mapstodon.space/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["Autumnhussar", "jeremy"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Maroc_nl", - "uri_check" : "https://www.maroc.nl/forums/members/{account}.html", - "e_code" : 200, - "e_string" :"Bekijk Profiel:", - "m_string" : "Deze gebruiker is niet geregistreerd", - "m_code" : 200, - "known" : ["brahim", "brahim01"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Marshmallow", - "uri_check" : "https://marshmallow-qa.com/{account}", - "e_code" : 200, - "e_string" : "さんにメッセージをおくる", - "m_string" : "For compensation, here are cats for you.", - "m_code" : 404, - "known" : ["yuino_fox", "momo"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Martech", - "uri_check" : "https://martech.org/author/{account}/", - "e_code" : 200, - "e_string" : "twitter:site", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["mani-karthik", "james-green"], - "cat" : "business", - "valid" : true - }, - { - "name" : "Massage Anywhere", - "uri_check" : "https://www.massageanywhere.com/profile/{account}", - "e_code" : 200, - "e_string" : "<title>MassageAnywhere.com Profile for ", - "m_string" : "<title>MassageAnywhere.com: Search Results", - "m_code" : 200, - "known" : ["lorilmccluskey", "LomiNYC"], - "cat" : "health", - "valid" : true - }, - { - "name" : "Mas.town (Mastodon Instance)", - "uri_check" : "https://mas.town/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://mas.town/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["brett", "cheng"], - "cat" : "social", - "valid" : true - }, - { - "name" : "masto.ai", - "uri_check" : "https://masto.ai/@{account}", - "e_code" : 200, - "e_string" : "@masto.ai) - Mastodon", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["rbreich", "stux"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Masto.nyc (Mastodon Instance)", - "uri_check" : "https://masto.nyc/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://masto.nyc/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["seano", "jayjay718"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Mastodonbooks.net (Mastodon Instance)", - "uri_check" : "https://mastodonbooks.net/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://mastodonbooks.net/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["RogerRemacle", "eugnick"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Mastodon-mastodon", - "uri_check" : "https://mastodon.social/@{account}", - "e_code" : 200, - "e_string" : "profile:username", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["john", "alex"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Mastodon.chasedem.dev (Mastodon Instance)", - "uri_check" : "https://mastodon.chasem.dev/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://mastodon.chasem.dev/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["chase", "George"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Mastodon-API", - "uri_check" : "https://mastodon.social/api/v2/search?q={account}", - "e_code" : 200, - "e_string" : "display_name", - "m_string" : "accounts\":[],\"statuses\":[],\"hashtags\":", - "m_code" : 404, - "known" : ["Richard_Littler", "webbreacher"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Mastodon.online", - "uri_check" : "https://mastodon.online/@{account}", - "e_code" : 200, - "e_string" : "@mastodon.online) - Mastodon", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["Gargron", "RDHale"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Mastodon-Toot.Community", - "uri_check" : "https://toot.community/@{account}", - "e_code" : 200, - "e_string" : "@toot.community) - toot.community", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["Johnny", "jorijn"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Mastodon-climatejustice.rocks", - "uri_check" : "https://climatejustice.rocks/@{account}", - "e_code" : 200, - "e_string" : "@climatejustice.rocks) - Mastodon", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["paula", "ahmed76farag"], - "cat" : "social", - "valid" : true - }, - { - "name" : "MCName (Minecraft)", - "uri_check" : "https://mcname.info/en/search?q={account}", - "e_code" : 200, - "e_string" : "card mb-3 text-monospace", - "m_string" : "alert alert-success px-0 py-1", - "m_code" : 200, - "known" : ["unrevive", "nxtuny"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "MCUUID (Minecraft)", - "uri_check" : "https://playerdb.co/api/player/minecraft/{account}", - "uri_pretty" : "https://mcuuid.net/?q={account}", - "e_code" : 200, - "e_string" : "Successfully found player by given ID.", - "m_string" : "minecraft.api_failure", - "m_code" : 200, - "known" : ["smithy", "bob"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Mediakits", - "uri_check" : "https://restapi.mediakits.com/mediakits/{account}", - "uri_pretty" : "https://app.mediakits.com/{account}", - "e_code" : 200, - "e_string" : "displayName", - "m_code" : 404, - "m_string" : "The requested media kit does not exist.", - "known" : ["kasuminee", "honey"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Medium", - "uri_check" : "https://{account}.medium.com/about", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "Medium member since", - "m_string" : "Out of nothing, something", - "m_code" : 404, - "known" : ["zulie", "jessicalexicus"], - "cat" : "news", - "valid" : true - }, - { - "name" : "medyczka.pl", - "uri_check" : "http://medyczka.pl/user/{account}", - "e_code" : 200, - "e_string" : "Lista uzytkownikow", - "m_string" : "This user has not registered and therefore does not have a profile to view.", - "m_code" : 200, - "known" : ["test", "janek"], - "cat" : "health", - "valid" : true - }, - { - "name" : "meet me", - "uri_check" : "https://www.meetme.com/{account}", - "e_code" : 200, - "e_string" : "Meet people like ", - "m_string" : "<title>MeetMe - Chat and Meet New People</title", - "m_code" : 302, - "known" : ["john", "marsha"], - "cat" : "dating", - "valid" : true - }, - { - "name" : "megamodels.pl", - "uri_check" : "http://megamodels.pl/{account}", - "e_code" : 200, - "e_string" : "Portfolio", - "m_string" : "OSTATNIO AKTYWNE PROFILE", - "m_code" : 200, - "known" : ["ania", "janek"], - "cat" : "social", - "valid" : true - }, - { - "name" : "memrise", - "uri_check" : "https://app.memrise.com/user/{account}/", - "e_code" : 200, - "e_string" : "followers", - "m_string" : "Memrise - Error", - "m_code" : 404, - "known" : ["alice", "john"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Mastodon-meow.social", - "uri_check" : "https://meow.social/@{account}", - "e_code" : 200, - "e_string" : "- the mastodon instances for creatures", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["meow", "novra"], - "cat" : "social", - "valid" : true - }, - { - "name" : "message_me", - "uri_check" : "https://mssg.me/{account}", - "e_code" : 200, - "e_string" : "_id", - "m_string" : "404", - "m_code" : 404, - "known" : ["sue", "david"], - "cat" : "social", - "valid" : true - }, - { - "name" : "metacritic", - "uri_check" : "https://www.metacritic.com/user/{account}", - "e_code" : 200, - "e_string" : "'s Profile - Metacritic", - "m_string" : "Sign up to get your own profile - Metacritic</", - "m_code" : 200, - "known" : ["dev", "matt"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Microsoft Technet Community", - "uri_check" : "https://social.technet.microsoft.com/profile/{account}/", - "e_code" : 200, - "e_string" : "s Profile", - "m_string" : "The resource you are looking for has been removed", - "m_code" : 404, - "known" : ["john", "test"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Minds", - "uri_check" : "https://www.minds.com/{account}/", - "e_code" : 200, - "e_string" : ") | Minds", - "m_string" : "Sorry, this channel doesn't appear to exist", - "m_code" : 404, - "known" : ["Willieleev1971", "john"], - "cat" : "political", - "valid" : true - }, - { - "name" : "Minecraft List", - "uri_check" : "https://minecraftlist.com/players/{account}", - "e_code" : 200, - "e_string" : "-->was seen on", - "m_string" : "", - "m_code" : 404, - "known" : ["alice", "bob"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Myspreadshop", - "uri_check" : "https://myspreadshop.de/{account}/shopData/list", - "uri_pretty" : "https://{account}.myspreadshop.com", - "e_code" : 200, - "e_string" : "siteName", - "m_code" : 404, - "m_string" : "not found", - "known" : ["arukori", "honey"], - "cat" : "business", - "valid" : true - }, - { - "name" : "naija_planet", - "uri_check" : "https://naijaplanet.com/{account}", - "e_code" : 200, - "e_string" : "dating Profile, ", - "m_string" : "- NaijaPlanet!", - "m_code" : 200, - "known" : ["daniel01", "wales73"], - "cat" : "dating", - "valid" : true - }, - { - "name" : "nairaland", - "uri_check" : "https://www.nairaland.com/{account}", - "e_code" : 200, - "e_string" : "s Profile", - "m_string" : "404: Page Not Found", - "m_code" : 301, - "known" : ["amakaone", "seun"], - "cat" : "news", - "valid" : true - - }, - { - "name" : "NaturalNews", - "uri_check" : "https://naturalnews.com/author/{account}/", - "e_code" : 200, - "e_string" : "All posts by", - "m_string" : "The page you are looking for cannot be found or is no longer available.", - "m_code" : 200, - "known" : ["jdheyes", "healthranger"], - "cat" : "political", - "valid" : true - }, - { - "name" : "Naver", - "uri_check" : "https://blog.naver.com/{account}", - "e_code" : 200, - "e_string" : " : 네이버 블로그", - "m_string" : "페이지를 찾을 수 없습니다", - "m_code" : 500, - "known" : ["bob", "blue"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Neocities", - "uri_check" : "https://neocities.org/site/{account}", - "e_code" : 200, - "e_string" : "noindex, follow", - "m_string" : "- Not Found", - "m_code" : 404, - "known" : ["fauux", "sadgrl"], - "cat" : "social", - "valid" : true - }, - { - "name" : "netvibes", - "uri_check" : "https://www.netvibes.com/{account}", - "e_code" : 200, - "e_string" : "userId", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["nebkacrea", "cdiljda"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Newgrounds", - "uri_check" : "https://{account}.newgrounds.com/", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "fans", - "m_string" : "Whoops, that's a swing and a miss!", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "newmeet", - "uri_check" : "https://www.newmeet.com/en/profile/{account}", - "e_code" : 200, - "e_string" : "The profile of", - "m_string" : ", , , - |", - "m_code" : 200, - "known" : ["mamadou1", "wade"], - "cat" : "dating", - "valid" : true - }, - { - "name" : "nihbuatjajan", - "uri_check" : "https://www.nihbuatjajan.com/{account}", - "e_code" : 200, - "e_string" : ") | Nih buat jajan", - "m_string" : "Nih Buat Jajan", - "m_code" : 302, - "known" : ["banyusadewa", "danirachmat"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Nitecrew (Mastodon Instance)", - "uri_check" : "https://nitecrew.rip/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://nitecrew.rip/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["Myxx", "honey"], - "cat" : "social", - "valid" : true - }, - { - "name" : "nnru", - "uri_check" : "https://{account}.www.nn.ru", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : " ", - "m_string" : "<title>Ошибка 404 -", - "m_code" : 404, - "known" : ["lena", "slava"], - "cat" : "social", - "valid" : true - }, - { - "name" : "NotABug", - "uri_check" : "https://notabug.org/{account}", - "e_code" : 200, - "e_string" : "followers and is following", - "m_string" : "Not Found", - "m_code" : 404, - "known" : ["notabug", "hp", "zPlus"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "Note", - "uri_check" : "https://note.com/{account}", - "e_code" : 200, - "e_string" : "フォロワー", - "m_code" : 404, - "m_string" : "お探しのページが見つかりません。", - "known" : ["honey", "yui"], - "cat" : "social", - "valid" : true - }, - { - "name" : "oglaszamy24h.pl", - "uri_check" : "https://oglaszamy24h.pl/profil,{account}", - "e_code" : 200, - "e_string" : "Profil użytkownika:", - "m_string" : "Nieprawidłowy link, w bazie danych nie istnieje użytkownik o podanym loginie", - "m_code" : 404, - "known" : ["kowal", "janek"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "ogu.gg", - "uri_check" : "https://ogu.gg/{account}", - "e_code" : 200, - "e_string" : "Username History", - "m_code" : 404, - "m_string" : "The member you specified is either invalid or doesn't exist.", - "known" : ["input", "maxwell"], - "cat" : "social", - "valid" : true - }, - { - "name" : "ok.ru", - "uri_check" : "https://ok.ru/{account}", - "e_code" : 200, - "e_string" : "| OK", - "m_string" : "This page does not exist on OK", - "m_code" : 404, - "known" : ["john", "aleksandrvasillev"], - "cat" : "social", - "valid" : true - }, - { - "name" : "okidoki", - "uri_check" : "https://m.okidoki.ee/ru/users/{account}/", - "e_code" : 200, - "e_string" : "Пользователь", - "m_string" : "Страница не найдена", - "m_code" : 404, - "known" : ["nastya3", "nastya"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "olx", - "uri_check" : "https://www.olx.pl/oferty/uzytkownik/{account}/", - "e_code" : 200, - "e_string" : "Obserwuj wyszukiwanie", - "m_string" : "Przepraszamy, ale nie możemy znaleźć takiej strony...", - "m_code" : 200, - "known" : ["janek", "test"], - "cat" : "shopping", - "valid" : false - }, - { - "name" : "omlet", - "uri_check" : "https://omlet.gg/profile/{account}", - "e_code" : 200, - "e_string" : "<title>Omlet Arcade -", - "m_string" : "Omlet Arcade", - "m_code" : 404, - "known" : ["hacker", "crypt0"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Opencollective", - "uri_check" : "https://opencollective.com/{account}", - "e_code" : 200, - "e_string" : "- Open Collective", - "m_string" : "Not Found", - "m_code" : 200, - "known" : ["john", "bob"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "opensource", - "uri_check" : "https://opensource.com/users/{account}", - "e_code" : 200, - "e_string" : "| Opensource.com", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["dave", "mike"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "OpenStreetMap", - "uri_check" : "https://www.openstreetmap.org/user/{account}", - "e_code" : 200, - "e_string" : "Mapper since:", - "m_string" : "does not exist", - "m_code" : 404, - "known" : ["kemkim"], - "cat" : "social", - "valid" : true - }, - { - "name" : "OPGG", - "uri_check" : "https://eune.op.gg/summoners/eune/{account}", - "e_code" : 200, - "e_string" : "- Summoner Stats - League of Legends", - "m_string" : "Guide - OP.GG", - "m_code" : 200, - "known" : ["xin", "carlos01"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Orbys", - "uri_check" : "https://orbys.net/{account}", - "e_code" : 200, - "e_string" : "profile_user_image", - "m_string" : "The page you are looking for cannot be found.", - "m_code" : 404, - "known" : ["txmustang302"], - "cat" : "social", - "valid" : true - }, - { - "name" : "osu!", - "uri_check" : "https://osu.ppy.sh/users/{account}", - "e_code" : 302, - "e_string" : "", - "m_string" : "User not found! ;_;", - "m_code" : 404, - "known" : ["stretches", "spiken8"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Our Freedom Book", - "uri_check" : "https://www.ourfreedombook.com/{account}", - "e_code" : 200, - "e_string" : "meta property=\"og:", - "m_string" : "Sorry, page not found", - "m_code" : 302, - "known" : ["DaveLipsky", "StarlaJene"], - "cat" : "social", - "valid" : true - }, - { - "name" : "ow.ly", - "uri_check" : "http://ow.ly/user/{account}", - "e_code" : 200, - "e_string" : "Images", - "m_string" : "404 error", - "m_code" : 404, - "known" : ["StopAdMedia", "jokervendetti"], - "cat" : "social", - "valid" : true - }, - { - "name" : "palnet", - "uri_check" : "https://www.palnet.io/@{account}", - "e_code" : 200, - "e_string" : " - PALnet", - "m_string" : "Unknown user account!", - "m_code" : 404, - "known" : ["abdul01", "hakim"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "Parler", - "uri_check" : "https://parler.com/user/{account}", - "e_code" : 200, - "e_string" : "People to Follow", - "m_string" : "join Parler today", - "m_code" : 302, - "known" : ["DineshDsouza", "SeanHannity"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Parler archived profile", - "uri_check" : "http://archive.org/wayback/available?url=https://parler.com/profile/{account}", - "uri_pretty" : "https://web.archive.org/web/2/https://parler.com/profile/{account}", - "e_code" : 200, - "e_string" : "\"archived_snapshots\": {\"closest\"", - "m_string" : "\"archived_snapshots\": {}", - "m_code" : 200, - "known" : ["JoePags", "dineshdsouza"], - "cat" : "archived", - "valid" : true - }, - { - "name" : "Parler archived posts", - "uri_check" : "http://archive.org/wayback/available?url=https://parler.com/profile/{account}/posts", - "uri_pretty" : "https://web.archive.org/web/2/https://parler.com/profile/{account}/posts", - "e_code" : 200, - "e_string" : "\"archived_snapshots\": {\"closest\"", - "m_string" : "\"archived_snapshots\": {}", - "m_code" : 200, - "known" : ["JoePags", "dineshdsouza"], - "cat" : "archived", - "valid" : true - }, - { - "name" : "Pastebin", - "uri_check" : "https://pastebin.com/u/{account}", - "e_code" : 200, - "e_string" : "'s Pastebin", - "m_string" : "", - "m_code" : 404, - "known" : ["test", "john"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "patch", - "uri_check" : "https://patch.com/users/{account}", - "e_code" : 200, - "e_string" : "Patch User Profile", - "m_string" : "<title>Page not found", - "m_code" : 404, - "known" : ["dave", "bob"], - "cat" : "news", - "valid" : true - }, - { - "name" : "PatientsLikeMe", - "uri_check" : "https://www.patientslikeme.com/members/{account}", - "e_code" : 200, - "e_string" : "s profile | PatientsLikeMe", - "m_string" : "", - "m_code" : 302, - "known" : ["thjuland", "Pedro0703", "Hydropioneer"], - "cat" : "health", - "valid" : true - }, - { - "name" : "Patreon", - "uri_check" : "https://www.patreon.com/{account}", - "e_code" : 200, - "e_string" : "full_name\":", - "m_string" : "errorCode\": 404,", - "m_code" : 404, - "known" : ["mubix", "doughboys"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "Patriots Win", - "uri_check" : "https://patriots.win/u/{account}/", - "e_code" : 200, - "e_string" : "nav-user active register", - "m_string" : "An error occurred", - "m_code" : 500, - "known" : ["r3deleven", "MemeFactory"], - "cat" : "political", - "valid" : true - }, - { - "name" : "Patronite", - "uri_check" : "https://patronite.pl/{account}", - "e_code" : 200, - "e_string" : "Zostań Patronem", - "m_string" : "Nie znaleźliśmy strony której szukasz.", - "m_code" : 404, - "known" : ["radio357", "radionowyswiat"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "Paypal", - "uri_check" : "https://www.paypal.com/paypalme/{account}", - "e_code" : 200, - "e_string" : "userInfo", - "m_string" : "PayPal.MeFollowers", - "m_string" : "Sorry, this page doesn’t exist", - "m_code" : 404, - "known" : ["john", "test"], - "cat" : "video", - "valid" : true - }, - { - "name" : "Pettingzoo.co (Mastodon Instance)", - "uri_check" : "https://pettingzoo.co/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://pettingzoo.co/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["tyr", "Disbear"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Pewex", - "uri_check" : "https://retro.pewex.pl/user/{account}", - "e_code" : 200, - "e_string" : "Zamieszcza eksponaty od:", - "m_string" : "Nie znaleziono użytkownika o podanym loginie.", - "m_code" : 200, - "known" : ["test", "ania"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Picsart", - "uri_check" : "https://picsart.com/u/{account}", - "post_body" : "", - "e_code" : 200, - "e_string" : "Profiles on Picsart", - "m_string" : "User not found", - "m_code" : 404, - "known" : ["john", "john404"], - "cat" : "art", - "valid" : true - }, - { - "name" : "Piekielni", - "uri_check" : "https://piekielni.pl/user/{account}", - "e_code" : 200, - "e_string" : "Zamieszcza historie od:", - "m_string" : "Nie znaleziono użytkownika o podanym loginie.", - "m_code" : 200, - "known" : ["test", "janek"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "pikabu", - "uri_check" : "https://pikabu.ru/@{account}", - "e_code" : 200, - "e_string" : "— все посты пользователя", - "m_string" : "404. Страница не найдена", - "m_code" : 404, - "known" : ["igor01", "serguei"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Pillowfort", - "uri_check" : "https://www.pillowfort.social/{account}", - "e_code" : 200, - "e_string" : "", - "m_code" : 404, - "m_string" : "That page does not exist, or you do not have the proper permissions to view it.", - "known" : ["MissMoonified", "honey"], - "cat" : "social", - "valid" : true - }, - { - "name" : "PinkBike", - "uri_check" : "https://www.pinkbike.com/u/{account}/", - "e_code" : 200, - "e_string" : "on Pinkbike", - "m_string" : "I couldn't find the page you were looking for", - "m_code" : 404, - "known" : ["whistlermountainbikepark", "paulhanson"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Pinterest", - "uri_check" : "https://www.pinterest.com/{account}/", - "e_code" : 200, - "e_string" : " - Profile | Pinterest", - "m_string" : "Whoops! We couldn't find that page", - "m_code" : 404, - "known" : ["test123", "frickcollection"], - "cat" : "social", - "valid" : true - }, - { - "name" : "pixelfed.social", - "uri_check" : "https://pixelfed.social/{account}", - "e_code" : 200, - "e_string" : "on pixelfed", - "m_string" : "pixelfed", - "m_code" : 404, - "known" : ["sarah", "john"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Playstation Network", - "uri_check" : "https://psnprofiles.com/xhr/search/users?q={account}", - "e_code" : 200, - "e_string" : "
", - "m_string" : "We couldn't find anything ", - "m_code" : 200, - "known" : ["SlimShaggy18", "ikemenzi"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Plurk", - "uri_check" : "https://www.plurk.com/{account}", - "e_code" : 200, - "e_string" : "Profile views", - "m_string" : "Register your plurk account", - "m_code" : 200, - "known" : ["test"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Pokec", - "uri_check" : "https://pokec.azet.sk/{account}", - "post_body" : "", - "e_code" : 200, - "e_string" :"idReportedUser", - "m_string" : "Neexistujúci používateľ", - "m_code" : 404, - "known" : ["tobias", "brahim1"], - "cat" : "social", - "valid" : true - }, - { - "name" : "pokemonshowdown", - "uri_check" : "https://pokemonshowdown.com/users/{account}", - "e_code" : 200, - "e_string" : "Official ladder", - "m_string" : " (Unregistered)", - "m_code" : 404, - "known" : ["red", "blue"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Pokerstrategy", - "uri_check" : "http://www.pokerstrategy.net/user/{account}/profile/", - "e_code" : 200, - "e_string" : "User profile for", - "m_string" : "Sorry, the requested page couldn't be found!", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Polchat.pl", - "uri_check" : "https://polczat.pl/forum/profile/{account}/", - "e_code" : 200, - "e_string" : "Historia wpisów", - "m_string" : "Wybrany użytkownik nie istnieje.", - "m_code" : 200, - "known" : ["test","admin"], - "cat" : "social", - "valid" : true - }, - { - "name" : "policja2009", - "uri_check" : "http://www.policja2009.fora.pl/search.php?search_author={account}", - "e_code" : 200, - "e_string" : "Znaleziono", - "m_string" : "Nie znaleziono tematów ani postów pasujących do Twoich kryteriów", - "m_code" : 200, - "known" : ["Pvwel", "janek"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Poll Everywhere", - "uri_check" : "https://pollev.com/proxy/api/users/{account}", - "uri_pretty" : "https://pollev.com/{account}", - "e_code" : 200, - "e_string" : "name", - "m_string" : "ResourceNotFound", - "m_code" : 404, - "known" : ["josh", "jsmith"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Mastodon-pol.social", - "uri_check" : "https://pol.social/@{account}", - "e_code" : 200, - "e_string" : "@pol.social", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["ftdl", "ducensor"], - "cat" : "social", - "valid" : true - }, - { - "name" : "polygon", - "uri_check" : "https://www.polygon.com/users/{account}", - "e_code" : 200, - "e_string" : "- Polygon", - "m_string" : "404 Not found", - "m_code" : 404, - "known" : ["nicodeyo", "Nicole_Clark"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "popl", - "uri_check" : "https://poplme.co/{account}", - "e_code" : 200, - "e_string" : "MuiTypography-root MuiTypography-body1 css-kj7pvm", - "m_string" : "Profile not found", - "m_code" : 200, - "known" : ["rpelite","Ee0af3d822","ashleymetzger"], - "cat" : "business", - "valid" : true - }, - { - "name" : "Pornhub Porn Stars", - "uri_check" : "https://www.pornhub.com/pornstar/{account}", - "e_code" : 200, - "e_string" : "Pornstar Rank", - "m_string" : "", - "m_code" : 301, - "known" : ["riley-reid", "alex-adams"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Pornhub Users", - "uri_check" : "https://www.pornhub.com/users/{account}", - "e_code" : 200, - "e_string" : "s Profile - Pornhub.com", - "m_string" : "Error Page Not Found", - "m_code" : 404, - "known" : ["test123"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Poshmark", - "uri_check" : "https://poshmark.com/closet/{account}", - "e_code" : 200, - "e_string" : " is using Poshmark to sell items from their closet.", - "m_string" : "Page not found - Poshmark", - "m_code" : 404, - "known" : ["alice", "bob"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "postcrossing", - "uri_check" : "https://www.postcrossing.com/user/{account}", - "e_code" : 200, - "e_string" : ", from", - "m_string" : "- Postcrossing", - "m_code" : 404, - "known" : ["Vladimir", "olga3"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Poweredbygay.social (Mastodon Instance)", - "uri_check" : "https://poweredbygay.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://poweredbygay.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["aggiepm", "eplumley1976"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Pravda.me", - "uri_check" : "https://pravda.me/@{account}", - "e_code" : 200, - "e_string" : "Российская социальная сеть (by mastodon)", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["tass", "rt_russian"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Producthunt", - "uri_check" : "https://www.producthunt.com/@{account}", - "e_code" : 200, - "e_string" : "s profile on Product Hunt", - "m_string" : "Product Hunt - All newest Products", - "m_code" : 404, - "known" : ["alex", "jack"], - "cat" : "business", - "valid" : true - }, - { - "name" : "promodj", - "uri_check" : "https://promodj.com/{account}", - "e_code" : 200, - "e_string" : "Favorite styles", - "m_string" : "Page not found :(", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "music", - "valid" : true - }, - { - "name" : "Pronouns.Page", - "uri_check" : "https://pronouns.page/api/profile/get/{account}?version=2", - "e_code" : 200, - "e_string" : "username", - "m_string" : "\"profiles\": {}", - "m_code" : 304, - "known" : ["cannabis_cervi", "user"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Pronouny", - "uri_check" : "https://pronouny.xyz/api/users/profile/username/{account}", - "e_code" : 200, - "e_string" : "username", - "m_code" : 400, - "m_string" : "That user doesn't exist", - "known" : ["test", "honey"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Prose", - "uri_check" : "https://prose.astral.camp/{account}/", - "e_code" : 200, - "e_string" : "blog-title", - "m_code" : 404, - "m_string" : "Are you sure it was ever here?", - "known" : ["endeavorance", "overthinkification"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "prv.pl", - "uri_check" : "https://www.prv.pl/osoba/{account}", - "e_code" : 200, - "e_string" : "LOGIN", - "m_string" : "Użytkownik nie istnieje.", - "m_code" : 200, - "known" : ["test", "test2"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Psstaudio", - "uri_check" : "https://psstaudio.com/u/{account}", - "e_code" : 200, - "e_string" : "id=\"profile_picture\"", - "m_code" : 404, - "m_string" : "We know you were looking for something, but it is not here", - "known" : ["JayeWilde", "baxter"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "public", - "uri_check" : "https://public.com/@{account}", - "e_code" : 200, - "e_string" : ") Investment Portfolio on Public", - "m_string" : "04 - Page Not Found - Public ", - "m_code" : 404, - "known" : ["igor1", "david2"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "pypi", - "uri_check" : "https://pypi.org/user/{account}/", - "e_code" : 200, - "e_string" : "Profile of", - "m_string" : "Page Not Found (404) · PyPI", - "m_code" : 404, - "known" : ["dev", "pydude"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "QUEER", - "uri_check" : "https://queer.pl/user/{account}", - "e_code" : 200, - "e_string" : "Społeczność", - "m_string" : "Strona nie została znaleziona", - "m_code" : 404, - "known" : ["test", "kowalski"], - "cat" : "social", - "valid" : true - }, - { - "name" : "quitter.pl", - "uri_check" : "https://quitter.pl/profile/{account}", - "e_code" : 200, - "e_string" : "@quitter.pl", - "m_string" : "Nie znaleziono", - "m_code" : 404, - "known" : ["divmod", "panoptykon"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Quora", - "uri_check" : "https://www.quora.com/profile/{account}", - "e_code" : 200, - "e_string" : "Credentials", - "m_string" : "Page Not Found", - "m_code" : 301, - "known" : ["John-Galan-5", "Alex-Clay"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Raddle.me", - "uri_check" : "https://raddle.me/user/{account}", - "e_code" : 200, - "e_string" : "sidebar__title", - "m_code" : 404, - "m_string" : "404 Not Found", - "known" : ["zephyr", "Archaplain"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Rant.li", - "uri_check" : "https://www.rant.li/{account}/", - "e_code" : 200, - "e_string" : "blog-title", - "m_code" : 404, - "m_string" : "Are you sure it was ever here?", - "known" : ["baretri", "arinbasu"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "ReblogMe", - "uri_check" : "https://{account}.reblogme.com", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "blogbody", - "m_string" : "Sorry, seems that blog doesn't exist", - "m_code" : 200, - "known" : ["staff", "chicken"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Refsheet", - "uri_check" : "https://refsheet.net/{account}", - "e_code" : 200, - "e_string" : "og:title", - "m_code" : 404, - "m_string" : "That's unfortunate. Where did it go?", - "known" : ["razzyaurealis", "saki"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "redbubble", - "uri_check" : "https://www.redbubble.com/people/{account}/shop", - "e_code" : 200, - "e_string" : "Shop | Redbubble", - "m_string" : "This is a lost cause.", - "m_code" : 404, - "known" : ["john", "blue"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "Reddit", - "uri_check" : "https://www.reddit.com/user/{account}/about/.json", - "uri_pretty" : "https://www.reddit.com/user/{account}", - "e_code" : 200, - "e_string" : "total_karma", - "m_string" : "Not Found", - "m_code" : 404, - "known" : ["koavf", "alabasterheart"], - "cat" : "social", - "valid" : true - }, - { - "name" : "REDGIFS", - "uri_check" : "https://api.redgifs.com/v1/users/{account}", - "uri_pretty" : "https://www.redgifs.com/users/{account}", - "e_code" : 200, - "e_string" : "followers", - "m_string" : "user account not found for ", - "m_code" : 404, - "known" : ["alexbreecooper", "Jose-Roberto-Rasi"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Researchgate", - "uri_check" : "https://www.researchgate.net/profile/{account}", - "e_code" : 200, - "e_string" : " | ", - "m_string" : "20+ million researchers on ResearchGate", - "m_code" : 301, - "known" : ["Tafara-Mwareya", "Jose-Roberto-Rasi"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "resumes_actorsaccess", - "uri_check" : "https://resumes.actorsaccess.com/{account}", - "e_code" : 200, - "e_string" : "- Resume | Actors Access", - "m_string" : "File was not found on this SERVER", - "m_code" : 200, - "known" : ["veronicashelby", "sarahstipe"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Revolut", - "uri_check" : "https://revolut.me/api/web-profile/{account}", - "uri_pretty" : "https://revolut.me/{account}", - "e_code" : 200, - "e_string" : "\"firstName\"", - "m_code" : 404, - "m_string" : "\"User not found\"", - "known" : ["theaswdc", "honey"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "Mastodon-rigcz.club", - "uri_check" : "https://rigcz.club/@{account}", - "e_code" : 200, - "e_string" : "@rigcz.club", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["blazej", "adam"], - "cat" : "social", - "valid" : true - }, - { - "name" : "risk.ru", - "uri_check" : "https://risk.ru/people/{account}", - "e_code" : 200, - "e_string" : "— Люди — Risk.ru", - "m_string" : "404 — Risk.ru", - "m_code" : 404, - "known" : ["igor1", "olga"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Roblox", - "uri_check" : "https://auth.roblox.com/v1/usernames/validate?username={account}&birthday=2019-12-31T23:00:00.000Z", - "uri_pretty" : "https://www.roblox.com/search/users?keyword={account}", - "e_code" : 200, - "e_string" : "Username is already in use", - "m_string" : "Username is valid", - "m_code" : 200, - "known" : ["LeetPawn", "elephant459"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "RoutineHub", - "uri_check" : "https://routinehub.co/user/{account}", - "e_code" : 200, - "e_string" : "Downloads: ", - "m_string" : "A community for Apple Shortcuts", - "m_code" : 200, - "known" : ["zachary7829", "JonathanSetzer"], - "cat" : "social", - "valid" : true - }, - { - "name" : "rsi", - "uri_check" : "https://robertsspaceindustries.com/citizens/{account}", - "e_code" : 200, - "e_string" : "CITIZEN DOSSIER", - "m_string" : "404 NAVIGATING UNCHARTED TERRITORY", - "m_code" : 404, - "known" : ["alpHackeronee", "Quantum_Physicist"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "ru_123rf", - "uri_check" : "https://ru.123rf.com/profile_{account}", - "e_code" : 200, - "e_string" : "- 123RF", - "m_string" : "Векторы, Видеоролики. Подписка", - "m_code" : 302, - "known" : ["ruslan", "olga"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "RumbleChannel", - "uri_check" : "https://rumble.com/c/{account}", - "e_code" : 200, - "e_string" : "href=https://rumble.com/c/", - "m_string" : "404 - Not found", - "m_code" : 404, - "known" : ["HodgeTwins", "SeanHannity"], - "cat" : "political", - "valid" : true - }, - { - "name" : "RumbleUser", - "uri_check" : "https://rumble.com/user/{account}", - "e_code" : 200, - "e_string" : " href=https://rumble.com/user/", - "m_string" : "404 - Not found", - "m_code" : 404, - "known" : ["SimonParkes", "djmrmusic"], - "cat" : "political", - "valid" : true - }, - { - "name" : "Salon24", - "uri_check" : "https://www.salon24.pl/u/{account}/", - "e_code" : 200, - "e_string" : "Strona główna", - "m_string" : "Salon24 - blogi, newsy, opinie i komentarze", - "m_code" : 200, - "known" : ["test", "test2"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "SaraCarterShow", - "uri_check" : "https://saraacarter.com/author/{account}/", - "e_code" : 200, - "e_string" : "| Sara A. Carter", - "m_string" : "Page not found - Sara A. Carter", - "m_code" : 301, - "known" : ["douglasbraff", "annaliese"], - "cat" : "political", - "valid" : true - }, - { - "name" : "ScoutWiki", - "uri_check" : "https://en.scoutwiki.org/User:{account}", - "e_code" : 200, - "e_string" : "NewPP limit report", - "m_string" : "is not registered", - "m_code" : 301, - "known" : ["Mlh_nl", "Benjism89"], - "cat" : "social", - "valid" : true - }, - { - "name" : "scratch", - "uri_check" : "https://scratch.mit.edu/users/{account}/", - "e_code" : 200, - "e_string" : "on Scratch", - "m_string" : "We couldn't find the page you're looking for.", - "m_code" : 404, - "known" : ["griffpatch"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "secure_donation", - "uri_check" : "https://secure.donationpay.org/{account}/", - "e_code" : 200, - "e_string" : "| DonationPay", - "m_string" : "secure.donationpay.org", - "m_code" : 404, - "known" : ["rareimpact", "safc"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "Seneporno", - "uri_check" : "https://seneporno.com/user/{account}", - "e_code" : 200, - "e_string" : "Dernier Login", - "m_string" : "Unexpected error! Please contact us and tell us more how you got to this page!", - "m_code" : 301, - "known" : ["Kalsobbc", "Boymariste"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "sentimente", - "uri_check" : "https://www.sentimente.com/amp/{account}.html", - "e_code" : 200, - "e_string" :"Chat online with", - "m_string" : "HTTP Error code: 404. Resource not found", - "m_code" : 404, - "known" : ["david01", "brahim01"], - "cat" : "dating", - "valid" : true - }, - { - "name" : "SEOClerks", - "uri_check" : "https://www.seoclerks.com/user/{account}", - "e_code" : 200, - "e_string" : "
", - "m_string" : "SEO Marketplace", - "m_code" : 302, - "known" : ["Vfmseo", "gokudadon"], - "cat" : "social", - "valid" : true - }, - { - "name" : "setlist.fm", - "uri_check" : "https://www.setlist.fm/user/{account}", - "e_code" : 200, - "e_string" : "s setlist.fm | setlist.fm", - "m_string" : "Sorry, the page you requested doesn't exist", - "m_code" : 404, - "known" : ["bendobrin", "michi"], - "cat" : "music", - "valid" : true - }, - { - "name" : "Sexworker", - "uri_check" : "https://sexworker.com/api/profile/{account}", - "uri_pretty" : "https://sexworker.com/{account}", - "e_code" : 200, - "e_string" : "profilePictureUrl", - "m_code" : 404, - "m_string" : "This user does not exist.", - "known" : ["sakii_nightshade", "annajean2319"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "SFD", - "uri_check" : "https://www.sfd.pl/profile/{account}", - "e_code" : 200, - "e_string" : "Tematy użytkownika", - "m_string" : "Brak aktywnego profilu na forum", - "m_code" : 404, - "known" : ["janek", "admin"], - "cat" : "health", - "valid" : true - }, - { - "name" : "Shanii Writes", - "uri_check" : "https://forum.shanniiwrites.com/u/{account}/summary.json", - "uri_pretty" : "https://forum.shanniiwrites.com/u/{account}", - "e_code" : 200, - "e_string" : "topics", - "m_code" : 404, - "m_string" : "The requested URL or resource could not be found.", - "known" : ["chococarmela", "wolfgamergirl37"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Shesfreaky", - "uri_check" : "https://www.shesfreaky.com/profile/{account}/", - "e_code" : 200, - "e_string" : "s Profile - ShesFreaky", - "m_code" : 302, - "m_string" : "", - "known" : ["tata23", "fitzsta"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "shopify", - "uri_check" : "https://{account}.myshopify.com", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "home", - "m_string" : "Sorry, this shop is currently unavailable.", - "m_code" : 404, - "known" : ["john", "daniel"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "shutterstock", - "uri_check" : "https://www.shutterstock.com/g/{account}", - "e_code" : 200, - "e_string" : "| Shutterstock", - "m_string" : "Well, this is unexpected...", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "images", - "valid" : true - }, - { - "name" : "skeb", - "uri_check" : "https://skeb.jp/@{account}", - "e_code" : 200, - "e_string" : ") | Skeb", - "m_code" : 503, - "m_string" : "Skeb - Request Box", - "known" : ["eipuru_", "sime064"], - "cat" : "art", - "valid" : true - }, - { - "name" : "Skyrock", - "uri_check" : "https://{account}.skyrock.com/", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "'s blog", - "m_string" : "Page not found - ", - "m_code" : 404, - "known" : ["alice", "bob"], - "cat" : "social", - "valid" : true - }, - { - "name" : "SlackHoles", - "uri_check" : "https://slackholes.com/actor/{account}/", - "e_code" : 200, - "e_string" : "Pussy and Ass Sizes", - "m_string" : "It looks like nothing was found at this location", - "m_code" : 404, - "known" : ["alexbreecooper", "roxy-raye"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "slant", - "uri_check" : "https://www.slant.co/users/{account}", - "e_code" : 200, - "e_string" : "s Profile - Slant", - "m_string" : "404 - Page Not Found - Slant", - "m_code" : 404, - "known" : ["bob", "john"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "slideshare", - "uri_check" : "https://www.slideshare.net/{account}", - "e_code" : 200, - "e_string" : "photo user-photo", - "m_string" : "is still available. Why not", - "m_code" : 404, - "known" : ["test"], - "cat" : "social", - "valid" : true - }, - { - "name" : "slides", - "uri_check" : "https://slides.com/{account}", - "e_code" : 200, - "e_string" : "Presentations by", - "m_string" : "You may have mistyped the address", - "m_code" : 404, - "known" : ["arunthomas"], - "cat" : "social", - "valid" : true - }, - { - "name" : "SmashRun", - "uri_check" : "https://smashrun.com/{account}/", - "e_code" : 200, - "e_string" : "Miles run overall", - "m_string" : "no Smashrunner with the username", - "m_code" : 404, - "known" : ["john.young"], - "cat" : "health", - "valid" : true - }, - { - "name" : "smelsy", - "uri_check" : "https://www.smelsy.com/profile/{account}", - "e_code" : 200, - "e_string" : "Smelsy -", - "m_string" : "Server Error", - "m_code" : 500, - "known" : ["mohamed01", "ahmed"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "SmugMug", - "uri_check" : "https://{account}.smugmug.com", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "schema.org/Person", - "m_string" : "schema.org/Thing", - "m_code" : 404, - "known" : ["wow", "jill"], - "cat" : "images", - "valid" : true - }, - { - "name" : "smule", - "uri_check" : "https://www.smule.com/api/profile/?handle={account}", - "uri_pretty" : "https://www.smule.com/{account}", - "e_code" : 200, - "e_string" : "account_id", - "m_string" : "code\": 65", - "m_code" : 400, - "known" : ["cgrrose", "John___Anish"], - "cat" : "music", - "valid" : true - }, - { - "name" : "Snapchat", - "uri_check" : "https://feelinsonice.appspot.com/web/deeplink/snapcode?username={account}&size=400&type=SVG", - "uri_pretty" : "https://www.snapchat.com/add/{account}", - "e_code" : 200, - "e_string" : "</clipPath>", - "m_string" : "http://www.w3.org/1999/xlink", - "m_code" : 404, - "known" : ["billy23", "mrbean", "alexis4"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Snapchat Stories", - "uri_check" : "https://story.snapchat.com/s/{account}", - "e_code" : 200, - "e_string" : "is on Snapchat!", - "m_string" : "Not_Found", - "m_code" : 404, - "known" : ["djkhaled305", "mileycyrus"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Snipfeed", - "uri_check" : "https://snipfeed.co/{account}", - "e_code" : 200, - "e_string" : "creatorLink", - "m_code" : 404, - "m_string" : "Oops, you hit a dead end!", - "known" : ["mycherrycrush", "honey"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "social.bund.de", - "uri_check" : "https://social.bund.de/@{account}", - "e_code" : 200, - "e_string" : "@social.bund.de) - social.bund.de", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["bfdi", "bmdv"], - "cat" : "social", - "valid" : true - }, - { - "name" : "soc.citizen4.eu", - "uri_check" : "https://soc.citizen4.eu/profile/{account}/profile", - "e_code" : 200, - "e_string" : "@soc.citizen4.eu", - "m_string" : "Nie znaleziono", - "m_code" : 404, - "known" : ["admin", "miklo"], - "cat" : "social", - "valid" : true - }, - { - "name" : "social_msdn", - "uri_check" : "https://social.msdn.microsoft.com/profile/{account}", - "e_code" : 200, - "e_string" : "Member Since", - "m_string" : "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.", - "m_code" : 404, - "known" : ["edoardo", "microsoftfan"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Mastodon-social_tchncs", - "uri_check" : "https://social.tchncs.de/@{account}", - "e_code" : 200, - "e_string" : "profile:username", - "m_string" : "The page you are looking for isn't here", - "m_code" : 301, - "known" : ["michael", "frank"], - "cat" : "social", - "valid" : true - }, - { - "name" : "sofurry", - "uri_check" : "https://{account}.sofurry.com", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "'s Profile | SoFurry", - "m_string" : "SoFurry - Error | SoFurry", - "m_code" : 404, - "known" : ["reeden-landshey", "tigerzero"], - "cat" : "art", - "valid" : true - }, - { - "name" : "SoliKick", - "uri_check" : "https://solikick.com/-{account}", - "e_code" : 200, - "e_string" : "page_guest_users-view", - "m_string" : "This item has been removed or is no longer available", - "m_code" : 302, - "known" : ["milehighed", "Edmundus"], - "cat" : "social", - "valid" : true - }, - { - "name" : "soloby", - "uri_check" : "http://www.soloby.ru/user/{account}", - "e_code" : 200, - "e_string" : "- Универ soloBY", - "m_string" : "Универ soloBY", - "m_code" : 404, - "known" : ["igor", "dana"], - "cat" : "social", - "valid" : true - }, - { - "name" : "solo.to", - "uri_check" : "https://solo.to/{account}", - "e_code" : 200, - "e_string" : "create your own page", - "m_code" : 404, - "m_string" : "The page you're looking for isn't here.", - "known" : ["saruei", "yui"], - "cat" : "social", - "valid" : true - }, - { - "name" : "SoundCloud", - "uri_check" : "https://soundcloud.com/{account}", - "e_code" : 200, - "e_string" : "SoundCloud", - "m_string" : "sounds", - "m_code" : 404, - "known" : ["test123"], - "cat" : "music", - "valid" : true - }, - { - "name" : "Soup", - "uri_check" : "https://www.soup.io/author/{account}", - "e_code" : 200, - "e_string" : "Author at Soup.io", - "m_string" : "Soup.io - News, Sports, Entertainment, TV, Tech, Gaming", - "m_code" : 301, - "known" : ["john", "cristina"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "Sourceforge", - "uri_check" : "https://sourceforge.net/u/{account}/profile", - "e_code" : 200, - "e_string" : " / Profile", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["alice", "bob"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "SpankPay", - "uri_check" : "https://api.spankpay.com/graphql", - "uri_pretty" : "https://spankpay.me/{account}", - "post_body" : "NEED TO FIX THIS", - "e_code" : 200, - "e_string" : "headerPhoto", - "m_string" : "User not found", - "m_code" : 404, - "known" : ["Medroxy","brittanyandrews"], - "cat" : "finance", - "valid" : false - }, - { - "name" : "Speaker Deck", - "uri_check" : "https://speakerdeck.com/{account}/", - "e_code" : 200, - "e_string" : ") on Speaker Deck", - "m_string" : "User Not Found - Speaker Deck", - "m_code" : 404, - "known" : ["petecheslock", "turbosmart45"], - "cat" : "social", - "valid" : true - }, - { - "name" : "speedrun", - "uri_check" : "https://www.speedrun.com/user/{account}/", - "e_code" : 200, - "e_string" : "Runs - ", - "m_string" : "speedrun.com", - "m_code" : 404, - "known" : ["mike", "chris"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "SpiceWorks", - "uri_check" : "https://community.spiceworks.com/people/{account}", - "e_code" : 200, - "e_string" : "Portfolio of IT Projects - Spiceworks", - "m_string" : "Page Not Found", - "m_code" : 404, - "known" : ["spicerex", "rod-it"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "sporcle", - "uri_check" : "https://www.sporcle.com/user/{account}/people/", - "e_code" : 200, - "e_string" : "'s Sporcle Friends", - "m_string" : "This Sporcle user cannot be found.", - "m_code" : 301, - "known" : ["Test", "lolshortee"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Spotify", - "uri_check" : "https://open.spotify.com/user/{account}", - "e_code" : 200, - "e_string" : "on Spotify", - "m_string" : "Spotify - Web Player", - "m_code" : 200, - "known" : ["kexp_official", "mkbhd"], - "cat" : "music", - "valid" : true - }, - { - "name" : "Steam", - "uri_check" : "https://steamcommunity.com/id/{account}", - "e_code" : 200, - "e_string" : "g_rgProfileData =", - "m_string" : "Steam Community :: Error", - "m_code" : 200, - "known" : ["test"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "steemit", - "uri_check" : "https://steemit.com/@{account}", - "e_code" : 200, - "e_string" : "blog", - "m_string" : "Page Not Found - Steemit", - "m_code" : 301, - "known" : ["petlover", "zalat"], - "cat" : "social", - "valid" : true - }, - { - "name" : "steller", - "uri_check" : "https://steller.co/{account}", - "e_code" : 200, - "e_string" : " on Steller", - "m_string" : "", - "m_code" : 404, - "known" : ["jeannnn", "havwoods"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "Stoners.social (Mastodon Instance)", - "uri_check" : "https://stoners.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://stoners.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["Tony", "slothmagic"], - "cat" : "social", - "valid" : true - }, - { - "name" : "StoryCorps", - "uri_check" : "https://archive.storycorps.org/user/{account}/", - "e_code" : 200, - "e_string" : "archive author", - "m_string" : "We're sorry, but the page", - "m_code" : 404, - "known" : ["jthorstad", "paul-swider"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "StreamElements", - "uri_check" : "https://api.streamelements.com/kappa/v2/channels/{account}", - "uri_pretty" : "https://streamelements.com/{account}", - "e_code" : 200, - "e_string" : "\"providerId\"", - "m_code" : 404, - "m_string" : "error", - "known" : ["honey", "dude"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "StreamLabs", - "uri_check" : "https://streamlabs.com/api/v6/user/{account}", - "uri_pretty" : "https://streamlabs.com/{account}/tip", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 401, - "m_string" : "UNAUTHORIZED", - "known" : ["veibae", "cutie_cori"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "Stripchat", - "uri_check" : "https://stripchat.com/{account}", - "e_code" : 200, - "e_string" : "I Do in My Shows:", - "m_string" : "Oops. The page you were looking for doesn't exist", - "m_code" : 404, - "known" : ["DulcieRichard", "Katie-Mili"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Subscribestar", - "uri_check" : "https://subscribestar.adult/{account}", - "e_code" : 200, - "e_string" : "CREATOR STATS", - "m_code" : 404, - "m_string" : "WE ARE SORRY, THE PAGE YOU REQUESTED CANNOT BE FOUND", - "known" : ["missmoonified", "honey"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "sukebei.nyaa.si", - "uri_check" : "https://sukebei.nyaa.si/user/{account}", - "e_code" : 200, - "e_string" : "'s torrents", - "m_code" : 404, - "m_string" : "404 Not Found", - "known" : ["kouhy76", "Rektr0"], - "cat" : "video", - "valid" : true - }, - { - "name" : "Suzuri", - "uri_check" : "https://suzuri.jp/{account}", - "e_code" : 200, - "e_string" : "Items", - "m_string" : "Push Space-key", - "m_code" : 404, - "known" : ["itochanxxx", "alex"], - "cat" : "business", - "valid" : true - }, - { - "name" : "szmer.info", - "uri_check" : "https://szmer.info/u/{account}", - "e_code" : 200, - "e_string" : "Joined", - "m_string" : "Code: Couldn't find that username or email.", - "m_code" : 200, - "known" : ["przeczzpreczem", "Xavier"], - "cat" : "social", - "valid" : true - }, - { - "name" : "tabletoptournament", - "uri_check" : "https://www.tabletoptournaments.net/eu/player/{account}", - "e_code" : 200, - "e_string" : "- Player Profile | T³ - TableTop Tournaments", - "m_string" : "No player with the nickname", - "m_code" : 200, - "known" : ["Lars01", "john"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Tagged", - "uri_check" : "https://secure.tagged.com/{account}", - "e_code" : 200, - "e_string" : "s Profile", - "m_string" : "Tagged - The social network for meeting new people", - "m_code" : 302, - "known" : ["Samantha", "Robert"], - "cat" : "social", - "valid" : true - }, - { - "name" : "TamTam", - "uri_check" : "https://tamtam.chat/{account}", - "e_code" : 200, - "e_string" : "deeplink=tamtam://chat/", - "m_string" : "ТамТам", - "m_code" : 302, - "known" : ["blue", "John"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Tanuki.pl", - "uri_check" : "https://tanuki.pl/profil/{account}", - "e_code" : 200, - "e_string" : "Dołączył", - "m_string" : "Nie ma takiego użytkownika", - "m_code" : 404, - "known" : ["ania", "avellana"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "TAPiTAG", - "uri_check" : "https://account.tapitag.co/tapitag/api/v1/{account}", - "uri_pretty" : "https://account.tapitag.co/{account}", - "e_code" : 200, - "e_string" : "User details are Showing", - "m_string" : "The rf number is not valid", - "m_code" : 200, - "known" : ["JonathanWallace", "gearoidconsidine"], - "cat" : "business", - "valid" : true - }, - { - "name" : "Tappy", - "uri_check" : "https://api.tappy.tech/api/profile/username/{account}", - "uri_pretty" : "https://www.tappy.tech/{account}", - "e_code" : 200, - "e_string" : "user_id", - "m_string" : "Profile of username Not Found", - "m_code" : 200, - "known" : ["alexborrelli", "domocann"], - "cat" : "business", - "valid" : true - }, - { - "name" : "Taringa", - "uri_check" : "https://www.taringa.net/{account}", - "e_code" : 200, - "e_string" : " en Taringa!", - "m_string" : "Colectiva en Taringa!", - "m_code" : 301, - "known" : ["jocaxav", "engendrometal"], - "cat" : "social", - "valid" : true - }, - { - "name" : "taskrabbit", - "uri_check" : "https://www.taskrabbit.com/profile/{account}/about", - "e_code" : 200, - "e_string" : "’s Profile", - "m_string" : "", - "m_code" : 302, - "known" : ["john", "sam"], - "cat" : "business", - "valid" : true - }, - { - "name" : "Teamtreehouse", - "uri_check" : "https://teamtreehouse.com/{account}", - "e_code" : 200, - "e_string" : "Member Since", - "m_string" : "Oops, Something went missing", - "m_code" : 404, - "known" : ["john"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "Teddygirls", - "uri_check" : "https://teddysgirls.net/models/{account}", - "e_code" : 200, - "e_string" : ";s exclusive page to subscribe to her", - "m_string" : "The page you were looking for doesn't exist", - "m_code" : 404, - "known" : ["jaycee-starr", "chubbychick94"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Teespring", - "uri_check" : "https://commerce.teespring.com/v1/stores?slug={account}", - "uri_pretty" : "https://{account}.creator-spring.com", - "e_code" : 200, - "e_string" : "sellerToken", - "m_code" : 404, - "m_string" : "{\"errors\":{\"store\":[\"not found\"]}}", - "known" : ["missmoonified", "honey"], - "cat" : "business", - "valid" : true - }, - { - "name" : "Teknik", - "uri_check" : "https://user.teknik.io/{account}", - "e_code" : 200, - "e_string" : "Public Key", - "m_string" : "The user does not exist", - "m_code" : 200, - "known" : ["red", "bob"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Telegram", - "uri_check" : "https://t.me/{account}", - "e_code" : 200, - "e_string" : "tgme_page_title", - "m_string" : "noindex, nofollow", - "m_code" : 200, - "known" : ["alice", "giovanni"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Tellonym", - "uri_check" : "https://tellonym.me/{account}", - "e_code" : 200, - "e_string" : "on Tellonym", - "m_string" : "- Honest & Anonymous Feedback", - "m_code" : 404, - "known" : ["jane", "jimmy"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Tenor", - "uri_check" : "https://tenor.com/users/{account}", - "e_code" : 200, - "e_string" : "
", - "m_code" : 404, - "m_string" : "We could not find the page you were looking for.", - "known" : ["gnutv", "d33jay23"], - "cat" : "images", - "valid" : true - }, - { - "name" : "TF2 Backpack Examiner", - "uri_check" : "http://www.tf2items.com/id/{account}/", - "e_code" : 200, - "e_string" : "TF2 Backpack -", - "m_string" : "", - "m_code" : 302, - "known" : ["test"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Mastodon-tfl.net.pl", - "uri_check" : "https://tfl.net.pl/@{account}", - "e_code" : 200, - "e_string" : "@tfl.net.pl", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["jaczad", "manies"], - "cat" : "social", - "valid" : true - }, - { - "name" : "themeforest", - "uri_check" : "https://themeforest.net/user/{account}", - "e_code" : 200, - "e_string" : "s profile on ThemeForest", - "m_string" : "Page Not Found | ThemeForest", - "m_code" : 301, - "known" : ["john", "bob"], - "cat" : "art", - "valid" : true - }, - { - "name" : "thegatewaypundit", - "uri_check" : "https://www.thegatewaypundit.com/author/{account}/", - "e_code" : 200, - "e_string" : "summary", - "m_string" : "Not found, error 404", - "m_code" : 404, - "known" : ["patti", "joehoft"], - "cat" : "political", - "valid" : true - }, - { - "name" : "theguardian", - "uri_check" : "https://www.theguardian.com/profile/{account}", - "e_code" : 200, - "e_string" : "https://www.theguardian.com/profile/", - "m_string" : "Page not found | The Guardian", - "m_code" : 404, - "known" : ["minna-salami", "johnnaughton"], - "cat" : "news", - "valid" : true - }, - { - "name" : "Thetattooforum", - "uri_check" : "https://www.thetattooforum.com/members/{account}/", - "e_code" : 200, - "e_string" : "Insert This Gallery", - "m_string" : "We’re sorry", - "m_code" : 500, - "known" : ["mixdop", "modifyielts"], - "cat" : "art", - "valid" : true - }, - { - "name" : "TikTok", - "uri_check" : "https://www.tiktok.com/oembed?url=https://www.tiktok.com/@{account}", - "uri_pretty" : "https://www.tiktok.com/@{account}?lang=en", - "e_code" : 200, - "e_string" : "author_url", - "m_string" : "Something went wrong", - "m_code" : 400, - "known" : ["gordonramsayofficial", "pookiebear73"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Tilde.zone (Mastodon Instance)", - "uri_check" : "https://tilde.zone/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://tilde.zone/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["ben", "lunatic"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Tinder", - "uri_check" : "https://tinder.com/@{account}", - "e_code" : 200, - "e_string" : ") | Tinder", - "m_string" : "Error |", - "m_code" : 404, - "known" : ["WebBreacher", "OSINT_Tactical"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Twitter archived profile", - "uri_check" : "http://archive.org/wayback/available?url=https://twitter.com/{account}", - "uri_pretty" : "https://web.archive.org/web/2/https://twitter.com/{account}", - "e_code" : 200, - "e_string" : "\"archived_snapshots\": {\"closest\"", - "m_string" : "\"archived_snapshots\": {}", - "m_code" : 200, - "known" : ["jack", "dineshdsouza"], - "cat" : "archived", - "valid" : true - }, - { - "name" : "Twitter archived tweets", - "uri_check" : "http://archive.org/wayback/available?url=https://twitter.com/{account}/status/*", - "uri_pretty" : "https://web.archive.org/web/*/https://twitter.com/{account}/status/*", - "e_code" : 200, - "e_string" : "\"archived_snapshots\": {\"closest\"", - "m_string" : "\"archived_snapshots\": {}", - "m_code" : 200, - "known" : ["jack", "dineshdsouza"], - "cat" : "archived", - "valid" : true - }, - { - "name" : "twoplustwo", - "uri_check" : "https://forumserver.twoplustwo.com/ajax.php?do=usersearch", - "uri_pretty" : "https://forumserver.twoplustwo.com/search.php", - "post_body" : "securitytoken=guest&do=usersearch&fragment={account}", - "e_code" : 200, - "e_string" : "userid=", - "m_string" : "", - "m_code" : 404, - "known" : ["redsox", "adam"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "twpro", - "uri_check" : "https://twpro.jp/{account}", - "e_code" : 200, - "e_string" : "おとなりさん", - "m_code" : 404, - "m_string" : "をご確認ください。", - "known" : ["wsise47", "tsukiusa630"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Ubisoft", - "uri_check" : "https://discussions.ubisoft.com/user/{account}", - "e_code" : 200, - "e_string" : "| Ubisoft Discussion Forums", - "m_string" : "You seem to have stumbled upon a page that does not exist.", - "m_code" : 404, - "known" : ["fizzle_fuze", "th05324"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Udemy", - "uri_check" : "https://www.udemy.com/user/{account}/", - "e_code" : 200, - "e_string" : "| Udemy", - "m_string" : "Online Courses - Learn Anything, On Your Schedule | Udemy", - "m_code" : 301, - "known" : ["stephane-maarek", "lizbrown3"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "uefconnect", - "uri_check" : "https://uefconnect.uef.fi/en/person/{account}/", - "e_code" : 200, - "e_string" : "- UEFConnect", - "m_string" : "Page not found - UEFConnect", - "m_code" : 404, - "known" : ["heli.mutanen", "mette.heiskanen"], - "cat" : "business", - "valid" : true - }, - { - "name" : "uid", - "uri_check" : "http://uid.me/{account}", - "e_code" : 200, - "e_string" : "- uID.me", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["john", "peter"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Uiuxdev.social (Mastodon Instance)", - "uri_check" : "https://uiuxdev.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://uiuxdev.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["msr", "GravelLegend"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Ultras Diary", - "uri_check" : "http://ultrasdiary.pl/u/{account}/", - "e_code" : 200, - "e_string" : "Mecze wyjazdowe:", - "m_string" : "Ile masz wyjazdów?", - "m_code" : 404, - "known" : ["janek", "kowal"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "ulub.pl", - "uri_check" : "http://ulub.pl/profil/{account}", - "e_code" : 200, - "e_string" : "Muzyka (", - "m_string" : "Strona nie istnieje.", - "m_code" : 404, - "known" : ["janek", "test"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "unsplash", - "uri_check" : "https://unsplash.com/@{account}", - "e_code" : 200, - "e_string" : "| Unsplash Photo Community", - "m_string" : "Hm, the page you were looking for doesn't seem to exist anymore.", - "m_code" : 404, - "known" : ["john", "alex"], - "cat" : "images", - "valid" : true - }, - { - "name" : "untappd", - "uri_check" : "https://untappd.com/user/{account}/", - "e_code" : 200, - "e_string" : "on Untappd", - "m_string" : "Untappd | 404", - "m_code" : 404, - "known" : ["test", "phil"], - "cat" : "social", - "valid" : true - }, - { - "name" : "USA Life", - "uri_check" : "https://usa.life/{account}", - "e_code" : 200, - "e_string" : "Please log in to like, share and comment", - "m_string" : "Sorry, page not found", - "m_code" : 302, - "known" : ["abaynes79", "not1face"], - "cat" : "social", - "valid" : true - }, - { - "name" : "utip.io", - "uri_check" : "https://utip.io/creator/profile/{account}", - "uri_pretty" : "https://utip.io/{account}", - "e_code" : 200, - "e_string" : "\"userName\"", - "m_code" : 404, - "m_string" : "Not a valid web service key", - "known" : ["honey", "chloe"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "Uwumarket", - "uri_check" : "https://uwumarket.us/collections/{account}", - "e_code" : 200, - "e_string" : "collection-hero__text-wrapper", - "m_code" : 404, - "m_string" : "Page not found", - "known" : ["saki", "aicandii"], - "cat" : "business", - "valid" : true - }, - { - "name" : "uwu.ai", - "uri_check" : "https://{account}.uwu.ai/", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "property=\"twitter:card\"", - "m_code" : 404, - "m_string" : "Sorry, the requested page could not be found.", - "known" : ["spooky", "citruciel"], - "cat" : "social", - "valid" : true - }, - { - "name" : "vsco", - "uri_check" : "https://vsco.co/{account}/gallery", - "e_code" : 200, - "e_string" : "| VSCO", - "m_string" : "This page does not exist", - "m_code" : 404, - "known" : ["sam", "becca"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Venmo", - "uri_check" : "https://account.venmo.com/u/{account}", - "e_code" : 200, - "e_string" : "profileInfo_username__", - "m_string" : "Sorry, the page you requested does not exist!", - "m_code" : 404, - "known" : ["John-Goolsby-8", "kate-mura"], - "cat" : "finance", - "valid" : true - }, - { - "name" : "Vero", - "uri_check" : "https://vero.co/{account}", - "e_code" : 200, - "e_string" : "on VERO™", - "m_string" : "The page you are looking for doesn't exist.", - "m_code" : 404, - "known" : ["alex", "johnny"], - "cat" : "art", - "valid" : true - }, - { - "name" : "vibilagare", - "uri_check" : "https://www.vibilagare.se/users/{account}", - "e_code" : 200, - "e_string" : "Profil på vibilagare.se", - "m_string" : "Sidan hittades inte |", - "m_code" : 404, - "known" : ["lars01", "sven"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "viddler", - "uri_check" : "https://www.viddler.com/channel/{account}/", - "e_code" : 200, - "e_string" : "profile-details", - "m_string" : "User not found", - "m_code" : 404, - "known" : ["GamingParodies", "planphilly"], - "cat" : "video", - "valid" : true - }, - { - "name" : "Vimeo", - "uri_check" : "https://vimeo.com/{account}", - "e_code" : 200, - "e_string" : "is a member of Vimeo, the", - "m_string" : "Make sure you’ve typed the URL correctly", - "m_code" : 404, - "known" : ["john", "alice"], - "cat" : "video", - "valid" : true - }, - { - "name" : "Vine", - "uri_check" : "https://vine.co/api/users/profiles/vanity/{account}", - "uri_pretty" : "https://vine.co/{account}", - "e_code" : 200, - "e_string" : "userId", - "m_string" : "That record does not exist", - "m_code" : 404, - "known" : ["TomHarlock", "Seks"], - "cat" : "video", - "valid" : true - }, - { - "name" : "visnesscard", - "uri_check" : "https://my.visnesscard.com/Home/GetCard/{account}", - "uri_pretty" : "https://my.visnesscard.com/{account}", - "e_code" : 200, - "e_string" : "end_point", - "m_string" : "card_id\": 0", - "m_code" : 200, - "known" : ["Lisa-Gordon", "Bill-Schaeffer"], - "cat" : "business", - "valid" : true - }, - { - "name" : "Vivino", - "uri_check" : "https://www.vivino.com/users/{account}", - "e_code" : 200, - "e_string" : "", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["test", "admin"], - "cat" : "video", - "valid" : true - }, - { - "name" : "VIP-blog", - "uri_check" : "http://{account}.vip-blog.com", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "blog : ", - "m_string" : "Blog inexistant", - "m_code" : 200, - "known" : ["sarah", "brahim01"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "Virustotal", - "uri_check" : "https://www.virustotal.com/gui/user/{account}", - "e_code" : 200, - "e_string" :"USER PROFILE", - "m_string" : "User not found", - "m_code" : 200, - "known" : ["cyber", "cybersecstu"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "VK", - "uri_check" : "https://vk.com/{account}", - "e_code" : 200, - "e_string" : "id=\"profile\"", - "m_string" : "404 Not Found", - "m_code" : 404, - "known" : ["ches_ches", "mike.kidlazy"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Vkl.world (Mastodon Instance)", - "uri_check" : "https://vkl.world/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://vkl.world/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["king", "aniver"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Vmst.io (Mastodon Instance)", - "uri_check" : "https://vmst.io/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://vmst.io/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["vmstan", "honestdave"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Voice123", - "uri_check" : "https://voice123.com/api/providers/search/{account}", - "uri_pretty" : "https://voice123.com/{account}", - "e_code" : 200, - "e_string" : "user_id", - "m_code" : 200, - "m_string" : "[]", - "known" : ["dottovuu", "maheshsaha1992"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Voices.com", - "uri_check" : "https://www.voices.com/profile/{account}/", - "e_code" : 200, - "e_string" : "Last Online", - "m_string" : "Try going back to the previous page or see below for more options", - "m_code" : 301, - "known" : ["briankirchoff", "bryankopta"], - "cat" : "business", - "valid" : true - }, - { - "name" : "Wanelo", - "uri_check" : "https://wanelo.co/{account}", - "e_code" : 200, - "e_string" : "on Wanelo", - "m_string" : "Hmm, that's embarrassing", - "m_code" : 404, - "known" : ["lisandrareyes"], - "cat" : "shopping", - "valid" : true, - "invalid_chars" : "." - }, - { - "name" : "watchmemore.com", - "uri_check" : "https://api.watchmemore.com/api3/profile/{account}/", - "uri_pretty" : "https://watchmemore.com/{account}/", - "e_code" : 200, - "e_string" : "displayName", - "m_string" : "notExists", - "m_code" : 400, - "known" : ["medroxy", "nodjev"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "warriorforum", - "uri_check" : "https://www.warriorforum.com/members/{account}.html", - "e_code" : 200, - "e_string" : "| Warrior Forum", - "m_string" : "Oops | Warrior Forum -", - "m_code" : 400, - "known" : ["alex", "peter"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Watchmyfeed", - "uri_check" : "https://watchmyfeed.com/{account}", - "e_code" : 200, - "e_string" : "SEND ME A TIP", - "m_string" : "", - "m_string" : "This user doesn't seem to be in our database.", - "m_code" : 404, - "known" : ["weasyl", "test"], - "cat" : "images", - "valid" : true - }, - { - "name" : "weebly", - "uri_check" : "https://{account}.weebly.com/", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "
", - "m_string" : "404 - Page Not Found", - "m_code" : 404, - "known" : ["dave", "john"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "weheartit", - "uri_check" : "https://weheartit.com/{account}", - "e_code" : 200, - "e_string" : " on We Heart It", - "m_string" : " (404)", - "m_code" : 404, - "known" : ["alice", "bob"], - "cat" : "social", - "valid" : true - }, - { - "name" : "wego", - "uri_check" : "https://wego.social/{account}", - "e_code" : 200, - "e_string" : "Following", - "m_string" : "Sorry, page not found!", - "m_code" : 302, - "known" : ["mmish2", "Lisa_M_S"], - "cat" : "political", - "valid" : true - }, - { - "name" : "weibo", - "uri_check" : "https://tw.weibo.com/{account}", - "e_code" : 200, - "e_string" : "粉絲", - "m_string" : "Oops!", - "m_code" : 404, - "known" : ["chentingni", "fbb0916"], - "cat" : "social", - "valid" : true - }, - { - "name" : "WeTransfer", - "uri_check" : "https://{account}.wetransfer.com", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "default_recipient_email", - "m_string" : "", - "m_code" : 302, - "known" : ["mark", "joe"], - "cat" : "misc", - "valid" : true - }, - { - "name" : "Wikidot", - "uri_check" : "http://www.wikidot.com/user:info/{account}", - "e_code" : 200, - "e_string" : "Wikidot.com:", - "m_string" : "Free and Pro Wiki Hosting", - "m_code" : 404, - "known" : ["jack", "allen"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Wikipedia", - "uri_check" : "https://en.wikipedia.org/w/api.php?action=query&format=json&list=users&ususers={account}", - "uri_pretty" : "https://en.wikipedia.org/wiki/User:{account}", - "e_code" : 200, - "e_string" : "userid", - "m_string" : "missing:", - "m_code" : 200, - "known" : ["Mcd51", "W._Frank"], - "cat" : "news", - "valid" : true - }, - { - "name" : "Wimkin-PublicProfile", - "uri_check" : "https://wimkin.com/{account}", - "e_code" : 200, - "e_string" : "is on WIMKIN", - "m_string" : " The page you are looking for cannot be found.", - "m_code" : 404, - "known" : ["alex", "smith", "boomer"], - "cat" : "political", - "valid" : true - }, - { - "name" : "Wireclub", - "uri_check" : "https://www.wireclub.com/users/{account}", - "e_code" : 200, - "e_string" : "Chat With", - "m_string" : "People - Wireclub", - "m_code" : 301, - "known" : ["deae", "cheerfulsarcasm", "braydenskiresort"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Wakatime", - "uri_check" : "https://wakatime.com/@{account}", - "e_code" : 200, - "e_string" : ") - WakaTime", - "m_string" : "404: Not Found", - "m_code" : 404, - "known" : ["jake", "alimirzayev"], - "cat" : "coding", - "valid" : true - }, - { - "name" : "wishlistr", - "uri_check" : "https://www.wishlistr.com/profile/{account}/", - "e_code" : 200, - "e_string" : "s profile", - "m_string" : "", - "m_code" : 302, - "known" : ["test"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "Wolni Słowianie", - "uri_check" : "https://wolnislowianie.pl/{account}", - "e_code" : 200, - "e_string" : "Oś czasu", - "m_string" : "Nie znaleziono strony, której szukasz.", - "m_code" : 404, - "known" : ["janek", "kowal"], - "cat" : "social", - "valid" : true - }, - { - "name" : "wordnik", - "uri_check" : "https://www.wordnik.com/users/{account}", - "e_code" : 200, - "e_string" : "Welcome,", - "m_string" : "Wordnik: Page Not Found", - "m_code" : 404, - "known" : ["elle", "john"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "WordPress", - "uri_check" : "https://profiles.wordpress.org/{account}/", - "e_code" : 200, - "e_string" : "user-member-since", - "m_string" : "", - "m_code" : 404, - "known" : ["test"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "WordPress Support", - "uri_check" : "https://wordpress.org/support/users/{account}/", - "e_code" : 200, - "e_string" : "s Profile | WordPress.org", - "m_string" : "User not found", - "m_code" : 404, - "known" : ["test"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "Wowhead", - "uri_check" : "https://www.wowhead.com/user={account}", - "e_code" : 200, - "e_string" : " Profile - Wowhead", - "m_string" : "Error - Wowhead", - "m_code" : 404, - "known" : ["Ashelia", "Zizarz"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "Wykop", - "uri_check" : "https://www.wykop.pl/ludzie/{account}/", - "e_code" : 200, - "e_string" : "Aktywność użytkownika", - "m_string" : "Czy na pewno tego szukałeś? Taka strona nie istnieje.", - "m_code" : 404, - "known" : ["test", "test2"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Xanga", - "uri_check" : "http://{account}.xanga.com/", - "invalid_chars" : ".", - "e_code" : 200, - "e_string" : "s Xanga Site | Just", - "m_string" : "", - "m_code" : 302, - "known" : ["john"], - "cat" : "blog", - "valid" : true - }, - { - "name" : "Xbox Gamertag", - "uri_check" : "https://www.xboxgamertag.com/search/{account}", - "e_code" : 200, - "e_string" : "Games Played", - "m_string" : "Gamertag doesn't exist", - "m_code" : 404, - "known" : ["Spiken8", "john"], - "cat" : "gaming", - "valid" : true - }, - { - "name" : "xHamster", - "uri_check" : "https://xhamster.com/users/{account}", - "e_code" : 200, - "e_string" : "s profile | xHamster", - "m_string" : "User not found", - "m_code" : 404, - "known" : ["john", "tonystark85"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Xing", - "uri_check" : "https://www.xing.com/profile/{account}", - "e_code" : 200, - "e_string" : " | XING", - "m_string" : "Es tut uns leid", - "m_code" : 404, - "known" : ["Andy_Hausmann", "Ramona_Hapke"], - "cat" : "social", - "valid" : true - }, - { - "name" : "XVIDEOS-models", - "uri_check" : "https://www.xvideos.com/models/{account}", - "e_code" : 200, - "e_string" : "Total video views", - "m_string" : "THIS PROFILE DOESN'T EXIST", - "m_code" : 404, - "known" : ["vvalencourt3", "tiffany-tyler"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "XVIDEOS-profiles", - "uri_check" : "https://www.xvideos.com/profiles/{account}", - "e_code" : 200, - "e_string" : "page - XVIDEOS.COM", - "m_string" : "THIS PROFILE DOESN'T EXIST", - "m_code" : 404, - "known" : ["nympho-nailer", "dpadicto", "bkg"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Yahoo! JAPAN Auction", - "uri_check" : "https://auctions.yahoo.co.jp/follow/list/{account}", - "e_code" : 200, - "e_string" : "出品者", - "m_code" : 500, - "m_string" : "Yahoo! JAPAN IDが無効です。", - "known" : ["fltr14502003"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "yapishu", - "uri_check" : "https://yapishu.net/user/{account}", - "post_body" : "", - "e_code" : 200, - "e_string" : "for_profile", - "m_string" : "Not Found (#404)", - "m_code" : 404, - "known" : ["roman", "semion"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "Yazawaj", - "uri_check" : "https://www.yazawaj.com/profile/{account}", - "e_code" : 200, - "e_string" : "أنا", - "m_string" : "الصفحة المطلوبة غير موجودة", - "m_code" : 302, - "known" : ["monya14555d", "LordMohy"], - "cat" : "dating", - "valid" : true - }, - { - "name" : "Yelp", - "uri_check" : "https://www.yelp.com/user_details?userid={account}", - "e_code" : 200, - "e_string" : "'s Reviews |", - "m_string" : "Doggone it! The page you’re looking for cannot be found.", - "m_code" : 404, - "known" : ["j5CYhsvD2yrunyyoZvSvKA", "GHoG4X4FY8D8L563zzPX5w"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "youpic", - "uri_check" : "https://youpic.com/photographer/{account}", - "e_code" : 200, - "e_string" : "- Photographer - YouPic", - "m_string" : "Welcome to the infamous 404 page - YouPic", - "m_code" : 404, - "known" : ["photodude", "mike"], - "cat" : "hobby", - "valid" : true - }, - { - "name" : "YouTube Channel", - "uri_check" : "https://www.youtube.com/c/{account}/about", - "e_code" : 200, - "e_string" : "joinedDateText", - "m_string" : "404 Not Found", - "m_code" : 404, - "known" : ["OvylarockTHR","OSINTDojo"], - "cat" : "video", - "valid" : true - }, - { - "name" : "YouTube User", - "uri_check" : "https://www.youtube.com/user/{account}/about", - "e_code" : 200, - "e_string" : "joinedDateText", - "m_string" : "<title>404 Not Found", - "m_code" : 404, - "known" : ["MicahHoffman","theosintcuriousproject"], - "cat" : "video", - "valid" : true - }, - { - "name" : "YouTube User2", - "uri_check" : "https://www.youtube.com/@{account}", - "e_code" : 200, - "e_string" : "canonicalBaseUrl", - "m_string" : "<title>404 Not Found", - "m_code" : 404, - "known" : ["tactical-systems","CybersecurityMeg"], - "cat" : "video", - "valid" : true - }, - { - "name" : "zatrybi.pl", - "uri_check" : "https://zatrybi.pl/user/{account}", - "e_code" : 200, - "e_string" : "Zarejestrowany od:", - "m_string" : "Nie znaleziono strony", - "m_code" : 404, - "known" : ["Berlinek", "fenrek"], - "cat" : "tech", - "valid" : true - }, - { - "name" : "Zbiornik", - "uri_check" : "https://mini.zbiornik.com/{account}", - "e_code" : 200, - "e_string" : "INFO", - "m_string" : "Szukaj", - "m_code" : 200, - "known" : ["69uzytkownik69", "Soif"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "zhihu", - "uri_check" : "https://www.zhihu.com/people/{account}", - "e_code" : 200, - "e_string" : "zhihu:voteupCount", - "m_string" : "ErrorPage-subtitle", - "m_code" : 400, - "known" : ["lushnis", "kan-shu-jiao-hua-shai-tai-yang"], - "cat" : "social", - "valid" : true - }, - { - "name" : "Zillow", - "uri_check" : "https://www.zillow.com/profile/{account}/", - "e_code" : 200, - "e_string" : "- Real Estate Agent", - "m_string" : "", - "m_code" : 302, - "known" : ["JOHN-L-SULLIVAN", "Maggie-Alegria"], - "cat" : "shopping", - "valid" : true - }, - { - "name" : "zmarsa.com", - "uri_check" : "https://zmarsa.com/uzytkownik/{account}/glowna/", - "e_code" : 200, - "e_string" : "Galeria użytkownika", - "m_string" : "Błąd na stronie", - "m_code" : 500, - "known" : ["janek", "test"], - "cat" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Zomato", - "uri_check" : "https://www.zomato.com/{account}/foodjourney", - "e_code" : 200, - "e_string" : "| Zomato", - "m_string" : "404 | Zomato", - "m_code" : 404, - "known" : ["john", "jess"], - "cat" : "social", - "valid" : true - }, - { - "name" : "zoomitir", - "uri_check" : "https://www.zoomit.ir/user/{account}/", - "e_code" : 200, - "e_string" : "پروفایل - زومیت", - "m_string" : "404 Not found", - "m_code" : 404, - "known" : ["rezaghezi", "hosssssein"], - "cat" : "tech", - "valid" : true - } - ] - } diff --git a/data/sites/sherlock.json b/data/sites/sherlock.json deleted file mode 100644 index e86dd69..0000000 --- a/data/sites/sherlock.json +++ /dev/null @@ -1,3251 +0,0 @@ -{ - "$schema": "data.schema.json", - "1337x": { - "errorMsg": [ - "Error something went wrong.", - "404 Not Found" - ], - "errorType": "message", - "regexCheck": "^[A-Za-z0-9]{4,12}$", - "url": "https://www.1337x.to/user/{}/", - "urlMain": "https://www.1337x.to/", - "username_claimed": "FitGirl" - }, - "2Dimensions": { - "errorType": "status_code", - "url": "https://2Dimensions.com/a/{}", - "urlMain": "https://2Dimensions.com/", - "username_claimed": "blue" - }, - "7Cups": { - "errorType": "status_code", - "url": "https://www.7cups.com/@{}", - "urlMain": "https://www.7cups.com/", - "username_claimed": "blue" - }, - "9GAG": { - "errorType": "status_code", - "url": "https://www.9gag.com/u/{}", - "urlMain": "https://www.9gag.com/", - "username_claimed": "blue" - }, - "APClips": { - "errorMsg": "Amateur Porn Content Creators", - "errorType": "message", - "isNSFW": true, - "url": "https://apclips.com/{}", - "urlMain": "https://apclips.com/", - "username_claimed": "onlybbyraq" - }, - "About.me": { - "errorType": "status_code", - "url": "https://about.me/{}", - "urlMain": "https://about.me/", - "username_claimed": "blue" - }, - "Academia.edu": { - "errorType": "status_code", - "regexCheck": "^[^.]*$", - "url": "https://independent.academia.edu/{}", - "urlMain": "https://www.academia.edu/", - "username_claimed": "blue" - }, - "AdmireMe.Vip": { - "errorMsg": "Page Not Found", - "errorType": "message", - "isNSFW": true, - "url": "https://admireme.vip/{}", - "urlMain": "https://admireme.vip/", - "username_claimed": "DemiDevil" - }, - "Airbit": { - "errorType": "status_code", - "url": "https://airbit.com/{}", - "urlMain": "https://airbit.com/", - "username_claimed": "airbit" - }, - "Airliners": { - "errorType": "status_code", - "url": "https://www.airliners.net/user/{}/profile/photos", - "urlMain": "https://www.airliners.net/", - "username_claimed": "yushinlin" - }, - "All Things Worn": { - "errorMsg": "Sell Used Panties", - "errorType": "message", - "isNSFW": true, - "url": "https://www.allthingsworn.com/profile/{}", - "urlMain": "https://www.allthingsworn.com", - "username_claimed": "pink" - }, - "AllMyLinks": { - "errorMsg": "Page not found", - "errorType": "message", - "regexCheck": "^[a-z0-9][a-z0-9-]{2,32}$", - "url": "https://allmylinks.com/{}", - "urlMain": "https://allmylinks.com/", - "username_claimed": "blue" - }, - "AniWorld": { - "errorMsg": "Dieses Profil ist nicht verf\u00fcgbar", - "errorType": "message", - "url": "https://aniworld.to/user/profil/{}", - "urlMain": "https://aniworld.to/", - "username_claimed": "blue" - }, - "Anilist": { - "errorType": "status_code", - "regexCheck": "^[A-Za-z0-9]{2,20}$", - "request_method": "POST", - "request_payload": { - "query": "query($name:String){User(name:$name){id}}", - "variables": { - "name": "{}" - } - }, - "url": "https://anilist.co/user/{}/", - "urlMain": "https://anilist.co/", - "urlProbe": "https://graphql.anilist.co/", - "username_claimed": "Josh" - }, - "Apple Developer": { - "errorType": "status_code", - "url": "https://developer.apple.com/forums/profile/{}", - "urlMain": "https://developer.apple.com", - "username_claimed": "lio24d" - }, - "Apple Discussions": { - "errorMsg": "Looking for something in Apple Support Communities?", - "errorType": "message", - "url": "https://discussions.apple.com/profile/{}", - "urlMain": "https://discussions.apple.com", - "username_claimed": "jason" - }, - "Aparat": { - "errorType": "status_code", - "request_method": "GET", - "url": "https://www.aparat.com/{}/", - "urlMain": "https://www.aparat.com/", - "urlProbe": "https://www.aparat.com/api/fa/v1/user/user/information/username/{}", - "username_claimed": "jadi" - }, - "Archive of Our Own": { - "errorType": "status_code", - "regexCheck": "^[^.]*?$", - "url": "https://archiveofourown.org/users/{}", - "urlMain": "https://archiveofourown.org/", - "username_claimed": "test" - }, - "Archive.org": { - "__comment__": "'The resource could not be found' relates to archive downtime", - "errorMsg": [ - "could not fetch an account with user item identifier", - "The resource could not be found", - "Internet Archive services are temporarily offline" - ], - "errorType": "message", - "url": "https://archive.org/details/@{}", - "urlMain": "https://archive.org", - "urlProbe": "https://archive.org/details/@{}?noscript=true", - "username_claimed": "blue" - }, - "Arduino Forum": { - "errorType": "status_code", - "url": "https://forum.arduino.cc/u/{}/summary", - "urlMain": "https://forum.arduino.cc/", - "username_claimed": "system" - }, - "ArtStation": { - "errorType": "status_code", - "url": "https://www.artstation.com/{}", - "urlMain": "https://www.artstation.com/", - "username_claimed": "Blue" - }, - "Asciinema": { - "errorType": "status_code", - "url": "https://asciinema.org/~{}", - "urlMain": "https://asciinema.org", - "username_claimed": "red" - }, - "Ask Fedora": { - "errorType": "status_code", - "url": "https://ask.fedoraproject.org/u/{}", - "urlMain": "https://ask.fedoraproject.org/", - "username_claimed": "red" - }, - "Atcoder": { - "errorType": "status_code", - "url": "https://atcoder.jp/users/{}", - "urlMain": "https://atcoder.jp/", - "username_claimed": "ksun48" - }, - "Vjudge": { - "errorType": "status_code", - "url": "https://VJudge.net/user/{}", - "urlMain": "https://VJudge.net/", - "username_claimed": "tokitsukaze" - }, - "Audiojungle": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z0-9_]+$", - "url": "https://audiojungle.net/user/{}", - "urlMain": "https://audiojungle.net/", - "username_claimed": "blue" - }, - "Autofrage": { - "errorType": "status_code", - "url": "https://www.autofrage.net/nutzer/{}", - "urlMain": "https://www.autofrage.net/", - "username_claimed": "autofrage" - }, - "Avizo": { - "errorType": "response_url", - "errorUrl": "https://www.avizo.cz/", - "url": "https://www.avizo.cz/{}/", - "urlMain": "https://www.avizo.cz/", - "username_claimed": "blue" - }, - "AWS Skills Profile": { - "errorType": "message", - "errorMsg": "shareProfileAccepted\":false", - "url": "https://skillsprofile.skillbuilder.aws/user/{}/", - "urlMain": "https://skillsprofile.skillbuilder.aws", - "username_claimed": "mayank04pant" - }, - "BOOTH": { - "errorType": "response_url", - "errorUrl": "https://booth.pm/", - "regexCheck": "^[\\w@-]+?$", - "url": "https://{}.booth.pm/", - "urlMain": "https://booth.pm/", - "username_claimed": "blue" - }, - "Bandcamp": { - "errorType": "status_code", - "url": "https://www.bandcamp.com/{}", - "urlMain": "https://www.bandcamp.com/", - "username_claimed": "blue" - }, - "Bazar.cz": { - "errorType": "response_url", - "errorUrl": "https://www.bazar.cz/error404.aspx", - "url": "https://www.bazar.cz/{}/", - "urlMain": "https://www.bazar.cz/", - "username_claimed": "pianina" - }, - "Behance": { - "errorType": "status_code", - "url": "https://www.behance.net/{}", - "urlMain": "https://www.behance.net/", - "username_claimed": "blue" - }, - "Bezuzyteczna": { - "errorType": "status_code", - "url": "https://bezuzyteczna.pl/uzytkownicy/{}", - "urlMain": "https://bezuzyteczna.pl", - "username_claimed": "Jackson" - }, - "BiggerPockets": { - "errorType": "status_code", - "url": "https://www.biggerpockets.com/users/{}", - "urlMain": "https://www.biggerpockets.com/", - "username_claimed": "blue" - }, - "BioHacking": { - "errorType": "status_code", - "url": "https://forum.dangerousthings.com/u/{}", - "urlMain": "https://forum.dangerousthings.com/", - "username_claimed": "blue" - }, - "BitBucket": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z0-9-_]{1,30}$", - "url": "https://bitbucket.org/{}/", - "urlMain": "https://bitbucket.org/", - "username_claimed": "white" - }, - "Bitwarden Forum": { - "errorType": "status_code", - "regexCheck": "^(?![.-])[a-zA-Z0-9_.-]{3,20}$", - "url": "https://community.bitwarden.com/u/{}/summary", - "urlMain": "https://bitwarden.com/", - "username_claimed": "blue" - }, - "Blipfoto": { - "errorType": "status_code", - "url": "https://www.blipfoto.com/{}", - "urlMain": "https://www.blipfoto.com/", - "username_claimed": "blue" - }, - "Blitz Tactics": { - "errorMsg": "That page doesn't exist", - "errorType": "message", - "url": "https://blitztactics.com/{}", - "urlMain": "https://blitztactics.com/", - "username_claimed": "Lance5500" - }, - "Blogger": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.blogspot.com", - "urlMain": "https://www.blogger.com/", - "username_claimed": "blue" - }, - "Bluesky": { - "errorType": "status_code", - "url": "https://bsky.app/profile/{}.bsky.social", - "urlProbe": "https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor={}.bsky.social", - "urlMain": "https://bsky.app/", - "username_claimed": "mcuban" - }, - "BongaCams": { - "errorType": "status_code", - "isNSFW": true, - "url": "https://pt.bongacams.com/profile/{}", - "urlMain": "https://pt.bongacams.com", - "username_claimed": "asuna-black" - }, - "Bookcrossing": { - "errorType": "status_code", - "url": "https://www.bookcrossing.com/mybookshelf/{}/", - "urlMain": "https://www.bookcrossing.com/", - "username_claimed": "blue" - }, - "BoardGameGeek": { - "errorMsg": "\"isValid\":true", - "errorType": "message", - "url": "https://boardgamegeek.com/user/{}", - "urlMain": "https://boardgamegeek.com/", - "urlProbe": "https://api.geekdo.com/api/accounts/validate/username?username={}", - "username_claimed": "blue" - }, - "BraveCommunity": { - "errorType": "status_code", - "url": "https://community.brave.com/u/{}/", - "urlMain": "https://community.brave.com/", - "username_claimed": "blue" - }, - "BreachSta.rs Forum": { - "errorMsg": "Error - BreachStars", - "errorType": "message", - "url": "https://breachsta.rs/profile/{}", - "urlMain": "https://breachsta.rs/", - "username_claimed": "Sleepybubble" - }, - "BugCrowd": { - "errorType": "status_code", - "url": "https://bugcrowd.com/{}", - "urlMain": "https://bugcrowd.com/", - "username_claimed": "ppfeister" - }, - "BuyMeACoffee": { - "errorType": "status_code", - "regexCheck": "[a-zA-Z0-9]{3,15}", - "url": "https://buymeacoff.ee/{}", - "urlMain": "https://www.buymeacoffee.com/", - "urlProbe": "https://www.buymeacoffee.com/{}", - "username_claimed": "red" - }, - "BuzzFeed": { - "errorType": "status_code", - "url": "https://buzzfeed.com/{}", - "urlMain": "https://buzzfeed.com/", - "username_claimed": "blue" - }, - "Cfx.re Forum": { - "errorType": "status_code", - "url": "https://forum.cfx.re/u/{}/summary", - "urlMain": "https://forum.cfx.re", - "username_claimed": "hightowerlssd" - }, - "CGTrader": { - "errorType": "status_code", - "regexCheck": "^[^.]*?$", - "url": "https://www.cgtrader.com/{}", - "urlMain": "https://www.cgtrader.com", - "username_claimed": "blue" - }, - "CNET": { - "errorType": "status_code", - "regexCheck": "^[a-z].*$", - "url": "https://www.cnet.com/profiles/{}/", - "urlMain": "https://www.cnet.com/", - "username_claimed": "melliott" - }, - "CSSBattle": { - "errorType": "status_code", - "url": "https://cssbattle.dev/player/{}", - "urlMain": "https://cssbattle.dev", - "username_claimed": "beo" - }, - "CTAN": { - "errorType": "status_code", - "url": "https://ctan.org/author/{}", - "urlMain": "https://ctan.org/", - "username_claimed": "briggs" - }, - "Caddy Community": { - "errorType": "status_code", - "url": "https://caddy.community/u/{}/summary", - "urlMain": "https://caddy.community/", - "username_claimed": "taako_magnusen" - }, - "Car Talk Community": { - "errorType": "status_code", - "url": "https://community.cartalk.com/u/{}/summary", - "urlMain": "https://community.cartalk.com/", - "username_claimed": "always_fixing" - }, - "Carbonmade": { - "errorType": "response_url", - "errorUrl": "https://carbonmade.com/fourohfour?domain={}.carbonmade.com", - "regexCheck": "^[\\w@-]+?$", - "url": "https://{}.carbonmade.com", - "urlMain": "https://carbonmade.com/", - "username_claimed": "jenny" - }, - "Career.habr": { - "errorMsg": "

\u041e\u0448\u0438\u0431\u043a\u0430 404

", - "errorType": "message", - "url": "https://career.habr.com/{}", - "urlMain": "https://career.habr.com/", - "username_claimed": "blue" - }, - "CashApp": { - "errorType": "status_code", - "url": "https://cash.app/${}", - "urlMain": "https://cash.app", - "username_claimed": "hotdiggitydog" - }, - "Championat": { - "errorType": "status_code", - "url": "https://www.championat.com/user/{}", - "urlMain": "https://www.championat.com/", - "username_claimed": "blue" - }, - "Chaos": { - "errorType": "status_code", - "url": "https://chaos.social/@{}", - "urlMain": "https://chaos.social/", - "username_claimed": "ordnung" - }, - "Chatujme.cz": { - "errorMsg": "Neexistujic\u00ed profil", - "errorType": "message", - "regexCheck": "^[a-zA-Z][a-zA-Z1-9_-]*$", - "url": "https://profil.chatujme.cz/{}", - "urlMain": "https://chatujme.cz/", - "username_claimed": "david" - }, - "ChaturBate": { - "errorType": "status_code", - "isNSFW": true, - "url": "https://chaturbate.com/{}", - "urlMain": "https://chaturbate.com", - "username_claimed": "cute18cute" - }, - "Chess": { - "errorMsg": "Username is valid", - "errorType": "message", - "regexCheck": "^[a-z1-9]{3,25}$", - "url": "https://www.chess.com/member/{}", - "urlMain": "https://www.chess.com/", - "urlProbe": "https://www.chess.com/callback/user/valid?username={}", - "username_claimed": "blue" - }, - "Choice Community": { - "errorType": "status_code", - "url": "https://choice.community/u/{}/summary", - "urlMain": "https://choice.community/", - "username_claimed": "gordon" - }, - "Clapper": { - "errorType": "status_code", - "url": "https://clapperapp.com/{}", - "urlMain": "https://clapperapp.com/", - "username_claimed": "blue" - }, - "CloudflareCommunity": { - "errorType": "status_code", - "url": "https://community.cloudflare.com/u/{}", - "urlMain": "https://community.cloudflare.com/", - "username_claimed": "blue" - }, - "Clozemaster": { - "errorMsg": "Oh no! Player not found.", - "errorType": "message", - "url": "https://www.clozemaster.com/players/{}", - "urlMain": "https://www.clozemaster.com", - "username_claimed": "green" - }, - "Clubhouse": { - "errorType": "status_code", - "url": "https://www.clubhouse.com/@{}", - "urlMain": "https://www.clubhouse.com", - "username_claimed": "waniathar" - }, - "Code Snippet Wiki": { - "errorMsg": "This user has not filled out their profile page yet", - "errorType": "message", - "url": "https://codesnippets.fandom.com/wiki/User:{}", - "urlMain": "https://codesnippets.fandom.com", - "username_claimed": "bob" - }, - "Codeberg": { - "errorType": "status_code", - "url": "https://codeberg.org/{}", - "urlMain": "https://codeberg.org/", - "username_claimed": "blue" - }, - "Codecademy": { - "errorMsg": "This profile could not be found", - "errorType": "message", - "url": "https://www.codecademy.com/profiles/{}", - "urlMain": "https://www.codecademy.com/", - "username_claimed": "blue" - }, - "Codechef": { - "errorType": "response_url", - "errorUrl": "https://www.codechef.com/", - "url": "https://www.codechef.com/users/{}", - "urlMain": "https://www.codechef.com/", - "username_claimed": "blue" - }, - "Codeforces": { - "errorType": "status_code", - "url": "https://codeforces.com/profile/{}", - "urlMain": "https://codeforces.com/", - "urlProbe": "https://codeforces.com/api/user.info?handles={}", - "username_claimed": "tourist" - }, - "Codepen": { - "errorType": "status_code", - "url": "https://codepen.io/{}", - "urlMain": "https://codepen.io/", - "username_claimed": "blue" - }, - "Coders Rank": { - "errorMsg": "not a registered member", - "errorType": "message", - "regexCheck": "^[a-zA-Z0-9](?:[a-zA-Z0-9]|-(?=[a-zA-Z0-9])){0,38}$", - "url": "https://profile.codersrank.io/user/{}/", - "urlMain": "https://codersrank.io/", - "username_claimed": "rootkit7628" - }, - "Coderwall": { - "errorType": "status_code", - "url": "https://coderwall.com/{}", - "urlMain": "https://coderwall.com", - "username_claimed": "hacker" - }, - "CodeSandbox": { - "errorType": "message", - "errorMsg": "Could not find user with username", - "regexCheck": "^[a-zA-Z0-9_-]{3,30}$", - "url": "https://codesandbox.io/u/{}", - "urlProbe": "https://codesandbox.io/api/v1/users/{}", - "urlMain": "https://codesandbox.io", - "username_claimed": "icyjoseph" - }, - "Codewars": { - "errorType": "status_code", - "url": "https://www.codewars.com/users/{}", - "urlMain": "https://www.codewars.com", - "username_claimed": "example" - }, - "Codolio": { - "errorType": "message", - "errorMsg": "Page Not Found | Codolio", - "url": "https://codolio.com/profile/{}", - "urlMain": "https://codolio.com/", - "username_claimed": "testuser", - "regexCheck": "^[a-zA-Z0-9_-]{3,30}$" - }, - "Coinvote": { - "errorType": "status_code", - "url": "https://coinvote.cc/profile/{}", - "urlMain": "https://coinvote.cc/", - "username_claimed": "blue" - }, - "ColourLovers": { - "errorType": "status_code", - "url": "https://www.colourlovers.com/lover/{}", - "urlMain": "https://www.colourlovers.com/", - "username_claimed": "blue" - }, - "Contently": { - "errorType": "response_url", - "errorUrl": "https://contently.com", - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.contently.com/", - "urlMain": "https://contently.com/", - "username_claimed": "jordanteicher" - }, - "Coroflot": { - "errorType": "status_code", - "url": "https://www.coroflot.com/{}", - "urlMain": "https://coroflot.com/", - "username_claimed": "blue" - }, - "Cplusplus": { - "errorType": "message", - "errorMsg": "404 Page Not Found", - "url": "https://cplusplus.com/user/{}", - "urlMain": "https://cplusplus.com", - "username_claimed": "mbozzi" - }, - "Cracked": { - "errorType": "response_url", - "errorUrl": "https://www.cracked.com/", - "url": "https://www.cracked.com/members/{}/", - "urlMain": "https://www.cracked.com/", - "username_claimed": "blue" - }, - "Cracked Forum": { - "errorMsg": "The member you specified is either invalid or doesn't exist", - "errorType": "message", - "url": "https://cracked.sh/{}", - "urlMain": "https://cracked.sh/", - "username_claimed": "Blue" - }, - "Credly": { - "errorType": "status_code", - "url": "https://www.credly.com/users/{}", - "urlMain": "https://www.credly.com/", - "username_claimed": "credly" - }, - "Crevado": { - "errorType": "status_code", - "regexCheck": "^[\\w@-]+?$", - "url": "https://{}.crevado.com", - "urlMain": "https://crevado.com/", - "username_claimed": "blue" - }, - "Crowdin": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z0-9._-]{2,255}$", - "url": "https://crowdin.com/profile/{}", - "urlMain": "https://crowdin.com/", - "username_claimed": "blue" - }, - "CryptoHack": { - "errorType": "response_url", - "errorUrl": "https://cryptohack.org/", - "url": "https://cryptohack.org/user/{}/", - "urlMain": "https://cryptohack.org/", - "username_claimed": "blue" - }, - "Cryptomator Forum": { - "errorType": "status_code", - "url": "https://community.cryptomator.org/u/{}", - "urlMain": "https://community.cryptomator.org/", - "username_claimed": "michael" - }, - "Cults3D": { - "errorMsg": "Oh dear, this page is not working!", - "errorType": "message", - "url": "https://cults3d.com/en/users/{}/creations", - "urlMain": "https://cults3d.com/en", - "username_claimed": "brown" - }, - "CyberDefenders": { - "errorType": "status_code", - "regexCheck": "^[^\\/:*?\"<>|@]{3,50}$", - "request_method": "GET", - "url": "https://cyberdefenders.org/p/{}", - "urlMain": "https://cyberdefenders.org/", - "username_claimed": "mlohn" - }, - "DEV Community": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://dev.to/{}", - "urlMain": "https://dev.to/", - "username_claimed": "blue" - }, - "DMOJ": { - "errorMsg": "No such user", - "errorType": "message", - "url": "https://dmoj.ca/user/{}", - "urlMain": "https://dmoj.ca/", - "username_claimed": "junferno" - }, - "DailyMotion": { - "errorType": "status_code", - "url": "https://www.dailymotion.com/{}", - "urlMain": "https://www.dailymotion.com/", - "username_claimed": "blue" - }, - "dcinside": { - "errorType": "status_code", - "url": "https://gallog.dcinside.com/{}", - "urlMain": "https://www.dcinside.com/", - "username_claimed": "anrbrb" - }, - "Dealabs": { - "errorMsg": "La page que vous essayez", - "errorType": "message", - "regexCheck": "[a-z0-9]{4,16}", - "url": "https://www.dealabs.com/profile/{}", - "urlMain": "https://www.dealabs.com/", - "username_claimed": "blue" - }, - "DeviantArt": { - "errorType": "message", - "errorMsg": "Llama Not Found", - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://www.deviantart.com/{}", - "urlMain": "https://www.deviantart.com/", - "username_claimed": "blue" - }, - "DigitalSpy": { - "errorMsg": "The page you were looking for could not be found.", - "errorType": "message", - "url": "https://forums.digitalspy.com/profile/{}", - "urlMain": "https://forums.digitalspy.com/", - "username_claimed": "blue", - "regexCheck": "^\\w{3,20}$" - }, - "Discogs": { - "errorType": "status_code", - "url": "https://www.discogs.com/user/{}", - "urlMain": "https://www.discogs.com/", - "username_claimed": "blue" - }, - "Discord": { - "errorType": "message", - "url": "https://discord.com", - "urlMain": "https://discord.com/", - "urlProbe": "https://discord.com/api/v9/unique-username/username-attempt-unauthed", - "errorMsg": ["{\"taken\":false}", "The resource is being rate limited"], - "request_method": "POST", - "request_payload": { - "username": "{}" - }, - "headers": { - "Content-Type": "application/json" - }, - "username_claimed": "blue" - }, - "Discord.bio": { - "errorType": "message", - "errorMsg": "Server Error (500)", - "url": "https://discords.com/api-v2/bio/details/{}", - "urlMain": "https://discord.bio/", - "username_claimed": "robert" - }, - "Discuss.Elastic.co": { - "errorType": "status_code", - "url": "https://discuss.elastic.co/u/{}", - "urlMain": "https://discuss.elastic.co/", - "username_claimed": "blue" - }, - "Diskusjon.no": { - "errorMsg": "{\"result\":\"ok\"}", - "errorType": "message", - "regexCheck": "^[a-zA-Z0-9_.-]{3,40}$", - "urlProbe": "https://www.diskusjon.no/?app=core&module=system&controller=ajax&do=usernameExists&input={}", - "url": "https://www.diskusjon.no", - "urlMain": "https://www.diskusjon.no", - "username_claimed": "blue" - }, - "Disqus": { - "errorType": "status_code", - "url": "https://disqus.com/{}", - "urlMain": "https://disqus.com/", - "username_claimed": "blue" - }, - "Docker Hub": { - "errorType": "status_code", - "url": "https://hub.docker.com/u/{}/", - "urlMain": "https://hub.docker.com/", - "urlProbe": "https://hub.docker.com/v2/users/{}/", - "username_claimed": "blue" - }, - "Dribbble": { - "errorMsg": "Whoops, that page is gone.", - "errorType": "message", - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://dribbble.com/{}", - "urlMain": "https://dribbble.com/", - "username_claimed": "blue" - }, - "Duolingo": { - "errorMsg": "{\"users\":[]}", - "errorType": "message", - "url": "https://www.duolingo.com/profile/{}", - "urlMain": "https://duolingo.com/", - "urlProbe": "https://www.duolingo.com/2017-06-30/users?username={}", - "username_claimed": "blue" - }, - "Eintracht Frankfurt Forum": { - "errorType": "status_code", - "regexCheck": "^[^.]*?$", - "url": "https://community.eintracht.de/fans/{}", - "urlMain": "https://community.eintracht.de/", - "username_claimed": "mmammu" - }, - "Empretienda AR": { - "__comment__": "Note that Error Connecting responses may be indicative of unclaimed handles", - "errorType": "status_code", - "url": "https://{}.empretienda.com.ar", - "urlMain": "https://empretienda.com", - "username_claimed": "camalote" - }, - "Envato Forum": { - "errorType": "status_code", - "url": "https://forums.envato.com/u/{}", - "urlMain": "https://forums.envato.com/", - "username_claimed": "enabled" - }, - "Erome": { - "errorType": "status_code", - "isNSFW": true, - "url": "https://www.erome.com/{}", - "urlMain": "https://www.erome.com/", - "username_claimed": "bob" - }, - "Exposure": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z0-9-]{1,63}$", - "url": "https://{}.exposure.co/", - "urlMain": "https://exposure.co/", - "username_claimed": "jonasjacobsson" - }, - "exophase": { - "errorType": "status_code", - "url": "https://www.exophase.com/user/{}/", - "urlMain": "https://www.exophase.com/", - "username_claimed": "blue" - }, - "EyeEm": { - "errorType": "status_code", - "url": "https://www.eyeem.com/u/{}", - "urlMain": "https://www.eyeem.com/", - "username_claimed": "blue" - }, - "F3.cool": { - "errorType": "status_code", - "url": "https://f3.cool/{}/", - "urlMain": "https://f3.cool/", - "username_claimed": "blue" - }, - "Fameswap": { - "errorType": "status_code", - "url": "https://fameswap.com/user/{}", - "urlMain": "https://fameswap.com/", - "username_claimed": "fameswap" - }, - "Fandom": { - "errorType": "status_code", - "url": "https://www.fandom.com/u/{}", - "urlMain": "https://www.fandom.com/", - "username_claimed": "Jungypoo" - }, - "Fanpop": { - "errorType": "response_url", - "errorUrl": "https://www.fanpop.com/", - "url": "https://www.fanpop.com/fans/{}", - "urlMain": "https://www.fanpop.com/", - "username_claimed": "blue" - }, - "Finanzfrage": { - "errorType": "status_code", - "url": "https://www.finanzfrage.net/nutzer/{}", - "urlMain": "https://www.finanzfrage.net/", - "username_claimed": "finanzfrage" - }, - "Flickr": { - "errorType": "status_code", - "url": "https://www.flickr.com/people/{}", - "urlMain": "https://www.flickr.com/", - "username_claimed": "blue" - }, - "Flightradar24": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z0-9_]{3,20}$", - "url": "https://my.flightradar24.com/{}", - "urlMain": "https://www.flightradar24.com/", - "username_claimed": "jebbrooks" - }, - "Flipboard": { - "errorType": "status_code", - "regexCheck": "^([a-zA-Z0-9_]){1,15}$", - "url": "https://flipboard.com/@{}", - "urlMain": "https://flipboard.com/", - "username_claimed": "blue" - }, - "Football": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "errorType": "message", - "url": "https://www.rusfootball.info/user/{}/", - "urlMain": "https://www.rusfootball.info/", - "username_claimed": "solo87" - }, - "FortniteTracker": { - "errorType": "status_code", - "url": "https://fortnitetracker.com/profile/all/{}", - "urlMain": "https://fortnitetracker.com/challenges", - "username_claimed": "blue" - }, - "Forum Ophilia": { - "errorMsg": "that user does not exist", - "errorType": "message", - "isNSFW": true, - "url": "https://www.forumophilia.com/profile.php?mode=viewprofile&u={}", - "urlMain": "https://www.forumophilia.com/", - "username_claimed": "bob" - }, - "Fosstodon": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z0-9_]{1,30}$", - "url": "https://fosstodon.org/@{}", - "urlMain": "https://fosstodon.org/", - "username_claimed": "blue" - }, - "Framapiaf": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z0-9_]{1,30}$", - "url": "https://framapiaf.org/@{}", - "urlMain": "https://framapiaf.org", - "username_claimed": "pylapp" - }, - "Freelancer": { - "errorMsg": "\"users\":{}", - "errorType": "message", - "url": "https://www.freelancer.com/u/{}", - "urlMain": "https://www.freelancer.com/", - "urlProbe": "https://www.freelancer.com/api/users/0.1/users?usernames%5B%5D={}&compact=true", - "username_claimed": "red0xff" - }, - "Freesound": { - "errorType": "status_code", - "url": "https://freesound.org/people/{}/", - "urlMain": "https://freesound.org/", - "username_claimed": "blue" - }, - "GNOME VCS": { - "errorType": "response_url", - "errorUrl": "https://gitlab.gnome.org/{}", - "regexCheck": "^(?!-)[a-zA-Z0-9_.-]{2,255}(? GIFs - Find & Share on GIPHY", - "url": "https://giphy.com/{}", - "urlMain": "https://giphy.com/", - "username_claimed": "red" - }, - "GitBook": { - "errorType": "status_code", - "regexCheck": "^[\\w@-]+?$", - "url": "https://{}.gitbook.io/", - "urlMain": "https://gitbook.com/", - "username_claimed": "gitbook" - }, - "GitHub": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z0-9](?:[a-zA-Z0-9]|-(?=[a-zA-Z0-9])){0,38}$", - "url": "https://www.github.com/{}", - "urlMain": "https://www.github.com/", - "username_claimed": "blue" - }, - "Warframe Market": { - "errorType": "status_code", - "request_method": "GET", - "url": "https://warframe.market/profile/{}", - "urlMain": "https://warframe.market/", - "urlProbe": "https://api.warframe.market/v2/user/{}", - "username_claimed": "kaiallalone" - }, - "GitLab": { - "errorMsg": "[]", - "errorType": "message", - "url": "https://gitlab.com/{}", - "urlMain": "https://gitlab.com/", - "urlProbe": "https://gitlab.com/api/v4/users?username={}", - "username_claimed": "blue" - }, - "Gitea": { - "errorType": "status_code", - "url": "https://gitea.com/{}", - "urlMain": "https://gitea.com/", - "username_claimed": "xorm" - }, - "Gitee": { - "errorType": "status_code", - "url": "https://gitee.com/{}", - "urlMain": "https://gitee.com/", - "username_claimed": "wizzer" - }, - "GoodReads": { - "errorType": "status_code", - "url": "https://www.goodreads.com/{}", - "urlMain": "https://www.goodreads.com/", - "username_claimed": "blue" - }, - "Google Play": { - "errorMsg": "the requested URL was not found on this server", - "errorType": "message", - "url": "https://play.google.com/store/apps/developer?id={}", - "urlMain": "https://play.google.com", - "username_claimed": "GitHub" - }, - "Gradle": { - "errorType": "status_code", - "regexCheck": "^(?!-)[a-zA-Z0-9-]{3,}(?User Not Found - Hive", - "errorType": "message", - "url": "https://hive.blog/@{}", - "urlMain": "https://hive.blog/", - "username_claimed": "mango-juice" - }, - "Holopin": { - "errorMsg": "true", - "errorType": "message", - "request_method": "POST", - "request_payload": { - "username": "{}" - }, - "url": "https://holopin.io/@{}", - "urlMain": "https://holopin.io", - "urlProbe": "https://www.holopin.io/api/auth/username", - "username_claimed": "red" - }, - "Houzz": { - "errorType": "status_code", - "url": "https://houzz.com/user/{}", - "urlMain": "https://houzz.com/", - "username_claimed": "blue" - }, - "HubPages": { - "errorType": "status_code", - "url": "https://hubpages.com/@{}", - "urlMain": "https://hubpages.com/", - "username_claimed": "blue" - }, - "Hubski": { - "errorMsg": "No such user", - "errorType": "message", - "url": "https://hubski.com/user/{}", - "urlMain": "https://hubski.com/", - "username_claimed": "blue" - }, - "HudsonRock": { - "errorMsg": "This username is not associated", - "errorType": "message", - "url": "https://cavalier.hudsonrock.com/api/json/v2/osint-tools/search-by-username?username={}", - "urlMain": "https://hudsonrock.com", - "username_claimed": "testadmin" - }, - "Hugging Face": { - "errorType": "status_code", - "url": "https://huggingface.co/{}", - "urlMain": "https://huggingface.co/", - "username_claimed": "Pasanlaksitha" - }, - "IFTTT": { - "errorType": "status_code", - "regexCheck": "^[A-Za-z0-9]{3,35}$", - "url": "https://www.ifttt.com/p/{}", - "urlMain": "https://www.ifttt.com/", - "username_claimed": "blue" - }, - "Ifunny": { - "errorType": "status_code", - "url": "https://ifunny.co/user/{}", - "urlMain": "https://ifunny.co/", - "username_claimed": "agua" - }, - "IRC-Galleria": { - "errorType": "response_url", - "errorUrl": "https://irc-galleria.net/users/search?username={}", - "url": "https://irc-galleria.net/user/{}", - "urlMain": "https://irc-galleria.net/", - "username_claimed": "appas" - }, - "Icons8 Community": { - "errorType": "status_code", - "url": "https://community.icons8.com/u/{}/summary", - "urlMain": "https://community.icons8.com/", - "username_claimed": "thefourCraft" - }, - "Image Fap": { - "errorMsg": "Not found", - "errorType": "message", - "isNSFW": true, - "url": "https://www.imagefap.com/profile/{}", - "urlMain": "https://www.imagefap.com/", - "username_claimed": "blue" - }, - "ImgUp.cz": { - "errorType": "status_code", - "url": "https://imgup.cz/{}", - "urlMain": "https://imgup.cz/", - "username_claimed": "adam" - }, - "Imgur": { - "errorType": "status_code", - "url": "https://imgur.com/user/{}", - "urlMain": "https://imgur.com/", - "urlProbe": "https://api.imgur.com/account/v1/accounts/{}?client_id=546c25a59c58ad7", - "username_claimed": "blue" - }, - "imood": { - "errorType": "status_code", - "url": "https://www.imood.com/users/{}", - "urlMain": "https://www.imood.com/", - "username_claimed": "blue" - }, - "Instagram": { - "errorType": "status_code", - "url": "https://instagram.com/{}", - "urlMain": "https://instagram.com/", - "urlProbe": "https://imginn.com/{}", - "username_claimed": "instagram" - }, - "Instapaper": { - "errorType": "status_code", - "request_method": "GET", - "url": "https://www.instapaper.com/p/{}", - "urlMain": "https://www.instapaper.com/", - "username_claimed": "john" - }, - "Instructables": { - "errorType": "status_code", - "url": "https://www.instructables.com/member/{}", - "urlMain": "https://www.instructables.com/", - "urlProbe": "https://www.instructables.com/json-api/showAuthorExists?screenName={}", - "username_claimed": "blue" - }, - "Intigriti": { - "errorType": "status_code", - "regexCheck": "[a-z0-9_]{1,25}", - "request_method": "GET", - "url": "https://app.intigriti.com/profile/{}", - "urlMain": "https://app.intigriti.com", - "urlProbe": "https://api.intigriti.com/user/public/profile/{}", - "username_claimed": "blue" - }, - "Ionic Forum": { - "errorType": "status_code", - "url": "https://forum.ionicframework.com/u/{}", - "urlMain": "https://forum.ionicframework.com/", - "username_claimed": "theblue222" - }, - "Issuu": { - "errorType": "status_code", - "url": "https://issuu.com/{}", - "urlMain": "https://issuu.com/", - "username_claimed": "jenny" - }, - "Itch.io": { - "errorType": "status_code", - "regexCheck": "^[\\w@-]+?$", - "url": "https://{}.itch.io/", - "urlMain": "https://itch.io/", - "username_claimed": "blue" - }, - "Itemfix": { - "errorMsg": "ItemFix - Channel: ", - "errorType": "message", - "url": "https://www.itemfix.com/c/{}", - "urlMain": "https://www.itemfix.com/", - "username_claimed": "blue" - }, - "Jellyfin Weblate": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z0-9@._-]{1,150}$", - "url": "https://translate.jellyfin.org/user/{}/", - "urlMain": "https://translate.jellyfin.org/", - "username_claimed": "EraYaN" - }, - "Jimdo": { - "errorType": "status_code", - "regexCheck": "^[\\w@-]+?$", - "url": "https://{}.jimdosite.com", - "urlMain": "https://jimdosite.com/", - "username_claimed": "jenny" - }, - "Joplin Forum": { - "errorType": "status_code", - "url": "https://discourse.joplinapp.org/u/{}", - "urlMain": "https://discourse.joplinapp.org/", - "username_claimed": "laurent" - }, - "Jupyter Community Forum": { - "errorMsg": "Oops! That page doesn’t exist or is private.", - "errorType": "message", - "url": "https://discourse.jupyter.org/u/{}/summary", - "urlMain": "https://discourse.jupyter.org", - "username_claimed": "choldgraf" - }, - "Kaggle": { - "errorType": "status_code", - "url": "https://www.kaggle.com/{}", - "urlMain": "https://www.kaggle.com/", - "username_claimed": "dansbecker" - }, - "kaskus": { - "errorType": "status_code", - "url": "https://www.kaskus.co.id/@{}", - "urlMain": "https://www.kaskus.co.id", - "urlProbe": "https://www.kaskus.co.id/api/users?username={}", - "request_method": "GET", - "username_claimed": "l0mbart" - }, - "Keybase": { - "errorType": "status_code", - "url": "https://keybase.io/{}", - "urlMain": "https://keybase.io/", - "username_claimed": "blue" - }, - "Kick": { - "__comment__": "Cloudflare. Only viable when proxied.", - "errorType": "status_code", - "url": "https://kick.com/{}", - "urlMain": "https://kick.com/", - "urlProbe": "https://kick.com/api/v2/channels/{}", - "username_claimed": "blue" - }, - "Kik": { - "errorMsg": "The page you requested was not found", - "errorType": "message", - "url": "https://kik.me/{}", - "urlMain": "http://kik.me/", - "urlProbe": "https://ws2.kik.com/user/{}", - "username_claimed": "blue" - }, - "Kongregate": { - "errorType": "status_code", - "headers": { - "Accept": "text/html" - }, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://www.kongregate.com/accounts/{}", - "urlMain": "https://www.kongregate.com/", - "username_claimed": "blue" - }, - "Kvinneguiden": { - "errorMsg": "{\"result\":\"ok\"}", - "errorType": "message", - "regexCheck": "^[a-zA-Z0-9_.-]{3,18}$", - "urlProbe": "https://forum.kvinneguiden.no/?app=core&module=system&controller=ajax&do=usernameExists&input={}", - "url": "https://forum.kvinneguiden.no", - "urlMain": "https://forum.kvinneguiden.no", - "username_claimed": "blue" - }, - "LOR": { - "errorType": "status_code", - "url": "https://www.linux.org.ru/people/{}/profile", - "urlMain": "https://linux.org.ru/", - "username_claimed": "red" - }, - "Laracast": { - "errorType": "status_code", - "url": "https://laracasts.com/@{}", - "urlMain": "https://laracasts.com/", - "regexCheck": "^[a-zA-Z0-9_-]{3,}$", - "username_claimed": "user1" - }, - "Launchpad": { - "errorType": "status_code", - "url": "https://launchpad.net/~{}", - "urlMain": "https://launchpad.net/", - "username_claimed": "blue" - }, - "LeetCode": { - "errorType": "status_code", - "url": "https://leetcode.com/{}", - "urlMain": "https://leetcode.com/", - "username_claimed": "blue" - }, - "LemmyWorld": { - "errorType": "message", - "errorMsg": "

Error!

", - "url": "https://lemmy.world/u/{}", - "urlMain": "https://lemmy.world", - "username_claimed": "blue" - }, - "LessWrong": { - "url": "https://www.lesswrong.com/users/{}", - "urlMain": "https://www.lesswrong.com/", - "errorType": "response_url", - "errorUrl": "https://www.lesswrong.com/", - "username_claimed": "habryka" - }, - "Letterboxd": { - "errorMsg": "Sorry, we can\u2019t find the page you\u2019ve requested.", - "errorType": "message", - "url": "https://letterboxd.com/{}", - "urlMain": "https://letterboxd.com/", - "username_claimed": "blue" - }, - "LibraryThing": { - "errorMsg": "

Error: This user doesn't exist

", - "errorType": "message", - "headers": { - "Cookie": "LTAnonSessionID=3159599315; LTUnifiedCookie=%7B%22areyouhuman%22%3A1%7D; " - }, - "url": "https://www.librarything.com/profile/{}", - "urlMain": "https://www.librarything.com/", - "username_claimed": "blue" - }, - "Lichess": { - "errorType": "status_code", - "url": "https://lichess.org/@/{}", - "urlMain": "https://lichess.org", - "username_claimed": "john" - }, - "LinkedIn": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z0-9]{3,100}$", - "request_method": "GET", - "url": "https://linkedin.com/in/{}", - "urlMain": "https://linkedin.com", - "username_claimed": "paulpfeister" - }, - "Linktree": { - "errorMsg": "\"statusCode\":404", - "errorType": "message", - "regexCheck": "^[\\w\\.]{2,30}$", - "url": "https://linktr.ee/{}", - "urlMain": "https://linktr.ee/", - "username_claimed": "anne" - }, - "LinuxFR.org": { - "errorType": "status_code", - "url": "https://linuxfr.org/users/{}", - "urlMain": "https://linuxfr.org/", - "username_claimed": "pylapp" - }, - "Listed": { - "errorType": "response_url", - "errorUrl": "https://listed.to/@{}", - "url": "https://listed.to/@{}", - "urlMain": "https://listed.to/", - "username_claimed": "listed" - }, - "LiveJournal": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.livejournal.com", - "urlMain": "https://www.livejournal.com/", - "username_claimed": "blue" - }, - "Lobsters": { - "errorType": "status_code", - "regexCheck": "[A-Za-z0-9][A-Za-z0-9_-]{0,24}", - "url": "https://lobste.rs/u/{}", - "urlMain": "https://lobste.rs/", - "username_claimed": "jcs" - }, - "LottieFiles": { - "errorType": "status_code", - "url": "https://lottiefiles.com/{}", - "urlMain": "https://lottiefiles.com/", - "username_claimed": "lottiefiles" - }, - "LushStories": { - "errorType": "status_code", - "isNSFW": true, - "url": "https://www.lushstories.com/profile/{}", - "urlMain": "https://www.lushstories.com/", - "username_claimed": "chris_brown" - }, - "MMORPG Forum": { - "errorType": "status_code", - "url": "https://forums.mmorpg.com/profile/{}", - "urlMain": "https://forums.mmorpg.com/", - "username_claimed": "goku" - }, - "Mamot": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z0-9_]{1,30}$", - "url": "https://mamot.fr/@{}", - "urlMain": "https://mamot.fr/", - "username_claimed": "anciensEnssat" - }, - "Medium": { - "errorMsg": "Nitro Type | Competitive Typing Game | Race Your Friends", - "errorType": "message", - "url": "https://www.nitrotype.com/racer/{}", - "urlMain": "https://www.nitrotype.com/", - "username_claimed": "jianclash" - }, - "NotABug.org": { - "errorType": "status_code", - "url": "https://notabug.org/{}", - "urlMain": "https://notabug.org/", - "urlProbe": "https://notabug.org/{}/followers", - "username_claimed": "red" - }, - "Nothing Community": { - "errorType": "status_code", - "url": "https://nothing.community/u/{}", - "urlMain": "https://nothing.community/", - "username_claimed": "Carl" - }, - "Nyaa.si": { - "errorType": "status_code", - "url": "https://nyaa.si/user/{}", - "urlMain": "https://nyaa.si/", - "username_claimed": "blue" - }, - "ObservableHQ": { - "errorType": "message", - "errorMsg": "Page not found", - "url": "https://observablehq.com/@{}", - "urlMain": "https://observablehq.com/", - "username_claimed": "mbostock" - }, - "Open Collective": { - "errorType": "status_code", - "url": "https://opencollective.com/{}", - "urlMain": "https://opencollective.com/", - "username_claimed": "sindresorhus" - }, - "OpenGameArt": { - "errorType": "status_code", - "url": "https://opengameart.org/users/{}", - "urlMain": "https://opengameart.org", - "username_claimed": "ski" - }, - "OpenStreetMap": { - "errorType": "status_code", - "regexCheck": "^[^.]*?$", - "url": "https://www.openstreetmap.org/user/{}", - "urlMain": "https://www.openstreetmap.org/", - "username_claimed": "blue" - }, - "Odysee": { - "errorMsg": "", - "errorType": "message", - "url": "https://odysee.com/@{}", - "urlMain": "https://odysee.com/", - "username_claimed": "Odysee" - }, - "Opensource": { - "errorType": "status_code", - "url": "https://opensource.com/users/{}", - "urlMain": "https://opensource.com/", - "username_claimed": "red" - }, - "OurDJTalk": { - "errorMsg": "The specified member cannot be found", - "errorType": "message", - "url": "https://ourdjtalk.com/members?username={}", - "urlMain": "https://ourdjtalk.com/", - "username_claimed": "steve" - }, - "Outgress": { - "errorMsg": "Outgress - Error", - "errorType": "message", - "url": "https://outgress.com/agents/{}", - "urlMain": "https://outgress.com/", - "username_claimed": "pylapp" - }, - "PCGamer": { - "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", - "errorType": "message", - "url": "https://forums.pcgamer.com/members/?username={}", - "urlMain": "https://pcgamer.com", - "username_claimed": "admin" - }, - "PSNProfiles.com": { - "errorType": "response_url", - "errorUrl": "https://psnprofiles.com/?psnId={}", - "url": "https://psnprofiles.com/{}", - "urlMain": "https://psnprofiles.com/", - "username_claimed": "blue" - }, - "Packagist": { - "errorType": "response_url", - "errorUrl": "https://packagist.org/search/?q={}&reason=vendor_not_found", - "url": "https://packagist.org/packages/{}/", - "urlMain": "https://packagist.org/", - "username_claimed": "psr" - }, - "Pastebin": { - "errorMsg": "Not Found (#404)", - "errorType": "message", - "url": "https://pastebin.com/u/{}", - "urlMain": "https://pastebin.com/", - "username_claimed": "blue" - }, - "Patched": { - "errorMsg": "The member you specified is either invalid or doesn't exist.", - "errorType": "message", - "url": "https://patched.sh/User/{}", - "urlMain": "https://patched.sh/", - "username_claimed": "blue" - }, - "Patreon": { - "errorType": "status_code", - "url": "https://www.patreon.com/{}", - "urlMain": "https://www.patreon.com/", - "username_claimed": "blue" - }, - "PentesterLab": { - "errorType": "status_code", - "regexCheck": "^[\\w]{4,30}$", - "url": "https://pentesterlab.com/profile/{}", - "urlMain": "https://pentesterlab.com/", - "username_claimed": "0day" - }, - "HotUKdeals": { - "errorType": "status_code", - "url": "https://www.hotukdeals.com/profile/{}", - "urlMain": "https://www.hotukdeals.com/", - "username_claimed": "Blue", - "request_method": "GET" - }, - "Mydealz": { - "errorType": "status_code", - "url": "https://www.mydealz.de/profile/{}", - "urlMain": "https://www.mydealz.de/", - "username_claimed": "blue", - "request_method": "GET" - }, - "Chollometro": { - "errorType": "status_code", - "url": "https://www.chollometro.com/profile/{}", - "urlMain": "https://www.chollometro.com/", - "username_claimed": "blue", - "request_method": "GET" - }, - "PepperNL": { - "errorType": "status_code", - "url": "https://nl.pepper.com/profile/{}", - "urlMain": "https://nl.pepper.com/", - "username_claimed": "Dynaw", - "request_method": "GET" - }, - "PepperPL": { - "errorType": "status_code", - "url": "https://www.pepper.pl/profile/{}", - "urlMain": "https://www.pepper.pl/", - "username_claimed": "FireChicken", - "request_method": "GET" - }, - "Preisjaeger": { - "errorType": "status_code", - "url": "https://www.preisjaeger.at/profile/{}", - "urlMain": "https://www.preisjaeger.at/", - "username_claimed": "Stefan", - "request_method": "GET" - }, - "Pepperdeals": { - "errorType": "status_code", - "url": "https://www.pepperdeals.se/profile/{}", - "urlMain": "https://www.pepperdeals.se/", - "username_claimed": "Mark", - "request_method": "GET" - }, - "PepperealsUS": { - "errorType": "status_code", - "url": "https://www.pepperdeals.com/profile/{}", - "urlMain": "https://www.pepperdeals.com/", - "username_claimed": "Stepan", - "request_method": "GET" - }, - "Promodescuentos": { - "errorType": "status_code", - "url": "https://www.promodescuentos.com/profile/{}", - "urlMain": "https://www.promodescuentos.com/", - "username_claimed": "blue", - "request_method": "GET" - }, - "Periscope": { - "errorType": "status_code", - "url": "https://www.periscope.tv/{}/", - "urlMain": "https://www.periscope.tv/", - "username_claimed": "blue" - }, - "Pinkbike": { - "errorType": "status_code", - "regexCheck": "^[^.]*?$", - "url": "https://www.pinkbike.com/u/{}/", - "urlMain": "https://www.pinkbike.com/", - "username_claimed": "blue" - }, - "pixelfed.social": { - "errorType": "status_code", - "url": "https://pixelfed.social/{}/", - "urlMain": "https://pixelfed.social", - "username_claimed": "pylapp" - }, - "PlayStore": { - "errorType": "status_code", - "url": "https://play.google.com/store/apps/developer?id={}", - "urlMain": "https://play.google.com/store", - "username_claimed": "Facebook" - }, - "Playstrategy": { - "errorType": "status_code", - "url": "https://playstrategy.org/@/{}", - "urlMain": "https://playstrategy.org", - "username_claimed": "oruro" - }, - "Plurk": { - "errorMsg": "User Not Found!", - "errorType": "message", - "url": "https://www.plurk.com/{}", - "urlMain": "https://www.plurk.com/", - "username_claimed": "plurkoffice" - }, - "PocketStars": { - "errorMsg": "Join Your Favorite Adult Stars", - "errorType": "message", - "isNSFW": true, - "url": "https://pocketstars.com/{}", - "urlMain": "https://pocketstars.com/", - "username_claimed": "hacker" - }, - "Pokemon Showdown": { - "errorType": "status_code", - "url": "https://pokemonshowdown.com/users/{}", - "urlMain": "https://pokemonshowdown.com", - "username_claimed": "blue" - }, - "Polarsteps": { - "errorType": "status_code", - "url": "https://polarsteps.com/{}", - "urlMain": "https://polarsteps.com/", - "urlProbe": "https://api.polarsteps.com/users/byusername/{}", - "username_claimed": "james" - }, - "Polygon": { - "errorType": "status_code", - "url": "https://www.polygon.com/users/{}", - "urlMain": "https://www.polygon.com/", - "username_claimed": "swiftstickler" - }, - "Polymart": { - "errorType": "response_url", - "errorUrl": "https://polymart.org/user/-1", - "url": "https://polymart.org/user/{}", - "urlMain": "https://polymart.org/", - "username_claimed": "craciu25yt" - }, - "Pornhub": { - "errorType": "status_code", - "isNSFW": true, - "url": "https://pornhub.com/users/{}", - "urlMain": "https://pornhub.com/", - "username_claimed": "blue" - }, - "ProductHunt": { - "errorType": "status_code", - "url": "https://www.producthunt.com/@{}", - "urlMain": "https://www.producthunt.com/", - "username_claimed": "jenny" - }, - "programming.dev": { - "errorMsg": "Error!", - "errorType": "message", - "url": "https://programming.dev/u/{}", - "urlMain": "https://programming.dev", - "username_claimed": "pylapp" - }, - "Pychess": { - "errorType": "message", - "errorMsg": "404", - "url": "https://www.pychess.org/@/{}", - "urlMain": "https://www.pychess.org", - "username_claimed": "gbtami" - }, - "PromoDJ": { - "errorType": "status_code", - "url": "http://promodj.com/{}", - "urlMain": "http://promodj.com/", - "username_claimed": "blue" - }, - "Pronouns.page": { - "errorType": "status_code", - "url": "https://pronouns.page/@{}", - "urlMain": "https://pronouns.page/", - "username_claimed": "andrea" - }, - "PyPi": { - "errorType": "status_code", - "url": "https://pypi.org/user/{}", - "urlProbe": "https://pypi.org/_includes/administer-user-include/{}", - "urlMain": "https://pypi.org", - "username_claimed": "Blue" - }, - "Python.org Discussions": { - "errorMsg": "Oops! That page doesn’t exist or is private.", - "errorType": "message", - "url": "https://discuss.python.org/u/{}/summary", - "urlMain": "https://discuss.python.org", - "username_claimed": "pablogsal" - }, - "Rajce.net": { - "errorType": "status_code", - "regexCheck": "^[\\w@-]+?$", - "url": "https://{}.rajce.idnes.cz/", - "urlMain": "https://www.rajce.idnes.cz/", - "username_claimed": "blue" - }, - "Rarible": { - "errorType": "status_code", - "url": "https://rarible.com/marketplace/api/v4/urls/{}", - "urlMain": "https://rarible.com/", - "username_claimed": "blue" - }, - "Rate Your Music": { - "errorType": "status_code", - "url": "https://rateyourmusic.com/~{}", - "urlMain": "https://rateyourmusic.com/", - "username_claimed": "blue" - }, - "Rclone Forum": { - "errorType": "status_code", - "url": "https://forum.rclone.org/u/{}", - "urlMain": "https://forum.rclone.org/", - "username_claimed": "ncw" - }, - "RedTube": { - "errorType": "status_code", - "isNSFW": true, - "url": "https://www.redtube.com/users/{}", - "urlMain": "https://www.redtube.com/", - "username_claimed": "hacker" - }, - "Redbubble": { - "errorType": "status_code", - "url": "https://www.redbubble.com/people/{}", - "urlMain": "https://www.redbubble.com/", - "username_claimed": "blue" - }, - "Reddit": { - "errorMsg": "Sorry, nobody on Reddit goes by that name.", - "errorType": "message", - "headers": { - "accept-language": "en-US,en;q=0.9" - }, - "url": "https://www.reddit.com/user/{}", - "urlMain": "https://www.reddit.com/", - "username_claimed": "blue" - }, - "Realmeye": { - "errorMsg": "Sorry, but we either:", - "errorType": "message", - "url": "https://www.realmeye.com/player/{}", - "urlMain": "https://www.realmeye.com/", - "username_claimed": "rotmg" - }, - "Reisefrage": { - "errorType": "status_code", - "url": "https://www.reisefrage.net/nutzer/{}", - "urlMain": "https://www.reisefrage.net/", - "username_claimed": "reisefrage" - }, - "Replit.com": { - "errorType": "status_code", - "url": "https://replit.com/@{}", - "urlMain": "https://replit.com/", - "username_claimed": "blue" - }, - "ResearchGate": { - "errorType": "response_url", - "errorUrl": "https://www.researchgate.net/directory/profiles", - "regexCheck": "\\w+_\\w+", - "url": "https://www.researchgate.net/profile/{}", - "urlMain": "https://www.researchgate.net/", - "username_claimed": "John_Smith" - }, - "ReverbNation": { - "errorMsg": "Sorry, we couldn't find that page", - "errorType": "message", - "url": "https://www.reverbnation.com/{}", - "urlMain": "https://www.reverbnation.com/", - "username_claimed": "blue" - }, - "Roblox": { - "errorType": "status_code", - "url": "https://www.roblox.com/user.aspx?username={}", - "urlMain": "https://www.roblox.com/", - "username_claimed": "bluewolfekiller" - }, - "RocketTube": { - "errorMsg": "OOPS! Houston, we have a problem", - "errorType": "message", - "isNSFW": true, - "url": "https://www.rockettube.com/{}", - "urlMain": "https://www.rockettube.com/", - "username_claimed": "Tatteddick5600" - }, - "RoyalCams": { - "errorType": "status_code", - "url": "https://royalcams.com/profile/{}", - "urlMain": "https://royalcams.com", - "username_claimed": "asuna-black" - }, - "Ruby Forums": { - "errorMsg": "Oops! That page doesn’t exist or is private.", - "errorType": "message", - "url": "https://ruby-forum.com/u/{}/summary", - "urlMain": "https://ruby-forums.com", - "username_claimed": "rishard" - }, - "RubyGems": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]{1,40}", - "url": "https://rubygems.org/profiles/{}", - "urlMain": "https://rubygems.org/", - "username_claimed": "blue" - }, - "Rumble": { - "errorType": "status_code", - "url": "https://rumble.com/user/{}", - "urlMain": "https://rumble.com/", - "username_claimed": "John" - }, - "RuneScape": { - "errorMsg": "{\"error\":\"NO_PROFILE\",\"loggedIn\":\"false\"}", - "errorType": "message", - "regexCheck": "^(?! )[\\w -]{1,12}(?Page no longer exists", - "url": "https://slideshare.net/{}", - "urlMain": "https://slideshare.net/", - "username_claimed": "blue" - }, - "Slides": { - "errorCode": 204, - "errorType": "status_code", - "url": "https://slides.com/{}", - "urlMain": "https://slides.com/", - "username_claimed": "blue" - }, - "SmugMug": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z]{1,35}$", - "url": "https://{}.smugmug.com", - "urlMain": "https://smugmug.com", - "username_claimed": "winchester" - }, - "Smule": { - "errorMsg": "Smule | Page Not Found (404)", - "errorType": "message", - "url": "https://www.smule.com/{}", - "urlMain": "https://www.smule.com/", - "username_claimed": "blue" - }, - "Snapchat": { - "errorType": "status_code", - "regexCheck": "^[a-z][a-z-_.]{3,15}", - "request_method": "GET", - "url": "https://www.snapchat.com/add/{}", - "urlMain": "https://www.snapchat.com", - "username_claimed": "teamsnapchat" - }, - "SOOP": { - "errorType": "status_code", - "url": "https://www.sooplive.co.kr/station/{}", - "urlMain": "https://www.sooplive.co.kr/", - "urlProbe": "https://api-channel.sooplive.co.kr/v1.1/channel/{}/station", - "username_claimed": "udkn" - }, - "SoundCloud": { - "errorType": "status_code", - "url": "https://soundcloud.com/{}", - "urlMain": "https://soundcloud.com/", - "username_claimed": "blue" - }, - "SourceForge": { - "errorType": "status_code", - "url": "https://sourceforge.net/u/{}", - "urlMain": "https://sourceforge.net/", - "username_claimed": "blue" - }, - "SoylentNews": { - "errorMsg": "The user you requested does not exist, no matter how much you wish this might be the case.", - "errorType": "message", - "url": "https://soylentnews.org/~{}", - "urlMain": "https://soylentnews.org", - "username_claimed": "adam" - }, - "SpeakerDeck": { - "errorType": "status_code", - "url": "https://speakerdeck.com/{}", - "urlMain": "https://speakerdeck.com/", - "username_claimed": "pylapp" - }, - "Speedrun.com": { - "errorType": "status_code", - "url": "https://speedrun.com/users/{}", - "urlMain": "https://speedrun.com/", - "username_claimed": "example" - }, - "Spells8": { - "errorType": "status_code", - "url": "https://forum.spells8.com/u/{}", - "urlMain": "https://spells8.com", - "username_claimed": "susurrus" - }, - "Splice": { - "errorType": "status_code", - "url": "https://splice.com/{}", - "urlMain": "https://splice.com/", - "username_claimed": "splice" - }, - "Splits.io": { - "errorType": "status_code", - "regexCheck": "^[^.]*?$", - "url": "https://splits.io/users/{}", - "urlMain": "https://splits.io", - "username_claimed": "cambosteve" - }, - "Sporcle": { - "errorType": "status_code", - "url": "https://www.sporcle.com/user/{}/people", - "urlMain": "https://www.sporcle.com/", - "username_claimed": "blue" - }, - "Sportlerfrage": { - "errorType": "status_code", - "url": "https://www.sportlerfrage.net/nutzer/{}", - "urlMain": "https://www.sportlerfrage.net/", - "username_claimed": "sportlerfrage" - }, - "SportsRU": { - "errorType": "status_code", - "url": "https://www.sports.ru/profile/{}/", - "urlMain": "https://www.sports.ru/", - "username_claimed": "blue" - }, - "Spotify": { - "errorType": "status_code", - "url": "https://open.spotify.com/user/{}", - "urlMain": "https://open.spotify.com/", - "username_claimed": "blue" - }, - "Star Citizen": { - "errorMsg": "404", - "errorType": "message", - "url": "https://robertsspaceindustries.com/citizens/{}", - "urlMain": "https://robertsspaceindustries.com/", - "username_claimed": "blue" - }, - "Status Cafe": { - "errorMsg": "Page Not Found", - "errorType": "message", - "url": "https://status.cafe/users/{}", - "urlMain": "https://status.cafe/", - "username_claimed": "blue" - }, - "Steam Community (Group)": { - "errorMsg": "No group could be retrieved for the given URL", - "errorType": "message", - "url": "https://steamcommunity.com/groups/{}", - "urlMain": "https://steamcommunity.com/", - "username_claimed": "blue" - }, - "Steam Community (User)": { - "errorMsg": "The specified profile could not be found", - "errorType": "message", - "url": "https://steamcommunity.com/id/{}/", - "urlMain": "https://steamcommunity.com/", - "username_claimed": "blue" - }, - "Strava": { - "errorType": "status_code", - "regexCheck": "^[^.]*?$", - "url": "https://www.strava.com/athletes/{}", - "urlMain": "https://www.strava.com/", - "username_claimed": "blue" - }, - "SublimeForum": { - "errorType": "status_code", - "url": "https://forum.sublimetext.com/u/{}", - "urlMain": "https://forum.sublimetext.com/", - "username_claimed": "blue" - }, - "TETR.IO": { - "errorMsg": "No such user!", - "errorType": "message", - "url": "https://ch.tetr.io/u/{}", - "urlMain": "https://tetr.io", - "urlProbe": "https://ch.tetr.io/api/users/{}", - "username_claimed": "osk" - }, - "TheMovieDB": { - "errorType": "status_code", - "url": "https://www.themoviedb.org/u/{}", - "urlMain": "https://www.themoviedb.org/", - "username_claimed": "blue" - }, - "TikTok": { - "url": "https://www.tiktok.com/@{}", - "urlMain": "https://www.tiktok.com", - "errorType": "message", - "errorMsg": [ - "\"statusCode\":10221", - "Govt. of India decided to block 59 apps" - ], - "username_claimed": "charlidamelio" - }, - "Tiendanube": { - "url": "https://{}.mitiendanube.com/", - "urlMain": "https://www.tiendanube.com/", - "errorType": "status_code", - "username_claimed": "blue" - }, - "Topcoder": { - "errorType": "status_code", - "url": "https://profiles.topcoder.com/{}/", - "urlMain": "https://topcoder.com/", - "username_claimed": "USER", - "urlProbe": "https://api.topcoder.com/v5/members/{}", - "regexCheck": "^[a-zA-Z0-9_.]+$" - }, - "Topmate": { - "errorType": "status_code", - "url": "https://topmate.io/{}", - "urlMain": "https://topmate.io/", - "username_claimed": "blue" - }, - "TRAKTRAIN": { - "errorType": "status_code", - "url": "https://traktrain.com/{}", - "urlMain": "https://traktrain.com/", - "username_claimed": "traktrain" - }, - "Telegram": { - "errorMsg": [ - "Telegram Messenger", - "If you have Telegram, you can contact User ", - "429 Too Many Requests" - ], - "errorType": "message", - "regexCheck": "^[a-zA-Z0-9_]{1,15}$", - "url": "https://x.com/{}", - "urlMain": "https://x.com/", - "urlProbe": "https://nitter.privacydev.net/{}", - "username_claimed": "blue" - }, - "Typeracer": { - "errorMsg": "Profile Not Found", - "errorType": "message", - "url": "https://data.typeracer.com/pit/profile?user={}", - "urlMain": "https://typeracer.com", - "username_claimed": "blue" - }, - "Ultimate-Guitar": { - "errorType": "status_code", - "url": "https://ultimate-guitar.com/u/{}", - "urlMain": "https://ultimate-guitar.com/", - "username_claimed": "blue" - }, - "Unsplash": { - "errorType": "status_code", - "regexCheck": "^[a-z0-9_]{1,60}$", - "url": "https://unsplash.com/@{}", - "urlMain": "https://unsplash.com/", - "username_claimed": "jenny" - }, - "Untappd": { - "errorType": "status_code", - "url": "https://untappd.com/user/{}", - "urlMain": "https://untappd.com/", - "username_claimed": "untappd" - }, - "Valorant Forums": { - "errorMsg": "The page you requested could not be found.", - "errorType": "message", - "url": "https://valorantforums.com/u/{}", - "urlMain": "https://valorantforums.com", - "username_claimed": "Wolves" - }, - "VK": { - "errorType": "response_url", - "errorUrl": "https://www.quora.com/profile/{}", - "url": "https://vk.com/{}", - "urlMain": "https://vk.com/", - "username_claimed": "brown" - }, - "VSCO": { - "errorType": "status_code", - "url": "https://vsco.co/{}", - "urlMain": "https://vsco.co/", - "username_claimed": "blue" - }, - "Velog": { - "errorType": "status_code", - "url": "https://velog.io/@{}/posts", - "urlMain": "https://velog.io/", - "username_claimed": "qlgks1" - }, - "Velomania": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", - "errorType": "message", - "url": "https://forum.velomania.ru/member.php?username={}", - "urlMain": "https://forum.velomania.ru/", - "username_claimed": "red" - }, - "Venmo": { - "errorMsg": ["Venmo | Page Not Found"], - "errorType": "message", - "headers": { - "Host": "account.venmo.com" - }, - "url": "https://account.venmo.com/u/{}", - "urlMain": "https://venmo.com/", - "urlProbe": "https://test1.venmo.com/u/{}", - "username_claimed": "jenny" - }, - "Vero": { - "errorMsg": "Not Found", - "errorType": "message", - "request_method": "GET", - "url": "https://vero.co/{}", - "urlMain": "https://vero.co/", - "username_claimed": "blue" - }, - "Vimeo": { - "errorType": "status_code", - "url": "https://vimeo.com/{}", - "urlMain": "https://vimeo.com/", - "username_claimed": "blue" - }, - "VirusTotal": { - "errorType": "status_code", - "request_method": "GET", - "url": "https://www.virustotal.com/gui/user/{}", - "urlMain": "https://www.virustotal.com/", - "urlProbe": "https://www.virustotal.com/ui/users/{}/avatar", - "username_claimed": "blue" - }, - "VLR": { - "errorType": "status_code", - "url": "https://www.vlr.gg/user/{}", - "urlMain": "https://www.vlr.gg", - "username_claimed": "optms" - }, - "WICG Forum": { - "errorType": "status_code", - "regexCheck": "^(?![.-])[a-zA-Z0-9_.-]{3,20}$", - "url": "https://discourse.wicg.io/u/{}/summary", - "urlMain": "https://discourse.wicg.io/", - "username_claimed": "stefano" - }, - "Wakatime": { - "errorType": "status_code", - "url": "https://wakatime.com/@{}", - "urlMain": "https://wakatime.com/", - "username_claimed": "blue" - }, - "Warrior Forum": { - "errorType": "status_code", - "url": "https://www.warriorforum.com/members/{}.html", - "urlMain": "https://www.warriorforum.com/", - "username_claimed": "blue" - }, - "Wattpad": { - "errorType": "status_code", - "url": "https://www.wattpad.com/user/{}", - "urlMain": "https://www.wattpad.com/", - "urlProbe": "https://www.wattpad.com/api/v3/users/{}/", - "username_claimed": "Dogstho7951" - }, - "WebNode": { - "errorType": "status_code", - "regexCheck": "^[\\w@-]+?$", - "url": "https://{}.webnode.cz/", - "urlMain": "https://www.webnode.cz/", - "username_claimed": "radkabalcarova" - }, - "Weblate": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z0-9@._-]{1,150}$", - "url": "https://hosted.weblate.org/user/{}/", - "urlMain": "https://hosted.weblate.org/", - "username_claimed": "adam" - }, - "Weebly": { - "errorType": "status_code", - "regexCheck": "^[a-zA-Z0-9-]{1,63}$", - "url": "https://{}.weebly.com/", - "urlMain": "https://weebly.com/", - "username_claimed": "blue" - }, - "Wikidot": { - "errorMsg": "User does not exist.", - "errorType": "message", - "url": "http://www.wikidot.com/user:info/{}", - "urlMain": "http://www.wikidot.com/", - "username_claimed": "blue" - }, - "Wikipedia": { - "errorMsg": "centralauth-admin-nonexistent:", - "errorType": "message", - "url": "https://en.wikipedia.org/wiki/Special:CentralAuth/{}?uselang=qqx", - "urlMain": "https://www.wikipedia.org/", - "username_claimed": "Hoadlck" - }, - "Windy": { - "errorType": "status_code", - "url": "https://community.windy.com/user/{}", - "urlMain": "https://windy.com/", - "username_claimed": "blue" - }, - "Wix": { - "errorType": "status_code", - "regexCheck": "^[\\w@-]+?$", - "url": "https://{}.wix.com", - "urlMain": "https://wix.com/", - "username_claimed": "support" - }, - "WolframalphaForum": { - "errorType": "status_code", - "url": "https://community.wolfram.com/web/{}/home", - "urlMain": "https://community.wolfram.com/", - "username_claimed": "unico" - }, - "WordPress": { - "errorType": "response_url", - "errorUrl": "wordpress.com/typo/?subdomain=", - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.wordpress.com/", - "urlMain": "https://wordpress.com", - "username_claimed": "blue" - }, - "WordPressOrg": { - "errorType": "response_url", - "errorUrl": "https://wordpress.org", - "url": "https://profiles.wordpress.org/{}/", - "urlMain": "https://wordpress.org/", - "username_claimed": "blue" - }, - "Wordnik": { - "errorMsg": "Page Not Found", - "errorType": "message", - "regexCheck": "^[a-zA-Z0-9_.+-]{1,40}$", - "url": "https://www.wordnik.com/users/{}", - "urlMain": "https://www.wordnik.com/", - "username_claimed": "blue" - }, - "Wykop": { - "errorType": "status_code", - "url": "https://www.wykop.pl/ludzie/{}", - "urlMain": "https://www.wykop.pl", - "username_claimed": "blue" - }, - "Xbox Gamertag": { - "errorType": "status_code", - "url": "https://xboxgamertag.com/search/{}", - "urlMain": "https://xboxgamertag.com/", - "username_claimed": "red" - }, - "Xvideos": { - "errorType": "status_code", - "isNSFW": true, - "url": "https://xvideos.com/profiles/{}", - "urlMain": "https://xvideos.com/", - "username_claimed": "blue" - }, - "YandexMusic": { - "__comment__": "The first and third errorMsg relate to geo-restrictions and bot detection/captchas.", - "errorMsg": [ - "\u041e\u0448\u0438\u0431\u043a\u0430 404", - "Threads • Log in", - "errorType": "message", - "headers": { - "Sec-Fetch-Mode": "navigate" - }, - "url": "https://www.threads.net/@{}", - "urlMain": "https://www.threads.net/", - "username_claimed": "zuck" - }, - "toster": { - "errorType": "status_code", - "url": "https://www.toster.ru/user/{}/answers", - "urlMain": "https://www.toster.ru/", - "username_claimed": "adam" - }, - "tumblr": { - "errorType": "status_code", - "url": "https://{}.tumblr.com/", - "urlMain": "https://www.tumblr.com/", - "username_claimed": "goku" - }, - "uid": { - "errorType": "status_code", - "url": "http://uid.me/{}", - "urlMain": "https://uid.me/", - "username_claimed": "blue" - }, - "write.as": { - "errorType": "status_code", - "url": "https://write.as/{}", - "urlMain": "https://write.as", - "username_claimed": "pylapp" - }, - "xHamster": { - "errorType": "status_code", - "isNSFW": true, - "url": "https://xhamster.com/users/{}", - "urlMain": "https://xhamster.com", - "urlProbe": "https://xhamster.com/users/{}?old_browser=true", - "username_claimed": "blue" - }, - "znanylekarz.pl": { - "errorType": "status_code", - "url": "https://www.znanylekarz.pl/{}", - "urlMain": "https://znanylekarz.pl", - "username_claimed": "janusz-nowak" - }, - "Platzi": { - "errorType": "status_code", - "errorCode": 404, - "url": "https://platzi.com/p/{}/", - "urlMain": "https://platzi.com/", - "username_claimed": "freddier", - "request_method": "GET" - }, - "BabyRu": { - "url": "https://www.baby.ru/u/{}", - "urlMain": "https://www.baby.ru/", - "errorType": "message", - "errorMsg": [ - "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0438\u0441\u043a\u0430\u043b\u0438, \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430", - "\u0414\u043e\u0441\u0442\u0443\u043f \u0441 \u0432\u0430\u0448\u0435\u0433\u043e IP-\u0430\u0434\u0440\u0435\u0441\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d" - ], - "username_claimed": "example" - } -} diff --git a/data/sites/snoop.json b/data/sites/snoop.json deleted file mode 100644 index d15e7a2..0000000 --- a/data/sites/snoop.json +++ /dev/null @@ -1,63308 +0,0 @@ -{ - "11x2": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://11x2.com/user/home/{}", - "urlMain": "https://11x2.com", - "usernameON": "hazelamy", - "comments": "Oplata", - "bad_site": 1 - }, - "123rf": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "\\W|[а-я-А-Я]", - "errorTyp��": "response_url", - "url": "https://ru.123rf.com/profile_{}", - "urlMain": "https://ru.123rf.com", - "usernameON": "rawpixel", - "bad_site": "" - }, - "1337x": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Error something went wrong", - "errorMsg2": "Attention Required! | Cloudflare", - "errorMsg3": "блокирован", - "errorTyp��": "message", - "url": "http://1337x.to/user/{}/", - "urlMain": "http://1337x.to", - "usernameON": "adam", - "bad_site": "" - }, - "1911forum": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.1911forum.com/members/?username={}", - "urlMain": "https://www.1911forum.com/", - "usernameON": "jswi1980", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "247sports": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "247Sports", - "errorMsg2": "Welcome to the end of the internet!", - "errorTyp��": "message", - "url": "https://247sports.com/user/{}/", - "urlMain": "https://247sports.com", - "usernameON": "adam", - "comments": "RUblock", - "bad_site": "" - }, - "2berega_spb": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "2берега.спб.ру - социально-методическая сеть Невского района Санкт-Петербурга", - "errorTyp��": "message", - "errorMsg3": "><title>404", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://2berega.spb.ru/user/{}", - "urlMain": "https://2berega.spb.ru", - "usernameON": "adam", - "comments": "https://2berega.spb.ru/user/{}/&from=peopleonline", - "bad_site": "" - }, - "2d-3d": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://www.2d-3d.ru/user/{}/", - "urlMain": "https://www.2d-3d.ru", - "usernameON": "adam", - "comments": "bad", - "bad_site": "" - }, - "308-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://www.308-club.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.308-club.ru", - "usernameON": "sanches36", - "bad_site": "" - }, - "33bru__CLOSEDEAD": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Извините, такого пользователя не существует", - "errorMsg2": "Общая ошибка", - "errorTyp��": "message", - "exclusion": "\\W|[а-яА-Я]", - "url": "http://{}.33bru.com/", - "urlMain": "http://33bru.com/", - "usernameON": "adam", - "bad_site": 1 - }, - "35photo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://35photo.pro/{}/profile", - "urlMain": "https://35photo.pro", - "usernameON": "alx1", - "bad_site": "" - }, - "3ddd": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://3ddd.ru/users/rutut/blogs", - "urlMain": "https://3ddd.ru", - "usernameON": "adam", - "comments": "super", - "bad_site": 1 - }, - "3dtoday": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "url": "https://3dtoday.ru/blogs/{}", - "urlMain": "https://3dtoday.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "3rm": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://3rm.info/user/{}/", - "urlMain": "https://3rm.info", - "usernameON": "donat", - "comments": "cf", - "bad_site": 1 - }, - "42km": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "ничего не найдено", - "errorMsg2": "Ничего не найдено...", - "errorTyp��": "message", - "url": "http://www.42km.ru/c?name={}&x=0&y=0&country_id=1&town_id=0&sex=0&grade_id=0", - "urlMain": "http://www.42km.ru", - "usernameON": "adam", - "bad_site": "" - }, - "4allforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://4allforum.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://4allforum.ru", - "usernameON": "urban", - "bad_site": "" - }, - "4gameforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "
", - "errorMsg2": "NoneNone", - "errorMsg3": "Выдающиеся пользователи |", - "errorTyp��": "message", - "url": "https://4gameforum.com/members/?username={}", - "urlMain": "https://4gameforum.com", - "usernameON": "persty", - "bad_site": "" - }, - "4pda": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению, Ваш поиск не дал никаких результатов.", - "errorMsg2": "<title>Just a moment...", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://4pda.to/forum/index.php?act=search&source=pst&noform=1&username={}", - "urlMain": "https://4pda.to/", - "comments": "cf", - "usernameON": "green", - "bad_site": "" - }, - "4stor": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://4stor.ru/user/{}", - "urlMain": "https://4stor.ru", - "usernameON": "adam", - "bad_site": "" - }, - "4x4_tomsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://4x4.tomsk.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://4x4.tomsk.ru", - "usernameON": "svh701", - "bad_site": "" - }, - "50cc": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://50cc.com.ua/index/8-0-{}", - "urlMain": "http://50cc.com.ua", - "usernameON": "1g0g", - "bad_site": "" - }, - "7Cups": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.7cups.com/@{}", - "urlMain": "https://www.7cups.com/", - "usernameON": "blue", - "bad_site": "" - }, - "7dach": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://7dach.ru/profile/{}", - "urlMain": "https://7dach.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "Abirvalg": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://abirvalg.net/forum/members/?username={}", - "urlMain": "https://abirvalg.net", - "usernameON": "dmitrypioneer", - "bad_site": "", - "comments": "bad", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Able2know": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://able2know.org/user/{}/", - "urlMain": "https://able2know.org", - "usernameON": "yalow", - "bad_site": "" - }, - "Abordazh": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "\n403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.excelworld.ru/index/8-0-{}", - "urlMain": "http://www.excelworld.ru", - "usernameON": "Mazila", - "bad_site": "" - }, - "Exo": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Користувача не знайдено", - "errorMsg2": "403 Forbidden", - "errorMsg3": "User not found", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://exo.at.ua/index/8-0-{}", - "urlMain": "https://exo.at.ua", - "usernameON": "lara007", - "bad_site": "" - }, - "Exploretalent": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "info-text\">", - "errorMsg2": "userNode\":{}},\"", - "errorMsg3": "undefined", - "errorTyp��": "message", - "url": "https://www.exploretalent.com/{}", - "urlMain": "https://www.exploretalent.com", - "usernameON": "klaus", - "bad_site": "" - }, - "EybooksTO": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 resultados", - "errorMsg2": "There were no results for your search", - "errorTyp��": "message", - "url": "https://eybooks.to/search/?q={}&quick=1&type=core_members", - "urlMain": "https://eybooks.to", - "usernameON": "invers0r", - "bad_site": 1 - }, - "EyeEm": { - "country": "🇩🇪", - "country_klas": "DE", - "errorMsg": "blue | EyeEm Photographer", - "errorMsg2": "Not Found (404)", - "errorTyp��": "message", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.eyeem.com/u/{}", - "urlMain": "https://www.eyeem.com/", - "usernameON": "blue", - "bad_site": "" - }, - "F-droid": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://forum.f-droid.org/u/{}/summary", - "urlMain": "https://forum.f-droid.org", - "usernameON": "tip", - "bad_site": "" - }, - "F3_cool": { - "country": "🇱🇻", - "country_klas": "LV", - "errorTyp��": "status_code", - "url": "https://f3.cool/{}/", - "urlMain": "https://f3.cool/", - "usernameON": "blue", - "bad_site": "" - }, - "F6s": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "404", - "errorMsg2": "We think you might", - "errorMsg3": "unavailable in your location", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.f6s.com/{}", - "urlMain": "https://www.f6s.com", - "usernameON": "adam", - "comments": "RUblock", - "bad_site": "" - }, - "F95zone": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://f95zone.to/members/?username={}", - "urlMain": "https://f95zone.to", - "usernameON": "retro", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "FA-Wiki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://wiki.fa100.ru/index.php?title=%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}", - "urlMain": "http://wiki.fa100.ru", - "usernameON": "Anatolyk", - "comments": "Oplata", - "bad_site": "" - }, - "Fabswingers": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.fabswingers.com/profile/{}", - "urlMain": "https://www.fabswingers.com", - "usernameON": "adam", - "bad_site": "" - }, - "Facebook (деятельность запрещена в России)": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.facebook.com/{}/", - "urlMain": "https://www.facebook.com/", - "usernameON": "RED", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "comments": "ZAK_user", - "bad_site": 1 - }, - "Facenama": { - "country": "🇮🇳", - "country_klas": "IN", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://facenama.com/{}", - "urlMain": "https://facenama.com/", - "usernameON": "blue", - "bad_site": 1 - }, - "Fadecloudmc": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://fadecloudmc.com/forums/members/?username={}", - "urlMain": "https://fadecloudmc.com", - "usernameON": "jordan", - "bad_site": 1, - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Fallout_reactor": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "url": "https://fallout.reactor.cc/user/{}", - "urlMain": "https://fallout.reactor.cc", - "usernameON": "Xell108", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Fanacmilan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "NameBright - Domain Expired", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://fanacmilan.com/index/8-0-{}", - "urlMain": "http://fanacmilan.com", - "usernameON": "milanfan97", - "bad_site": 1 - }, - "Fandom": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.fandom.com/u/{}", - "urlMain": "https://www.fandom.com/", - "usernameON": "Jungypoo", - "bad_site": "" - }, - "FanficsLandia": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://fanficslandia.com/usuario/?username={}", - "urlMain": "https://fanficslandia.com", - "usernameON": "sensy", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Fanlore": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "http://fanlore.org/wiki/User:{}", - "urlMain": "http://fanlore.org", - "usernameON": "red", - "bad_site": "" - }, - "Fanpop": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.fanpop.com/fans/{}", - "urlMain": "https://www.fanpop.com/", - "usernameON": "blue", - "comments": "cf", - "bad_site": "" - }, - "Fansmetrics": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://fansmetrics.com/en/onlyfans/{}", - "urlMain": "https://fansmetrics.com", - "urlProbe": "https://subseeker.co/creators/{}", - "usernameON": "itsmoremia", - "bad_site": "" - }, - "Fantlab": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "не найдено ни одного посетителя", - "errorMsg2": "

FantLab ru

", - "errorTyp��": "message", - "url": "https://fantlab.ru/usersclasspage1?usersearch={}", - "urlMain": "https://fantlab.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Faqusha": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://faqusha.ru/profile/{}/", - "urlMain": "https://faqusha.ru", - "usernameON": "typhoon", - "bad_site": "" - }, - "Fark": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Tastes like chicken.", - "errorMsg2": "FARK.com: User profiles: view", - "errorTyp��": "message", - "url": "https://www.fark.com/users/{}/", - "urlMain": "https://www.fark.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Farmerforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg2": "0 пользовате", - "errorMsg3": "Не найдено ни одного пользовател", - "errorTyp��": "message", - "url": "http://farmerforum.ru/memberlist.php?username={}", - "urlMain": "http://farmerforum.ru", - "usernameON": "Admin", - "bad_site": "" - }, - "Fashionindustrynetwork": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.fashionindustrynetwork.com/members/{}", - "urlMain": "https://www.fashionindustrynetwork.com", - "usernameON": "abitosera", - "comments": "bad", - "bad_site": 1 - }, - "Fatsecret": { - "country": "🇦🇺", - "country_klas": "AU", - "errorTyp��": "response_url", - "url": "https://www.fatsecret.com/member/{}", - "urlMain": "https://www.fatsecret.com", - "usernameON": "adam", - "bad_site": "" - }, - "Favera": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://favera.ru/{}", - "urlMain": "https://favera.ru", - "usernameON": "mayhem", - "bad_site": 1 - }, - "Fcdin": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "http://fcdin.com/forum/memberlist.php?username={}", - "urlMain": "http://fcdin.com", - "usernameON": "red", - "bad_site": "" - }, - "Fcenter": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://www1.fcenter.ru/fcconfa/search.php?keywords=&terms=all&author={}", - "urlMain": "http://www1.fcenter.ru", - "usernameON": "DmitryVT", - "bad_site": 1 - }, - "Fckarpaty": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Сторінку не знайдено", - "errorMsg2": "Сторінку не знайдено", - "errorMsg3": "User not found", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://fckarpaty.com.ua/index/8-0-{}", - "urlMain": "http://fckarpaty.com.ua", - "usernameON": "OlegGurin", - "comments": "bad", - "bad_site": 1 - }, - "Fclmnews": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "content=\"noindex, nofollow", - "errorMsg2": "please...", - "errorTyp��": "message", - "url": "https://fclmnews.ru/user/{}/", - "urlMain": "https://fclmnews.ru", - "usernameON": "stoker82", - "comments": "cf", - "bad_site": "" - }, - "Fcrubin": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "Форум болельщиков ФК Рубин", - "errorTyp��": "message", - "url": "https://www.fcrubin.ru/forum/member.php?username={}", - "urlMain": "https://www.fcrubin.ru", - "usernameON": "flet", - "bad_site": "" - }, - "Fcshakhter": { - "country": "🇧🇾", - "country_klas": "BY", - "errorMsg": ">Постов не найдено

", - "errorMsg2": "

", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://fcshakhter.by/forum.asp?limit_pocet=20&jmeno={}", - "urlMain": "https://fcshakhter.by", - "usernameON": "fdfds", - "bad_site": "" - }, - "Fedoraproject": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://ask.fedoraproject.org/u/{}/summary", - "urlMain": "https://ask.fedoraproject.org/", - "usernameON": "rbirkner", - "bad_site": "" - }, - "Fegatch": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://www.fegatch.com/users/{}/artworks/", - "urlMain": "http://www.fegatch.com/", - "usernameON": "margaret-veret", - "bad_site": 1 - }, - "Feisovet": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://feisovet.ru/%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D1%82%D0%B5%D0%BB%D0%B8/{}", - "urlMain": "https://feisovet.ru", - "usernameON": "RinaLesnicova", - "bad_site": "" - }, - "Femunity": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Page not found", - "errorMsg2": "content='noindex", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://femunity.org/forums/users/{}/", - "urlMain": "https://femunity.org", - "usernameON": "andrew99", - "ignore_status_code": true, - "bad_site": "" - }, - "Fiat-club": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Извините, такого пользователя не существует", - "errorMsg2": " :: ", - "errorTyp��": "message", - "url": "http://fiat-club.org.ua/forum/profile.php?mode=viewprofile&u={}", - "urlMain": "http://fiat-club.org.ua", - "usernameON": "CreAtoR", - "bad_site": "" - }, - "Ficwad": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://ficwad.com/a/{}/favorites/authors", - "urlMain": "https://ficwad.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Ficwriter": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Этот профиль либо больше не существует или не доступен.", - "errorMsg2": "Пользователи", - "errorTyp��": "message", - "url": "https://ficwriter.info/polzovateli/userprofile/{}.html", - "urlMain": "https://ficwriter.info", - "usernameON": "Zinaida", - "bad_site": "" - }, - "Filmow": { - "country": "🇵🇹", - "country_klas": "PT", - "errorTyp��": "status_code", - "url": "https://filmow.com/usuario/{}", - "urlMain": "https://filmow.com/", - "usernameON": "adam", - "comments": "cf", - "bad_site": "" - }, - "Filmwatch": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://filmwatch.com/user/home/{}", - "urlMain": "https://filmwatch.com", - "usernameON": "hazelamy", - "comments": "Oplata", - "bad_site": 1 - }, - "Filmweb": { - "country": "🇵🇱", - "country_klas": "PL", - "errorMsg": "lang=\"pl\">", - "errorTyp��": "message", - "url": "http://movie-club.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://movie-club.ru", - "usernameON": "apollion", - "bad_site": "" - }, - "Forum_mow-portal": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mow-portal.ru/index/8-0-{}", - "urlMain": "https://mow-portal.ru", - "usernameON": "alexeyeryomchenko", - "bad_site": "" - }, - "Forum_mozhaysk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mozhaysk.my1.ru/index/8-0-{}", - "urlMain": "https://mozhaysk.my1.ru", - "usernameON": "vilniy", - "bad_site": "" - }, - "Forum_mozilla-russia": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "По вашему запросу ничего не найдено", - "errorMsg2": "

\n\n\n0", - "errorTyp��": "message", - "url": "https://www.uralfishing.ru/forum/profile.php?mode=viewprofile&u={}", - "urlMain": "https://www.uralfishing.ru", - "usernameON": "Mephisto", - "bad_site": "" - }, - "Uralrock": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "url": "https://uralrock.ru/forum/member.php?username={}", - "urlMain": "https://uralrock.ru", - "usernameON": "Cyxapb", - "comments": "RUblock", - "bad_site": "" - }, - "Urlebird": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://urlebird.com/user/{}/", - "urlMain": "https://urlebird.com", - "usernameON": "chikamaria4", - "comments": "zamedlenie", - "bad_site": "" - }, - "USA_life": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://usa.life/{}", - "urlMain": "https://usa.life", - "usernameON": "RinDavis", - "bad_site": "" - }, - "Users_ucrazy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://ucrazy.org/u/{}/", - "urlMain": "https://ucrazy.org", - "usernameON": "aptoc", - "bad_site": "" - }, - "Usersoft_ucoz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://usersoft.ucoz.ru/index/8-0-{}", - "urlMain": "https://usersoft.ucoz.ru", - "usernameON": "SRabdrashirup", - "bad_site": "" - }, - "Uvelir": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://uvelir.net/member.php?username={}", - "urlMain": "https://uvelir.net/", - "usernameON": "red", - "comments": "Oplata", - "bad_site": "" - }, - "Uwr1": { - "country": "🇩🇪", - "country_klas": "DE", - "errorTyp��": "status_code", - "url": "http://uwr1.de/forum/profile/{}", - "urlMain": "http://uwr1.de", - "usernameON": "adam", - "comments": "bad", - "bad_site": "" - }, - "Uzhforum": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Користувач не зареєстрований і не має профілю, який можна переглянути.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.uzhforum.com/member.php?username={}", - "urlMain": "http://www.uzhforum.com", - "usernameON": "kirpicik", - "comments": "old", - "bad_site": 1 - }, - "Valday": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Личные данные пользователя ", - "errorMsg2": "gen\"> ", - "errorMsg3": "UnMask", - "errorTyp��": "message", - "url": "https://valday.com/forum/profile.php?mode=viewprofile&u={}", - "urlMain": "https://valday.com", - "usernameON": "Azs", - "bad_site": "" - }, - "Vamber": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://vamber.ru/author/{}/", - "urlMain": "https://vamber.ru", - "usernameON": "irina", - "bad_site": "" - }, - "Vampirerave": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.vampirerave.com/profiles/profiles2.php?profile={}", - "urlMain": "https://www.vampirerave.com", - "usernameON": "EternalXRage", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Vas3k": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://vas3k.club/user/{}/", - "urlMain": "https://vas3k.club", - "usernameON": "zahhar", - "bad_site": "" - }, - "VC": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "message\":\"\",\"result\":{\"items\":[],\"lastId\":null", - "errorMsg2": "lastSortingValue\":0,\"total\":0", - "errorTyp��": "message", - "url": "https://vc.ru/discovery?q={}", - "urlMain": "https://vc.ru", - "urlProbe": "https://api.vc.ru/v2.51/search/subsites?q={}&type=1&page=0", - "usernameON": "yuliya", - "headers": { - "Accept-Language": "ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", - "DNT": "1", - "Priority": "u=1", - "Connection": "keep-alive", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "none", - "Sec-Fetch-User": "?1", - "Sec-GPC": "1", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0" - }, - "bad_site": "" - }, - "Vegascreativesoftware": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Whatever you're looking for.", - "errorMsg2": "VEGAS Community | vegascreativesoftware.info", - "errorTyp��": "message", - "url": "https://www.vegascreativesoftware.info/us/users/profile/{}/", - "urlMain": "https://www.vegascreativesoftware.info", - "usernameON": "adam", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Velocat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих сообщений не найдено", - "errorMsg2": "<title>ВЕЛОСАЙТ - Информация", - "errorTyp��": "message", - "url": "https://velocat.ru/velo/phpBB3/search.php?keywords={}&type=type-special", - "urlMain": "https://velocat.ru", - "usernameON": "blue", - "bad_site": "" - }, - "Velomania": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://forum.velomania.ru/member.php?username={}", - "urlMain": "https://forum.velomania.ru/", - "usernameON": "red", - "bad_site": "" - }, - "Velosamara": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg2": "0 пользователей", - "errorTyp��": "message", - "url": "http://velosamara.ru/forum/memberlist.php?username={}", - "urlMain": "http://velosamara.ru", - "usernameON": "Morbo", - "bad_site": "" - }, - "Venera": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Результатов поиска нет", - "errorTyp��": "message", - "url": "https://venera.one/search/?q={}&type=core_members", - "urlMain": "https://venera.one", - "usernameON": "adam", - "comments": "old", - "bad_site": 1 - }, - "Venmo": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://venmo.com/{}", - "urlMain": "https://venmo.com/", - "usernameON": "jenny", - "comments": "RUblock", - "bad_site": "" - }, - "Vero": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Error Page - VERO™ – True Social", - "errorMsg2": "class=\"_not-found-page", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://vero.co/{}", - "urlMain": "https://vero.co", - "usernameON": "lilyherbertson", - "bad_site": "" - }, - "Vezha": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://vezha.com/members/?username={}", - "urlMain": "https://vezha.com/", - "usernameON": "red", - "bad_site": "" - }, - "Vgtimes": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "не найден", - "errorMsg2": "Сайт сейчас", - "errorMsg3": "<div id='dle-content'></div>", - "errorTyp��": "message", - "url": "https://vgtimes.ru/user/{}/", - "urlMain": "https://vgtimes.ru", - "comments": "cf", - "usernameON": "Raumkua", - "bad_site": "" - }, - "Vidamora": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "<title>Meet , in", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.vidamora.com/profile/{}", - "urlMain": "https://www.vidamora.com", - "usernameON": "adam", - "bad_site": "" - }, - "Video_ploud": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://video.ploud.jp/accounts/{}/video-channels", - "urlMain": "https://video.ploud.jp", - "usernameON": "lwflouisa", - "bad_site": "" - }, - "Videoforums": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "url": "http://videoforums.ru/member.php?username={}", - "urlMain": "http://videoforums.ru", - "usernameON": "carlo", - "bad_site": "" - }, - "Videogamegeek": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "<title>Profile | VideoGameGeek", - "errorMsg2": "Error: User does not exist.", - "errorMsg3": "not found", - "errorTyp��": "message", - "url": "https://videogamegeek.com/user/{}", - "urlMain": "https://videogamegeek.com", - "usernameON": "adam", - "bad_site": 1 - }, - "Videohive": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://videohive.net/user/{}", - "urlMain": "https://videohive.net", - "usernameON": "zedbadley", - "bad_site": "" - }, - "Videosift": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "You Seem Lost", - "errorMsg2": "Not Found", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://videosift.com/member/{}", - "urlMain": "https://videosift.com", - "usernameON": "adam", - "comments": "cf", - "bad_site": 1 - }, - "Vimeo": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "[а-яА-Я]", - "errorTyp��": "status_code", - "url": "https://vimeo.com/{}", - "urlMain": "https://vimeo.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Virgool": { - "country": "🇮🇷", - "country_klas": "IR", - "errorMsg": "۴۰۴", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://virgool.io/@{}", - "urlMain": "https://virgool.io/", - "usernameON": "blue", - "comments": "cf", - "bad_site": "" - }, - "Virtualireland": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "VirtualIreland.ru - Виртуальная Ирландия", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://www.virtualireland.ru/member.php?username={}", - "urlMain": "https://www.virtualireland.ru", - "usernameON": "Lee", - "bad_site": "" - }, - "Vishivalochka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://vishivalochka.ru/index/8-0-{}", - "urlMain": "http://vishivalochka.ru", - "usernameON": "Caliopa", - "comments": "Oplata", - "bad_site": "" - }, - "Vivino": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.vivino.com/users/{}", - "urlMain": "https://www.vivino.com/", - "usernameON": "adam", - "bad_site": "" - }, - "VK": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://vk.com/{}", - "urlMain": "https://vk.com/", - "usernameON": "smith", - "bad_site": "" - }, - "Vkaline": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "url": "http://www.vkaline.ru/forum/member.php?username={}", - "urlMain": "http://www.vkaline.ru", - "usernameON": "Varelik", - "comments": "old", - "bad_site": 1 - }, - "Vkrugudrusey": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "\\W", - "errorTyp��": "response_url", - "url": "http://{}.vkrugudrusey.ru/x/blog/all/", - "urlMain": "http://vkrugudrusey.ru", - "usernameON": "irina", - "comments": "Archive", - "bad_site": 1 - }, - "Vlab": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "<title>Информация", - "errorTyp��": "message", - "url": "https://vlab.su/search.php?keywords=&terms=all&author={}", - "urlMain": "https://vlab.su", - "usernameON": "Sword93", - "bad_site": "" - }, - "Vladimirka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://www.vladimirka.ru/board/profile/{}", - "urlMain": "http://www.vladimirka.ru", - "usernameON": "anyazxc1", - "bad_site": "" - }, - "Vladmama": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "<title>Информация |", - "errorTyp��": "message", - "url": "https://vladmama.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://vladmama.ru", - "usernameON": "Lenok2803", - "bad_site": "" - }, - "Vlmi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "<title>Упс! Мы столкнулись с некоторыми проблемами. | VLMI Интернет-безопасность, обмен приватной информацией", - "errorMsg2": "Полезные пользователи | VLMI Интернет-безопасность, обмен приватной информацией", - "errorTyp��": "message", - "url": "https://vlmi.biz/members/?username={}", - "urlMain": "https://vlmi.biz", - "usernameON": "mixa", - "comments": "old", - "bad_site": 1 - }, - "Voices": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.voices.com/actors/{}", - "urlMain": "https://www.voices.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Voicesevas": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://voicesevas.ru/user/{}/", - "urlMain": "http://voicesevas.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Volga-gaz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://volga-gaz.nnov.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://volga-gaz.nnov.ru", - "usernameON": "serg6033", - "bad_site": "" - }, - "Volkodavcaoko": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "профиль забанен или удален", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://volkodavcaoko.forum24.ru/?32-{}", - "urlMain": "https://volkodavcaoko.forum24.ru", - "usernameON": "itaka", - "bad_site": "" - }, - "Volkswagen": { - "country": "🇺🇦", - "country_klas": "UA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "http://volkswagen.lviv.ua/members/?username={}", - "urlMain": "http://volkswagen.lviv.ua", - "usernameON": "scirocco", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Volleybox": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://volleybox.net/ru/user/{}", - "urlMain": "https://volleybox.net", - "usernameON": "volleyjerseys", - "comments": "cf", - "bad_site": "" - }, - "Votetags": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Page not found", - "errorMsg2": "<body class=\"archive author\">", - "errorTyp��": "message", - "url": "https://www.votetags.info/author/{}/", - "urlMain": "https://www.votetags.info/", - "usernameON": "safeclothes", - "bad_site": "" - }, - "VSCO": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://vsco.co/{}", - "urlMain": "https://vsco.co/", - "usernameON": "blue", - "bad_site": "" - }, - "Vse": { - "country": "🇰🇿", - "country_klas": "KZ", - "errorMsg": "Поиск не дал результатов", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://vse.kz/index.php?app=core&module=search&do=search&andor_type=members&search_app_filters[members][members][sortKey]=date&search_term={}&search_app=members&search_app_filters[members][searchInKey]=members&search_app_filters[members][members][sortKey]=date&search_app_filters[members][members][sortDir]=1", - "urlMain": "https://vse.kz", - "usernameON": "vturekhanov", - "comments": "old_feb_2025", - "bad_site": 1 - }, - "Vulengate": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.vulengate.com/members/?username={}", - "urlMain": "https://www.vulengate.com", - "usernameON": "dmanskits", - "comments": "cf", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Vulgo_rolka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "По вашему запросу ничего не найдено", - "errorMsg2": "Информация", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://vulgo.rolka.me/search.php?action=search&keywords=&author={}", - "urlMain": "https://vulgo.rolka.me", - "usernameON": "tania25297", - "bad_site": "" - }, - "Vyshyvanka": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Користувача не знайдено", - "errorMsg2": "403 Forbidden", - "errorMsg3": "User not found", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://vyshyvanka.ucoz.ru/index/8-0-{}", - "urlMain": "https://vyshyvanka.ucoz.ru", - "usernameON": "Sirena", - "bad_site": "" - }, - "Vzvd": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://vzvd.ru/forum/index.php?p=/profile/{}", - "urlMain": "https://vzvd.ru", - "usernameON": "Troll", - "bad_site": "" - }, - "W3challs": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "404 Page not found – W3Challs Hacking Challenges", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://w3challs.com/profile/{}", - "urlMain": "https://w3challs.com/", - "usernameON": "adam", - "bad_site": "" - }, - "W3schools": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "problem", - "errorMsg2": "0 results", - "errorTyp��": "message", - "url": "https://w3schools.invisionzone.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://w3schools.invisionzone.com", - "usernameON": "DubaiSouthVillas", - "comments": "cf", - "bad_site": "" - }, - "W7forums": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://www.w7forums.com/members/?username={}", - "urlMain": "https://www.w7forums.com", - "usernameON": "adam", - "bad_site": "" - }, - "Wakatime": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://wakatime.com/@{}", - "urlMain": "https://wakatime.com", - "usernameON": "adam", - "bad_site": "" - }, - "Wanelo": { - "country": "🇺🇸", - "country_klas": "US", - "exclusion": "\\W|[а-я-А-Я]", - "errorTyp��": "status_code", - "url": "https://wanelo.co/{}", - "urlMain": "https://wanelo.co", - "usernameON": "adam", - "comments": "old", - "bad_site": 1 - }, - "Warcraft3ft": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://warcraft3ft.clan.su/index/8-0-{}", - "urlMain": "https://warcraft3ft.clan.su", - "usernameON": "Inods", - "bad_site": "" - }, - "Warhammercommunity": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://warhammercommunity.com/forum/members/?username={}", - "urlMain": "https://warhammercommunity.com", - "usernameON": "harleyquinn", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Warriorforum": { - "country": "🇦🇺", - "country_klas": "AU", - "errorTyp��": "status_code", - "url": "https://www.warriorforum.com/members/{}.html", - "urlMain": "https://www.warriorforum.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Wasm": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://wasm.in/members/?username={}", - "urlMain": "https://wasm.in", - "usernameON": "entropy", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Wattpad": { - "country": "🇨🇦", - "country_klas": "CA", - "errorMsg": "userError-404", - "errorMsg2": "Why do I have to complete a CAPTCHA?", - "errorTyp��": "message", - "url": "https://www.wattpad.com/user/{}", - "urlMain": "https://www.wattpad.com/", - "usernameON": "Dogstho7951", - "bad_site": "" - }, - "Wc3": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://wc3.3dn.ru/index/8-0-{}", - "urlMain": "http://wc3.3dn.ru", - "usernameON": "Terror", - "bad_site": "" - }, - "Weasyl": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.weasyl.com/~{}", - "urlMain": "https://www.weasyl.com", - "usernameON": "adam", - "bad_site": "" - }, - "Webhamster": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "По вашему запросу ничего не найдено.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://webhamster.ru/punbb/userlist.php?username={}", - "urlMain": "https://webhamster.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Weblancer": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "url": "https://www.weblancer.net/users/{}/", - "urlMain": "https://www.weblancer.net", - "usernameON": "alraa", - "bad_site": "" - }, - "Webonrails": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://webonrails.ru/user/{}/", - "urlMain": "https://webonrails.ru", - "usernameON": "rediska", - "comments": "old", - "bad_site": 1 - }, - "WebOS": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://webos-forums.ru/search.php?keywords=&terms=all&author={}&sc=1&sf=msgonly&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://webos-forums.ru", - "usernameON": "tessi", - "bad_site": "" - }, - "Weburg": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": ">К сожалению в разделе", - "errorMsg2": "Ê ñîæàëåíèþ â ðàçäåëå", - "errorMsg3": "ничего не найдено", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://weburg.net/search?where=10&search=1&q={}", - "urlMain": "https://weburg.net", - "usernameON": "adam", - "comments": "Oplata", - "bad_site": "" - }, - "Weedmaps": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Find Marijuana Dispensaries, Brands, Delivery, Deals & Doctors", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://weedmaps.com/brands/{}", - "urlMain": "https://weedmaps.com", - "usernameON": "adams", - "bad_site": "" - }, - "Weforum": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "World Economic Forum", - "errorMsg2": "404: Page cannot", - "errorTyp��": "message", - "url": "https://www.weforum.org/people/{}", - "urlMain": "https://www.weforum.org", - "usernameON": "adam-leismark", - "headers": { - "Accept-Language": "ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", - "DNT": "1", - "Priority": "u=1", - "Connection": "keep-alive", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "none", - "Sec-Fetch-User": "?1", - "Sec-GPC": "1", - "Cookie": "SUB=_2AkMQFRkHf8NxqwFRmf4WyW7haIt_ywnEieKmSejcJRMxHRl-yT9kqkpStRB6O5U36I0wj1ke-VrTHS_G3IfYEdZRb2jF", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0" - }, - "bad_site": "" - }, - "Wego_social": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://wego.social/{}", - "urlMain": "https://wego.social", - "usernameON": "CRHoman", - "bad_site": "" - }, - "Weld": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "<title>Сварочный Форум", - "errorTyp��": "message", - "url": "https://weld.in.ua/forum/member.php/?username={}", - "urlMain": "https://weld.in.ua", - "usernameON": "red", - "bad_site": "" - }, - "Wfts": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Ошибка: игрок не найден", - "errorMsg2": "Warface TrueSight | Профиль игрока не существует", - "errorMsg3": "не существует", - "errorTyp��": "message", - "url": "https://wfts.su/profile/{}", - "urlMain": "https://wfts.su/", - "usernameON": "%D0%9B%D0%90%D0%A0%D0%A0%D0%9830", - "bad_site": "" - }, - "Whitewaterguidebook": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.whitewaterguidebook.com/forums/users/{}/", - "urlMain": "https://www.whitewaterguidebook.com", - "usernameON": "justincarson", - "bad_site": "" - }, - "Whonix": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No results found.", - "errorMsg2": "| Cloudflare", - "errorMsg3": "search":"{\\"posts\\":[],\\"users\\":[],\\"categories", - "errorTyp��": "message", - "url": "https://forums.whonix.org/search?expanded=true&q=%40{}", - "urlMain": "https://forums.whonix.org/", - "usernameON": "red", - "bad_site": "" - }, - "Whyislam": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено", - "errorMsg2": "0 пользоват", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.whyislam.to/forum/memberlist.php?username={}", - "urlMain": "https://www.whyislam.to/", - "usernameON": "adam", - "headers": { - "Accept-Language": "ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", - "DNT": "1", - "Priority": "u=1", - "Connection": "keep-alive", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "none", - "Sec-Fetch-User": "?1", - "Sec-GPC": "1", - "Cookie": "SUB=_2AkMQFRkHf8NxqwFRmf4WyW7haIt_ywnEieKmSejcJRMxHRl-yT9kqkpStRB6O5U36I0wj1ke-VrTHS_G3IfYEdZRb2jF", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0" - }, - "bad_site": "" - }, - "Wickeditor": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.wickeditor.com/u/{}/summary", - "urlMain": "https://forum.wickeditor.com", - "usernameON": "jayanimatic", - "bad_site": "" - }, - "Wikidot": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "User does not exist.", - "errorMsg2": "Wikidot is not available in Russia", - "errorTyp��": "message", - "url": "http://www.wikidot.com/user:info/{}", - "urlMain": "http://www.wikidot.com/", - "usernameON": "blue", - "comments": "RUblock", - "bad_site": "" - }, - "Wikigrib": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "<title>Энциклопедия грибов «ВикиГриб»", - "errorMsg2": "pagetitle\">Ваша страница", - "errorTyp��": "message", - "url": "https://wikigrib.ru/author/{}/", - "urlMain": "https://wikigrib.ru", - "usernameON": "sergeym", - "bad_site": "" - }, - "Wikihow": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.wikihow.com/Author/{}", - "urlMain": "https://www.wikihow.com", - "usernameON": "Ikaika-Cox", - "bad_site": "" - }, - "Wikiloc": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.wikiloc.com/wikiloc/findPeople.do?name={}", - "urlMain": "https://www.wikiloc.com", - "usernameON": "LosK2delasKumbres", - "bad_site": "" - }, - "Wikimapia": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "", - "errorMsg2": "", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "http://wikimapia.org/user/tools/users_rating/?username={}", - "urlMain": "http://wikimapia.org", - "usernameON": "adam", - "bad_site": "" - }, - "Wikipedia": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "is not registered", - "errorMsg2": "Wikipedia does not have", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.wikipedia.org/wiki/User:{}", - "urlMain": "https://www.wikipedia.org/", - "usernameON": "Zanuda_petro", - "bad_site": "" - }, - "Wikipediocracy": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Sorry but you cannot use", - "errorMsg2": "No suitable matches were found.", - "errorMsg3": "Information", - "errorTyp��": "message", - "url": "https://wikipediocracy.com/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://wikipediocracy.com", - "usernameON": "Anroth", - "bad_site": "" - }, - "Wikiquote": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://ru.wikiquote.org/wiki/%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}", - "urlMain": "https://ru.wikiquote.org", - "usernameON": "Zwyciezca", - "bad_site": "" - }, - "Wikivoyage": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://ru.wikivoyage.org/wiki/%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}", - "urlMain": "https://ru.wikivoyage.org", - "usernameON": "Savh", - "bad_site": "" - }, - "Wiktionary": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://ru.wiktionary.org/w/index.php?title=%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}&action=view", - "urlMain": "https://ru.wiktionary.org", - "usernameON": "Merdiginn", - "bad_site": "" - }, - "Wild-nature": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Наши авторы | Дикая природа в фотографиях и рассказах", - "errorMsg2": "Страница не найдена", - "errorTyp��": "message", - "url": "http://www.wild-nature.ru/users/{}", - "urlMain": "http://www.wild-nature.ru", - "usernameON": "lana75", - "bad_site": "" - }, - "Wimkin": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://wimkin.com/{}", - "urlMain": "https://wimkin.com", - "usernameON": "JRourke", - "bad_site": "" - }, - "Windows10forums": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://www.windows10forums.com/members/?username={}", - "urlMain": "https://www.windows10forums.com/", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Windowsforum": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "url": "https://windowsforum.com/members/?username={}", - "urlMain": "https://windowsforum.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Windy": { - "country": "🇨🇿", - "country_klas": "CZ", - "errorTyp��": "status_code", - "url": "https://community.windy.com/user/{}", - "urlMain": "https://windy.com/", - "usernameON": "blue", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Wineberserkers": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.wineberserkers.com/u/{}/summary", - "urlMain": "https://www.wineberserkers.com", - "usernameON": "ybarselah", - "bad_site": "" - }, - "Winnipegwatch": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "was not found.", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://winnipegwatch.websitetoolbox.com/search?keywords=&searchin=message&member={}&do=findposts&id=&replies=atleast&numreplies=0&daterange=0&custdatefrom=&custdateto=&sort=&order=desc&radio_showas=threads&btnSearch=Search&action=doSearch", - "urlMain": "https://winnipegwatch.websitetoolbox.com", - "usernameON": "Prevost12", - "comments": "cf", - "bad_site": 1 - }, - "Wireclub": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "response_url", - "url": "https://www.wireclub.com/users/{}", - "urlMain": "https://www.wireclub.com", - "usernameON": "adam", - "bad_site": "" - }, - "Wiscobourbon": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://wiscobourbon.com/forums/users/{}/", - "urlMain": "https://wiscobourbon.com", - "usernameON": "lbourbonlover123", - "bad_site": "" - }, - "Wishlistr": { - "country": "🇸🇪", - "country_klas": "SE", - "errorMsg": "robots\" content=\"noindex, nofollow", - "errorMsg2": "Page Not Found", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.wishlistr.com/profile/{}", - "urlMain": "https://www.wishlistr.com", - "usernameON": "adam", - "bad_site": "" - }, - "Witchnest": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Domain Error Page", - "errorMsg2": "Страница не найдена", - "errorMsg3": ";", - "errorTyp��": "message", - "url": "https://witchnest.ru/user/{}/", - "urlMain": "https://witchnest.ru", - "comments": "super", - "usernameON": "Polina", - "bad_site": "" - }, - "Wittyprofiles": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "It looks like you are looking for something that isn't here.", - "errorMsg2": "QT Media 404", - "errorTyp��": "message", - "url": "http://www.wittyprofiles.com/author/{}", - "urlMain": "http://www.wittyprofiles.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Wix": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://{}.wix.com", - "urlMain": "https://wix.com/", - "usernameON": "support", - "bad_site": "" - }, - "Wolpy": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "ItPage not found", - "errorMsg2": "doesn't exist", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://wolpy.com/{}", - "urlMain": "https://wolpy.com", - "usernameON": "FaustinFavreau", - "bad_site": "" - }, - "Wordart": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://wordart.com/gallery/user/{}", - "urlMain": "https://wordart.com", - "usernameON": "Jarmiviktoria", - "bad_site": "" - }, - "WordPress": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://{}.wordpress.com/", - "urlMain": "https://wordpress.com", - "usernameON": "blue", - "bad_site": "" - }, - "WordPressOrg": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://profiles.wordpress.org/{}/", - "urlMain": "https://wordpress.org/", - "usernameON": "blue", - "bad_site": "" - }, - "Worldofwarcraft_blizzard": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Error 404", - "errorMsg2": "WoW\n403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.excelworld.ru/index/8-0-{}", - "urlMain": "http://www.excelworld.ru", - "usernameON": "Mazila", - "bad_site": "" - }, - "Exo": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Користувача не знайдено", - "errorMsg2": "403 Forbidden", - "errorMsg3": "User not found", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://exo.at.ua/index/8-0-{}", - "urlMain": "https://exo.at.ua", - "usernameON": "lara007", - "bad_site": "" - }, - "Exploretalent": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "info-text\">", - "errorMsg2": "userNode\":{}},\"", - "errorMsg3": "undefined", - "errorTyp��": "message", - "url": "https://www.exploretalent.com/{}", - "urlMain": "https://www.exploretalent.com", - "usernameON": "klaus", - "bad_site": "" - }, - "EybooksTO": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 resultados", - "errorMsg2": "There were no results for your search", - "errorTyp��": "message", - "url": "https://eybooks.to/search/?q={}&quick=1&type=core_members", - "urlMain": "https://eybooks.to", - "usernameON": "invers0r", - "bad_site": 1 - }, - "EyeEm": { - "country": "🇩🇪", - "country_klas": "DE", - "errorMsg": "blue | EyeEm Photographer", - "errorMsg2": "Not Found (404)", - "errorTyp��": "message", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.eyeem.com/u/{}", - "urlMain": "https://www.eyeem.com/", - "usernameON": "blue", - "bad_site": "" - }, - "F-droid": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://forum.f-droid.org/u/{}/summary", - "urlMain": "https://forum.f-droid.org", - "usernameON": "tip", - "bad_site": "" - }, - "F3_cool": { - "country": "🇱🇻", - "country_klas": "LV", - "errorTyp��": "status_code", - "url": "https://f3.cool/{}/", - "urlMain": "https://f3.cool/", - "usernameON": "blue", - "bad_site": "" - }, - "F6s": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "404", - "errorMsg2": "We think you might", - "errorMsg3": "unavailable in your location", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.f6s.com/{}", - "urlMain": "https://www.f6s.com", - "usernameON": "adam", - "comments": "RUblock", - "bad_site": "" - }, - "F95zone": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://f95zone.to/members/?username={}", - "urlMain": "https://f95zone.to", - "usernameON": "retro", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "FA-Wiki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://wiki.fa100.ru/index.php?title=%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}", - "urlMain": "http://wiki.fa100.ru", - "usernameON": "Anatolyk", - "comments": "Oplata", - "bad_site": "" - }, - "Fabswingers": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.fabswingers.com/profile/{}", - "urlMain": "https://www.fabswingers.com", - "usernameON": "adam", - "bad_site": "" - }, - "Facebook (деятельность запрещена в России)": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.facebook.com/{}/", - "urlMain": "https://www.facebook.com/", - "usernameON": "RED", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "comments": "ZAK_user", - "bad_site": "" - }, - "Facenama": { - "country": "🇮🇳", - "country_klas": "IN", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://facenama.com/{}", - "urlMain": "https://facenama.com/", - "usernameON": "blue", - "bad_site": 1 - }, - "Fadecloudmc": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://fadecloudmc.com/forums/members/?username={}", - "urlMain": "https://fadecloudmc.com", - "usernameON": "jordan", - "bad_site": 1, - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Fallout_reactor": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "url": "https://fallout.reactor.cc/user/{}", - "urlMain": "https://fallout.reactor.cc", - "usernameON": "Xell108", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Fanacmilan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "NameBright - Domain Expired", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://fanacmilan.com/index/8-0-{}", - "urlMain": "http://fanacmilan.com", - "usernameON": "milanfan97", - "bad_site": 1 - }, - "Fandom": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.fandom.com/u/{}", - "urlMain": "https://www.fandom.com/", - "usernameON": "Jungypoo", - "bad_site": "" - }, - "FanficsLandia": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://fanficslandia.com/usuario/?username={}", - "urlMain": "https://fanficslandia.com", - "usernameON": "sensy", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Fanlore": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "http://fanlore.org/wiki/User:{}", - "urlMain": "http://fanlore.org", - "usernameON": "red", - "bad_site": "" - }, - "Fanpop": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.fanpop.com/fans/{}", - "urlMain": "https://www.fanpop.com/", - "usernameON": "blue", - "comments": "cf", - "bad_site": "" - }, - "Fansmetrics": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://fansmetrics.com/en/onlyfans/{}", - "urlMain": "https://fansmetrics.com", - "urlProbe": "https://subseeker.co/creators/{}", - "usernameON": "itsmoremia", - "bad_site": "" - }, - "Fantlab": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "не найдено ни одного посетителя", - "errorMsg2": "

FantLab ru

", - "errorTyp��": "message", - "url": "https://fantlab.ru/usersclasspage1?usersearch={}", - "urlMain": "https://fantlab.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Faqusha": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://faqusha.ru/profile/{}/", - "urlMain": "https://faqusha.ru", - "usernameON": "typhoon", - "bad_site": "" - }, - "Fark": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Tastes like chicken.", - "errorMsg2": "FARK.com: User profiles: view", - "errorTyp��": "message", - "url": "https://www.fark.com/users/{}/", - "urlMain": "https://www.fark.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Farmerforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg2": "0 пользовате", - "errorMsg3": "Не найдено ни одного пользовател", - "errorTyp��": "message", - "url": "http://farmerforum.ru/memberlist.php?username={}", - "urlMain": "http://farmerforum.ru", - "usernameON": "Admin", - "bad_site": "" - }, - "Fashionindustrynetwork": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.fashionindustrynetwork.com/members/{}", - "urlMain": "https://www.fashionindustrynetwork.com", - "usernameON": "abitosera", - "comments": "bad", - "bad_site": 1 - }, - "Fatsecret": { - "country": "🇦🇺", - "country_klas": "AU", - "errorTyp��": "response_url", - "url": "https://www.fatsecret.com/member/{}", - "urlMain": "https://www.fatsecret.com", - "usernameON": "adam", - "bad_site": "" - }, - "Favera": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://favera.ru/{}", - "urlMain": "https://favera.ru", - "usernameON": "mayhem", - "bad_site": 1 - }, - "Fcdin": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "http://fcdin.com/forum/memberlist.php?username={}", - "urlMain": "http://fcdin.com", - "usernameON": "red", - "bad_site": "" - }, - "Fcenter": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://www1.fcenter.ru/fcconfa/search.php?keywords=&terms=all&author={}", - "urlMain": "http://www1.fcenter.ru", - "usernameON": "DmitryVT", - "bad_site": 1 - }, - "Fckarpaty": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Сторінку не знайдено", - "errorMsg2": "Сторінку не знайдено", - "errorMsg3": "User not found", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://fckarpaty.com.ua/index/8-0-{}", - "urlMain": "http://fckarpaty.com.ua", - "usernameON": "OlegGurin", - "comments": "bad", - "bad_site": 1 - }, - "Fclmnews": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "content=\"noindex, nofollow", - "errorMsg2": "please...", - "errorTyp��": "message", - "url": "https://fclmnews.ru/user/{}/", - "urlMain": "https://fclmnews.ru", - "usernameON": "stoker82", - "comments": "cf", - "bad_site": "" - }, - "Fcrubin": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "Форум болельщиков ФК Рубин", - "errorTyp��": "message", - "url": "https://www.fcrubin.ru/forum/member.php?username={}", - "urlMain": "https://www.fcrubin.ru", - "usernameON": "flet", - "bad_site": "" - }, - "Fcshakhter": { - "country": "🇧🇾", - "country_klas": "BY", - "errorMsg": ">Постов не найдено

", - "errorMsg2": "

", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://fcshakhter.by/forum.asp?limit_pocet=20&jmeno={}", - "urlMain": "https://fcshakhter.by", - "usernameON": "fdfds", - "bad_site": "" - }, - "Fedoraproject": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://ask.fedoraproject.org/u/{}/summary", - "urlMain": "https://ask.fedoraproject.org/", - "usernameON": "rbirkner", - "bad_site": "" - }, - "Fegatch": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://www.fegatch.com/users/{}/artworks/", - "urlMain": "http://www.fegatch.com/", - "usernameON": "margaret-veret", - "bad_site": 1 - }, - "Feisovet": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://feisovet.ru/%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D1%82%D0%B5%D0%BB%D0%B8/{}", - "urlMain": "https://feisovet.ru", - "usernameON": "RinaLesnicova", - "bad_site": "" - }, - "Femunity": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Page not found", - "errorMsg2": "content='noindex", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://femunity.org/forums/users/{}/", - "urlMain": "https://femunity.org", - "usernameON": "andrew99", - "ignore_status_code": true, - "bad_site": "" - }, - "Fiat-club": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Извините, такого пользователя не существует", - "errorMsg2": " :: ", - "errorTyp��": "message", - "url": "http://fiat-club.org.ua/forum/profile.php?mode=viewprofile&u={}", - "urlMain": "http://fiat-club.org.ua", - "usernameON": "CreAtoR", - "bad_site": "" - }, - "Ficwad": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://ficwad.com/a/{}/favorites/authors", - "urlMain": "https://ficwad.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Ficwriter": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Этот профиль либо больше не существует или не доступен.", - "errorMsg2": "Пользователи", - "errorTyp��": "message", - "url": "https://ficwriter.info/polzovateli/userprofile/{}.html", - "urlMain": "https://ficwriter.info", - "usernameON": "Zinaida", - "bad_site": "" - }, - "Filmow": { - "country": "🇵🇹", - "country_klas": "PT", - "errorTyp��": "status_code", - "url": "https://filmow.com/usuario/{}", - "urlMain": "https://filmow.com/", - "usernameON": "adam", - "comments": "cf", - "bad_site": "" - }, - "Filmwatch": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://filmwatch.com/user/home/{}", - "urlMain": "https://filmwatch.com", - "usernameON": "hazelamy", - "comments": "Oplata", - "bad_site": 1 - }, - "Filmweb": { - "country": "🇵🇱", - "country_klas": "PL", - "errorMsg": "lang=\"pl\">", - "errorTyp��": "message", - "url": "http://movie-club.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://movie-club.ru", - "usernameON": "apollion", - "bad_site": "" - }, - "Forum_mow-portal": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mow-portal.ru/index/8-0-{}", - "urlMain": "https://mow-portal.ru", - "usernameON": "alexeyeryomchenko", - "bad_site": "" - }, - "Forum_mozhaysk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mozhaysk.my1.ru/index/8-0-{}", - "urlMain": "https://mozhaysk.my1.ru", - "usernameON": "vilniy", - "bad_site": "" - }, - "Forum_mozilla-russia": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "По вашему запросу ничего не найдено", - "errorMsg2": "

\n\n\n0", - "errorMsg3": "Виктор Николаевич", - "errorTyp��": "message", - "url": "https://www.uralfishing.ru/forum/profile.php?mode=viewprofile&u={}", - "urlMain": "https://www.uralfishing.ru", - "usernameON": "Mephisto", - "bad_site": "" - }, - "Uralrock": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "url": "https://uralrock.ru/forum/member.php?username={}", - "urlMain": "https://uralrock.ru", - "usernameON": "Cyxapb", - "comments": "RUblock", - "bad_site": "" - }, - "Urlebird": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://urlebird.com/user/{}/", - "urlMain": "https://urlebird.com", - "usernameON": "chikamaria4", - "comments": "zamedlenie", - "bad_site": "" - }, - "USA_life": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://usa.life/{}", - "urlMain": "https://usa.life", - "usernameON": "RinDavis", - "bad_site": "" - }, - "Users_ucrazy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://ucrazy.org/u/{}/", - "urlMain": "https://ucrazy.org", - "usernameON": "aptoc", - "bad_site": "" - }, - "Usersoft_ucoz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://usersoft.ucoz.ru/index/8-0-{}", - "urlMain": "https://usersoft.ucoz.ru", - "usernameON": "SRabdrashirup", - "bad_site": "" - }, - "Uvelir": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://uvelir.net/member.php?username={}", - "urlMain": "https://uvelir.net/", - "usernameON": "red", - "comments": "Oplata", - "bad_site": "" - }, - "Uwr1": { - "country": "🇩🇪", - "country_klas": "DE", - "errorTyp��": "status_code", - "url": "http://uwr1.de/forum/profile/{}", - "urlMain": "http://uwr1.de", - "usernameON": "adam", - "comments": "bad", - "bad_site": "" - }, - "Uzhforum": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Користувач не зареєстрований і не має профілю, який можна переглянути.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.uzhforum.com/member.php?username={}", - "urlMain": "http://www.uzhforum.com", - "usernameON": "kirpicik", - "comments": "old", - "bad_site": 1 - }, - "Valday": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Личные данные пользователя ", - "errorMsg2": "gen\"> ", - "errorMsg3": "UnMask", - "errorTyp��": "message", - "url": "https://valday.com/forum/profile.php?mode=viewprofile&u={}", - "urlMain": "https://valday.com", - "usernameON": "Azs", - "bad_site": "" - }, - "Vamber": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://vamber.ru/author/{}/", - "urlMain": "https://vamber.ru", - "usernameON": "irina", - "bad_site": "" - }, - "Vampirerave": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.vampirerave.com/profiles/profiles2.php?profile={}", - "urlMain": "https://www.vampirerave.com", - "usernameON": "EternalXRage", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Vas3k": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://vas3k.club/user/{}/", - "urlMain": "https://vas3k.club", - "usernameON": "zahhar", - "bad_site": "" - }, - "VC": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "message\":\"\",\"result\":{\"items\":[],\"lastId\":null", - "errorMsg2": "lastSortingValue\":0,\"total\":0", - "errorTyp��": "message", - "url": "https://vc.ru/discovery?q={}", - "urlMain": "https://vc.ru", - "urlProbe": "https://api.vc.ru/v2.51/search/subsites?q={}&type=1&page=0", - "usernameON": "yuliya", - "headers": { - "Accept-Language": "ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", - "DNT": "1", - "Priority": "u=1", - "Connection": "keep-alive", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "none", - "Sec-Fetch-User": "?1", - "Sec-GPC": "1", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0" - }, - "bad_site": "" - }, - "Vegascreativesoftware": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Whatever you're looking for.", - "errorMsg2": "VEGAS Community | vegascreativesoftware.info", - "errorTyp��": "message", - "url": "https://www.vegascreativesoftware.info/us/users/profile/{}/", - "urlMain": "https://www.vegascreativesoftware.info", - "usernameON": "adam", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Velocat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих сообщений не найдено", - "errorMsg2": "<title>ВЕЛОСАЙТ - Информация", - "errorTyp��": "message", - "url": "https://velocat.ru/velo/phpBB3/search.php?keywords={}&type=type-special", - "urlMain": "https://velocat.ru", - "usernameON": "blue", - "bad_site": "" - }, - "Velomania": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://forum.velomania.ru/member.php?username={}", - "urlMain": "https://forum.velomania.ru/", - "usernameON": "red", - "bad_site": "" - }, - "Velosamara": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg2": "0 пользователей", - "errorTyp��": "message", - "url": "http://velosamara.ru/forum/memberlist.php?username={}", - "urlMain": "http://velosamara.ru", - "usernameON": "Morbo", - "bad_site": "" - }, - "Venera": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Результатов поиска нет", - "errorTyp��": "message", - "url": "https://venera.one/search/?q={}&type=core_members", - "urlMain": "https://venera.one", - "usernameON": "adam", - "comments": "old", - "bad_site": 1 - }, - "Venmo": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://venmo.com/{}", - "urlMain": "https://venmo.com/", - "usernameON": "jenny", - "comments": "RUblock", - "bad_site": "" - }, - "Vero": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Error Page - VERO™ – True Social", - "errorMsg2": "class=\"_not-found-page", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://vero.co/{}", - "urlMain": "https://vero.co", - "usernameON": "lilyherbertson", - "bad_site": "" - }, - "Vezha": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://vezha.com/members/?username={}", - "urlMain": "https://vezha.com/", - "usernameON": "red", - "bad_site": "" - }, - "Vgtimes": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "не найден", - "errorMsg2": "Сайт сейчас", - "errorMsg3": "<div id='dle-content'></div>", - "errorTyp��": "message", - "url": "https://vgtimes.ru/user/{}/", - "urlMain": "https://vgtimes.ru", - "comments": "cf", - "usernameON": "Raumkua", - "bad_site": "" - }, - "Vidamora": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "<title>Meet , in", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.vidamora.com/profile/{}", - "urlMain": "https://www.vidamora.com", - "usernameON": "adam", - "bad_site": "" - }, - "Video_ploud": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://video.ploud.jp/accounts/{}/video-channels", - "urlMain": "https://video.ploud.jp", - "usernameON": "lwflouisa", - "bad_site": "" - }, - "Videoforums": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "url": "http://videoforums.ru/member.php?username={}", - "urlMain": "http://videoforums.ru", - "usernameON": "carlo", - "bad_site": "" - }, - "Videogamegeek": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "<title>Profile | VideoGameGeek", - "errorMsg2": "Error: User does not exist.", - "errorMsg3": "not found", - "errorTyp��": "message", - "url": "https://videogamegeek.com/user/{}", - "urlMain": "https://videogamegeek.com", - "usernameON": "adam", - "bad_site": 1 - }, - "Videohive": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://videohive.net/user/{}", - "urlMain": "https://videohive.net", - "usernameON": "zedbadley", - "bad_site": "" - }, - "Videosift": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "You Seem Lost", - "errorMsg2": "Not Found", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://videosift.com/member/{}", - "urlMain": "https://videosift.com", - "usernameON": "adam", - "comments": "cf", - "bad_site": 1 - }, - "Vimeo": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "[а-яА-Я]", - "errorTyp��": "status_code", - "url": "https://vimeo.com/{}", - "urlMain": "https://vimeo.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Virgool": { - "country": "🇮🇷", - "country_klas": "IR", - "errorMsg": "۴۰۴", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://virgool.io/@{}", - "urlMain": "https://virgool.io/", - "usernameON": "blue", - "comments": "cf", - "bad_site": 1 - }, - "Virtualireland": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "VirtualIreland.ru - Виртуальная Ирландия", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://www.virtualireland.ru/member.php?username={}", - "urlMain": "https://www.virtualireland.ru", - "usernameON": "Lee", - "bad_site": "" - }, - "Vishivalochka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://vishivalochka.ru/index/8-0-{}", - "urlMain": "http://vishivalochka.ru", - "usernameON": "Caliopa", - "comments": "Oplata", - "bad_site": "" - }, - "Vivino": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.vivino.com/users/{}", - "urlMain": "https://www.vivino.com/", - "usernameON": "adam", - "bad_site": "" - }, - "VK": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://vk.com/{}", - "urlMain": "https://vk.com/", - "usernameON": "smith", - "bad_site": "" - }, - "Vkaline": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "url": "http://www.vkaline.ru/forum/member.php?username={}", - "urlMain": "http://www.vkaline.ru", - "usernameON": "Varelik", - "comments": "old", - "bad_site": 1 - }, - "Vkrugudrusey": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "\\W", - "errorTyp��": "response_url", - "url": "http://{}.vkrugudrusey.ru/x/blog/all/", - "urlMain": "http://vkrugudrusey.ru", - "usernameON": "irina", - "comments": "Archive", - "bad_site": 1 - }, - "Vlab": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "<title>Информация", - "errorTyp��": "message", - "url": "https://vlab.su/search.php?keywords=&terms=all&author={}", - "urlMain": "https://vlab.su", - "usernameON": "Sword93", - "bad_site": "" - }, - "Vladimirka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://www.vladimirka.ru/board/profile/{}", - "urlMain": "http://www.vladimirka.ru", - "usernameON": "anyazxc1", - "bad_site": "" - }, - "Vladmama": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "<title>Информация |", - "errorTyp��": "message", - "url": "https://vladmama.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://vladmama.ru", - "usernameON": "Lenok2803", - "bad_site": "" - }, - "Vlmi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "<title>Упс! Мы столкнулись с некоторыми проблемами. | VLMI Интернет-безопасность, обмен приватной информацией", - "errorMsg2": "Полезные пользователи | VLMI Интернет-безопасность, обмен приватной информацией", - "errorTyp��": "message", - "url": "https://vlmi.biz/members/?username={}", - "urlMain": "https://vlmi.biz", - "usernameON": "mixa", - "comments": "old", - "bad_site": 1 - }, - "Voices": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.voices.com/actors/{}", - "urlMain": "https://www.voices.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Voicesevas": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://voicesevas.ru/user/{}/", - "urlMain": "http://voicesevas.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Volga-gaz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://volga-gaz.nnov.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://volga-gaz.nnov.ru", - "usernameON": "serg6033", - "bad_site": "" - }, - "Volkodavcaoko": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "профиль забанен или удален", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://volkodavcaoko.forum24.ru/?32-{}", - "urlMain": "https://volkodavcaoko.forum24.ru", - "usernameON": "itaka", - "bad_site": "" - }, - "Volkswagen": { - "country": "🇺🇦", - "country_klas": "UA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "http://volkswagen.lviv.ua/members/?username={}", - "urlMain": "http://volkswagen.lviv.ua", - "usernameON": "scirocco", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Volleybox": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://volleybox.net/ru/user/{}", - "urlMain": "https://volleybox.net", - "usernameON": "volleyjerseys", - "comments": "cf", - "bad_site": "" - }, - "Votetags": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Page not found", - "errorMsg2": "<body class=\"archive author\">", - "errorTyp��": "message", - "url": "https://www.votetags.info/author/{}/", - "urlMain": "https://www.votetags.info/", - "usernameON": "safeclothes", - "bad_site": "" - }, - "VSCO": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://vsco.co/{}", - "urlMain": "https://vsco.co/", - "usernameON": "blue", - "bad_site": "" - }, - "Vse": { - "country": "🇰🇿", - "country_klas": "KZ", - "errorMsg": "Поиск не дал результатов", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://vse.kz/index.php?app=core&module=search&do=search&andor_type=members&search_app_filters[members][members][sortKey]=date&search_term={}&search_app=members&search_app_filters[members][searchInKey]=members&search_app_filters[members][members][sortKey]=date&search_app_filters[members][members][sortDir]=1", - "urlMain": "https://vse.kz", - "usernameON": "vturekhanov", - "comments": "old_feb_2025", - "bad_site": 1 - }, - "Vulengate": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.vulengate.com/members/?username={}", - "urlMain": "https://www.vulengate.com", - "usernameON": "dmanskits", - "comments": "cf", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Vulgo_rolka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "По вашему запросу ничего не найдено", - "errorMsg2": "Информация", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://vulgo.rolka.me/search.php?action=search&keywords=&author={}", - "urlMain": "https://vulgo.rolka.me", - "usernameON": "tania25297", - "bad_site": "" - }, - "Vyshyvanka": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Користувача не знайдено", - "errorMsg2": "403 Forbidden", - "errorMsg3": "User not found", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://vyshyvanka.ucoz.ru/index/8-0-{}", - "urlMain": "https://vyshyvanka.ucoz.ru", - "usernameON": "Sirena", - "bad_site": "" - }, - "Vzvd": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://vzvd.ru/forum/index.php?p=/profile/{}", - "urlMain": "https://vzvd.ru", - "usernameON": "Troll", - "bad_site": "" - }, - "W3challs": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "404 Page not found – W3Challs Hacking Challenges", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://w3challs.com/profile/{}", - "urlMain": "https://w3challs.com/", - "usernameON": "adam", - "bad_site": "" - }, - "W3schools": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "problem", - "errorMsg2": "0 results", - "errorTyp��": "message", - "url": "https://w3schools.invisionzone.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://w3schools.invisionzone.com", - "usernameON": "DubaiSouthVillas", - "comments": "cf", - "bad_site": "" - }, - "W7forums": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://www.w7forums.com/members/?username={}", - "urlMain": "https://www.w7forums.com", - "usernameON": "adam", - "bad_site": "" - }, - "Wakatime": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://wakatime.com/@{}", - "urlMain": "https://wakatime.com", - "usernameON": "adam", - "bad_site": "" - }, - "Wanelo": { - "country": "🇺🇸", - "country_klas": "US", - "exclusion": "\\W|[а-я-А-Я]", - "errorTyp��": "status_code", - "url": "https://wanelo.co/{}", - "urlMain": "https://wanelo.co", - "usernameON": "adam", - "comments": "old", - "bad_site": 1 - }, - "Warcraft3ft": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://warcraft3ft.clan.su/index/8-0-{}", - "urlMain": "https://warcraft3ft.clan.su", - "usernameON": "Inods", - "bad_site": "" - }, - "Warhammercommunity": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://warhammercommunity.com/forum/members/?username={}", - "urlMain": "https://warhammercommunity.com", - "usernameON": "harleyquinn", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Warriorforum": { - "country": "🇦🇺", - "country_klas": "AU", - "errorTyp��": "status_code", - "url": "https://www.warriorforum.com/members/{}.html", - "urlMain": "https://www.warriorforum.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Wasm": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://wasm.in/members/?username={}", - "urlMain": "https://wasm.in", - "usernameON": "entropy", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Wattpad": { - "country": "🇨🇦", - "country_klas": "CA", - "errorMsg": "userError-404", - "errorMsg2": "Why do I have to complete a CAPTCHA?", - "errorTyp��": "message", - "url": "https://www.wattpad.com/user/{}", - "urlMain": "https://www.wattpad.com/", - "usernameON": "Dogstho7951", - "bad_site": "" - }, - "Wc3": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://wc3.3dn.ru/index/8-0-{}", - "urlMain": "http://wc3.3dn.ru", - "usernameON": "Terror", - "bad_site": "" - }, - "Weasyl": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.weasyl.com/~{}", - "urlMain": "https://www.weasyl.com", - "usernameON": "adam", - "bad_site": "" - }, - "Webhamster": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "По вашему запросу ничего не найдено.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://webhamster.ru/punbb/userlist.php?username={}", - "urlMain": "https://webhamster.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Weblancer": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "url": "https://www.weblancer.net/users/{}/", - "urlMain": "https://www.weblancer.net", - "usernameON": "alraa", - "bad_site": "" - }, - "Webonrails": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://webonrails.ru/user/{}/", - "urlMain": "https://webonrails.ru", - "usernameON": "rediska", - "comments": "old", - "bad_site": 1 - }, - "WebOS": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://webos-forums.ru/search.php?keywords=&terms=all&author={}&sc=1&sf=msgonly&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://webos-forums.ru", - "usernameON": "tessi", - "bad_site": "" - }, - "Weburg": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": ">К сожалению в разделе", - "errorMsg2": "Ê ñîæàëåíèþ â ðàçäåëå", - "errorMsg3": "ничего не найдено", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://weburg.net/search?where=10&search=1&q={}", - "urlMain": "https://weburg.net", - "usernameON": "adam", - "comments": "Oplata", - "bad_site": "" - }, - "Weedmaps": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Find Marijuana Dispensaries, Brands, Delivery, Deals & Doctors", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://weedmaps.com/brands/{}", - "urlMain": "https://weedmaps.com", - "usernameON": "adams", - "bad_site": "" - }, - "Weforum": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "World Economic Forum", - "errorMsg2": "404: Page cannot", - "errorTyp��": "message", - "url": "https://www.weforum.org/people/{}", - "urlMain": "https://www.weforum.org", - "usernameON": "adam-leismark", - "headers": { - "Accept-Language": "ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", - "DNT": "1", - "Priority": "u=1", - "Connection": "keep-alive", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "none", - "Sec-Fetch-User": "?1", - "Sec-GPC": "1", - "Cookie": "SUB=_2AkMQFRkHf8NxqwFRmf4WyW7haIt_ywnEieKmSejcJRMxHRl-yT9kqkpStRB6O5U36I0wj1ke-VrTHS_G3IfYEdZRb2jF", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0" - }, - "bad_site": "" - }, - "Wego_social": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://wego.social/{}", - "urlMain": "https://wego.social", - "usernameON": "CRHoman", - "bad_site": "" - }, - "Weld": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "<title>Сварочный Форум", - "errorTyp��": "message", - "url": "https://weld.in.ua/forum/member.php/?username={}", - "urlMain": "https://weld.in.ua", - "usernameON": "red", - "bad_site": "" - }, - "Wfts": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Ошибка: игрок не найден", - "errorMsg2": "Warface TrueSight | Профиль игрока не существует", - "errorMsg3": "не существует", - "errorTyp��": "message", - "url": "https://wfts.su/profile/{}", - "urlMain": "https://wfts.su/", - "usernameON": "%D0%9B%D0%90%D0%A0%D0%A0%D0%9830", - "bad_site": "" - }, - "Whitewaterguidebook": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.whitewaterguidebook.com/forums/users/{}/", - "urlMain": "https://www.whitewaterguidebook.com", - "usernameON": "justincarson", - "bad_site": "" - }, - "Whonix": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No results found.", - "errorMsg2": "| Cloudflare", - "errorMsg3": "search":"{\\"posts\\":[],\\"users\\":[],\\"categories", - "errorTyp��": "message", - "url": "https://forums.whonix.org/search?expanded=true&q=%40{}", - "urlMain": "https://forums.whonix.org/", - "usernameON": "red", - "bad_site": "" - }, - "Whyislam": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено", - "errorMsg2": "0 пользоват", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.whyislam.to/forum/memberlist.php?username={}", - "urlMain": "https://www.whyislam.to/", - "usernameON": "adam", - "headers": { - "Accept-Language": "ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", - "DNT": "1", - "Priority": "u=1", - "Connection": "keep-alive", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "none", - "Sec-Fetch-User": "?1", - "Sec-GPC": "1", - "Cookie": "SUB=_2AkMQFRkHf8NxqwFRmf4WyW7haIt_ywnEieKmSejcJRMxHRl-yT9kqkpStRB6O5U36I0wj1ke-VrTHS_G3IfYEdZRb2jF", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0" - }, - "bad_site": "" - }, - "Wickeditor": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.wickeditor.com/u/{}/summary", - "urlMain": "https://forum.wickeditor.com", - "usernameON": "jayanimatic", - "bad_site": "" - }, - "Wikidot": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "User does not exist.", - "errorMsg2": "Wikidot is not available in Russia", - "errorTyp��": "message", - "url": "http://www.wikidot.com/user:info/{}", - "urlMain": "http://www.wikidot.com/", - "usernameON": "blue", - "comments": "RUblock", - "bad_site": "" - }, - "Wikigrib": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "<title>Энциклопедия грибов «ВикиГриб»", - "errorMsg2": "pagetitle\">Ваша страница", - "errorTyp��": "message", - "url": "https://wikigrib.ru/author/{}/", - "urlMain": "https://wikigrib.ru", - "usernameON": "sergeym", - "bad_site": "" - }, - "Wikihow": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.wikihow.com/Author/{}", - "urlMain": "https://www.wikihow.com", - "usernameON": "Ikaika-Cox", - "bad_site": "" - }, - "Wikiloc": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.wikiloc.com/wikiloc/findPeople.do?name={}", - "urlMain": "https://www.wikiloc.com", - "usernameON": "LosK2delasKumbres", - "bad_site": "" - }, - "Wikimapia": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "", - "errorMsg2": "", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "http://wikimapia.org/user/tools/users_rating/?username={}", - "urlMain": "http://wikimapia.org", - "usernameON": "adam", - "bad_site": "" - }, - "Wikipedia": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "is not registered", - "errorMsg2": "Wikipedia does not have", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.wikipedia.org/wiki/User:{}", - "urlMain": "https://www.wikipedia.org/", - "usernameON": "Zanuda_petro", - "bad_site": "" - }, - "Wikipediocracy": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Sorry but you cannot use", - "errorMsg2": "No suitable matches were found.", - "errorMsg3": "Information", - "errorTyp��": "message", - "url": "https://wikipediocracy.com/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://wikipediocracy.com", - "usernameON": "Anroth", - "bad_site": "" - }, - "Wikiquote": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://ru.wikiquote.org/wiki/%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}", - "urlMain": "https://ru.wikiquote.org", - "usernameON": "Zwyciezca", - "bad_site": "" - }, - "Wikivoyage": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://ru.wikivoyage.org/wiki/%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}", - "urlMain": "https://ru.wikivoyage.org", - "usernameON": "Savh", - "bad_site": "" - }, - "Wiktionary": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://ru.wiktionary.org/w/index.php?title=%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}&action=view", - "urlMain": "https://ru.wiktionary.org", - "usernameON": "Merdiginn", - "bad_site": "" - }, - "Wild-nature": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Наши авторы | Дикая природа в фотографиях и рассказах", - "errorMsg2": "Страница не найдена", - "errorTyp��": "message", - "url": "http://www.wild-nature.ru/users/{}", - "urlMain": "http://www.wild-nature.ru", - "usernameON": "lana75", - "bad_site": "" - }, - "Wimkin": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://wimkin.com/{}", - "urlMain": "https://wimkin.com", - "usernameON": "JRourke", - "bad_site": "" - }, - "Windows10forums": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://www.windows10forums.com/members/?username={}", - "urlMain": "https://www.windows10forums.com/", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Windowsforum": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "url": "https://windowsforum.com/members/?username={}", - "urlMain": "https://windowsforum.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Windy": { - "country": "🇨🇿", - "country_klas": "CZ", - "errorTyp��": "status_code", - "url": "https://community.windy.com/user/{}", - "urlMain": "https://windy.com/", - "usernameON": "blue", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Wineberserkers": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.wineberserkers.com/u/{}/summary", - "urlMain": "https://www.wineberserkers.com", - "usernameON": "ybarselah", - "bad_site": "" - }, - "Winnipegwatch": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "was not found.", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://winnipegwatch.websitetoolbox.com/search?keywords=&searchin=message&member={}&do=findposts&id=&replies=atleast&numreplies=0&daterange=0&custdatefrom=&custdateto=&sort=&order=desc&radio_showas=threads&btnSearch=Search&action=doSearch", - "urlMain": "https://winnipegwatch.websitetoolbox.com", - "usernameON": "Prevost12", - "comments": "cf", - "bad_site": 1 - }, - "Wireclub": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "response_url", - "url": "https://www.wireclub.com/users/{}", - "urlMain": "https://www.wireclub.com", - "usernameON": "adam", - "bad_site": "" - }, - "Wiscobourbon": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://wiscobourbon.com/forums/users/{}/", - "urlMain": "https://wiscobourbon.com", - "usernameON": "lbourbonlover123", - "bad_site": "" - }, - "Wishlistr": { - "country": "🇸🇪", - "country_klas": "SE", - "errorMsg": "robots\" content=\"noindex, nofollow", - "errorMsg2": "Page Not Found", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.wishlistr.com/profile/{}", - "urlMain": "https://www.wishlistr.com", - "usernameON": "adam", - "bad_site": "" - }, - "Witchnest": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Domain Error Page", - "errorMsg2": "Страница не найдена", - "errorMsg3": ";", - "errorTyp��": "message", - "url": "https://witchnest.ru/user/{}/", - "urlMain": "https://witchnest.ru", - "comments": "super", - "usernameON": "Polina", - "bad_site": "" - }, - "Wittyprofiles": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "It looks like you are looking for something that isn't here.", - "errorMsg2": "QT Media 404", - "errorTyp��": "message", - "url": "http://www.wittyprofiles.com/author/{}", - "urlMain": "http://www.wittyprofiles.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Wix": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://{}.wix.com", - "urlMain": "https://wix.com/", - "usernameON": "support", - "bad_site": "" - }, - "Wolpy": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "ItPage not found", - "errorMsg2": "doesn't exist", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://wolpy.com/{}", - "urlMain": "https://wolpy.com", - "usernameON": "FaustinFavreau", - "bad_site": "" - }, - "Wordart": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://wordart.com/gallery/user/{}", - "urlMain": "https://wordart.com", - "usernameON": "Jarmiviktoria", - "bad_site": "" - }, - "WordPress": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://{}.wordpress.com/", - "urlMain": "https://wordpress.com", - "usernameON": "blue", - "bad_site": "" - }, - "WordPressOrg": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://profiles.wordpress.org/{}/", - "urlMain": "https://wordpress.org/", - "usernameON": "blue", - "bad_site": "" - }, - "Worldofwarcraft_blizzard": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Error 404", - "errorMsg2": "WoW + + diff --git a/services/setec-manager/web/templates/dashboard.html b/services/setec-manager/web/templates/dashboard.html new file mode 100644 index 0000000..eba5859 --- /dev/null +++ b/services/setec-manager/web/templates/dashboard.html @@ -0,0 +1,53 @@ +{{define "content"}} +

Dashboard

+
+ +

Services

+
403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mradchenko-ezo.ucoz.ru/index/8-0-{}", - "urlMain": "https://mradchenko-ezo.ucoz.ru", - "usernameON": "Telejaw", - "bad_site": "" - }, - "Forum_msa-iptv": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "Користувача не знайдено", - "errorTyp��": "message", - "url": "http://msa-iptv.net/index/8-0-{}", - "urlMain": "http://msa-iptv.net", - "usernameON": "grigorili", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_msextra": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "| Cloudflare", - "errorMsg3": "search at this time", - "errorTyp��": "message", - "url": "https://www.msextra.com/forums/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.msextra.com", - "usernameON": "Laminar", - "bad_site": "" - }, - "Forum_msfn": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://msfn.org/board/search/?q={}&quick=1&type=core_members", - "urlMain": "https://msfn.org", - "usernameON": "lmacri", - "bad_site": "" - }, - "Forum_msiu": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://msiwind.ucoz.net/index/8-0-{}", - "urlMain": "https://msiwind.ucoz.net", - "usernameON": "TimurR", - "bad_site": "" - }, - "Forum_mskwa": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "ничего не найдено", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://mskwa.foroesp.com/search.php?action=search&keywords=&author={}&forum=&search_in=0&sort_by=0&sort_dir=DESC&show_as=posts&search=%CE%F2%EF%F0%E0%E2%E8%F2%FC", - "urlMain": "https://mskwa.foroesp.com", - "usernameON": "tony", - "bad_site": "" - }, - "Forum_mssuao": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mssuao.my1.ru/index/8-0-{}", - "urlMain": "https://mssuao.my1.ru/", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_mt5": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorMsg2": "Forex Forum | Forex Trading Forums | MT5 Forum", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://forum.mt5.com/member.php?username={}", - "urlMain": "https://forum.mt5.com", - "usernameON": "adam", - "bad_site": 1 - }, - "Forum_mta-info": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mta-info.ru/index/8-0-{}", - "urlMain": "https://mta-info.ru", - "usernameON": "Online", - "bad_site": "" - }, - "Forum_mtbr": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.mtbr.com/members/?username={}", - "urlMain": "https://www.mtbr.com", - "usernameON": "aargar", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_mucs": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mucs.ucoz.ru/index/8-0-{}", - "urlMain": "https://mucs.ucoz.ru", - "usernameON": "Shinjitzu", - "bad_site": "" - }, - "Forum_muffingroup": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://forum.muffingroup.com/betheme/profile/{}", - "urlMain": "https://forum.muffingroup.com", - "usernameON": "charlie27", - "bad_site": "" - }, - "Forum_muppet": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://muppet.fandom.com/wiki/User:{}", - "urlMain": "https://muppet.fandom.com", - "usernameON": "Reidtaub", - "bad_site": "" - }, - "Forum_musclemecca": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://musclemecca.com/members/?username={}", - "urlMain": "https://musclemecca.com", - "usernameON": "tkd", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_musflat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://musflat.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://musflat.kamrbb.ru", - "usernameON": "555serg2005", - "bad_site": "" - }, - "Forum_musik3": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://musik3.ucoz.ru/index/8-0-{}", - "urlMain": "http://musik3.ucoz.ru/", - "usernameON": "Futbolki", - "bad_site": "" - }, - "Forum_muz-tv": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://muz-tv-forum.ucoz.ru/index/8-0-{}", - "urlMain": "https://muz-tv-forum.ucoz.ru", - "usernameON": "nadinvorobei", - "bad_site": "" - }, - "Forum_muzcom": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://muzcom.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://muzcom.kamrbb.ru", - "usernameON": "%CA%EE%ED%F0%E0%E4", - "bad_site": "" - }, - "Forum_muzlar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://muzlar.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://muzlar.kamrbb.ru", - "usernameON": "%F8%F3%EC%E8%EB%E8%ED", - "bad_site": "" - }, - "Forum_mxlinux": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://forum.mxlinux.org/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.mxlinux.org", - "usernameON": "Stevo", - "bad_site": "" - }, - "Forum_mya": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.mya-uk.org.uk/forums/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.mya-uk.org.uk", - "usernameON": "downbytheriver", - "bad_site": "" - }, - "Forum_myaudiq5": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.myaudiq5.com/members/?username={}", - "urlMain": "https://www.myaudiq5.com", - "usernameON": "sargeq5", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_mybb": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "По вашему запросу ничего не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://forum.mybb.ru/search.php?action=search&keywords=&author={}", - "urlMain": "https://forum.mybb.ru", - "usernameON": "Deff", - "bad_site": "" - }, - "Forum_mybeautyconsultant": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://mybeautyconsultant.net/forum/members/?username={}", - "urlMain": "https://mybeautyconsultant.net", - "usernameON": "blackcoffee", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_Mybirds": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, ", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.mybirds.ru/forums/search/?&q={}&type&quick=1&search_and_or=or&sortby=relevancy", - "urlMain": "https://www.mybirds.ru/", - "usernameON": "Tanban", - "bad_site": "" - }, - "Forum_mycity-military": { - "country": "🇪🇺", - "country_klas": "EU", - "errorMsg": "tim imenom ne postoji ", - "errorMsg2": "MyCity Military", - "errorTyp��": "message", - "url": "https://www.mycity-military.com/Korisnik/{}/", - "urlMain": "https://www.mycity-military.com", - "usernameON": "Milija", - "bad_site": "" - }, - "Forum_mycoffee": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mycoffee.ucoz.ru/index/8-0-{}", - "urlMain": "https://mycoffee.ucoz.ru", - "usernameON": "Азазелло", - "bad_site": "" - }, - "Forum_mycoweb": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403", - "errorTyp��": "message", - "url": "https://myfc.ucoz.ru/index/8-0-{}", - "urlMain": "https://myfc.ucoz.ru", - "usernameON": "jag", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_myfriendsclub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://myfriendsclub.ucoz.ru/index/8-0-{}", - "urlMain": "https://myfriendsclub.ucoz.ru", - "usernameON": "crasnovp1t", - "bad_site": "" - }, - "Forum_myfxbook": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.myfxbook.com/members/{}", - "urlMain": "https://www.myfxbook.com", - "usernameON": "esmumuex", - "bad_site": "" - }, - "Forum_mygolfspy": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Sorry, page not found", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forum.mygolfspy.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.mygolfspy.com", - "usernameON": "bmdubya", - "bad_site": "" - }, - "Forum_myimmortal": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://myimmortal.forum24.ru/?32-{}", - "urlMain": "https://myimmortal.forum24.ru", - "usernameON": "de3fmjhhfq", - "bad_site": "" - }, - "Forum_Myjane": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "<title> - Женские форумы myJane", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Извините,", - "errorTyp��": "message", - "url": "http://forum.myjane.ru/profile.php?mode=viewprofile&u={}", - "urlMain": "http://forum.myjane.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_mymbonline": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.mymbonline.com/members/?username={}", - "urlMain": "https://www.mymbonline.com", - "usernameON": "odehboy", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_mymoscow": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://myslonim.by/index/8-0-{}", - "urlMain": "http://myslonim.by", - "usernameON": "wellnemo", - "bad_site": "" - }, - "Forum_myst": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://myst.ucoz.com/index/8-0-{}", - "urlMain": "https://myst.ucoz.com", - "usernameON": "vetal99977", - "bad_site": "" - }, - "Forum_mystic-school": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.mystic-school.ru/u/{}/summary", - "urlMain": "https://forum.postwrestling.com", - "usernameON": "ivan", - "bad_site": "" - }, - "Forum_mysticalgarland": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mysticalgarland.at.ua/index/8-0-{}", - "urlMain": "https://mysticalgarland.at.ua", - "usernameON": "rusanov19110088", - "bad_site": "" - }, - "Forum_mysurvival": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://mysurvivalforum.com/members/?username={}", - "urlMain": "https://mysurvivalforum.com", - "usernameON": "mekada", - "comments": "bad", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": 1 - }, - "Forum_mytractor": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.mytractorforum.com/members/?username={}", - "urlMain": "https://www.mytractorforum.com", - "usernameON": "fuzzy2", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_mytrans": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mytrans.3dn.ru/index/8-0-{}", - "urlMain": "https://mytrans.3dn.ru", - "usernameON": "kirilvoshnovskiy", - "bad_site": "" - }, - "Forum_myvisualdatabase": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No users were", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://myvisualdatabase.com/forum/userlist.php?username={}&show_group=-1&sort_by=username&sort_dir=ASC&search=Search", - "urlMain": "https://myvisualdatabase.com", - "usernameON": "DriveSoft", - "bad_site": "" - }, - "Forum_myword": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://myword.borda.ru/?32-{}", - "urlMain": "https://myword.borda.ru", - "usernameON": "kaccob", - "bad_site": "" - }, - "Forum_myxlam": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://myxlam.clan.su/index/8-0-{}", - "urlMain": "https://myxlam.clan.su", - "usernameON": "nagimrasul", - "bad_site": "" - }, - "Forum_mzee": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.mzee.com/forum/members/?username={}", - "urlMain": "https://www.mzee.com", - "usernameON": "eduardo", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_n2td": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.n2td.org/index.php?members/&username={}", - "urlMain": "https://forum.n2td.org", - "usernameON": "dylansmall", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nabran": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.nabran.ru/index/8-0-{}", - "urlMain": "http://www.nabran.ru/", - "usernameON": "ghgjjg", - "bad_site": "" - }, - "Forum_nada25": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://nada25.ucoz.ru/index/8-0-{}", - "urlMain": "https://nada25.ucoz.ru", - "usernameON": "svn", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_nag": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пожалуйста, подождите", - "errorMsg2": "| Cloudflare", - "errorMsg3": "0 результатов", - "errorTyp��": "message", - "url": "https://forum.nag.ru/index.php?/search/&q={}&start_after=any", - "urlMain": "https://forum.nag.ru", - "usernameON": "frol13", - "bad_site": "" - }, - "Forum_nameberry": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://forum.nameberry.com/u/{}/summary", - "urlMain": "https://forum.nameberry.com", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_Namepros": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.namepros.com/members/?username={}", - "urlMain": "https://www.namepros.com", - "usernameON": "velted", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_napolimagazine": { - "country": "🇮🇹", - "country_klas": "IT", - "errorMsg": "Nessun argomento o messaggio", - "errorMsg2": "Al momento non ti", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.napolimagazine.info/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Cerca", - "urlMain": "https://www.napolimagazine.info/", - "usernameON": "pinos", - "bad_site": "" - }, - "Forum_narkomanija": { - "country": "🇪🇺", - "country_klas": "EU", - "errorMsg": "Information", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.narkomanija.ba/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forum.narkomanija.ba", - "usernameON": "sanela", - "bad_site": "" - }, - "Forum_narutoshiprus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://narutoshiprus.ucoz.ru/index/8-0-{}", - "urlMain": "https://narutoshiprus.ucoz.ru", - "usernameON": "fint333", - "bad_site": "" - }, - "Forum_nash-dialog": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://nash-dialog.com/members/?username={}", - "urlMain": "https://nash-dialog.com", - "usernameON": "nuarr", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nashaplaneta": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg2": "0 пользоват", - "errorTyp��": "message", - "url": "https://nashaplaneta.net/forum/memberlist.php?username={}", - "urlMain": "https://nashaplaneta.net", - "usernameON": "nausla", - "bad_site": "" - }, - "Forum_nashausadba": { - "country": "🇺🇦", - "country_klas": "UA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://nashausadba.com.ua/forum/members/?username={}", - "urlMain": "https://nashausadba.com.ua", - "usernameON": "manana", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_nashtransport": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "По вашему запросу ничего не найдено", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.nashtransport.ru/search/?q={}&quick=1&type=blog_entry", - "urlMain": "https://www.nashtransport.ru", - "usernameON": "kventz", - "bad_site": "" - }, - "Forum_nationsglory": { - "country": "🇫🇷", - "country_klas": "FR", - "errorMsg": "Erreur", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Pseudo inexistant", - "errorTyp��": "message", - "url": "https://nationsglory.fr/profile/{}", - "urlMain": "https://nationsglory.fr", - "usernameON": "nimomoney", - "bad_site": "" - }, - "Forum_navi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://forum.navi.gg/search?query=&orderByType=relevance&user=+§ion=&calendarDate=", - "urlMain": "https://forum.navi.gg/", - "usernameON": "termenator46", - "bad_site": "" - }, - "Forum_navyclub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://navyclub.ucoz.ru/index/8-0-{}", - "urlMain": "https://navyclub.ucoz.ru", - "usernameON": "Delfa", - "bad_site": "" - }, - "Forum_naydemvam": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "ничего не найдено", - "errorMsg2": "<title>Информация", - "errorTyp��": "message", - "url": "https://naydemvam.naydemvam.ru/search.php?action=search&keywords=&author={}&forum=&search_in=0&sort_by=0&sort_dir=DESC&show_as=posts&search=%CE%F2%EF%F0%E0%E2%E8%F2%FC", - "urlMain": "https://naydemvam.naydemvam.ru", - "usernameON": "Urri", - "bad_site": "" - }, - "Forum_nba777": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nba777.ucoz.ru/index/8-0-{}", - "urlMain": "https://nba777.ucoz.ru", - "usernameON": "JustinFem", - "bad_site": "" - }, - "Forum_nbcsportsedge": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W", - "errorMsg": "0 results", - "errorMsg2": "0 user", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forums.nbcsportsedge.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.nbcsportsedge.com", - "usernameON": "Jtraysfan", - "bad_site": 1 - }, - "Forum_Ne-kurim": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://ne-kurim.ru/members/?username={}", - "urlMain": "https://ne-kurim.ru/", - "usernameON": "gpp", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_necropolis": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://necropolis.ucoz.ru/index/8-0-{}", - "urlMain": "https://necropolis.ucoz.ru", - "usernameON": "RuTOR", - "bad_site": "" - }, - "Forum_nedvizimost": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://nedvizimost.ucoz.ru/index/8-0-{}", - "urlMain": "https://nedvizimost.ucoz.ru", - "usernameON": "natayovzhik", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_nemodniy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "НЕМОДНЫЙ КЛУБ.", - "errorTyp��": "message", - "url": "http://forum.nemodniy.ru/member.php?username={}", - "urlMain": "http://forum.nemodniy.ru", - "usernameON": "MEDBEDb", - "comments": "bad", - "bad_site": 1 - }, - "Forum_neodni": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.my-neodni.ucoz.ru/index/8-0-{}", - "urlMain": "http://www.my-neodni.ucoz.ru", - "usernameON": "probe505", - "bad_site": "" - }, - "Forum_neptuneos": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.neptuneos.com/public/u/{}", - "urlMain": "https://forum.neptuneos.com", - "usernameON": "leszek", - "bad_site": "" - }, - "Forum_nerchinsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nerchinsk.ucoz.ru/index/8-0-{}", - "urlMain": "https://nerchinsk.ucoz.ru/", - "usernameON": "tarogadanie11", - "bad_site": "" - }, - "Forum_netbiz": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "403 Forbidden", - "errorMsg2": "Пользователь не найден", - "errorTyp��": "message", - "url": "https://netbiz.at.ua/index/8-0-{}", - "urlMain": "https://netbiz.at.ua/", - "usernameON": "tag", - "bad_site": 1, - "comments": "Oplata", - "exclusion": "\\W" - }, - "Forum_netcookingtalk": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://netcookingtalk.com/forums/members/?username={}", - "urlMain": "https://netcookingtalk.com", - "usernameON": "rickismom", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_netdietam": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://netdietam.ucoz.ru/index/8-0-{}", - "urlMain": "https://netdietam.ucoz.ru/", - "usernameON": "lomaempochtu", - "bad_site": "" - }, - "Forum_netduma": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.netduma.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.netduma.com", - "usernameON": "vpn", - "bad_site": "" - }, - "Forum_nettractortalk": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nettractortalk.com/forums/members/?username={}", - "urlMain": "https://www.nettractortalk.com/", - "usernameON": "chennaicontainers", - "comments": "RUblock", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nevendaar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nevendaar.3dn.ru/index/8-0-{}", - "urlMain": "https://nevendaar.3dn.ru", - "usernameON": "Химера", - "bad_site": "" - }, - "Forum_neveroyatno": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://neveroyatno.ucoz.ru/index/8-0-{}", - "urlMain": "https://neveroyatno.ucoz.ru", - "usernameON": "serko78", - "bad_site": "" - }, - "Forum_new-journals": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://new-journals.at.ua/index/8-0-{}", - "urlMain": "https://new-journals.at.ua", - "usernameON": "petrjarik77", - "bad_site": "" - }, - "Forum_new-nedvigimost": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://new-nedvigimost.moy.su/index/8-0-{}", - "urlMain": "https://new-nedvigimost.moy.su", - "usernameON": "olgapet946", - "bad_site": "" - }, - "Forum_newcok": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://newcok.ru/index/8-0-{}", - "urlMain": "http://newcok.ru/", - "usernameON": "Kass", - "bad_site": "" - }, - "Forum_newjerseyhunter": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.newjerseyhunter.com/members/?username={}", - "urlMain": "https://www.newjerseyhunter.com", - "usernameON": "slayer1962", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_newlcn": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Sorry, but that user does not exist.", - "errorMsg2": ">Information</td>", - "errorTyp��": "message", - "url": "http://forum.newlcn.com/profile.php?mode=viewprofile&u={}", - "urlMain": "http://forum.newlcn.com", - "usernameON": "sckameikin22", - "bad_site": "" - }, - "Forum_newload_ucoz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://newload.ucoz.ru/index/8-0-{}", - "urlMain": "https://newload.ucoz.ru", - "usernameON": "Shinjitzu", - "bad_site": "" - }, - "Forum_newnissanz": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.newnissanz.com/members/?username={}", - "urlMain": "https://www.newnissanz.com", - "usernameON": "speczracer", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_newpower": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://newpower.at.ua/index/8-0-{}", - "urlMain": "https://newpower.at.ua", - "usernameON": "kot358194", - "bad_site": "" - }, - "Forum_newros": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://newros.ru/index/8-0-{}", - "urlMain": "http://newros.ru", - "usernameON": "mrferos921", - "bad_site": "" - }, - "Forum_newschoolers": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Please wait", - "errorMsg2": "Sorry, we couldn't find anything that matched your search query.", - "errorTyp��": "message", - "url": "https://www.newschoolers.com/search?tab=members&s={}", - "urlMain": "https://www.newschoolers.com", - "usernameON": "skierman", - "bad_site": "" - }, - "Forum_nexgencheats": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.nexgencheats.com/index.php?/search/&q={}&type=core_members", - "urlMain": "https://www.nexgencheats.com", - "usernameON": "ViraL", - "comments": "Oplata", - "bad_site": 1 - }, - "Forum_next-gazel": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован", - "errorMsg2": "Результатов поиска нет", - "errorTyp��": "message", - "url": "https://next-gazel.ru/forum/member.php?username={}", - "urlMain": "https://next-gazel.ru", - "usernameON": "cmd368tv", - "bad_site": "" - }, - "Forum_nexusmods": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forums.nexusmods.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.nexusmods.com", - "usernameON": "EvilFixer", - "bad_site": "" - }, - "Forum_nf-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://nf-club.ru/index/8-0-{}", - "urlMain": "http://nf-club.ru", - "usernameON": "SloNF", - "comments": "Oplata", - "bad_site": 1 - }, - "Forum_ngs": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": " <div class=\"create-a-post actually-show-error", - "errorMsg2": "Результатов, соответствующих Вашему запросу, не найдено", - "errorTyp��": "message", - "url": "https://forum.ngs.ru/search/?words={}&forum=all&match=username&limit=25", - "urlMain": "https://forum.ngs.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_nicolaspark": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nicolaspark.my1.ru/index/8-0-{}", - "urlMain": "https://nicolaspark.my1.ru", - "usernameON": "fox", - "bad_site": "" - }, - "Forum_niflheim": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://niflheim.world/members/?username={}", - "urlMain": "https://niflheim.world", - "usernameON": "mouro3100", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_Night_kharkov": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://night.kharkov.ua/index/8-0-{}", - "urlMain": "http://night.kharkov.ua", - "usernameON": "lauraao1", - "bad_site": "" - }, - "Forum_nikmc": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://nikmc-i.ucoz.ru/index/8-0-{}", - "urlMain": "http://nikmc-i.ucoz.ru", - "usernameON": "zaiacsania", - "bad_site": "" - }, - "Forum_nikola": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nikola-apx.ucoz.ru/index/8-0-{}", - "urlMain": "https://nikola-apx.ucoz.ru", - "usernameON": "Ilya", - "bad_site": "" - }, - "Forum_nikonites": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://nikonites.com/forum/members/?username={}", - "urlMain": "https://nikonites.com/", - "usernameON": "weebee", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nikopol": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nikopol.moy.su/index/8-0-{}", - "urlMain": "https://nikopol.moy.su", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_nikos": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://nikos.at.ua/index/8-0-{}", - "urlMain": "https://nikos.at.ua", - "usernameON": "Saymon", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_nim-lang": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://forum.nim-lang.org/profile/{}", - "urlMain": "https://forum.nim-lang.org", - "usernameON": "SolitudeSF", - "bad_site": "" - }, - "Forum_nintendo": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nintendoforums.com/members/?username={}", - "urlMain": "https://www.nintendoforums.com", - "usernameON": "dustinb12", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nissan": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nissanforums.com/members/?username={}", - "urlMain": "https://www.nissanforums.com", - "usernameON": "weeaboo123", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_nissanclub": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nissanclub.com/members/?username={}", - "urlMain": "https://www.nissanclub.com", - "usernameON": "administrator", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_nissanzclub": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nissanzclub.com/forum/members/?username={}", - "urlMain": "https://www.nissanzclub.com", - "usernameON": "mcn1smo", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_njofficer": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorMsg3": "Contact your hosting provider", - "errorTyp��": "message", - "url": "https://www.njofficer.com/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.njofficer.com", - "usernameON": "JRoberts", - "comments": "Oplata", - "bad_site": 1 - }, - "Forum_nkp": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nn2000.ucoz.ru/index/8-0-{}", - "urlMain": "https://nn2000.ucoz.ru", - "usernameON": "nn2000", - "bad_site": "" - }, - "Forum_nocd": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nocd.ru/index/8-0-{}", - "urlMain": "https://nocd.ru", - "usernameON": "Fridrih", - "bad_site": "" - }, - "Forum_noginsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://noginsk.ucoz.com/index/8-0-{}", - "urlMain": "https://noginsk.ucoz.com", - "usernameON": "Skyler", - "bad_site": "" - }, - "Forum_nohide": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://nohide.io/members/?username={}", - "urlMain": "https://nohide.io", - "usernameON": "gamerocs", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_nokia6230i": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://nokia6230i.ucoz.ru/index/8-0-{}", - "urlMain": "https://nokia6230i.ucoz.ru", - "usernameON": "Dim0271", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_nokiasoft": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403", - "errorTyp��": "message", - "url": "https://nokiasoft.3dn.ru/index/8-0-{}", - "urlMain": "https://nokiasoft.3dn.ru", - "usernameON": "OOccuts", - "bad_site": "", - "comments": "bad", - "exclusion": "\\W" - }, - "Forum_nomadbsd": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://forum.nomadbsd.org/u/{}/summary", - "urlMain": "https://forum.nomadbsd.org", - "usernameON": "borgio3", - "bad_site": "" - }, - "Forum_nonarko": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum-nonarko.ru/members/?username={}", - "urlMain": "https://forum-nonarko.ru", - "usernameON": "GAVR", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_nooneaboveus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "url": "https://nooneaboveus.ucoz.ru/index/8-0-{}", - "urlMain": "https://nooneaboveus.ucoz.ru", - "usernameON": "Лана", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_nordog": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nordog.ucoz.ru/index/8-0-{}", - "urlMain": "https://nordog.ucoz.ru", - "usernameON": "gutan1201", - "bad_site": "" - }, - "Forum_northernbrewer": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://forum.northernbrewer.com/users/{}/activity", - "urlMain": "https://forum.northernbrewer.com", - "usernameON": "joonze", - "bad_site": "" - }, - "Forum_northstandchat": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.northstandchat.com/members/?username={}", - "urlMain": "https://www.northstandchat.com", - "usernameON": "hitony", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nosmoking": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://nosmoking.ru/phpBB2/search.php?keywords=&terms=all&author={}", - "urlMain": "https://nosmoking.ru", - "usernameON": "irina", - "bad_site": "" - }, - "Forum_Not_606": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://not606.com/members/?username={}", - "urlMain": "https://not606.com", - "usernameON": "fromthestands", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_nousch1": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nousch1.ucoz.ru/index/8-0-{}", - "urlMain": "https://nousch1.ucoz.ru", - "usernameON": "Lostoff", - "bad_site": "" - }, - "Forum_novascotiahunting": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.novascotiahunting.com/members/?username={}", - "urlMain": "https://www.novascotiahunting.com", - "usernameON": "3macs1", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_novelupdates": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.novelupdates.com/members/?username={}", - "urlMain": "https://forum.novelupdates.com", - "usernameON": "lilly2805", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_novelupdatesforum": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.novelupdatesforum.com/members/?username={}", - "urlMain": "https://www.novelupdatesforum.com", - "usernameON": "parth37955", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_novfishing": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "К сожалению, возникла проблема", - "errorTyp��": "message", - "url": "https://novfishing.ru/search/?&q={}&type=core_members", - "urlMain": "https://novfishing.ru", - "usernameON": "red", - "bad_site": "" - }, - "Forum_novoe-chelovech": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "http://novoe-chelovech.ucoz.ru/index/8-0-{}", - "urlMain": "http://novoe-chelovech.ucoz.ru", - "usernameON": "Asteroidbum", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_novokrasnyanka": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://novokrasnyanka.ucoz.ua/index/8-0-{}", - "urlMain": "https://novokrasnyanka.ucoz.ua", - "usernameON": "vilniy", - "bad_site": "" - }, - "Forum_novsevkuchino": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://novsevkuchino.my1.ru/index/8-0-{}", - "urlMain": "https://novsevkuchino.my1.ru", - "usernameON": "Zews", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_npest": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://npest.moy.su/index/8-0-{}", - "urlMain": "https://npest.moy.su", - "usernameON": "Juku", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_nsk-cb": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "Insufficient Storage", - "errorTyp��": "message", - "url": "http://forum.nsk-cb.ru/memberlist.php?username={}", - "urlMain": "http://forum.nsk-cb.ru", - "usernameON": "abjectradical82", - "bad_site": "" - }, - "Forum_nsk_clan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nsk.clan.su/index/8-0-{}", - "urlMain": "https://nsk.clan.su", - "usernameON": "Elnor", - "bad_site": "" - }, - "Forum_nsu": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "http://forum.nsu.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.nsu.ru", - "usernameON": "Znaika", - "bad_site": 1 - }, - "Forum_ntc_party": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://ntc.party/u/{}", - "urlMain": "https://ntc.party", - "usernameON": "tango", - "bad_site": "" - }, - "Forum_nudostar": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://nudostar.com/forum/members/?username={}", - "urlMain": "https://nudostar.com", - "usernameON": "ahmedhananii", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nulled_CLOSEDEAD": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.nulled.to/index.php?app=core&module=search&do=search&andor_type=and&search_author={}&search_content=both&search_app_filters[members][searchInKey]=members&search_app_filters[members][members][sortKey]=date&search_term=&search_app=members&search_app_filters[members][searchInKey]=members&search_app_filters[members][members][sortKey]=title&search_app_filters[members][members][sortDir]=", - "urlMain": "https://www.nulled.to", - "usernameON": "crybaby20240", - "bad_site": 1 - }, - "Forum_numis": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.numisforums.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.numisforums.com", - "usernameON": "rasiel", - "bad_site": "" - }, - "Forum_nunchaku": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>", - "errorTyp��": "message", - "url": "https://forum.nvworld.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.nvworld.ru", - "usernameON": "epddsns", - "bad_site": "" - }, - "Forum_nyangler": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://nyangler.com/members/?username={}", - "urlMain": "https://nyangler.com", - "usernameON": "leprechaun", - "comments": "zamedlenie", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nybass": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nybass.com/members/?username={}", - "urlMain": "https://www.nybass.com", - "usernameON": "jaysen", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nyccnc": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Oops", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://nyccnc.com/forums/users/{}/", - "urlMain": "https://nyccnc.com/", - "usernameON": "ltborg", - "bad_site": "" - }, - "Forum_nycfire": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nycfire.net/forums/members/?username={}", - "urlMain": "https://www.nycfire.net", - "usernameON": "signal73", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_obama_ucoz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://obama.ucoz.ru/index/8-0-{}", - "urlMain": "https://obama.ucoz.ru", - "usernameON": "uKc", - "bad_site": "" - }, - "Forum_obkon": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://obkon.ucoz.com/index/8-0-{}", - "urlMain": "https://obkon.ucoz.com", - "usernameON": "ninokids", - "bad_site": "" - }, - "Forum_obninskchess": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Page not found", - "errorMsg2": "404", - "errorTyp��": "message", - "url": "https://chessiki.ru/forums/profile/{}", - "urlMain": "https://chessiki.ru/", - "usernameON": "lvdraphael", - "bad_site": "" - }, - "Forum_obovcem": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://obovcem.ucoz.ru/index/8-0-{}", - "urlMain": "https://obovcem.ucoz.ru/", - "usernameON": "Obovcem", - "bad_site": "" - }, - "Forum_obovsem_piter": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://obzhorkinsajt.ucoz.ru/index/8-0-{}", - "urlMain": "https://obzhorkinsajt.ucoz.ru", - "usernameON": "iisus1996", - "bad_site": "" - }, - "Forum_octothorp": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.octothorp.team/user/{}", - "urlMain": "https://forum.octothorp.team", - "usernameON": "porkove", - "bad_site": "" - }, - "Forum_odessacrewing": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://odessacrewing.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://odessacrewing.kamrbb.ru", - "usernameON": "csplus", - "bad_site": "" - }, - "Forum_odinhram": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://odinhram.3dn.ru/index/8-0-{}", - "urlMain": "https://odinhram.3dn.ru", - "usernameON": "elenas", - "bad_site": "" - }, - "Forum_odinochestvo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://odinochestvo.moy.su/index/8-0-{}", - "urlMain": "https://odinochestvo.moy.su", - "usernameON": "Marion", - "bad_site": "" - }, - "Forum_odnokursniki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://odnokursniki.clan.su/index/8-0-{}", - "urlMain": "https://odnokursniki.clan.su", - "usernameON": "vsetransport", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_odonvv": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://odonvv.ru/index/8-0-{}", - "urlMain": "https://odonvv.ru", - "usernameON": "Vodoley", - "bad_site": "" - }, - "Forum_officiating": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "", - "errorMsg2": "Sorry", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://offthepost.org/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://offthepost.org", - "usernameON": "Bosc", - "bad_site": "" - }, - "Forum_ofo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ofo.ucoz.ru/index/8-0-{}", - "urlMain": "https://ofo.ucoz.ru", - "usernameON": "sudba", - "bad_site": "" - }, - "Forum_ogxbox": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.ogxbox.com/forums/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://www.ogxbox.com", - "usernameON": "dtomcat", - "bad_site": "" - }, - "Forum_ohiogamefishing": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.ohiogamefishing.com/members/?username={}", - "urlMain": "https://www.ohiogamefishing.com", - "usernameON": "deadeyedeek", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ohiosportsman": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.ohiosportsman.com/members/?username={}", - "urlMain": "https://www.ohiosportsman.com", - "usernameON": "pbudi59", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ohiowaterfowler": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.ohiowaterfowlerforum.com/members/?username={}", - "urlMain": "https://www.ohiowaterfowlerforum.com", - "usernameON": "jimmy81", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ohota-ribalka": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ohota-ribalka.at.ua/index/8-0-{}", - "urlMain": "https://ohota-ribalka.at.ua", - "usernameON": "gratch79", - "bad_site": "" - }, - "Forum_ohrana-truda": { - "country": "🇧🇾", - "country_klas": "BY", - "errorMsg": "0 результатов", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.ohrana-truda.by/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.ohrana-truda.by", - "usernameON": "admin", - "bad_site": "" - }, - "Forum_oih_med": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "403 Forbidden", - "errorMsg2": "Пользователь не найден", - "errorTyp��": "message", - "url": "https://oih.at.ua/index/8-0-{}", - "urlMain": "https://oih.at.ua", - "usernameON": "fiorella", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_oil-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "<title>Just a moment", - "errorMsg2": "Found 0 results", - "errorMsg3": "Найдено 0", - "errorTyp��": "message", - "url": "https://www.oil-club.ru/forum/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.oil-club.ru", - "usernameON": "tattoedarm", - "bad_site": "" - }, - "Forum_oilburners": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.oilburners.net/members/?username={}", - "urlMain": "https://www.oilburners.net", - "usernameON": "kansasidi", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_oklahomahunter": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.oklahomahunter.net/members/?username={}", - "urlMain": "https://www.oklahomahunter.net", - "usernameON": "drc458", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_okna-7": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://okna-7.my1.ru/index/8-0-{}", - "urlMain": "https://okna-7.my1.ru", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_old_ap": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://old.ap-pro.ru/index/8-0-{}", - "urlMain": "http://old.ap-pro.ru/", - "usernameON": "dkfllelfhtd", - "bad_site": "" - }, - "Forum_old_sukhoi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "robots\" content=\"noindex,follow", - "errorTyp��": "message", - "url": "http://old.sukhoi.ru/forum/member.php?username={}", - "urlMain": "http://old.sukhoi.ru", - "usernameON": "GreyWind", - "bad_site": "" - }, - "Forum_oldbel-kovalevo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://oldbel-kovalevo.ucoz.ru/index/8-0-{}", - "urlMain": "https://oldbel-kovalevo.ucoz.ru", - "usernameON": "skorodihin", - "bad_site": "" - }, - "Forum_oldclassiccar": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Sorry,", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.oldclassiccar.co.uk/forum/phpbb/phpBB2/profile.php?mode=viewprofile&u={}", - "urlMain": "https://www.oldclassiccar.co.uk", - "usernameON": "davids", - "bad_site": "" - }, - "Forum_oldmeloman": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://oldmeloman.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://oldmeloman.kamrbb.ru", - "usernameON": "gustava", - "bad_site": "" - }, - "Forum_oldones": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.oldones.org/index/8-0-{}", - "urlMain": "http://www.oldones.org", - "usernameON": "rpavel693", - "comments": "bad", - "bad_site": 1 - }, - "forum_oldpokemon": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg2": "0 пользователей", - "errorTyp��": "message", - "url": "https://forum.oldpokemon.ru/memberlist.php?sk=c&sd=a&username={}", - "urlMain": "https://forum.oldpokemon.ru", - "usernameON": "BisQuit", - "bad_site": 1 - }, - "Forum_olujaz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://olujaz.ucoz.ru/index/8-0-{}", - "urlMain": "https://olujaz.ucoz.ru", - "usernameON": "ccbeclexanthirt", - "bad_site": "" - }, - "Forum_oluss": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://oluss.at.ua/index/8-0-{}", - "urlMain": "https://oluss.at.ua", - "usernameON": "oluss", - "bad_site": "" - }, - "Forum_omaddiet": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://omaddiet.com/community/members/?username={}", - "urlMain": "https://omaddiet.com", - "usernameON": "sumeria9", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_omega": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://omegaforums.net/members/?username={}", - "urlMain": "https://omegaforums.net", - "usernameON": "fsg", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_oms": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://oms.ucoz.com/index/8-0-{}", - "urlMain": "https://oms.ucoz.com", - "usernameON": "pysarievai", - "bad_site": "" - }, - "Forum_omskmama": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Извините, такого пользователя не существует", - "errorMsg2": "ОмскМама", - "errorTyp��": "message", - "url": "https://forum.omskmama.ru/profile.php?mode=viewprofile&u={}", - "urlMain": "https://forum.omskmama.ru", - "usernameON": "vo24uk", - "bad_site": "" - }, - "Forum_onbankir": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://onbankir.moy.su/index/8-0-{}", - "urlMain": "https://onbankir.moy.su", - "usernameON": "burenokscody", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_oneclickchicks": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "One Click Chicks Forum", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://forum.oneclickchicks.com/member.php?username={}", - "urlMain": "https://forum.oneclickchicks.com", - "usernameON": "osreb", - "bad_site": "" - }, - "Forum_onefinitycnc": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.onefinitycnc.com/u/{}/summary", - "urlMain": "https://forum.onefinitycnc.com/", - "usernameON": "tahoe1840", - "bad_site": "" - }, - "Forum_online-dendy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://online-dendy.ru/index/8-0-{}", - "urlMain": "http://online-dendy.ru", - "usernameON": "fumssHesy", - "bad_site": "" - }, - "Forum_online-knigi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "url": "https://forum.online-knigi.com/members/?username={}", - "urlMain": "https://forum.online-knigi.com", - "usernameON": "brazilla", - "bad_site": 1, - "comments": "bad", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_online-money": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://online-money.3dn.ru/index/8-0-{}", - "urlMain": "https://online-money.3dn.ru", - "usernameON": "JafidNub", - "bad_site": "" - }, - "Forum_onlline-game_pp": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://onlline-game.pp.net.ua/index/8-0-{}", - "urlMain": "http://onlline-game.pp.net.ua", - "usernameON": "KREDO", - "bad_site": "" - }, - "Forum_onlyfans": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "robots\" content=\"noindex, nofollow", - "errorMsg2": "Not Found", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://onlyfansforum.com/author/{}/", - "urlMain": "https://onlyfansforum.com", - "usernameON": "fapello", - "comments": "bad", - "bad_site": "" - }, - "Forum_onlyrus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://onlyrus.ucoz.net/index/8-0-{}", - "urlMain": "https://onlyrus.ucoz.net", - "usernameON": "gromovmail", - "bad_site": "" - }, - "Forum_onlytech": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://onlytech.com/community/members/?username={}", - "urlMain": "https://onlytech.com", - "usernameON": "davidjohn91", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_onru": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://onru.my1.ru/index/8-0-{}", - "urlMain": "https://onru.my1.ru", - "usernameON": "Heavy", - "bad_site": "" - }, - "Forum_onz-shot": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://onz-shot.3dn.ru/index/8-0-{}", - "urlMain": "https://onz-shot.3dn.ru", - "usernameON": "WezhewBlesy", - "bad_site": "" - }, - "Forum_oopkmoskva": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://oopkmoskva.ucoz.ru/index/8-0-{}", - "urlMain": "https://oopkmoskva.ucoz.ru", - "usernameON": "standartserves", - "bad_site": "" - }, - "Forum_open-chess": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorTyp��": "message", - "url": "https://www.open-chess.org/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.open-chess.org", - "usernameON": "karakaniec", - "bad_site": "" - }, - "Forum_open_vanillaforums": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://open.vanillaforums.com/profile/{}", - "urlMain": "https://open.vanillaforums.com", - "usernameON": "haryono", - "bad_site": "" - }, - "Forum_openai": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://community.openai.com/u/{}", - "urlMain": "https://community.openai.com", - "usernameON": "haktan", - "bad_site": "" - }, - "Forum_openframeworks": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://forum.openframeworks.cc/u/{}/summary", - "urlMain": "https://forum.openframeworks.cc", - "usernameON": "red", - "bad_site": "" - }, - "Forum_opennebula": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.inductiveautomation.com/u/{}/summary", - "urlMain": "https://forum.opennebula.io", - "usernameON": "vani161998", - "bad_site": "" - }, - "Forum_openoffice": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorTyp��": "message", - "url": "https://forum.openoffice.org/en/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.openoffice.org", - "usernameON": "Diane9576", - "bad_site": "" - }, - "Forum_openstreetmap": { - "country": "🇫🇷", - "country_klas": "FR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.openstreetmap.fr/u/{}/summary", - "urlMain": "https://forum.openstreetmap.fr", - "usernameON": "gendy54", - "bad_site": "" - }, - "Forum_opensuse": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.opensuse.org/u/{}/summary", - "urlMain": "https://forums.opensuse.org", - "usernameON": "someuser7852", - "bad_site": "" - }, - "Forum_openwrt": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "data-preloaded=\"{"search":"{\\"posts\\":[],\\"users\\":[]", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.openwrt.org/search?q={}&search_type=users", - "urlMain": "https://forum.openwrt.org", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_optima": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.optimaforums.com/members/?username={}", - "urlMain": "https://www.optimaforums.com", - "usernameON": "aiden15", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_optina": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.optina.ru/search/?q={}&type=core_members", - "urlMain": "https://forum.optina.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_oranj": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://oranj.3dn.ru/index/8-0-{}", - "urlMain": "https://oranj.3dn.ru", - "usernameON": "kraudsmart803", - "bad_site": "" - }, - "Forum_orbiter": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.orbiter-forum.com/members/?username={}", - "urlMain": "https://www.orbiter-forum.com/", - "usernameON": "dgatsoulis", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_orbito": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://orbito.ucoz.ru/index/8-0-{}", - "urlMain": "https://orbito.ucoz.ru", - "usernameON": "keynbr", - "bad_site": "" - }, - "Forum_orchideus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://orchideus.ucoz.net/index/8-0-{}", - "urlMain": "http://orchideus.ucoz.net", - "usernameON": "Falcon", - "bad_site": "" - }, - "Forum_ord": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ord.at.ua/index/8-0-{}", - "urlMain": "https://ord.at.ua", - "usernameON": "thompson1986", - "bad_site": "" - }, - "Forum_orelhunter": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 обнаружено совпадений всего на сайте", - "errorMsg2": "0 Ïîëüçîâàòåëè íàéäåíî", - "errorMsg3": "Аккаунт заблокирован", - "errorTyp��": "message", - "url": "https://www.orelhunter.ru/search.php?stext={}", - "urlMain": "https://www.orelhunter.ru", - "usernameON": "zevocixy", - "bad_site": "" - }, - "Forum_org-invalid": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://org-invalid-sov.ucoz.ru/index/8-0-{}", - "urlMain": "https://org-invalid-sov.ucoz.ru", - "usernameON": "Riminy", - "bad_site": "" - }, - "Forum_originalpw": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "По вашему запросу ничего не найдено", - "errorTyp��": "message", - "url": "https://forum.originalpw.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.originalpw.com", - "usernameON": "FIESTA", - "bad_site": "" - }, - "Forum_orth": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://orth.ucoz.ru/index/8-0-{}", - "urlMain": "https://orth.ucoz.ru", - "usernameON": "svv", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_orthodox": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://orthodox.3dn.ru/index/8-0-{}", - "urlMain": "https://orthodox.3dn.ru", - "usernameON": "rob3k", - "bad_site": "" - }, - "Forum_oscraps": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://oscraps.com/community/members/?username={}", - "urlMain": "https://oscraps.com", - "usernameON": "prospurring", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_oslobodjenje": { - "country": "🇪🇺", - "country_klas": "EU", - "errorMsg": "Ništa nije pronađeno.", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.sport1.oslobodjenje.ba/memberlist.php?username={}", - "urlMain": "https://forum.sport1.oslobodjenje.ba", - "usernameON": "ARBET", - "bad_site": "" - }, - "Forum_ostrov": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ostrov.ucoz.net/index/8-0-{}", - "urlMain": "https://ostrov.ucoz.net", - "usernameON": "DENI30S", - "bad_site": "" - }, - "Forum_Oszone": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "http://forum.oszone.net/member.php?username={}", - "urlMain": "http://forum.oszone.net", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_otelefonax": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://otelefonax.ucoz.ru/index/8-0-{}", - "urlMain": "https://otelefonax.ucoz.ru", - "usernameON": "Christophernot", - "bad_site": "" - }, - "Forum_otlichnica": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://otlichnica.ucoz.ru/index/8-0-{}", - "urlMain": "http://otlichnica.ucoz.ru/", - "usernameON": "iamlovergirl97", - "bad_site": "" - }, - "Forum_otpm": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://otpm.do.am/index/8-0-{}", - "urlMain": "https://otpm.do.am", - "usernameON": "ua4lor", - "bad_site": "" - }, - "Forum_otzyvby": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "не зарегистрирован", - "errorMsg2": "с вашего IP-адреса", - "errorTyp��": "message", - "url": "https://otzyv.ru/reguser.php?poisk={}", - "urlMain": "https://otzyv.ru", - "usernameON": "Elena31", - "bad_site": "" - }, - "Forum_ourbeagleworld": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.ourbeagleworld.com/members/?username={}", - "urlMain": "https://www.ourbeagleworld.com", - "usernameON": "lovebeagles", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ourdjtalk": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://ourdjtalk.com/djs/?username={}", - "urlMain": "https://ourdjtalk.com", - "usernameON": "spincin", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ourflowers": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ourflowers.ucoz.ru/index/8-0-{}", - "urlMain": "https://ourflowers.ucoz.ru", - "usernameON": "kirikibus23", - "bad_site": "" - }, - "Forum_ourperevoz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ourperevoz.ucoz.ru/index/8-0-{}", - "urlMain": "https://ourperevoz.ucoz.ru", - "usernameON": "vilniy", - "bad_site": "" - }, - "Forum_ourtravels": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://ourtravels.ru/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sk=t&sd=d&sr=posts&st=0&ch=300&t=0&sid=d95024f932e887fccc0e58315bcd2b5d&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://ourtravels.ru/", - "usernameON": "Maria", - "bad_site": "" - }, - "Forum_outdoors911": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "not registered ", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.outdoors911.com/reports/member.php?username={}", - "urlMain": "https://www.montanaowners.com", - "usernameON": "Legend1958", - "bad_site": "" - }, - "Forum_outdoorsdirectory": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.outdoorsdirectory.com/members/?username={}", - "urlMain": "https://forums.outdoorsdirectory.com", - "usernameON": "leryt", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_outpostgallifrey": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://outpostgallifrey.com/members/?username={}", - "urlMain": "https://outpostgallifrey.com", - "usernameON": "rocco", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ovcharka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://ovcharka.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://ovcharka.kamrbb.ru", - "usernameON": "Tuadash", - "bad_site": "" - }, - "Forum_over50schat": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.over50schat.com/u/{}/summary", - "urlMain": "https://forum.over50schat.com", - "usernameON": "flowerpower", - "bad_site": "" - }, - "Forum_overclock": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.overclock.net/members/?username={}", - "urlMain": "https://www.overclock.net/", - "usernameON": "chipp", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_Overclockers": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.overclockers.ru/memberlist.php?username={}", - "urlMain": "https://forums.overclockers.ru", - "usernameON": "patisson", - "bad_site": "" - }, - "Forum_ovo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://ovo.ucoz.ru/index/8-0-{}", - "urlMain": "http://ovo.ucoz.ru/", - "usernameON": "Vitu", - "bad_site": "" - }, - "Forum_ovtsoft": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ovtsoft.3dn.ru/index/8-0-{}", - "urlMain": "https://ovtsoft.3dn.ru", - "usernameON": "mpg25music", - "bad_site": "" - }, - "Forum_paboma": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://paboma.ucoz.ru/index/8-0-{}", - "urlMain": "https://paboma.ucoz.ru", - "usernameON": "paboma", - "bad_site": "" - }, - "Forum_packer": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.packerforum.com/members/?username={}", - "urlMain": "https://www.packerforum.com", - "usernameON": "weeds", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pagohku": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pagohku.ucoz.ru/index/8-0-{}", - "urlMain": "https://pagohku.ucoz.ru", - "usernameON": "askutov123", - "bad_site": "" - }, - "Forum_paid-to-click": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://paid-to-click.ucoz.ru/index/8-0-{}", - "urlMain": "https://paid-to-click.ucoz.ru", - "usernameON": "%D0%A8%D1%80%D1%83%D1%81", - "bad_site": "" - }, - "Forum_palemoon": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Pale Moon forum - Information", - "errorTyp��": "message", - "url": "https://forum.palemoon.org/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.palemoon.org", - "usernameON": "Moonchild", - "bad_site": "" - }, - "Forum_palomniki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "Ошибка", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://palomniki.su/forum/profile/user-8-0-{}", - "urlMain": "http://palomniki.su", - "usernameON": "rius", - "comments": "Oplata", - "bad_site": 1 - }, - "Forum_panda3d": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://panda3d.org.ru/index/8-0-{}", - "urlMain": "http://panda3d.org.ru", - "usernameON": "ninth", - "bad_site": "" - }, - "Forum_pandawow": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "ipsAreaBackground_light ipsType_center ipsPad", - "errorTyp��": "message", - "url": "https://forum.pandawow.me/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.pandawow.me", - "usernameON": "buka", - "bad_site": "" - }, - "Forum_panigalev4club": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.panigalev4club.com/members/?username={}", - "urlMain": "https://www.panigalev4club.com/", - "usernameON": "admin", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_Panzer35": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://panzer35.ru/index/8-0-{}", - "urlMain": "http://panzer35.ru", - "usernameON": "Loki", - "bad_site": "" - }, - "Forum_papillonomania": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://papilon-falen.my1.ru/index/8-0-{}", - "urlMain": "https://papilon-falen.my1.ru", - "usernameON": "Антонитт", - "bad_site": "" - }, - "Forum_paranormal-news": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "http://paranormal-news.ru/index/8-0-{}", - "urlMain": "http://paranormal-news.ru", - "usernameON": "aeroy", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_parasha": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://parasha.do.am/index/8-0-{}", - "urlMain": "https://parasha.do.am", - "usernameON": "maximumextreeme", - "bad_site": "" - }, - "Forum_parents41": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "Сделать сайт просто", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://parents41.ru/index/8-0-{}", - "urlMain": "http://parents41.ru", - "usernameON": "Astary", - "comments": "bad", - "bad_site": 1 - }, - "Forum_parikmaher": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Найдено: 0 результатов", - "errorMsg2": "Результатов поиска нет", - "errorTyp��": "message", - "url": "https://parikmaher.net.ru/search/?q={}&quick=1&type=core_members", - "urlMain": "https://parikmaher.net.ru", - "usernameON": "sveta9630", - "bad_site": "" - }, - "Forum_parrotpilots": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://parrotpilots.com/members/?username={}", - "urlMain": "https://parrotpilots.com", - "usernameON": "captainmavic", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_partsdr": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "not registered", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forum.partsdr.com/member.php?username={}", - "urlMain": "https://forum.partsdr.com", - "usernameON": "Smarsh", - "bad_site": "" - }, - "Forum_Partyanimals": { - "country": "🇸🇬", - "country_klas": "SG", - "errorTyp��": "status_code", - "url": "https://forum.partyanimals.com/u/{}", - "urlMain": "https://forum.partyanimals.com", - "usernameON": "HighJack", - "bad_site": "" - }, - "Forum_pascalgamedevelopment": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have a profile to view", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.pascalgamedevelopment.com/member.php?username={}", - "urlMain": "https://www.pascalgamedevelopment.com", - "usernameON": "hkhkqoo", - "bad_site": "" - }, - "Forum_paulsat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://paulsat.ucoz.ru/index/8-0-{}", - "urlMain": "https://paulsat.ucoz.ru", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_pavlovskyposad": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Павловский Посад.ру - Информация", - "errorTyp��": "message", - "url": "http://forum.pavlovskyposad.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.pavlovskyposad.ru", - "usernameON": "zandr", - "bad_site": "" - }, - "Forum_pbi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pbi.my1.ru/index/8-0-{}", - "urlMain": "https://pbi.my1.ru/", - "usernameON": "codeflare", - "bad_site": "" - }, - "Forum_pcformat": { - "country": "🇵🇱", - "country_klas": "PL", - "errorTyp��": "status_code", - "url": "https://forum.pcformat.pl/{}-u", - "urlMain": "https://forum.pcformat.pl", - "usernameON": "raxer", - "bad_site": 1 - }, - "Forum_peklama_3dn": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://peklama.3dn.ru/index/8-0-{}", - "urlMain": "https://peklama.3dn.ru", - "usernameON": "arman02151", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_pembrokcity": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://pembrokcity.borda.ru/?32-{}", - "urlMain": "https://pembrokcity.borda.ru", - "usernameON": "fata", - "bad_site": "" - }, - "Forum_peredovaj": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.mus-peredovaj.ru/index/8-0-{}", - "urlMain": "http://www.mus-peredovaj.ru", - "usernameON": "ivanovvv817", - "bad_site": "" - }, - "Forum_pereval1959": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://pereval1959.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://pereval1959.kamrbb.ru", - "usernameON": "%CF%EE%F7%E5%EC%F3%F7%EA%E0", - "bad_site": "" - }, - "Forum_perevodchik": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://perevodchik-s-s.do.am/index/8-0-{}", - "urlMain": "https://perevodchik-s-s.do.am", - "usernameON": "hvttalatathui11", - "comments": "cf", - "bad_site": "" - }, - "Forum_perfect": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://perfect.ucoz.de/index/8-0-{}", - "urlMain": "http://perfect.ucoz.de", - "usernameON": "RomaOppop", - "bad_site": "" - }, - "Forum_perfectweddings": { - "country": "🇸🇬", - "country_klas": "SG", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.perfectweddings.sg/weddingforum/members/?username={}", - "urlMain": "https://www.perfectweddings.sg", - "usernameON": "dipaa", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pes_soccer": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pes-files.ru/index/8-0-{}", - "urlMain": "https://pes-files.ru", - "usernameON": "Drobjij", - "bad_site": "" - }, - "Forum_pet-s": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pet-s.ucoz.ru/index/8-0-{}", - "urlMain": "https://pet-s.ucoz.ru/", - "usernameON": "katya1931", - "bad_site": "" - }, - "Forum_petgb": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.petforums.co.uk/members/?username={}", - "urlMain": "https://www.petforums.co.uk", - "usernameON": "peterjosy", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_petropavlovka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.petropavlovka.my1.ru/index/8-0-{}", - "urlMain": "https://www.petropavlovka.my1.ru/", - "usernameON": "Fire4ik", - "bad_site": "" - }, - "Forum_pf-v": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "одождите", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://pf-v.ru/search/?q={}&quick=1&type=core_members", - "urlMain": "https://pf-v.ru/", - "usernameON": "oxy", - "bad_site": "" - }, - "Forum_phantomhelp": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://forum.phantomhelp.com/u/{}/summary", - "urlMain": "https://forum.phantomhelp.com", - "usernameON": "bob32014", - "bad_site": "" - }, - "Forum_phantompilots": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://phantompilots.com/members/?username={}", - "urlMain": "https://phantompilots.com", - "usernameON": "steve12321", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_philippe-fournier": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forum2.philippe-fournier-viger.com/search.php?keywords=&terms=all&author={}=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forum2.philippe-fournier-viger.com", - "usernameON": "Alva&sc", - "bad_site": "" - }, - "Forum_philosophicalvegan": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://philosophicalvegan.com/search.php?keywords=&terms=all&author={}", - "urlMain": "https://philosophicalvegan.com", - "usernameON": "Hey", - "bad_site": "" - }, - "Forum_phoenixrising": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.phoenixrising.me/members/?username={}", - "urlMain": "https://forums.phoenixrising.me", - "usernameON": "pattismith", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_phoneamommy": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.phoneamommy.com/Board/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.phoneamommy.com", - "usernameON": "SitterStacie", - "bad_site": "" - }, - "Forum_photographyreview": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorMsg2": "Sorry", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "http://forums.photographyreview.com/member.php?username={}", - "urlMain": "http://forums.photographyreview.com", - "usernameON": "Weskee32", - "bad_site": "" - }, - "Forum_photographytalk": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "div id=\"system-message\">", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.photographytalk.com/forum/search?searchuser={}&childforums=1", - "urlMain": "https://www.naturescapes.net", - "usernameON": "esseff", - "bad_site": "" - }, - "Forum_photos": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://photos.ucoz.ru/index/8-0-{}", - "urlMain": "https://photos.ucoz.ru", - "usernameON": "photos", - "bad_site": "" - }, - "Forum_photoshara": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://photoshara.ucoz.ru/index/8-0-{}", - "urlMain": "https://photoshara.ucoz.ru", - "usernameON": "hestilurte", - "bad_site": "" - }, - "Forum_phototerritory": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.phototerritory.ru/index/8-0-{}", - "urlMain": "http://www.phototerritory.ru", - "usernameON": "23a3sdasdasd322", - "bad_site": "" - }, - "Forum_phpbb_de": { - "country": "🇩🇪", - "country_klas": "DE", - "errorMsg": "Information", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.phpbb.de/community/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Suche", - "urlMain": "https://www.phpbb.de", - "usernameON": "db1982", - "comments": "super", - "bad_site": "" - }, - "Forum_phpfreaks": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.phpfreaks.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.phpfreaks.com", - "usernameON": "gizmola", - "bad_site": "" - }, - "Forum_physicianassistant": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.physicianassistantforum.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.physicianassistantforum.com", - "usernameON": "CAAdmission", - "comments": "cf", - "bad_site": "" - }, - "Forum_pickleberrypop": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://pickleberrypop.com/forum/members/?username={}", - "urlMain": "https://pickleberrypop.com", - "usernameON": "cathquillscrap", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pickup": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Найдено 0 результатов", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://forum.pickup.ru/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.pickup.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_pigeons": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.pigeons.biz/members/?username={}", - "urlMain": "https://www.pigeons.biz", - "usernameON": "utahraptor300", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pilotsofamerica": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.pilotsofamerica.com/community/members/?username={}", - "urlMain": "https://www.pilotsofamerica.com", - "usernameON": "wanttaja", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pinclub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pinclub.ucoz.ru/index/8-0-{}", - "urlMain": "https://pinclub.ucoz.ru", - "usernameON": "multatuli", - "bad_site": "" - }, - "Forum_pipca": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://pipca.6bb.ru/search.php?action=search&keywords=&author={}&forum=&search_in=0&sort_by=0&sort_dir=DESC&show_as=posts&search=%CE%F2%EF%F0%E0%E2%E8%F2%FC", - "urlMain": "https://pipca.6bb.ru", - "usernameON": "ola", - "bad_site": "" - }, - "Forum_pirate4x4": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.pirate4x4.com/members/?username={}", - "urlMain": "https://www.pirate4x4.com", - "usernameON": "jeepfan2022", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_piratehub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "url": "https://s1.piratehub.biz/members/?username={}", - "urlMain": "https://s1.piratehub.biz", - "usernameON": "timetobefirst", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_pirates": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://piratesforums.co/members/?username={}", - "urlMain": "https://piratesforums.co", - "usernameON": "sergey1337", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pirates-life": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://pirates-life.ru/index/8-0-{}", - "urlMain": "http://pirates-life.ru", - "usernameON": "alerg", - "comments": "bad", - "bad_site": "" - }, - "Forum_piratich": { - "country": "🇨🇿", - "country_klas": "CZ", - "errorMsg": "Nebyly nalezeny", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Sorry, ", - "errorTyp��": "message", - "url": "https://forum.pirati.cz/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Hledat", - "urlMain": "https://forum.pirati.cz", - "usernameON": "Hextus", - "bad_site": "" - }, - "Forum_pisatelforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pisatelforum.ucoz.ru/index/8-0-{}", - "urlMain": "https://pisatelforum.ucoz.ru", - "usernameON": "nix", - "bad_site": "" - }, - "Forum_pitbull-abakan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pitbull-abakan.3dn.ru/index/8-0-{}", - "urlMain": "https://pitbull-abakan.3dn.ru", - "usernameON": "Rolandpag", - "bad_site": "" - }, - "Forum_pixelmonrealms": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://pixelmonrealms.com/members/?username={}", - "urlMain": "https://pixelmonrealms.com", - "usernameON": "dragonowater", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_pkq-clan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pkq-clan.ucoz.com/index/8-0-{}", - "urlMain": "https://pkq-clan.ucoz.com", - "usernameON": "Pinupduzwah", - "bad_site": "" - }, - "Forum_planet-9": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.planet-9.com/members/?username={}", - "urlMain": "https://www.planet-9.com", - "usernameON": "deilenberger", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_planet-nefelana": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://planet-nefelana.ucoz.ru/index/8-0-{}", - "urlMain": "https://planet-nefelana.ucoz.ru", - "usernameON": "Nefelana", - "bad_site": "" - }, - "Forum_planetarium_kharkov": { - "country": "🇺🇦", - "country_klas": "UA", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://playlist-iptv.ucoz.ru/index/8-0-{}", - "urlMain": "http://playlist-iptv.ucoz.ru", - "usernameON": "altechst", - "bad_site": "" - }, - "Forum_playtime": { - "country": "🇩🇪", - "country_klas": "DE", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.playtime-forum.info/forum/members/?username={}", - "urlMain": "https://www.playtime-forum.info", - "usernameON": "Glumbi", - "bad_site": "" - }, - "Forum_plcforum": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "http://plcforum.uz.ua/search.php?keywords=&terms=all&author={}", - "urlMain": "http://plcforum.uz.ua", - "usernameON": "Novice", - "bad_site": "" - }, - "Forum_pling": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "UH OH! You're lost.", - "errorMsg2": "", - "errorTyp��": "message", - "url": "https://www.pling.com/u/{}", - "urlMain": "https://www.pling.com", - "usernameON": "dhyegoac2007", - "bad_site": "" - }, - "Forum_plodpitomnik": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://plodpitomnik.ru/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://plodpitomnik.ru", - "usernameON": "tag", - "comments": "super", - "bad_site": 1 - }, - "Forum_plumbing": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.plumbingforums.com/members/?username={}", - "urlMain": "https://www.plumbingforums.com/", - "usernameON": "miced69", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pmfun": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorTyp��": "message", - "url": "https://forum.pmfun.com/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.pmfun.com", - "usernameON": "JPSZone", - "bad_site": "" - }, - "Forum_pngindians": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.pngindians.com/members/?username={}", - "urlMain": "https://forums.pngindians.com", - "usernameON": "indianfan", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_podolsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Подольский городской форум - Информация", - "errorTyp��": "message", - "url": "https://forum.podolsk.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.podolsk.ru", - "usernameON": "irina", - "bad_site": "" - }, - "Forum_podrabotka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://podrabotka.3dn.ru/index/8-0-{}", - "urlMain": "https://podrabotka.3dn.ru", - "usernameON": "Tara", - "bad_site": "" - }, - "Forum_podrastem": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "http://podrastem.com/index/8-0-{}", - "urlMain": "http://podrastem.com", - "usernameON": "spenga", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_poezd-photo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://poezd-photo.ucoz.ru/index/8-0-{}", - "urlMain": "https://poezd-photo.ucoz.ru", - "usernameON": "rafikakenirov", - "bad_site": "" - }, - "Forum_pokatushki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pokatushki.ucoz.ru/index/8-0-{}", - "urlMain": "https://pokatushki.ucoz.ru", - "usernameON": "Mystic", - "bad_site": "" - }, - "Forum_pokebeach": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.pokebeach.com/forums/members/?username={}", - "urlMain": "https://www.pokebeach.com", - "usernameON": "geodugtrio", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_pokemine": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W[а-яА-Я]", - "errorMsg": "0 results", - "errorMsg2": "0 user", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "http://forum.pokemine.gg/search/?q={}&type=core_members", - "urlMain": "http://forum.pokemine.gg", - "usernameON": "czoko68", - "bad_site": "" - }, - "Forum_pokemmo": { - "country": "🇪🇺", - "country_klas": "EU", - "errorMsg": "Found 0 results", - "errorMsg2": "There were no results for your search. ", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://forums.pokemmo.eu/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://forums.pokemmo.eu", - "usernameON": "kayninexl", - "bad_site": "" - }, - "Forum_pokemonrevolution": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Found 0 results", - "errorMsg2": "There were no results for your search.", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://pokemonrevolution.net/forum/search/?q={}&quick=1&type=core_members", - "urlMain": "https://pokemonrevolution.net", - "usernameON": "Hack00", - "bad_site": "" - }, - "Forum_pokerchip": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.pokerchipforum.com/members/?username={}", - "urlMain": "https://www.pokerchipforum.com", - "usernameON": "dmcl924", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pokersrbija": { - "country": "🇪🇺", - "country_klas": "EU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.pokersrbija.com/u/{}", - "urlMain": "https://forum.pokersrbija.com", - "usernameON": "mim4dayi", - "bad_site": "" - }, - "Forum_pokerus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://pokerus.ru/index/8-0-{}", - "urlMain": "https://pokerus.ru", - "usernameON": "Mult", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_poligon29": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.politik-forum.eu/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.politik-forum.eu", - "usernameON": "Michi", - "bad_site": "" - }, - "Forum_politomsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://politomsk.ru/index/8-0-{}", - "urlMain": "http://politomsk.ru", - "usernameON": "slepuhin198427", - "bad_site": "" - }, - "Forum_polkadot": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.polkadot.network/u/{}/summary", - "urlMain": "https://forum.polkadot.network", - "usernameON": "muddlebee", - "bad_site": "" - }, - "Forum_pominovenieiv": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ponarama.my1.ru/index/8-0-{}", - "urlMain": "https://ponarama.my1.ru", - "usernameON": "realhacking", - "bad_site": "" - }, - "Forum_poodle": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.poodleforum.com/members/?username={}", - "urlMain": "https://www.poodleforum.com/", - "usernameON": "cowpony", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_popasnayalife": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://popasnayalife.at.ua/index/8-0-{}", - "urlMain": "https://popasnayalife.at.ua", - "usernameON": "AlisaBerne", - "bad_site": "" - }, - "Forum_popgun": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://popgun.org/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://popgun.ru", - "usernameON": "igor42", - "comments": "bad", - "bad_site": "" - }, - "Forum_popjustice": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://forum.popjustice.com/members/?username={}", - "urlMain": "https://forum.popjustice.com", - "usernameON": "dumper", - "bad_site": "" - }, - "Forum_porcheAU": { - "country": "🇦🇺", - "country_klas": "AU", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://porscheforum.com.au/search/?q={}&quick=1&type=core_members", - "urlMain": "https://porscheforum.com", - "usernameON": "tomo", - "bad_site": "" - }, - "Forum_porka": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://porki.ucoz.ru/index/8-0-{}", - "urlMain": "https://porki.ucoz.ru", - "usernameON": "porki", - "bad_site": "" - }, - "Forum_pornworld": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://pornworld.to/members/?username={}", - "urlMain": "https://pornworld.to", - "usernameON": "popeluka", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_portal-anime": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://portal-anime.ru/index/8-0-{}", - "urlMain": "http://portal-anime.ru", - "usernameON": "SASUKE1744", - "bad_site": "" - }, - "Forum_portirkutsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "http://portirkutsk.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://portirkutsk.ru", - "usernameON": "Tema28", - "bad_site": "" - }, - "Forum_posol_BLOCK_RU_IP": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://posol.ucoz.ru/index/8-0-{}", - "urlMain": "http://posol.ucoz.ru", - "usernameON": "umtor", - "comments": "bad", - "bad_site": "" - }, - "Forum_postwrestling": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.postwrestling.com/u/{}/summary", - "urlMain": "https://forum.postwrestling.com", - "usernameON": "nealflanagan", - "bad_site": "" - }, - "Forum_poteryashka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "This website is stealing content!", - "errorMsg3": "закрыт", - "errorTyp��": "message", - "url": "http://poteryashka.spb.ru/index/8-0-{}", - "urlMain": "http://poteryashka.spb.ru", - "usernameON": "Chief", - "bad_site": 1, - "comments": "Oplata", - "exclusion": "\\W" - }, - "Forum_potystorony": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://potystorony.ucoz.ru/index/8-0-{}", - "urlMain": "https://potystorony.ucoz.ru", - "usernameON": "zaconnic", - "bad_site": "" - }, - "Forum_pouet": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "registered
403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pravmama.ucoz.ru/index/8-0-{}", - "urlMain": "https://pravmama.ucoz.ru", - "usernameON": "toolni", - "bad_site": "" - }, - "Forum_pravo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://pravo.r1v.ru/index/8-0-{}", - "urlMain": "http://pravo.r1v.ru", - "usernameON": "Arkchloush", - "comments": "bad", - "bad_site": 1 - }, - "Forum_pravoslavie": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://pravoslavie-forum.org/members/?username={}", - "urlMain": "https://pravoslavie-forum.org", - "usernameON": "serg", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pravoslavie-12": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pravoslavie-12.ucoz.ru/index/8-0-{}", - "urlMain": "https://pravoslavie-12.ucoz.ru", - "usernameON": "Admins", - "bad_site": "" - }, - "Forum_pravoslavie-alt": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.pravoslavie-alt.ru/index/8-0-{}", - "urlMain": "https://www.pravoslavie-alt.ru", - "usernameON": "Loginova19", - "comments": "Oplata", - "bad_site": 1 - }, - "Forum_pravoslavielove": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pravoslavielove.ucoz.ru/index/8-0-{}", - "urlMain": "https://pravoslavielove.ucoz.ru", - "usernameON": "Oles", - "bad_site": "" - }, - "Forum_predatel": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://predatel.ucoz.ua/index/8-0-{}", - "urlMain": "https://predatel.ucoz.ua", - "usernameON": "Старлей", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_pregnancy": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Извините, такого пользователя не существует", - "errorMsg2": "robots\" content=\"noindex, nofollow", - "errorMsg3": "Critical Error", - "errorTyp��": "message", - "url": "https://pregnancy.org.ua/forum/profile.php?mode=viewprofile&u={}", - "urlMain": "https://pregnancy.org.ua", - "usernameON": "Nadinka", - "bad_site": "" - }, - "Forum_prepas": { - "country": "🇫🇷", - "country_klas": "FR", - "errorMsg": "Aucun sujet ou message ne correspond à vos critères de recherche.", - "errorMsg2": "Please wait", - "errorMsg3": "Information", - "errorTyp��": "message", - "url": "https://forum.prepas.org/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.prepas.org", - "usernameON": "red", - "bad_site": "" - }, - "Forum_prepperforums": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.prepperforums.net/members/?username={}", - "urlMain": "https://www.prepperforums.net", - "usernameON": "paraquack", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pressball": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация\n ", - "errorTyp��": "message", - "url": "https://forum.pressball.by/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.pressball.by", - "usernameON": "zalgiris", - "bad_site": 1 - }, - "Forum_pressurewashingresource": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://pressurewashingresource.com/community/u/{}/summary", - "urlMain": "https://pressurewashingresource.com/", - "usernameON": "letterguy", - "bad_site": "" - }, - "Forum_prestashop": { - "country": "🇪🇺", - "country_klas": "EU", - "errorMsg": "0 result", - "errorMsg2": "Please wait", - "errorTyp��": "message", - "url": "https://www.prestashop.com/forums/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.prestashop.com", - "usernameON": "cmpm", - "bad_site": "" - }, - "Forum_prihoz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://forum.prihoz.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.prihoz.ru", - "usernameON": "grawicapa", - "bad_site": "" - }, - "Forum_primat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://primat.org/index/8-0-{}", - "urlMain": "http://primat.org", - "usernameON": "alyonaaaaaa", - "bad_site": "" - }, - "Forum_primetimer": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "There were no results", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.primetimer.com/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://forums.primetimer.com", - "usernameON": "athena", - "comments": "ZAK_user", - "bad_site": "" - }, - "Forum_primhunt": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://primhunt.ru/members/?username={}", - "urlMain": "https://primhunt.ru", - "usernameON": "gap", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_primkoniponi": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>", - "errorMsg2": "hidden\" name=\"quicksearch", - "errorTyp��": "message", - "url": "http://www.priorovod.ru/blog.php?username={}", - "urlMain": "http://www.priorovod.ru", - "usernameON": "topcar77", - "bad_site": "" - }, - "Forum_priroda77": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.privateinvestor2000.com/index/8-0-{}", - "urlMain": "http://www.privateinvestor2000.com", - "usernameON": "olga77kol", - "bad_site": "" - }, - "Forum_prizrak": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "ничего не найдено", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://prizrak.ws/search.php?action=search&keywords=&author={}&forum=&search_in=0&sort_by=0&sort_dir=DESC&show_as=posts&search=%CE%F2%EF%F0%E0%E2%E8%F2%FC", - "urlMain": "https://prizrak.ws", - "usernameON": "Jockers", - "bad_site": "" - }, - "Forum_prizyvnikmoy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://prizyvnikmoy.ru/index/8-0-{}", - "urlMain": "https://prizyvnikmoy.ru", - "usernameON": "t1984n2003", - "bad_site": "" - }, - "Forum_pro-cats": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "url": "http://pro-cats.ru/index/8-0-{}", - "urlMain": "http://pro-cats.ru", - "usernameON": "parrots", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_pro-edu": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pro-edu.ucoz.ru/index/8-0-{}", - "urlMain": "https://pro-edu.ucoz.ru", - "usernameON": "ViMo", - "bad_site": "" - }, - "Forum_pro-kleim": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://pro-kleim.ucoz.ru/index/8-0-{}", - "urlMain": "http://pro-kleim.ucoz.ru/", - "usernameON": "4047916", - "bad_site": "" - }, - "Forum_pro-zarabotok": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://pro-zarabotok.su/index/8-0-{}", - "urlMain": "http://pro-zarabotok.su", - "usernameON": "grusakpavel", - "comments": "bad", - "bad_site": 1 - }, - "Forum_pro100warezz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://pro100warezz.ucoz.ru/index/8-0-{}", - "urlMain": "https://pro100warezz.ucoz.ru", - "usernameON": "jasurbekvideo1987", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_probiv": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://probiv.cc/members/?username={}", - "urlMain": "https://probiv.cc", - "usernameON": "Valerun", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_prodigy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://prodigy.moy.su/index/8-0-{}", - "urlMain": "https://prodigy.moy.su", - "usernameON": "Jap", - "bad_site": "" - }, - "Forum_prodjex": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forums.prodjex.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.prodjex.com", - "usernameON": "shriyanshi", - "bad_site": "" - }, - "Forum_proekt-gaz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://proekt-gaz.ru/index/8-0-{}", - "urlMain": "http://proekt-gaz.ru", - "usernameON": "gaspar", - "bad_site": "" - }, - "Forum_proekt-ts-ow-wk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://proekt-ts-ow-wk.ucoz.ru/index/8-0-{}", - "urlMain": "https://proekt-ts-ow-wk.ucoz.ru", - "usernameON": "demi", - "bad_site": "" - }, - "Forum_prof": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://prof.forum24.ru/?32-{}", - "urlMain": "https://prof.forum24.ru", - "usernameON": "lahamar", - "bad_site": "" - }, - "Forum_prof-foto-video": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://prof-foto-video.ucoz.ru/index/8-0-{}", - "urlMain": "https://prof-foto-video.ucoz.ru", - "usernameON": "Montager", - "bad_site": "" - }, - "Forum_prof-rem-zona": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://prof-rem-zona.at.ua/index/8-0-{}", - "urlMain": "https://prof-rem-zona.at.ua", - "usernameON": "radopitopit0002", - "bad_site": "" - }, - "Forum_professionalmuscle": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.professionalmuscle.com/forums/index.php?members/&username={}", - "urlMain": "https://www.professionalmuscle.com", - "usernameON": "lk3", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_profile_astro": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://profile.astro-seek.com/{}", - "urlMain": "https://profile.astro-seek.com", - "usernameON": "sduraybito", - "bad_site": "" - }, - "Forum_profootball": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.profootballforums.com/members/?username={}", - "urlMain": "https://www.profootballforums.com", - "usernameON": "rowdy", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_progagarin": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://progagarin.ru/index/8-0-{}", - "urlMain": "http://progagarin.ru", - "usernameON": "Pol", - "bad_site": "" - }, - "Forum_prohashing": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.prohashing.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forums.prohashing.com", - "usernameON": "lewishamilton", - "bad_site": "" - }, - "Forum_project-ss": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://project-ss.ru/index/8-0-{}", - "urlMain": "http://project-ss.ru", - "usernameON": "oleg1980nik", - "comments": "bad", - "bad_site": 1 - }, - "Forum_projectpokemon": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Found 0 results", - "errorMsg2": "There were no results for your search.", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://projectpokemon.org/home/search/?q={}&quick=1&type=core_members", - "urlMain": "https://projectpokemon.org", - "usernameON": "insanenutter", - "bad_site": "" - }, - "Forum_prokireevsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://prokireevsk.ru/index/8-0-{}", - "urlMain": "http://prokireevsk.ru", - "usernameON": "WILDKATbjr", - "bad_site": "" - }, - "Forum_pron": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://pron.my1.ru/index/8-0-{}", - "urlMain": "http://pron.my1.ru/", - "usernameON": "Belryelug", - "bad_site": "" - }, - "Forum_propisnoy": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://prostoljud.my1.ru/index/8-0-{}", - "urlMain": "https://prostoljud.my1.ru", - "usernameON": "biblicalstudiesru", - "bad_site": "" - }, - "Forum_proxmox": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.proxmox.com/members/?username={}", - "urlMain": "https://forum.proxmox.com", - "usernameON": "emunt6", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pskovchess": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://forum.pskovchess.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.pskovchess.ru", - "usernameON": "shakh", - "bad_site": "" - }, - "Forum_psp-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://psp-club.ucoz.net/index/8-0-{}", - "urlMain": "https://psp-club.ucoz.net", - "usernameON": "swp", - "bad_site": "" - }, - "Forum_psp1": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://psp1.do.am/index/8-0-{}", - "urlMain": "https://psp1.do.am", - "usernameON": "serg2037", - "bad_site": "" - }, - "Forum_psx-core": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://psx-core.ru/index/8-0-{}", - "urlMain": "https://psx-core.ru", - "usernameON": "pvc1", - "bad_site": "" - }, - "Forum_psxworld": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://psxworld.ru/index/8-0-{}", - "urlMain": "http://psxworld.ru", - "usernameON": "majerock", - "bad_site": "" - }, - "Forum_psy-dv_org": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://psy-dv.org/index/8-0-{}", - "urlMain": "https://psy-dv.org", - "usernameON": "Michael", - "bad_site": "" - }, - "Forum_psych": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.psychforums.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.psychforums.com", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_psyche": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "возникла проблема", - "errorMsg3": "Пожалуйста, подождите", - "errorTyp��": "message", - "url": "https://psyche.guru/forum/search/?q={}&quick=1&type=core_members", - "urlMain": "https://psyche.guru", - "usernameON": "red", - "bad_site": "" - }, - "Forum_psychobike": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.psychobike.com/members/?username={}", - "urlMain": "https://www.psychobike.com", - "usernameON": "streetfighterz", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_psystan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.psystan.ru/index/8-0-{}", - "urlMain": "http://www.psystan.ru", - "usernameON": "Olsestar", - "bad_site": "" - }, - "Forum_pt_at": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pt.at.ua/index/8-0-{}", - "urlMain": "https://pt.at.ua/", - "usernameON": "novator197726", - "bad_site": "" - }, - "Forum_punkgazetka": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>http://forum.quake2.com.ru :: ", - "errorTyp��": "message", - "url": "https://forum.quake2.com.ru/profile.php?mode=viewprofile&u={}", - "urlMain": "https://forum.quake2.com.ru/", - "usernameON": "Khidalov", - "bad_site": "" - }, - "Forum_quakeworld": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W[а-яА-Я]", - "errorMsg": "not return any result. ", - "errorMsg2": "div class=\"table\" style=\"margin-bottom", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.quakeworld.nu/profiles/?u={}", - "urlMain": "https://www.quakeworld.nu", - "usernameON": "renzo", - "bad_site": "" - }, - "Forum_questionablequesting": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://forum.questionablequesting.com/members/?username={}", - "urlMain": "https://forum.questionablequesting.com", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_quik": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://forum.quik.ru/user/{}/", - "urlMain": "https://forum.quik.ru", - "usernameON": "swerg", - "bad_site": "" - }, - "Forum_r1": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.r1-forum.com/members/?username={}", - "urlMain": "https://www.r1-forum.com", - "usernameON": "rabbit671", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_r3": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.r3-forums.com/members/?username={}", - "urlMain": "https://www.r3-forums.com", - "usernameON": "renboy", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_r4n": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация", - "errorMsg2": "сообщений не найдено", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://r4n.su/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "http://r4n.su", - "usernameON": "43Radio43", - "bad_site": "" - }, - "Forum_r4u": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://r4u.ucoz.net/index/8-0-{}", - "urlMain": "https://r4u.ucoz.net", - "usernameON": "adqeep", - "bad_site": "" - }, - "Forum_r6": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.r6-forum.com/members/?username={}", - "urlMain": "https://www.r6-forum.com", - "usernameON": "tylerjones997", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_r8talk": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.r8talk.com/members/?username={}", - "urlMain": "https://www.r8talk.com", - "usernameON": "stevekcropper", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ra1afe": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ra1afe.ucoz.ru/index/8-0-{}", - "urlMain": "https://ra1afe.ucoz.ru", - "usernameON": "Admin", - "bad_site": "" - }, - "Forum_ra4a": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://ra4a.ru/index/8-0-{}", - "urlMain": "http://ra4a.ru", - "usernameON": "Admin", - "bad_site": "" - }, - "Forum_rabbitdogs": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.rabbitdogs.net/members/?username={}", - "urlMain": "https://www.rabbitdogs.net", - "usernameON": "bigk", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_racefans": { - "country": "🇬🇧", - "country_klas": "GB", - "exclusion": "\\W[а-яА-Я]", - "errorMsg": "You've crashed", - "errorMsg2": "One moment", - "errorTyp��": "message", - "url": "https://www.racefans.net/members/{}/", - "urlMain": "https://www.racefans.net", - "usernameON": "douglaswebster", - "bad_site": "" - }, - "Forum_racer": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://racer.do.am/index/8-0-{}", - "urlMain": "https://racer.do.am", - "usernameON": "Jessika", - "bad_site": "" - }, - "Forum_racketboy": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.racketboy.com/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.racketboy.com", - "usernameON": "Limewater", - "bad_site": "" - }, - "Forum_radio1": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.radiodom.org/index/8-0-{}", - "urlMain": "http://www.radiodom.org", - "usernameON": "Andrew", - "bad_site": "" - }, - "Forum_radiotehnik72": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://radiotehnik72.ucoz.ru/index/8-0-{}", - "urlMain": "https://radiotehnik72.ucoz.ru", - "usernameON": "akhmalik72", - "bad_site": "" - }, - "Forum_rainbowhappy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://rainbowhappy.ucoz.ru/index/8-0-{}", - "urlMain": "https://rainbowhappy.ucoz.ru", - "usernameON": "FrankMate", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_rainmeter": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.rainmeter.net/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forum.rainmeter.net", - "usernameON": "Jeff", - "bad_site": "" - }, - "Forum_rakesh-jhunjhunwala": { - "country": "🇮🇳", - "country_klas": "IN", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://rakesh-jhunjhunwala.in/forum/members/?username={}", - "urlMain": "https://rakesh-jhunjhunwala.in", - "usernameON": "arjun", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_raks": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://raks.com.ua/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sk=t&sd=d&sr=posts&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://raks.com.ua", - "usernameON": "irina", - "bad_site": "" - }, - "Forum_rakursy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rakursy.ucoz.ru/index/8-0-{}", - "urlMain": "https://rakursy.ucoz.ru", - "usernameON": "Schoroch", - "bad_site": "" - }, - "Forum_rakwireless": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.rakwireless.com/u/{}/summary", - "urlMain": "https://forum.rakwireless.com", - "usernameON": "hobo", - "bad_site": "" - }, - "Forum_ram1500diesel": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.ram1500diesel.com/members/?username={}", - "urlMain": "https://www.ram1500diesel.com", - "usernameON": "kazimodo", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ramenskoe1": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ramenskoe1.ucoz.ru/index/8-0-{}", - "urlMain": "https://ramenskoe1.ucoz.ru", - "usernameON": "gorodisskyru", - "bad_site": "" - }, - "Forum_ranobes": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Just a moment", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.ranobes.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.ranobes.com", - "comments": "cf", - "usernameON": "Jaeri", - "bad_site": "" - }, - "Forum_rarib": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "DDOS-GUARD</title", - "errorMsg2": "Информация", - "errorMsg3": "технические работы", - "errorTyp��": "message", - "url": "https://forum.rarib.ru/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Поиск", - "urlMain": "https://forum.rarib.ag", - "usernameON": "kokky", - "bad_site": "" - }, - "Forum_rasmircoins": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rasmircoins.ucoz.ru/index/8-0-{}", - "urlMain": "https://rasmircoins.ucoz.ru/", - "usernameON": "Faghouri", - "bad_site": "" - }, - "Forum_raspberrypi": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Just a moment", - "errorTyp��": "message", - "url": "https://forums.raspberrypi.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forums.raspberrypi.com", - "usernameON": "adam", - "comments": "cf", - "ignore_status_code": true, - "bad_site": "" - }, - "Forum_ratsun": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://ratsun.net/search/?q={}&quick=1&type=core_members", - "urlMain": "https://ratsun.net", - "usernameON": "datzenmike", - "bad_site": "" - }, - "Forum_ravnovesie": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ravnovesie.ucoz.net/index/8-0-{}", - "urlMain": "https://ravnovesie.ucoz.net", - "usernameON": "Светлана", - "bad_site": "" - }, - "Forum_ray": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://discuss.ray.io/u/{}/summary", - "urlMain": "https://discuss.ray.io", - "usernameON": "Lacruche", - "bad_site": "" - }, - "Forum_rayven": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rayven.at.ua/index/8-0-{}", - "urlMain": "https://rayven.at.ua/", - "usernameON": "rayven", - "bad_site": "" - }, - "Forum_raznoe-vse": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://raznoe-vse.ucoz.ru/index/8-0-{}", - "urlMain": "https://raznoe-vse.ucoz.ru", - "usernameON": "egorsmirnowv", - "bad_site": "" - }, - "Forum_razrab": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://razrab.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://razrab.ru", - "usernameON": "ibev", - "bad_site": "" - }, - "Forum_razvilka": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rbk-portal.3dn.ru/index/8-0-{}", - "urlMain": "https://rbk-portal.3dn.ru", - "usernameON": "BeLoNe", - "bad_site": "" - }, - "Forum_rclone": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.rclone.org/u/{}", - "urlMain": "https://forum.rclone.org", - "usernameON": "Alexander_Andriishin", - "bad_site": "" - }, - "Forum_rdr2": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.rdr2.org/forums/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.rdr2.org", - "usernameON": "Parzival", - "bad_site": "" - }, - "Forum_rdw": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://rdw.ucoz.ru/index/8-0-{}", - "urlMain": "https://rdw.ucoz.ru", - "usernameON": "jabbarhuusaincs", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_real-sp": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://real-sp.ucoz.com/index/8-0-{}", - "urlMain": "https://real-sp.ucoz.com", - "usernameON": "Yuriysap", - "bad_site": "" - }, - "Forum_realistzoosafety": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>", - "errorMsg3": "banned", - "errorTyp��": "message", - "url": "https://forum.realsurf.com/forums/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forum.realsurf.com", - "usernameON": "admin", - "comments": "RUblock", - "bad_site": "" - }, - "Forum_rebkell": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Sorry,", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Critical Error", - "errorTyp��": "message", - "url": "https://boards.rebkell.net/profile.php?mode=viewprofile&u={}", - "urlMain": "https://boards.rebkell.net", - "usernameON": "rebkell", - "bad_site": "" - }, - "Forum_rebornbuddy": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "[а-яА-Я]", - "url": "https://rebornbuddy.com/xf/members/?username={}", - "urlMain": "https://rebornbuddy.com/", - "usernameON": "tony", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_recoveryRU": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://region13.ucoz.ru/index/8-0-{}", - "urlMain": "https://region13.ucoz.ru", - "usernameON": "VVS15081", - "bad_site": "" - }, - "Forum_reiki-healing": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://reiki-healing-l.org/index/8-0-{}", - "urlMain": "http://reiki-healing-l.org", - "usernameON": "YaIrina1993", - "bad_site": "" - }, - "Forum_reklama-kiev": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://reklama-kiev.at.ua/index/8-0-{}", - "urlMain": "https://reklama-kiev.at.ua", - "usernameON": "dsgvolia", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_relationlibre": { - "country": "🇫🇷", - "country_klas": "FR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://relationlibre.com/participant/{}/", - "urlMain": "https://relationlibre.com", - "usernameON": "laeti", - "bad_site": "" - }, - "Forum_relax-kei": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://relax-kei.ucoz.ru/index/8-0-{}", - "urlMain": "https://relax-kei.ucoz.ru", - "usernameON": "ztaletnted", - "bad_site": "" - }, - "Forum_religion": { - "country": "🇫🇷", - "country_klas": "FR", - "errorMsg": "Aucun membre trouvé pour ce critère de recherche", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum-religion.org/memberlist.php?username={}", - "urlMain": "https://forum-religion.org", - "usernameON": "Georges86", - "bad_site": "" - }, - "Forum_religion_s": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://religion.ucoz.ru/index/8-0-{}", - "urlMain": "https://religion.ucoz.ru", - "usernameON": "ArthurHip", - "bad_site": "" - }, - "Forum_rem-tv": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rem-tv.at.ua/index/8-0-{}", - "urlMain": "https://rem-tv.at.ua", - "usernameON": "fanttom", - "bad_site": "" - }, - "Forum_remont-lipetsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://remont-lipetsk.3dn.ru/index/8-0-{}", - "urlMain": "https://remont-lipetsk.3dn.ru", - "usernameON": "mattmabwerce", - "bad_site": "" - }, - "Forum_remsanteh": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://remsanteh.borda.ru/?32-{}", - "urlMain": "https://remsanteh.borda.ru", - "usernameON": "aleyusha", - "bad_site": "" - }, - "Forum_remzona-ekb": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://remzona-ekb.ucoz.ru/index/8-0-{}", - "urlMain": "https://remzona-ekb.ucoz.ru", - "usernameON": "REMZONA", - "bad_site": "" - }, - "Forum_render_otoy": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Information", - "errorMsg2": "Sorry, ", - "errorMsg3": "banned from this board", - "errorTyp��": "message", - "url": "https://render.otoy.com/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://render.otoy.com/", - "usernameON": "grazieromi", - "bad_site": "" - }, - "Forum_repolitics": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://repolitics.com/forums/search/?q={}&quick=1&type=core_members", - "urlMain": "https://repolitics.com", - "usernameON": "Zeitgeist", - "bad_site": "" - }, - "Forum_reptile": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не выбран", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.reptile.ru/forum/member.php?action=viewpro&member={}", - "urlMain": "https://www.reptile.ru", - "usernameON": "Zoofond", - "bad_site": "" - }, - "Forum_reptileforums": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.reptileforums.co.uk/members/?username={}", - "urlMain": "https://www.reptileforums.co.uk", - "usernameON": "malc", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_res-publica": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://res-publica.ucoz.org/index/8-0-{}", - "urlMain": "https://res-publica.ucoz.org", - "usernameON": "PUBLIUS", - "bad_site": "" - }, - "Forum_reseau-js": { - "country": "🇫🇷", - "country_klas": "FR", - "errorMsg": "0 résultat", - "errorMsg2": "Veuillez patienter", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.reseau-js.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.reseau-js.com", - "usernameON": "loup", - "bad_site": "" - }, - "Forum_reseau-naturiste": { - "country": "🇫🇷", - "country_klas": "FR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.reseau-naturiste.org/user/{}", - "urlMain": "https://www.reseau-naturiste.org/", - "usernameON": "Sephora", - "bad_site": "" - }, - "Forum_respecta": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.respecta.net/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.respecta.net/", - "usernameON": "NBN93", - "bad_site": "" - }, - "Forum_resto_clan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://resto.clan.su/index/8-0-{}", - "urlMain": "https://resto.clan.su", - "usernameON": "Riminy", - "bad_site": "" - }, - "Forum_retrievertraining": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.retrievertraining.net/members/?username={}", - "urlMain": "https://www.retrievertraining.net", - "usernameON": "johndbarrow", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_rewar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rewar.me/index/8-0-{}", - "urlMain": "https://rewar.me/", - "usernameON": "mashery", - "bad_site": "" - }, - "Forum_rexmill": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rexmill.ucoz.ru/index/8-0-{}", - "urlMain": "https://rexmill.ucoz.ru/", - "usernameON": "mun686", - "bad_site": "" - }, - "Forum_rezzoclub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.rezzoclub.ru/index/8-0-{}", - "urlMain": "http://www.rezzoclub.ru", - "usernameON": "Rapidrezzo", - "bad_site": "" - }, - "Forum_rg_myqip": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://rg.myqip.ru/?32-{}", - "urlMain": "https://rg.myqip.ru", - "usernameON": "marii", - "bad_site": "" - }, - "Forum_rhytmic": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://rhytmic.borda.ru/?32-{}", - "urlMain": "https://rhytmic.borda.ru", - "usernameON": "mammy", - "bad_site": "" - }, - "Forum_ribalka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://ribalka.ucoz.org/index/8-0-{}", - "urlMain": "http://ribalka.ucoz.org", - "usernameON": "Андрей0508", - "bad_site": "" - }, - "Forum_richelieu": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://rieltori.narod2.ru/index/8-0-{}", - "urlMain": "http://rieltori.narod2.ru", - "usernameON": "natayovzhik", - "bad_site": "" - }, - "Forum_riga-luna": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://riga-luna.ucoz.ru/index/8-0-{}", - "urlMain": "https://riga-luna.ucoz.ru", - "usernameON": "Talahassy", - "bad_site": "" - }, - "Forum_rima-pendzhieva": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rima-pendzhieva.ucoz.ru/index/8-0-{}", - "urlMain": "https://rima-pendzhieva.ucoz.ru", - "usernameON": "morozov2112", - "bad_site": "" - }, - "Forum_rio4": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rio4.ucoz.ru/index/8-0-{}", - "urlMain": "https://rio4.ucoz.ru/", - "usernameON": "Fakskaxip", - "bad_site": "" - }, - "Forum_rkls76": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rkls76.ucoz.ru/index/8-0-{}", - "urlMain": "https://rkls76.ucoz.ru", - "usernameON": "JosephBon", - "bad_site": "" - }, - "Forum_rks": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Извините, такого пользователя не существует ", - "errorMsg2": " :: ", - "errorTyp��": "message", - "url": "https://forum.rks.kr.ua/profile.php?mode=viewprofile&u={}", - "urlMain": "https://forum.rks.kr.ua", - "usernameON": "Mistika24", - "bad_site": "" - }, - "Forum_rllmukforum": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "0 results", - "errorMsg2": "Sorry", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.rllmukforum.com/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://www.rllmukforum.com", - "usernameON": "yakumo", - "bad_site": "" - }, - "Forum_rmmedia": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Указанный пользователь не найден. Пожалуйста, введите другое имя.", - "errorMsg2": "<title>Полезные пользователи | Rmmedia.ru", - "errorMsg3": "Пожалуйста, подождите", - "errorTyp��": "message", - "url": "https://rmmedia.ru/members/?username={}", - "urlMain": "https://rmmedia.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_rmrp": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.rmrp.ru/members/?username={}", - "urlMain": "https://forum.rmrp.ru", - "usernameON": "alqoile", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_roadbikereview": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.roadbikereview.com/members/?username={}", - "urlMain": "https://www.roadbikereview.com", - "usernameON": "finx", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_roadcontrol_BLOCK_RU_IP": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Подходящих тем или сообщений не найдено", - "errorMsg2": "Информация", - "errorMsg3": "page_pageNotFound", - "errorTyp��": "message", - "url": "https://roadcontrol.org/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://roadcontrol.org", - "usernameON": "%D0%90ndrew", - "bad_site": "" - }, - "Forum_rock-metalwave": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rock-metal-wave.ru/index/8-0-{}", - "urlMain": "https://rock-metal-wave.ru", - "usernameON": "0919swdsnb", - "bad_site": "" - }, - "Forum_rodgers": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "профиль забанен или удален", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://rodgersforum.borda.ru/?32-{}", - "urlMain": "https://rodgersforum.borda.ru", - "usernameON": "hata1979", - "bad_site": "" - }, - "Forum_rodniki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://rodniki.do.am/index/8-0-{}", - "urlMain": "http://rodniki.do.am", - "usernameON": "N278", - "bad_site": "" - }, - "Forum_rodnovira": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rodnovira.ucoz.ru/index/8-0-{}", - "urlMain": "https://rodnovira.ucoz.ru", - "usernameON": "vioooila", - "bad_site": "" - }, - "Forum_rodoslav": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>", - "errorTyp��": "message", - "url": "http://www.rohitab.com/discuss/index.php?app=core&module=search&do=search&andor_type=&search_app_filters[members][searchInKey]=members&search_app_filters[members][members][sortKey]=date&search_term={}&search_app=members&search_app_filters[members][searchInKey]=members&search_app_filters[members][members][sortKey]=date&search_app_filters[members][members][sortDir]=0", - "urlMain": "http://www.rohitab.com", - "usernameON": "adam", - "comments": "bad", - "bad_site": "" - }, - "Forum_rokslide": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://rokslide.com/forums/members/?username={}", - "urlMain": "https://rokslide.com", - "usernameON": "ukisan", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_rollerclub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorMsg3": "Срок регистрации домена истек", - "errorTyp��": "message", - "url": "http://forum.rollerclub.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.rollerclub.ru", - "usernameON": "snb", - "bad_site": "" - }, - "Forum_Rollitup": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://www.rollitup.org/members/?username={}", - "urlMain": "https://www.rollitup.org", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_romhacking": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://romhacking.ru/index/8-0-{}", - "urlMain": "https://romhacking.ru", - "usernameON": "debbietk1", - "bad_site": "" - }, - "Forum_romkaq": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://romkaq.ucoz.ru/index/8-0-{}", - "urlMain": "http://romkaq.ucoz.ru", - "usernameON": "luntik333vlz", - "bad_site": "" - }, - "Forum_root_cern": { - "country": "🇪🇺", - "country_klas": "EU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://root-forum.cern.ch/u/{}/summary", - "urlMain": "https://root-forum.cern.ch", - "usernameON": "bellenot", - "bad_site": "" - }, - "Forum_rosalinux": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация", - "errorMsg2": "Подходящих тем или сообщений не найдено.", - "errorMsg3": "Вы не можете произвести поиск сразу после предыдущего", - "errorTyp��": "message", - "url": "https://forum.rosalinux.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.rosalinux.ru", - "comments": "cf", - "usernameON": "Kelpee", - "bad_site": "" - }, - "Forum_rosen": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.rosen.com/u/{}/summary", - "urlMain": "https://forum.rosen.com", - "usernameON": "rdu2018", - "bad_site": "" - }, - "Forum_roses": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://roses.ucoz.ru/index/8-0-{}", - "urlMain": "https://roses.ucoz.ru", - "usernameON": "Roses", - "bad_site": "" - }, - "Forum_rostov": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://forum-rostov.ucoz.org/index/8-0-{}", - "urlMain": "https://forum-rostov.ucoz.org", - "usernameON": "Надя", - "bad_site": "" - }, - "Forum_rotarusofi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rotarusofi.ucoz.ru/index/8-0-{}", - "urlMain": "https://rotarusofi.ucoz.ru", - "usernameON": "Zvezdochka", - "bad_site": "" - }, - "Forum_rottweiler": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "http://rottweiler.ucoz.ru/index/8-0-{}", - "urlMain": "http://rottweiler.ucoz.ru/", - "usernameON": "Лекс2003", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_router": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.routerforums.com/members/?username={}", - "urlMain": "https://www.routerforums.com", - "usernameON": "difalkner", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_royalcaribbeanblog": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.royalcaribbeanblog.com/boards/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://www.royalcaribbeanblog.com/", - "usernameON": "mamashark", - "bad_site": "" - }, - "Forum_rpg_net": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.rpg.net/members/?username={}", - "urlMain": "https://forum.rpg.net", - "usernameON": "muddypaw", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_rpgcodex": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://rpgcodex.net/forums/members/?username={}", - "urlMain": "https://rpgcodex.net", - "usernameON": "jed", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_rpgnuke": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.rpgnuke.ru/search/?q={}&type=core_members", - "urlMain": "https://forum.rpgnuke.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_Rt20_getbb": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://www.rt20.getbb.ru/search.php?keywords=&terms=all&author=Tekumze111", - "urlMain": "http://www.rt20.getbb.ru", - "usernameON": "vevk", - "comments": "RUblock", - "bad_site": "" - }, - "Forum_ru-xbox": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ru-xbox.ru/index/8-0-{}", - "urlMain": "https://ru-xbox.ru", - "usernameON": "D1mkanx", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_ru_minecraft": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://ru-minecraft.ru/user/{}", - "urlMain": "https://ru-minecraft", - "usernameON": "dedepete", - "bad_site": "" - }, - "Forum_rudtp": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.rudtp.ru/members/?username={}", - "urlMain": "https://forum.rudtp.ru/", - "usernameON": "irma190", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_rugby": { - "country": "🇮🇹", - "country_klas": "IT", - "errorMsg": "Nessun argomento o messaggio con", - "errorMsg2": "Please wait", - "errorTyp��": "message", - "url": "https://forum.rugby.it/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.rugby.it", - "usernameON": "admin", - "comments": "super", - "bad_site": 1 - }, - "Forum_rumyantsevo": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rurip.ucoz.ru/index/8-0-{}", - "urlMain": "https://rurip.ucoz.ru", - "usernameON": "lomaempochtu", - "bad_site": "" - }, - "Forum_rus-sv-relig": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rus-sv.ucoz.ru/index/8-0-{}", - "urlMain": "https://rus-sv.ucoz.ru/", - "usernameON": "%D0%9E%D0%BB%D0%B0", - "bad_site": "" - }, - "Forum_rus_pravda": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://русскаяправда.su/index/8-0-{}", - "urlMain": "http://русскаяправда.su", - "usernameON": "PashaAlexpit", - "bad_site": "" - }, - "Forum_rusartknife": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rushistory.3dn.ru/index/8-0-{}", - "urlMain": "https://rushistory.3dn.ru", - "usernameON": "uesterr", - "bad_site": "" - }, - "Forum_rusich_ua": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rusich.at.ua/index/8-0-{}", - "urlMain": "https://rusich.at.ua", - "usernameON": "gh1990", - "bad_site": "" - }, - "Forum_ruskeys": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://ruskeys.forum24.ru/?32-{}", - "urlMain": "https://ruskeys.forum24.ru/", - "usernameON": "aboc4", - "bad_site": "" - }, - "Forum_ruspatriot": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ruspatriot.ucoz.ru/index/8-0-{}", - "urlMain": "https://ruspatriot.ucoz.ru/", - "usernameON": "emailomaempochty", - "bad_site": "" - }, - "Forum_russiainwar": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://russian-france.ru/index/8-0-{}", - "urlMain": "http://russian-france.ru", - "usernameON": "Airin", - "bad_site": "" - }, - "Forum_russianskyeterriers": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://russims.ru/index/8-0-{}", - "urlMain": "http://russims.ru", - "usernameON": "Nikolette", - "bad_site": "" - }, - "Forum_russkie": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://russkie.ucoz.ru/index/8-0-{}", - "urlMain": "https://russkie.ucoz.ru", - "usernameON": "russkie", - "bad_site": "" - }, - "Forum_rvnetwork": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorTyp��": "message", - "url": "https://www.rvnetwork.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.rvnetwork.com/", - "usernameON": "GeorgiaHybrid", - "bad_site": "" - }, - "Forum_rwg_cc": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://rwg.cc/search/?q={}&quick=1&type=core_members", - "urlMain": "https://rwg.cc", - "usernameON": "Mike", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_rx7fb": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "http://www.rx7fb.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "http://www.rx7fb.com", - "usernameON": "Hellramsden", - "bad_site": "" - }, - "Forum_ryazandog": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "url": "https://rybnoe.net/index/8-0-{}", - "urlMain": "https://rybnoe.net", - "usernameON": "alavatsky", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_rzn": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://forum.rzn.info/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.rzn.info", - "usernameON": "Williamhar", - "bad_site": "" - }, - "Forum_rzngmu": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://rzngmu.ru/index/8-0-{}", - "urlMain": "http://rzngmu.ru/", - "usernameON": "artem300", - "bad_site": "" - }, - "Forum_s-kh": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.s-kh.ru/index/8-0-{}", - "urlMain": "http://www.s-kh.ru", - "usernameON": "fillkenna", - "bad_site": "" - }, - "Forum_s4me": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.s4me.info/members/?username={}", - "urlMain": "https://www.s4me.info", - "usernameON": "adrian", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_s7staff": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://s7staff.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://s7staff.kamrbb.ru", - "usernameON": "yadn", - "bad_site": "" - }, - "Forum_sabnzbd": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forums.sabnzbd.org/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forums.sabnzbd.org", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_saddoboxing": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registere", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.saddoboxing.com/boxingforum/member.php?username={}", - "urlMain": "https://www.saddoboxing.com", - "usernameON": "Beanz", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Forum_safakulevo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://safakulevo.ucoz.ru/index/8-0-{}", - "urlMain": "https://safakulevo.ucoz.ru", - "usernameON": "ninokids", - "bad_site": "" - }, - "Forum_sailboards": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://sailboardsforum.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://sailboardsforum.com", - "usernameON": "Arf", - "bad_site": "" - }, - "Forum_sailingforums": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://sailingforums.com/members/?username={}", - "urlMain": "https://sailingforums.com", - "usernameON": "sweetime", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_sailnet": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.sailnet.com/members/?username={}", - "urlMain": "https://www.sailnet.com", - "usernameON": "colemj", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_saintsrowmods": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.saintsrowmods.com/forum/members/?username={}", - "urlMain": "https://www.saintsrowmods.com", - "usernameON": "elchuy", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_salekhardnews": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://salekhardnews.ucoz.ru/index/8-0-{}", - "urlMain": "https://salekhardnews.ucoz.ru", - "usernameON": "ACID", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_salfetka": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://salfetka.at.ua/index/8-0-{}", - "urlMain": "https://salfetka.at.ua", - "usernameON": "Yarinka", - "bad_site": "" - }, - "Forum_salo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://salo.ucoz.ru/index/8-0-{}", - "urlMain": "https://salo.ucoz.ru", - "usernameON": "Vitalinestik", - "bad_site": "" - }, - "Forum_salon-gala": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://salon-gala.moy.su/index/8-0-{}", - "urlMain": "https://salon-gala.moy.su", - "usernameON": "hairs", - "bad_site": "" - }, - "Forum_salsa": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.salsaforums.com/members/?username={}", - "urlMain": "https://www.salsaforums.com", - "usernameON": "so1001", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_samara-clad": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://samara-clad.ru/index/8-0-{}", - "urlMain": "http://samara-clad.ru", - "usernameON": "Dersu", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_samara-gaming": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://samara-gaming.clan.su/index/8-0-{}", - "urlMain": "https://samara-gaming.clan.su", - "usernameON": "deirdremo3", - "bad_site": "" - }, - "Forum_samarahunter": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "404 Not Found", - "errorTyp��": "message", - "url": "http://samarahunter.ru/forums/member.php?username={}", - "urlMain": "http://samarahunter.ru", - "usernameON": "Lonsdale", - "bad_site": "" - }, - "Forum_samatow": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://samatow.my1.ru/index/8-0-{}", - "urlMain": "https://samatow.my1.ru/", - "usernameON": "plats", - "bad_site": "" - }, - "Forum_samimiyat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://samimiyat.ucoz.net/index/8-0-{}", - "urlMain": "https://samimiyat.ucoz.net", - "usernameON": "MaRJoNa", - "bad_site": "" - }, - "Forum_samovar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.samovar-forum.ru/index/8-0-{}", - "urlMain": "https://www.samovar-forum.ru", - "usernameON": "MrKoteika", - "bad_site": "" - }, - "Forum_samp-rp": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://samp-rp.online/members/?username={}", - "urlMain": "https://samp-rp.online", - "usernameON": "allen_tyanytov", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_samp-sektor": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.samp-sektor-2.ru/index/8-0-{}", - "urlMain": "http://www.samp-sektor-2.ru", - "usernameON": "wellnemo7", - "bad_site": "" - }, - "Forum_samp-top": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://samp-top.at.ua/index/8-0-{}", - "urlMain": "https://samp-top.at.ua", - "usernameON": "Diablo", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_samru": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация отсутствует", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.samru.ru/new/forum/userinfo/user_{}.html", - "urlMain": "https://www.samru.ru", - "usernameON": "Ken", - "bad_site": "" - }, - "Forum_sanatorii": { - "country": "🇧🇾", - "country_klas": "BY", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "<title>Санатории Беларуси Белоруссии • Информация", - "errorMsg3": "SQL ERROR", - "errorTyp��": "message", - "url": "http://forum.sanatorii.by/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.sanatorii.by", - "usernameON": "pavlovich", - "bad_site": "" - }, - "Forum_sannata": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://www.phantom.sannata.org/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.phantom.sannata.org", - "usernameON": "RafGul", - "bad_site": "" - }, - "Forum_santacruz": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.santacruzforums.com/members/?username={}", - "urlMain": "https://www.santacruzforums.com", - "usernameON": "cargonaut", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_santechniki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя", - "errorMsg2": "action=\"./ucp.php?mode=login\">", - "errorTyp��": "message", - "url": "https://santechniki.com/memberlist.php?username={}", - "urlMain": "https://santechniki.com", - "usernameON": "Murza74", - "bad_site": "" - }, - "Forum_santehnik": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://сантехсвар.рф/search.php?keywords=&terms=all&author={}", - "urlMain": "http://сантехсвар.рф", - "usernameON": "SVAR", - "bad_site": "" - }, - "Forum_sape": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "url": "http://forum.sape.ru/member.php?username={}", - "urlMain": "http://forum.sape.ru", - "usernameON": "Nike99", - "comments": "Archive", - "bad_site": 1 - }, - "Forum_saranskchess": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "pr('','','',''", - "errorMsg2": "профиль
", - "errorTyp��": "message", - "url": "https://saranskchess.forum24.ru/?32-{}", - "urlMain": "https://saranskchess.forum24.ru", - "usernameON": "admin", - "bad_site": "" - }, - "Forum_Sat-prof": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Користувач не зареєстрований і не має профілю, який можна переглянути.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sat-prof.com.ua/member.php?username={}", - "urlMain": "https://sat-prof.com.ua", - "usernameON": "kreshnot", - "bad_site": "" - }, - "Forum_satisfacktion": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://satisfacktion.ucoz.ru/index/8-0-{}", - "urlMain": "https://satisfacktion.ucoz.ru", - "usernameON": "satisfacktion", - "bad_site": "" - }, - "Forum_sauna": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.saunaforums.com/forums/users/{}/", - "urlMain": "https://www.saunaforums.com", - "usernameON": "rick", - "bad_site": "" - }, - "Forum_saunabauen": { - "country": "🇩🇪", - "country_klas": "DE", - "errorMsg": "Es wurden keine passenden Ergebnisse gefunden", - "errorMsg2": "Information", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.saunabauen.de/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Suche", - "urlMain": "https://www.saunabauen.de", - "usernameON": "klaus", - "bad_site": "" - }, - "Forum_savasleyka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://savasleyka.ru/index/8-0-{}", - "urlMain": "http://savasleyka.ru", - "usernameON": "catalogs123123", - "bad_site": "" - }, - "Forum_say7": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено", - "errorMsg2": "", - "errorTyp��": "message", - "url": "https://forum.say7.info/search.php?search_author={}", - "urlMain": "https://forum.say7.info", - "usernameON": "Fia-Lka", - "bad_site": "" - }, - "Forum_sayyod": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://sayyod.com/index/8-0-{}", - "urlMain": "http://sayyod.com/", - "usernameON": "mushkulsavdo", - "bad_site": "" - }, - "Forum_sc2mafia": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.sc2mafia.com/forum/member.php/?username={}", - "urlMain": "https://www.sc2mafia.com", - "usernameON": "Gikkle", - "bad_site": "" - }, - "Forum_scalemodeladdict": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.scalemodeladdict.com/members/?username={}", - "urlMain": "https://www.scalemodeladdict.com", - "usernameON": "spruecutter", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_scb": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://scb.ucoz.ru/index/8-0-{}", - "urlMain": "https://scb.ucoz.ru", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_school-1130": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://school-1130.ucoz.ru/index/8-0-{}", - "urlMain": "https://school-1130.ucoz.ru", - "usernameON": "KPECT", - "bad_site": "" - }, - "Forum_school74": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://school74.ucoz.ru/index/8-0-{}", - "urlMain": "https://school74.ucoz.ru", - "usernameON": "Ruike", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_school87": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://school87.clan.su/index/8-0-{}", - "urlMain": "https://school87.clan.su", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_scienceforums": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.scienceforums.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.scienceforums.com", - "usernameON": "rohan232323", - "bad_site": "" - }, - "Forum_scienceforumsnet": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "your search. Try broadening your criteria", - "errorTyp��": "message", - "url": "https://www.scienceforums.net/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.scienceforums.net", - "usernameON": "red", - "bad_site": "" - }, - "Forum_sciforums": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.sciforums.com/members/?username={}", - "urlMain": "https://www.sciforums.com", - "usernameON": "billvon", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_scimarche": { - "country": "🇮🇹", - "country_klas": "IT", - "errorTyp��": "status_code", - "url": "https://www.scimarche.it/membri/{}/", - "urlMain": "https://www.scimarche.it", - "usernameON": "jonathan", - "bad_site": "" - }, - "Forum_sciphysicsforums": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorTyp��": "message", - "url": "http://www.sciphysicsforums.com/spfbb1/search.php?keywords=&terms=all&author={}", - "urlMain": "http://www.sciphysicsforums.com", - "usernameON": "FrediFizzx", - "bad_site": "" - }, - "Forum_scivarin": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://scivarin.ucoz.ru/index/8-0-{}", - "urlMain": "https://scivarin.ucoz.ru", - "usernameON": "БОГЕР", - "bad_site": "" - }, - "Forum_scompaginando": { - "country": "🇮🇹", - "country_klas": "IT", - "errorMsg": "Questo utente non è registrato", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "http://www.scompaginando.it/member.php?username={}", - "urlMain": "http://www.scompaginando.it", - "usernameON": "Enribello", - "bad_site": "" - }, - "Forum_scooterista": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://scooterista.ru/index/8-0-{}", - "urlMain": "https://scooterista.ru", - "usernameON": "Dreamer", - "bad_site": "" - }, - "Forum_scotchmaltwhisky": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "Sorry, ", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.scotchmaltwhisky.co.uk/forum/profile.php?mode=viewprofile&u={}", - "urlMain": "https://www.scotchmaltwhisky.co.uk", - "usernameON": "William", - "bad_site": "" - }, - "Forum_scrambler": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.scramblerforum.com/members/?username={}", - "urlMain": "https://www.scramblerforum.com", - "usernameON": "fatrob", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_scrapbookcampus": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://scrapbookcampus.com/invision/search/?q={}&quick=1&type=core_members", - "urlMain": "https://scrapbookcampus.com", - "usernameON": "jacques", - "bad_site": "" - }, - "Forum_scriptmen": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://scriptmen.ucoz.ru/index/8-0-{}", - "urlMain": "https://scriptmen.ucoz.ru", - "usernameON": "reix24", - "bad_site": "" - }, - "Forum_scripts-money": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://scripts-money.clan.su/index/8-0-{}", - "urlMain": "https://scripts-money.clan.su", - "usernameON": "Diamond00744", - "bad_site": "" - }, - "Forum_scssoft": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.scssoft.com/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.scssoft.com", - "usernameON": "B787", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_scuba": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "http://forum.scuba-divers.ru/memberlist.php?username={}", - "urlMain": "http://forum.scuba-divers.ru/", - "usernameON": "bubonic", - "bad_site": "" - }, - "Forum_se-forever": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://se-forever.ucoz.com/index/8-0-{}", - "urlMain": "https://se-forever.ucoz.com", - "usernameON": "iisus1996", - "bad_site": "" - }, - "Forum_se-style": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://se-style.3dn.ru/index/8-0-{}", - "urlMain": "https://se-style.3dn.ru/", - "usernameON": "qwerty2244", - "bad_site": "" - }, - "Forum_se-zver": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://se-zver.ucoz.net/index/8-0-{}", - "urlMain": "https://se-zver.ucoz.net", - "usernameON": "magwrisK", - "bad_site": "" - }, - "Forum_se7ensins": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.se7ensins.com/members/?username={}", - "urlMain": "https://www.se7ensins.com", - "usernameON": "mocolos", - "comments": "super", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_seabreeze": { - "country": "🇦🇺", - "country_klas": "AU", - "errorTyp��": "response_url", - "url": "https://www.seabreeze.com.au/Members/Profile/Details.aspx?member={}", - "urlMain": "https://www.seabreeze.com.au", - "usernameON": "surfanimal", - "bad_site": "" - }, - "Forum_searchengines": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "
", - "errorMsg2": "class=\"nothing-found__title", - "errorTyp��": "message", - "url": "https://searchengines.guru/ru/search?keyword=&author={}&sortByDate=false", - "urlMain": "https://searchengines.guru", - "usernameON": "LevShliman", - "bad_site": "" - }, - "Forum_sebezh": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>
403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://secure-net.ucoz.ru/index/8-0-{}", - "urlMain": "https://secure-net.ucoz.ru", - "usernameON": "hcurcl", - "bad_site": "" - }, - "Forum_segaxtreme": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://segaxtreme.net/members/?username={}", - "urlMain": "https://segaxtreme.net", - "usernameON": "bluemoon95", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_selfsufficientculture": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.selfsufficientculture.com/members/?username={}", - "urlMain": "https://www.selfsufficientculture.com", - "usernameON": "daveb", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_sell-akk": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://sell-akk.at.ua/index/8-0-{}", - "urlMain": "http://sell-akk.at.ua", - "usernameON": "apelsin", - "bad_site": "" - }, - "Forum_semenovka": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Користувача не знайдено", - "errorMsg2": "403 Forbidden", - "errorMsg3": "User not found", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://semenovka.at.ua/index/8-0-{}", - "urlMain": "http://semenovka.at.ua", - "usernameON": "semenovka", - "bad_site": "" - }, - "Forum_semerkainfo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация", - "errorMsg2": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg3": "Вам закрыт доступ к конференции.", - "errorTyp��": "message", - "url": "http://www.semerkainfo.ru/forum/memberlist.php?username={}", - "urlMain": "http://www.semerkainfo.ru", - "usernameON": "DJTigra", - "bad_site": "" - }, - "Forum_semperficatholic": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "One moment,", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "http://semperficatholic.com/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "http://semperficatholic.com", - "usernameON": "MarieT", - "bad_site": "" - }, - "Forum_seniorforums": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.seniorforums.com/members/?username={}", - "urlMain": "https://www.seniorforums.com", - "usernameON": "pinky", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_sens": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sens.ucoz.ru/index/8-0-{}", - "urlMain": "https://sens.ucoz.ru", - "usernameON": "AlexSpain", - "bad_site": "" - }, - "Forum_serebropol": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://serebropol.ucoz.ru/index/8-0-{}", - "urlMain": "https://serebropol.ucoz.ru", - "usernameON": "kedrdek", - "bad_site": "" - }, - "Forum_serebryansk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://serebryansk.online/index/8-0-{}", - "urlMain": "https://serebryansk.online", - "usernameON": "Luintil", - "bad_site": "" - }, - "Forum_serega363": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://serega363.ucoz.ru/index/8-0-{}", - "urlMain": "https://serega363.ucoz.ru", - "usernameON": "realhacking", - "bad_site": "" - }, - "Forum_serenesforest": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.serenesforest.net/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://forums.serenesforest.net", - "usernameON": "Jedi", - "bad_site": "" - }, - "Forum_serien": { - "country": "🇩🇪", - "country_klas": "DE", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.serienforum.com/search/?&q={}&type=core_members", - "urlMain": "https://www.serienforum.com", - "usernameON": "Redaktion", - "bad_site": "" - }, - "Forum_serioussite": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.serioussite.ru/index/8-0-{}", - "urlMain": "https://www.serioussite.ru", - "usernameON": "tisomard", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_serpentes": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.serpentes.ru/forums/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://www.serpentes.ru", - "usernameON": "TRexfood", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Forum_server1": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://server1.ucoz.net/index/8-0-{}", - "urlMain": "https://server1.ucoz.net", - "usernameON": "Arthurunige", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_servethehome": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.servethehome.com/index.php?members/&username={}", - "urlMain": "https://forums.servethehome.com", - "usernameON": "chlastakov", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_servicestack": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://forums.servicestack.net/u/{}/summary", - "urlMain": "https://forums.servicestack.net/", - "usernameON": "lai", - "bad_site": "" - }, - "Forum_serwis": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://serwis.ucoz.ru/index/8-0-{}", - "urlMain": "https://serwis.ucoz.ru", - "usernameON": "sigushki", - "bad_site": "" - }, - "Forum_setcombg": { - "country": "🇧🇬", - "country_klas": "BG", - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorMsg2": "<meta name=\"robots\" content=\"noindex,follow", - "errorTyp��": "message", - "url": "https://forum.setcombg.com/members/{}.html", - "urlMain": "https://forum.setcombg.com", - "usernameON": "ganev", - "bad_site": "" - }, - "Forum_setter": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://setter.borda.ru/?32-{}", - "urlMain": "https://setter.borda.ru", - "usernameON": "veronika12", - "bad_site": "" - }, - "Forum_sev-kav": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sev-kav.clan.su/index/8-0-{}", - "urlMain": "https://sev-kav.clan.su", - "usernameON": "tbes50203", - "bad_site": "" - }, - "Forum_sevenstring": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://sevenstring.org/members/?username={}", - "urlMain": "https://sevenstring.org", - "usernameON": "maxofmetal", - "comments": "zamedlenie", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_severushermione": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://severushermione.clan.su/index/8-0-{}", - "urlMain": "http://severushermione.clan.su", - "usernameON": "Olias", - "bad_site": "" - }, - "Forum_severussnape": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "url": "http://sfinx-cats.ucoz.ru/index/8-0-{}", - "urlMain": "http://sfinx-cats.ucoz.ru", - "usernameON": "Meggikliri", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_sgvavia": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.sgvavia.ru/index/8-0-{}", - "urlMain": "https://www.sgvavia.ru", - "usernameON": "alla22", - "bad_site": "" - }, - "Forum_shaman": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shaman.3dn.ru/index/8-0-{}", - "urlMain": "https://shaman.3dn.ru", - "usernameON": "vtaletkhfr", - "bad_site": "" - }, - "Forum_shanse": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shanse.ucoz.com/index/8-0-{}", - "urlMain": "https://shanse.ucoz.com", - "usernameON": "Юлия", - "bad_site": "" - }, - "Forum_shanson": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shanson.ucoz.ru/index/8-0-{}", - "urlMain": "https://shanson.ucoz.ru", - "usernameON": "FERMABOT", - "bad_site": "" - }, - "Forum_shatoy": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sherlar.3dn.ru/index/8-0-{}", - "urlMain": "https://sherlar.3dn.ru", - "usernameON": "dugimmump", - "bad_site": "" - }, - "Forum_shiachat": { - "country": "🇮🇷", - "country_klas": "IR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.shiachat.com/forum/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.shiachat.com", - "usernameON": "Hameedeh", - "bad_site": "" - }, - "Forum_shiftdelete": { - "country": "🇹🇷", - "country_klas": "TR", - "errorTyp��": "redirection", - "url": "https://forum.shiftdelete.net/uyeler/?username={}", - "urlMain": "https://forum.shiftdelete.net", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_shiptext": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shiptext.ucoz.ru/index/8-0-{}", - "urlMain": "https://shiptext.ucoz.ru", - "usernameON": "Taruto", - "bad_site": "" - }, - "Forum_shirokovskaya": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://широковская.рф/index/8-0-{}", - "urlMain": "http://широковская.рф", - "usernameON": "Надя", - "bad_site": "" - }, - "Forum_shkola-letovo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shkola-letovo.my1.ru/index/8-0-{}", - "urlMain": "https://shkola-letovo.my1.ru", - "usernameON": "belkazalesskaya", - "bad_site": "" - }, - "Forum_shkolnikov": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shkolnikov.clan.su/index/8-0-{}", - "urlMain": "https://shkolnikov.clan.su", - "usernameON": "Adelamow", - "bad_site": "" - }, - "Forum_shkval": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shoubiz.my1.ru/index/8-0-{}", - "urlMain": "https://shoubiz.my1.ru", - "usernameON": "eagles_yar", - "bad_site": "" - }, - "Forum_shumka": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://shumka.at.ua/index/8-0-{}", - "urlMain": "http://shumka.at.ua", - "usernameON": "vikadroyp08", - "bad_site": "" - }, - "Forum_shustrov": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shustrov.clan.su/index/8-0-{}", - "urlMain": "https://shustrov.clan.su", - "usernameON": "Crayulin", - "bad_site": "" - }, - "Forum_shuumm": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shuumm.ucoz.ru/index/8-0-{}", - "urlMain": "https://shuumm.ucoz.ru", - "usernameON": "shuumm", - "bad_site": "" - }, - "Forum_shvedun": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://www.forum.shvedun.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://www.forum.shvedun.ru", - "usernameON": "red", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_siava": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://siava.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://siava.ru", - "usernameON": "Keks", - "bad_site": "" - }, - "Forum_sibcoins": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sibcoins.ucoz.ru/index/8-0-{}", - "urlMain": "https://sibcoins.ucoz.ru", - "usernameON": "FERMABOT", - "bad_site": "" - }, - "Forum_siberia_war": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr> :: Сибмама - о семье, беременности и детях", - "errorTyp��": "message", - "url": "https://forum.sibmama.ru/profile.php?mode=viewprofile&u={}", - "urlMain": "https://forum.sibmama.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_siccness": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.siccness.net/xf/members/?username={}", - "urlMain": "https://www.siccness.net", - "usernameON": "muthafknmexican", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_siemens-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://siemens-club.ucoz.ru/index/8-0-{}", - "urlMain": "https://siemens-club.ucoz.ru", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_siemens-town": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://siemens-town.my1.ru/index/8-0-{}", - "urlMain": "https://siemens-town.my1.ru", - "usernameON": "pomoshigorigor", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_sierraclubspb": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://sierraclubspb.borda.ru/?32-{}", - "urlMain": "https://sierraclubspb.borda.ru", - "usernameON": "truevalve", - "bad_site": "" - }, - "Forum_sierrawireless": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.sierrawireless.com/u/{}/summary", - "urlMain": "https://forum.sierrawireless.com", - "usernameON": "guigui", - "bad_site": "" - }, - "Forum_sigerous": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://sigerous.ru/index/8-0-{}", - "urlMain": "http://sigerous.ru", - "usernameON": "repteloid1111", - "bad_site": "" - }, - "Forum_silveradosierra": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.silveradosierra.com/members/?username={}", - "urlMain": "https://www.silveradosierra.com", - "usernameON": "babock58", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_silverstream": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>Результатов поиска нет", - "errorMsg3": "Cloudflare", - "errorTyp��": "message", - "url": "https://f.simpleminecraft.ru/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://f.simpleminecraft.ru", - "usernameON": "delars", - "bad_site": "" - }, - "Forum_simracing": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorTyp��": "message", - "url": "https://forum.simracing.su/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.simracing.su", - "usernameON": "veter", - "bad_site": "" - }, - "Forum_sims3game": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sims3game.ucoz.ru/index/8-0-{}", - "urlMain": "https://sims3game.ucoz.ru", - "usernameON": "reveille", - "bad_site": "" - }, - "Forum_singaporebrides": { - "country": "🇸🇬", - "country_klas": "SG", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://singaporebrides.com/weddingforum/members/?username={}", - "urlMain": "https://singaporebrides.com", - "usernameON": "buzz", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_sitepoint": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "\\"posts\\":[],\\"users\\":[],", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.sitepoint.com/community/search?context=topic&q={}&search_type=users&skip_context=true", - "urlMain": "https://www.sitepoint.com", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_sivatherium": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://skachat-warcraft-3.ru/index/8-0-{}", - "urlMain": "https://skachat-warcraft-3.ru", - "usernameON": "Grandar", - "bad_site": "" - }, - "Forum_skateclass": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "url": "https://sokrovische.ucoz.ru/index/8-0-{}", - "urlMain": "https://sokrovische.ucoz.ru", - "usernameON": "Visondela", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_solana": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.solana.com/u/{}/summary", - "urlMain": "https://forum.solana.com", - "usernameON": "ilian", - "bad_site": "" - }, - "Forum_soligorsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://soligorsk-info.ucoz.com/index/8-0-{}", - "urlMain": "https://soligorsk-info.ucoz.com", - "usernameON": "andydudyk", - "bad_site": "" - }, - "Forum_solikamsk1": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://solikamsk1.ucoz.org/index/8-0-{}", - "urlMain": "https://solikamsk1.ucoz.org", - "usernameON": "Openair", - "bad_site": "" - }, - "Forum_solnechnyi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://solnechnyi.ucoz.ru/index/8-0-{}", - "urlMain": "https://solnechnyi.ucoz.ru", - "usernameON": "eameln07", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_solonkino": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://solonkino.3dn.ru/index/8-0-{}", - "urlMain": "https://solonkino.3dn.ru", - "usernameON": "tasya", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_solotouch": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.solotouch.com/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.solotouch.com/", - "usernameON": "rosco1", - "bad_site": "" - }, - "Forum_solstar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://solstar.ru/index/8-0-{}", - "urlMain": "http://solstar.ru", - "usernameON": "wellnemo", - "bad_site": "" - }, - "Forum_sonexbuilders": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://sonexbuilders.net/search.php?keywords=&terms=all&author={}", - "urlMain": "https://sonexbuilders.net", - "usernameON": "lakespookie", - "bad_site": "" - }, - "Forum_sony127": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sony127.3dn.ru/index/8-0-{}", - "urlMain": "https://sony127.3dn.ru", - "usernameON": "htaletuauo", - "bad_site": "" - }, - "Forum_sonyalpha": { - "country": "🇩🇪", - "country_klas": "DE", - "errorMsg": "0 Ergebnisse", - "errorMsg2": "One moment,", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.sonyalphaforum.de/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.sonyalphaforum.de", - "usernameON": "ger100", - "bad_site": "" - }, - "Forum_sonycam": { - "country": "🇪🇸", - "country_klas": "ES", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.sonycam.es/foro/members/?username={}", - "urlMain": "https://www.sonycam.es", - "usernameON": "dano", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_soslujivzi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://soslujivzi.ru/index/8-0-{}", - "urlMain": "https://soslujivzi.ru", - "usernameON": "bazy", - "bad_site": "" - }, - "Forum_sosuave": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.sosuave.net/forum/members/?username={}", - "urlMain": "https://www.sosuave.net", - "usernameON": "theprospect", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_sourcepython": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Information", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.sourcepython.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forums.sourcepython.com/", - "usernameON": "Mahi", - "comments": "Archive", - "bad_site": 1 - }, - "Forum_south-tm": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://south-tm.clan.su/index/8-0-{}", - "urlMain": "http://south-tm.clan.su", - "usernameON": "Shchedrovnops", - "bad_site": "" - }, - "Forum_sovet-miliziy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://sovet-miliziy.narod.ru/index/8-0-{}", - "urlMain": "http://sovet-miliziy.narod.ru", - "usernameON": "Евпатий", - "bad_site": "" - }, - "Forum_sovetskoye": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sovetskoye.ucoz.ru/index/8-0-{}", - "urlMain": "https://sovetskoye.ucoz.ru", - "usernameON": "VikingRUS", - "bad_site": "" - }, - "Forum_sovgavan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "http://www.sovgavan.ru/index/8-0-{}", - "urlMain": "http://www.sovgavan.ru", - "usernameON": "Titana", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_sovpl": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403", - "errorTyp��": "message", - "url": "https://soyuz-pisatelei.ru/index/8-0-{}", - "urlMain": "https://soyuz-pisatelei.ru", - "usernameON": "Litvin", - "bad_site": "" - }, - "Forum_space": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.space.com/members/?username={}", - "urlMain": "https://forums.space.com", - "usernameON": "helio", - "comments": "Archive", - "bad_site": 1, - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_spacebattles": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.spacebattles.com/members/?username={}", - "urlMain": "https://forums.spacebattles.com", - "usernameON": "lt_ryguy", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_spanielclub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://spanielclub.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://spanielclub.kamrbb.ru", - "usernameON": "kertezayde", - "bad_site": "" - }, - "Forum_spchat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://forum.spchat.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.spchat.ru", - "usernameON": "Taniar", - "bad_site": "" - }, - "Forum_spdonetsk": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://spdonetsk.ucoz.ua/index/8-0-{}", - "urlMain": "https://spdonetsk.ucoz.ua", - "usernameON": "Alazany", - "bad_site": "" - }, - "Forum_speakev": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.speakev.com/members/?username={}", - "urlMain": "https://www.speakev.com", - "usernameON": "nickkk32", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_specialstage": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.specialstage.com/members/?username={}", - "urlMain": "https://www.specialstage.com", - "usernameON": "ssadmin", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_specktra": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.specktra.net/members/?username={}", - "urlMain": "https://www.specktra.net", - "usernameON": "shellygrrl", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_spellbinder": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://forum.spellbinder.tv/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.spellbinder.tv", - "usernameON": "vov2302", - "bad_site": "" - }, - "Forum_spiceworks": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://community.spiceworks.com/u/{}", - "urlMain": "https://community.spiceworks.com", - "usernameON": "hulksmash72", - "comments": "RUblock", - "bad_site": "" - }, - "Forum_spinningist": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.spinningist.com/index/8-0-{}", - "urlMain": "http://www.spinningist.com", - "usernameON": "Nux", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_spitz-dog": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://spitz-dog.ucoz.ru/index/8-0-{}", - "urlMain": "http://spitz-dog.ucoz.ru", - "usernameON": "hieswivay", - "bad_site": "" - }, - "Forum_spoiledmaltese": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.spoiledmaltese.com/members/?username={}", - "urlMain": "https://www.spoiledmaltese.com", - "usernameON": "duncanweishaar093", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_spolo": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sporeland.ru/index/8-0-{}", - "urlMain": "https://sporeland.ru/", - "usernameON": "ms_Zeys", - "bad_site": "" - }, - "Forum_sport_f": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.sport-forums.com/members/?username={}", - "urlMain": "https://www.sport-forums.com", - "usernameON": "bascampt", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_sportgymnastic": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://sputnikkey.ru/index/8-0-{}", - "urlMain": "http://sputnikkey.ru", - "usernameON": "alexstvpr", - "bad_site": "" - }, - "Forum_spyro-realms": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.spyro-realms.com/index/8-0-{}", - "urlMain": "https://www.spyro-realms.com", - "usernameON": "ftaletoxrf", - "bad_site": "" - }, - "Forum_sqlteam": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forums.sqlteam.com/u/{}/summary", - "urlMain": "https://forums.sqlteam.com", - "usernameON": "waterduck", - "bad_site": "" - }, - "Forum_squarespace": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Found 0 results", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://svet-unlimited.ucoz.ru/index/8-0-{}", - "urlMain": "https://svet-unlimited.ucoz.ru", - "usernameON": "Milija", - "bad_site": "" - }, - "Forum_svobodavnutri": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://svobodavnutri.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://svobodavnutri.kamrbb.ru", - "usernameON": "lurdopufye", - "bad_site": "" - }, - "Forum_svoystyle": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://svoystyle.ucoz.ru/index/8-0-{}", - "urlMain": "https://svoystyle.ucoz.ru/", - "usernameON": "isaeva3", - "bad_site": "" - }, - "Forum_svstrazh": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://svstrazh.forum24.ru/?32-{}", - "urlMain": "https://svstrazh.forum24.ru", - "usernameON": "blagimip", - "bad_site": "" - }, - "Forum_svstudio": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://svstudio.ucoz.ru/index/8-0-{}", - "urlMain": "https://svstudio.ucoz.ru/", - "usernameON": "sunkid", - "bad_site": "" - }, - "Forum_svvptau": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://svvptau.borda.ru/?32-{}", - "urlMain": "https://svvptau.borda.ru", - "usernameON": "sops", - "bad_site": "" - }, - "Forum_swedespeed": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "url": "https://www.swedespeed.com/members/?username={}", - "urlMain": "https://www.swedespeed.com", - "usernameON": "stewart13", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_swift": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "posts\\":[],\\"users\\", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.swift.org/search?q={}&search_type=users", - "urlMain": "https://forums.swift.org", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_swiftbook": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://forum.swiftbook.ru/u/{}/summary", - "urlMain": "https://forum.swiftbook.ru", - "usernameON": "green", - "comments": "bad", - "bad_site": 1 - }, - "Forum_swleague": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.swleague.ru/index/8-0-{}", - "urlMain": "http://www.swleague.ru", - "usernameON": "rtalethabg", - "bad_site": "" - }, - "Forum_swoy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://swoy.ucoz.ru/index/8-0-{}", - "urlMain": "https://swoy.ucoz.ru", - "usernameON": "Tampy", - "bad_site": "" - }, - "Forum_symerechnaya": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://symerechnaya.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://symerechnaya.kamrbb.ru/", - "usernameON": "jelmafesti", - "bad_site": "" - }, - "Forum_synfig": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.synfig.org/u/{}/summary", - "urlMain": "https://forums.synfig.org", - "usernameON": "weranimators", - "bad_site": "" - }, - "Forum_synwrite_sourceforge": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://synwrite.sourceforge.net/forums/search.php?keywords=&terms=all&author={}", - "urlMain": "https://synwrite.sourceforge.net/", - "usernameON": "SamC", - "bad_site": "" - }, - "Forum_sys-adm": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://forum.sys-adm.in/u/{}", - "urlMain": "https://forum.sys-adm.in", - "usernameON": "sysadmin", - "bad_site": 1 - }, - "Forum_szaokprf": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://szaokprf.ucoz.ru/index/8-0-{}", - "urlMain": "https://szaokprf.ucoz.ru", - "usernameON": "sapsap", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_tachograph": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://tachograph.ucoz.ru/index/8-0-{}", - "urlMain": "http://tachograph.ucoz.ru", - "usernameON": "zokfada", - "bad_site": "" - }, - "Forum_tacticalwargames": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No members found", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.tacticalwargames.net/taccmd/memberlist.php?username={}", - "urlMain": "https://www.tacticalwargames.net", - "usernameON": "MephistonAG", - "bad_site": "" - }, - "Forum_taek": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://taek.3dn.ru/index/8-0-{}", - "urlMain": "https://taek.3dn.ru/", - "usernameON": "provzlom", - "bad_site": "" - }, - "Forum_taganrog-stop": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://taganrog-stop.clan.su/index/8-0-{}", - "urlMain": "https://taganrog-stop.clan.su", - "usernameON": "avtoritetniy", - "bad_site": "" - }, - "Forum_tagheuer": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://tagheuerforums.com/members/?username={}", - "urlMain": "https://tagheuerforums.com", - "usernameON": "hubert", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tagilshops": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "url": "https://taipaqi.moy.su/index/8-0-{}", - "urlMain": "https://taipaqi.moy.su", - "usernameON": "lotly", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_taksafonchik": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://tambov.clan.su/index/8-0-{}", - "urlMain": "https://tambov.clan.su", - "usernameON": "Xando", - "bad_site": "" - }, - "Forum_tanki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "Что-то пошло не так", - "errorTyp��": "message", - "url": "https://ru.tankiforum.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://ru.tankiforum.com", - "usernameON": "anmo", - "bad_site": "" - }, - "Forum_tanknet": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.tanknet.org/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://www.tanknet.org", - "usernameON": "bojan", - "bad_site": "" - }, - "Forum_taragorod": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://taragorod.ru/index/8-0-{}", - "urlMain": "https://taragorod.ru", - "usernameON": "unlockserver", - "bad_site": "" - }, - "Forum_tarjaturunen": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://tarjaturunen.ucoz.ru/index/8-0-{}", - "urlMain": "https://tarjaturunen.ucoz.ru", - "usernameON": "timoxa", - "bad_site": "" - }, - "Forum_taro": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://www.taro.lv/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.taro.lv", - "usernameON": "Cha", - "bad_site": "" - }, - "Forum_tarokus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://tarokus.ru/index/8-0-{}", - "urlMain": "http://tarokus.ru", - "usernameON": "pridorozhniy", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_tarot": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "http://tarot.my1.ru/index/8-0-{}", - "urlMain": "http://tarot.my1.ru", - "usernameON": "seklimqwdal", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_tarot-siberia": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "url": "https://tarot-siberia.ru/index/8-0-{}", - "urlMain": "https://tarot-siberia.ru", - "usernameON": "Lila", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_taruska": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.taruska.ru/index/8-0-{}", - "urlMain": "http://www.taruska.ru", - "usernameON": "kuhni30", - "bad_site": "" - }, - "Forum_tatfish": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://forum.tatfish.com/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.tatfish.com", - "usernameON": "Krilov", - "bad_site": "" - }, - "Forum_tathunter": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://forum.tathunter.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.tathunter.ru", - "usernameON": "ramon", - "bad_site": "" - }, - "Forum_tattle": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://tattle.life/members/?username={}", - "urlMain": "https://tattle.life", - "usernameON": "chita", - "bad_site": "" - }, - "Forum_tauck": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://forums.tauck.com/profile/{}", - "urlMain": "https://forums.tauck.com", - "usernameON": "billzappa", - "bad_site": "" - }, - "Forum_taycan": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.taycanforum.com/forum/members/?username={}", - "urlMain": "https://www.taycanforum.com", - "usernameON": "f1eng", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_taycanev": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.taycanevforum.com/members/?username={}", - "urlMain": "https://www.taycanevforum.com", - "usernameON": "hz1946", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tbrus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://tbrus.ucoz.ru/index/8-0-{}", - "urlMain": "https://tbrus.ucoz.ru", - "usernameON": "aktotytusipkalieva", - "bad_site": "" - }, - "Forum_tdiclub": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.tdiclub.com/index.php&members/?username={}", - "urlMain": "https://forums.tdiclub.com", - "usernameON": "matthew16", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_team-pros": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://team-pros.3dn.ru/index/8-0-{}", - "urlMain": "https://team-pros.3dn.ru", - "usernameON": "leifwoolned", - "bad_site": "" - }, - "Forum_tebepolezno": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://tebepolezno.ucoz.ru/index/8-0-{}", - "urlMain": "https://tebepolezno.ucoz.ru", - "usernameON": "Wtgrljya", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_techclan_planeta2": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://techclan.planeta2.org/index/8-0-{}", - "urlMain": "http://techclan.planeta2.org", - "usernameON": "youmather", - "bad_site": "" - }, - "Forum_techenclave": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://techenclave.com/members/?username={}", - "urlMain": "https://techenclave.com", - "usernameON": "jacob909", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_techguy": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.techguy.org/members/?username={}", - "urlMain": "https://www.techguy.org", - "usernameON": "novictory", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_techist": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.techist.com/forums/members/?username={}", - "urlMain": "https://www.techist.com", - "usernameON": "benefitspils3", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_technofino": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://technofino.in/community/members/?username={}", - "urlMain": "https://technofino.in", - "usernameON": "abhishek012", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_techsupport": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.techsupportforum.com/members/?username={}", - "urlMain": "https://www.techsupportforum.com", - "usernameON": "masterchiefxx17", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_teckelfriends": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://telesat-news.net/index/8-0-{}", - "urlMain": "https://telesat-news.net/", - "usernameON": "peresihne", - "bad_site": "" - }, - "Forum_tellopilots": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://tellopilots.com/members/?username={}", - "urlMain": "https://tellopilots.com", - "usernameON": "cougare", - "comments": "RUblock", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tenews": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://teron.at.ua/index/8-0-{}", - "urlMain": "https://teron.at.ua", - "usernameON": "nieminenmik", - "bad_site": "" - }, - "Forum_terraforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.terraforum.net/member.php?username={}", - "urlMain": "https://www.terraforum.net", - "usernameON": "mcdonald", - "comments": "bad", - "bad_site": "" - }, - "Forum_terror62": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://terror62.ru/index/8-0-{}", - "urlMain": "http://terror62.ru", - "usernameON": "Trotskiy", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_terrylove": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://terrylove.com/forums/index.php?members/&username={}", - "urlMain": "https://terrylove.com", - "usernameON": "arisonpump", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tezosagora": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.tezosagora.org/u/{}/summary", - "urlMain": "https://forum.tezosagora.org", - "usernameON": "kevinmehrabi", - "bad_site": "" - }, - "Forum_TG": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://tgforum.ru/members/?username={}", - "urlMain": "https://tgforum.ru", - "usernameON": "grigorii", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thaidog": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://the-brinkoftime.ru/index/8-0-{}", - "urlMain": "https://the-brinkoftime.ru", - "usernameON": "Kardinal", - "bad_site": "" - }, - "Forum_the-covenant": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://the-covenant.ucoz.ru/index/8-0-{}", - "urlMain": "https://the-covenant.ucoz.ru", - "usernameON": "Gwynbleidd", - "bad_site": "" - }, - "Forum_the-sunny": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://the-sunny.ucoz.ru/index/8-0-{}", - "urlMain": "https://the-sunny.ucoz.ru", - "usernameON": "Sejlin", - "bad_site": "" - }, - "Forum_thebassbarn": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thebassbarn.com/members/?username={}", - "urlMain": "https://www.thebassbarn.com/", - "usernameON": "hardtop", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thebenchtrading": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://thebenchtrading.com/members/?username={}", - "urlMain": "https://thebenchtrading.com/", - "usernameON": "dragonslayer913", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thebrownsboard": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.thebrownsboard.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.thebrownsboard.com", - "usernameON": "calfoxwc", - "bad_site": "" - }, - "Forum_thecatsite": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://thecatsite.com/members/?username={}", - "urlMain": "https://thecatsite.com", - "usernameON": "stefanz", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_thecoding": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thecodingforums.com/members/?username={}", - "urlMain": "https://www.thecodingforums.com/", - "usernameON": "nataliayou", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thecomicboard": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thecomicboard.com/members/?username={}", - "urlMain": "https://www.thecomicboard.com", - "usernameON": "selfishmisery", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thedaobums": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W[а-яА-Я]", - "errorMsg": "0 results", - "errorMsg2": "Not found", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.thedaobums.com/search/?&q={}&type=core_members", - "urlMain": "https://www.thedaobums.com", - "usernameON": "Maddie", - "bad_site": "" - }, - "Forum_thedarkmod": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.thedarkmod.com/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://forums.thedarkmod.com", - "usernameON": "greebo", - "bad_site": "" - }, - "Forum_thedarts": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No members found", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.thedartsforum.com/memberlist.php?username={}", - "urlMain": "https://www.thedartsforum.com", - "usernameON": "ChrisW", - "bad_site": "" - }, - "Forum_theden": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://thedenforum.com/u/{}/summary", - "urlMain": "https://thedenforum.com", - "usernameON": "weaselpuppy", - "bad_site": "" - }, - "Forum_thedieselgarage": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thedieselgarage.com/members/?username={}", - "urlMain": "https://www.thedieselgarage.com", - "usernameON": "carid", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thedieselstop": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thedieselstop.com/members/?username={}", - "urlMain": "https://www.thedieselstop.com", - "usernameON": "bugman", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thedoctorwho": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.thedoctorwhoforum.com/members/{}/", - "urlMain": "https://www.thedoctorwhoforum.com", - "usernameON": "ps1l0v3y0u", - "bad_site": "" - }, - "Forum_thefappeningblog": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://thefappeningblog.com/forum/members/?username={}", - "urlMain": "https://thefappeningblog.com", - "usernameON": "peterwebb", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thefedoralounge": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thefedoralounge.com/members/?username={}", - "urlMain": "https://www.thefedoralounge.com", - "usernameON": "kblake", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thefewgoodmen": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thefewgoodmen.com/thefgmforum/members/?username={}", - "urlMain": "https://www.thefewgoodmen.com", - "usernameON": "bootie", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thefinalfantasy": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered", - "errorMsg2": "STANDARD_ERROR", - "errorMsg3": "content=\"final fantasy,", - "errorTyp��": "message", - "url": "https://thefinalfantasy.net/forums/members/{}/", - "urlMain": "https://thefinalfantasy.net", - "usernameON": "fuzz", - "bad_site": "" - }, - "Forum_thefirearms": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thefirearmsforum.com/members/?username={}", - "urlMain": "https://www.thefirearmsforum.com", - "usernameON": "alpo", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_theflooring": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://theflooringforum.com/members/?username={}", - "urlMain": "https://theflooringforum.com", - "usernameON": "dazlight", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thefootballforum": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thefootballforum.net/members/?username={}", - "urlMain": "https://www.thefootballforum.net", - "usernameON": "oakroader", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_thegambling": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "Unavailable", - "errorTyp��": "message", - "url": "https://thegamblingcommunity.com/forum/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://thegamblingcommunity.com/", - "usernameON": "howfin", - "bad_site": "" - }, - "Forum_thegradcafe": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorTyp��": "message", - "url": "https://forum.thegradcafe.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.thegradcafe.com", - "usernameON": "admin", - "bad_site": "" - }, - "Forum_thegreenliving": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://permies.com/forums/jforum?module=search&action=search&forum_id=-1&search_keywords=&match_type=all&search_in=ALL&forum=&groupByTopic=true&sort_by=time&sort_dir=DESC&search_date=ALL&member_number=&member_first_name={}&member_last_name=&member_match_type=memberPosted", - "urlMain": "https://permies.com", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_thegtaplace": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": " 0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://thegtaplace.com/forums/search/?q={}&quick=1&type=core_members", - "urlMain": "https://thegtaplace.com", - "usernameON": "chuken", - "bad_site": "" - }, - "Forum_thehomebrew": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thehomebrewforum.co.uk/members/?username={}", - "urlMain": "https://www.thehomebrewforum.co.uk", - "usernameON": "mashbag", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thehuddle": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Please wait", - "errorMsg2": "0 results", - "errorTyp��": "message", - "url": "https://forums.thehuddle.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.thehuddle.com", - "usernameON": "red", - "bad_site": "" - }, - "Forum_theislamicquotes": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.theislamicquotes.com/members/?username={}", - "urlMain": "https://forum.theislamicquotes.com", - "usernameON": "awanromesa", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_theknot": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.theknot.com/profile/{}", - "urlMain": "https://forums.theknot.com", - "usernameON": "mrsconn23", - "bad_site": "" - }, - "Forum_thektog": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thektog.org/members/?username={}", - "urlMain": "https://www.thektog.org", - "usernameON": "editor", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thelaw": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thelaw.com/members/?username={}", - "urlMain": "https://www.thelaw.com", - "usernameON": "zddoodah", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_themodernfilmmaker": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.themodernfilmmaker.com/ru/profile/{}/profile", - "urlMain": "https://www.themodernfilmmaker.com", - "usernameON": "shadrachhanohano", - "bad_site": "" - }, - "Forum_theohiooutdoors": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://theohiooutdoors.com/members/?username={}", - "urlMain": "https://theohiooutdoors.com", - "usernameON": "p8riot", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_theologyonline": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://theologyonline.com/members/?username={}", - "urlMain": "https://theologyonline.com", - "usernameON": "benavraham", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_theoutlander": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://theoutlander.ru/index/8-0-{}", - "urlMain": "https://theoutlander.ru", - "usernameON": "talia", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_thepatriotwoodworker": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://thepatriotwoodworker.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://thepatriotwoodworker.com", - "usernameON": "frederickh", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Forum_thephins": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thephins.com/members/?username={}", - "urlMain": "https://www.thephins.com", - "usernameON": "dolphin25", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thephoto": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thephotoforum.com/members/?username={}", - "urlMain": "https://www.thephotoforum.com", - "usernameON": "sterk03", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_theprodigy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь, чей профиль вы пытаетесь посмотреть, не существует.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://forum.theprodigy.ru/index.php?board=13&action=viewprofile&user={}", - "urlMain": "https://forum.theprodigy.ru/", - "usernameON": "red", - "bad_site": "" - }, - "Forum_thepw": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Найдено 0 результатов", - "errorMsg2": "По вашему запросу ничего не найдено", - "errorTyp��": "message", - "url": "http://forum.thepw.ru/index.php?/search/&q={}&type=core_members", - "urlMain": "http://forum.thepw.ru", - "usernameON": "thepwsupport", - "bad_site": "" - }, - "Forum_therepair": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "title>Упс! Что-то пошло не так", - "errorMsg2": "Найдено 0 результатов", - "errorTyp��": "message", - "url": "https://therepair.ru/search/?&q={}", - "urlMain": "https://therepair.ru", - "usernameON": "Engineer", - "comments": "bad", - "bad_site": "" - }, - "Forum_therpf": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.therpf.com/forums/members/?username={}", - "urlMain": "https://www.therpf.com", - "usernameON": "wayneb", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thesandtrap": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "0 results", - "errorMsg2": "Sorry, page not found", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://thesandtrap.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://thesandtrap.com", - "usernameON": "iacas", - "bad_site": "" - }, - "Forum_thescienceforum": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "http://www.thescienceforum.com/member.php?username={}", - "urlMain": "http://www.thescienceforum.com", - "usernameON": "mathman", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_thesimsworldnew": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.thesimsworldnew.ru/index/8-0-{}", - "urlMain": "http://www.thesimsworldnew.ru", - "usernameON": "Samara", - "bad_site": "" - }, - "Forum_thesmartmarks": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forums.thesmartmarks.com/search/?q={}&type=core_members", - "urlMain": "https://forums.thesmartmarks.com", - "usernameON": "janusd", - "bad_site": "" - }, - "Forum_thewatchsite": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thewatchsite.com/members/?username={}", - "urlMain": "https://www.thewatchsite.com/", - "usernameON": "gatsuk", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thewhitewolf": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://thewhitewolf.3dn.ru/index/8-0-{}", - "urlMain": "https://thewhitewolf.3dn.ru/", - "usernameON": "ttaletpbod", - "bad_site": "" - }, - "Forum_thewindowsforum": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://thewindowsforum.com/members/?username={}", - "urlMain": "https://thewindowsforum.com", - "usernameON": "mook777", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_thrash-attack": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://thrash-attack.ru/index/8-0-{}", - "urlMain": "http://thrash-attack.ru", - "usernameON": "Manowarrior", - "bad_site": "" - }, - "Forum_thule": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://thule.ucoz.ru/index/8-0-{}", - "urlMain": "https://thule.ucoz.ru", - "usernameON": "jtaletbcse", - "bad_site": "" - }, - "Forum_thumpertalk": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.thumpertalk.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.thumpertalk.com", - "usernameON": "mildride", - "bad_site": "" - }, - "Forum_tidalfish": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tidalfish.com/members/?username={}", - "urlMain": "https://www.tidalfish.com", - "usernameON": "longtail", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tigerdata": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.tigerdata.com/forum/u/{}/summary", - "urlMain": "https://forum.tigerdata.com", - "usernameON": "ts101", - "bad_site": "" - }, - "Forum_tights4men": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://time-paradox.ucoz.ru/index/8-0-{}", - "urlMain": "https://time-paradox.ucoz.ru", - "usernameON": "uliaandreeva149", - "bad_site": "" - }, - "Forum_timich": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://timich.ru/index/8-0-{}", - "urlMain": "http://timich.ru", - "usernameON": "rektie", - "bad_site": "" - }, - "Forum_titanquest": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://titanquest.org.ua/index/8-0-{}", - "urlMain": "https://titanquest.org.ua", - "usernameON": "Jack", - "bad_site": "" - }, - "Forum_tk_do": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://tk.do.am/index/8-0-{}", - "urlMain": "https://tk.do.am", - "usernameON": "romzik3", - "bad_site": "" - }, - "Forum_tks": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "403 Forbidden", - "errorMsg3": "временно приостановлен", - "errorTyp��": "message", - "url": "https://forum.tks.ru/member.php?username={}", - "urlMain": "https://forum.tks.ru/", - "usernameON": "red", - "bad_site": "" - }, - "Forum_tlm": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://tokiogirl.ucoz.ru/index/8-0-{}", - "urlMain": "https://tokiogirl.ucoz.ru", - "usernameON": "iisus1996", - "bad_site": "" - }, - "Forum_tolkienist": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://tolkienist.ucoz.ru/index/8-0-{}", - "urlMain": "http://tolkienist.ucoz.ru", - "usernameON": "Банту", - "bad_site": "" - }, - "Forum_tomtom": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tomtomforums.com/members/?username={}", - "urlMain": "https://www.tomtomforums.com", - "usernameON": "silberpfeil", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tootimid": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forums.tootimid.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.tootimid.com", - "usernameON": "eagle143", - "bad_site": "" - }, - "Forum_topeleven": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered", - "errorMsg2": "Top Eleven Forum", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.topeleven.com/member.php?username={}", - "urlMain": "https://forum.topeleven.com", - "usernameON": "Taliyah25", - "bad_site": "" - }, - "Forum_topgold": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://topgold.forum/search/?q={}&quick=1&type=core_members", - "urlMain": "https://topgold.forum/", - "usernameON": "Resolve", - "bad_site": "" - }, - "Forum_topgoldforum": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "There were no results for your search", - "errorTyp��": "message", - "url": "https://topgoldforum.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://topgoldforum.com", - "usernameON": "symphonizedbm", - "bad_site": "" - }, - "Forum_topteam": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://topteam.ucoz.ru/index/8-0-{}", - "urlMain": "https://topteam.ucoz.ru", - "usernameON": "Spinne", - "bad_site": "" - }, - "Forum_toribash": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.toribash.com/member.php?username={}", - "urlMain": "https://forum.toribash.com/", - "usernameON": "s1lvered", - "bad_site": "" - }, - "Forum_tornado": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.tornado.ws/u/{}/summary", - "urlMain": "https://forum.tornado.ws", - "usernameON": "sean", - "bad_site": "" - }, - "Forum_torquecars": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.torquecars.com/forums/members/?username={}", - "urlMain": "https://www.torquecars.com", - "usernameON": "mrmacbirch", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tortik": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://tortik.ucoz.ru/index/8-0-{}", - "urlMain": "https://tortik.ucoz.ru", - "usernameON": "ggdrEmodyz", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_tosdr": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://tosdr.community/u/{}/summary", - "urlMain": "https://tosdr.community", - "usernameON": "shadowwwind", - "bad_site": "" - }, - "Forum_totallympics": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://totallympics.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://totallympics.com", - "usernameON": "josh", - "bad_site": "" - }, - "Forum_totalrl": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.totalrl.com/forums/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://www.totalrl.com", - "usernameON": "bobbruce", - "bad_site": "" - }, - "Forum_touchussuri": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://touchussuri.ucoz.ru/index/8-0-{}", - "urlMain": "https://touchussuri.ucoz.ru", - "usernameON": "staletpuhh", - "bad_site": "" - }, - "Forum_tour": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://tourum.net/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://tourum.net", - "usernameON": "etolmacheff", - "comments": "bad", - "bad_site": "" - }, - "Forum_touringplans": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.touringplans.com/u/{}/summary", - "urlMain": "https://forum.touringplans.com", - "usernameON": "heathernoel", - "bad_site": "" - }, - "Forum_tourtrans": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.tourtrans.ru/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.tourtrans.ru", - "usernameON": "Evgeniya", - "bad_site": "" - }, - "Forum_toyotanation": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.toyotanation.com/members/?username={}", - "urlMain": "https://www.toyotanation.com", - "usernameON": "dna59", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_traceryoffate": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user does not exist.", - "errorMsg2": "Sorry, page not found", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://traceryoffate.com/forum/profile/{}/", - "urlMain": "https://traceryoffate.com", - "usernameON": "sentinel", - "bad_site": "" - }, - "Forum_tracfone": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.tracfoneforum.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.tracfoneforum.com", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_trackchecker": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация", - "errorMsg2": "Подходящих тем или сообщений не найдено.", - "errorTyp��": "message", - "url": "https://forum.trackchecker.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.trackchecker.ru", - "usernameON": "f2065", - "bad_site": "" - }, - "Forum_tractorbynet": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tractorbynet.com/forums/members/?username={}", - "urlMain": "https://www.tractorbynet.com", - "usernameON": "bmaverick", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_trade-print": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "url": "http://forum.trade-print.ru/member.php?username={}", - "urlMain": "http://forum.trade-print.ru", - "usernameON": "trioprint", - "bad_site": "" - }, - "Forum_trade2win": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.trade2win.com/members/?username={}", - "urlMain": "https://www.trade2win.com", - "usernameON": "wackypete2", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tradebrains": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "well-known/sgcaptcha", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://forum.tradebrains.in/u/{}/summary", - "urlMain": "https://forum.tradebrains.in", - "usernameON": "nikitawaghmare", - "bad_site": "" - }, - "Forum_traderji": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.traderji.com/community/members/?username={}", - "urlMain": "https://www.traderji.com/", - "usernameON": "arunbalan", - "comments": "bad", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": 1 - }, - "Forum_traderslaboratory": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "http://www.traderslaboratory.com/forums/search/?q={}&type=core_members", - "urlMain": "http://www.traderslaboratory.com", - "usernameON": "fxeconomist", - "bad_site": "" - }, - "Forum_tradingqna": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://tradingqna.com/u/{}/summary", - "urlMain": "https://tradingqna.com", - "usernameON": "akashkb", - "bad_site": "" - }, - "Forum_tradtalk": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tradtalk.com/members/?username={}", - "urlMain": "https://www.tradtalk.com/", - "usernameON": "lumis17", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_trainerroad": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.trainerroad.com/forum/u/{}/summary", - "urlMain": "https://www.trainerroad.com", - "usernameON": "joex", - "bad_site": "" - }, - "Forum_transit-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://transit-club.com/index/8-0-{}", - "urlMain": "http://transit-club.com", - "usernameON": "Gidanov", - "bad_site": "" - }, - "Forum_trassa": { - "country": "🇧🇾", - "country_klas": "BY", - "errorMsg": "Информация", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://trassa.by/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://trassa.by", - "usernameON": "admin", - "bad_site": "" - }, - "Forum_travel": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Поиск не дал результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.travel.ru/community/index.php?app=core&module=search&do=search&andor_type=and&search_author={}&search_app_filters[forums][sortKey]=date&search_content=both&search_app_filters[forums][noPreview]=1&search_app_filters[forums][pCount]=&search_app_filters[forums][pViews]=&search_app_filters[forums][sortKey]=date&search_app_filters[forums][sortDir]=0&search_app_filters[forums][searchInKey]=&search_term=&search_app=forums&search_app_filters[forums][searchInKey]=&search_app_filters[forums][sortKey]=title&search_app_filters[forums][sortDir]=0", - "urlMain": "https://www.travel.ru", - "usernameON": "larsen099", - "bad_site": "" - }, - "Forum_travel_do": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://travel.do.am/index/8-0-{}", - "urlMain": "https://travel.do.am", - "usernameON": "askutov123", - "bad_site": "" - }, - "Forum_travel_my1": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://travel.my1.ru/index/8-0-{}", - "urlMain": "https://travel.my1.ru", - "usernameON": "nbirukova1", - "bad_site": "" - }, - "Forum_trekbbs": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.trekbbs.com/members/?username={}", - "urlMain": "https://www.trekbbs.com", - "usernameON": "ericf", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_trialscentral": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W", - "errorMsg": "0 results", - "errorMsg2": "0 user", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.trialscentral.com/forums/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.trialscentral.com", - "usernameON": "choover", - "bad_site": "" - }, - "Forum_trimdownclub": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.trimdownclub.com/members/{}/", - "urlMain": "https://www.trimdownclub.com", - "usernameON": "kellyannsi", - "bad_site": "" - }, - "Forum_trinity-ai": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://trinity-ai.at.ua/index/8-0-{}", - "urlMain": "https://trinity-ai.at.ua", - "usernameON": "apelsinikgzy", - "bad_site": "" - }, - "Forum_trmk": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.trmk.org/forums/members/?username={}", - "urlMain": "https://www.trmk.org", - "usernameON": "ingend1945", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_troitsa": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://troitsa.ucoz.ru/index/8-0-{}", - "urlMain": "https://troitsa.ucoz.ru", - "usernameON": "Passhikinsky", - "bad_site": "" - }, - "Forum_trotting": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://tschkalowo.ucoz.ru/index/8-0-{}", - "urlMain": "https://tschkalowo.ucoz.ru", - "usernameON": "btaletjwhs", - "bad_site": "" - }, - "Forum_tskaro": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://tulaignk.ucoz.ru/index/8-0-{}", - "urlMain": "http://tulaignk.ucoz.ru", - "usernameON": "prokofjev7", - "bad_site": "" - }, - "Forum_tumult": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forums.tumult.com/u/{}/summary", - "urlMain": "https://forums.tumult.com", - "usernameON": "daniel", - "bad_site": "" - }, - "Forum_tundrasolutions": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tundrasolutions.com/members/?username={}", - "urlMain": "https://www.tundrasolutions.com", - "usernameON": "dxrouse", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tuning_lviv": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Тем або повідомлень, які відповідають вашому запиту, не знайдено.", - "errorMsg2": "Інформація", - "errorTyp��": "message", - "url": "http://tuning.lviv.ua/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://tuning.lviv.ua", - "usernameON": "jam", - "bad_site": "" - }, - "Forum_tupa-germania": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://forum.tupa-germania.ru/members/?username={}", - "urlMain": "https://forum.tupa-germania.ru", - "usernameON": "lagrange", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_tur_borda": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://turkmeniya.ucoz.ru/index/8-0-{}", - "urlMain": "https://turkmeniya.ucoz.ru", - "usernameON": "koleg5992", - "bad_site": "" - }, - "Forum_turntoislam": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://turntoislam.com/community/members/?username={}", - "urlMain": "https://turntoislam.com", - "usernameON": "exceller", - "comments": "RUblock", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tus-wa": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "does not exist.", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.tus-wa.com/profile/{}/", - "urlMain": "https://www.tus-wa.com", - "usernameON": "TheWalrus", - "comments": "super", - "bad_site": 1 - }, - "Forum_tvnewstalk": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Please wait", - "errorMsg2": "0 results", - "errorTyp��": "message", - "url": "https://forums.tvnewstalk.net/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.tvnewstalk.net", - "usernameON": "red", - "bad_site": "" - }, - "Forum_tvsbook": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tvsbook.com/members/?username={}", - "urlMain": "https://www.tvsbook.com", - "usernameON": "jhjg67", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tvsput": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://tvsput.ru/index/8-0-{}", - "urlMain": "http://tvsput.ru", - "usernameON": "sickorskyvik", - "bad_site": "" - }, - "Forum_tvwbb": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://tvwbb.com/members/?username={}", - "urlMain": "https://tvwbb.com", - "usernameON": "bruno", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tw200forum": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tw200forum.com/members/?username={}", - "urlMain": "https://www.tw200forum.com", - "usernameON": "drlemonator", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_twilightmovie": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://twilightmovie.ucoz.com/index/8-0-{}", - "urlMain": "https://twilightmovie.ucoz.com", - "usernameON": "фанатка", - "bad_site": "" - }, - "Forum_twilightrussia": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "\\W", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://twilightrussia.ru/index/8-0-{}", - "urlMain": "https://twilightrussia.ru", - "usernameON": "MissElen", - "bad_site": "" - }, - "Forum_twospoke": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.twospoke.com/members/?username={}", - "urlMain": "https://www.twospoke.com", - "usernameON": "stevesmith143", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_type2diabetes": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Page not found", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://type2diabetes.com/members/{}", - "urlMain": "https://type2diabetes.com", - "usernameON": "girlsaylor", - "bad_site": "" - }, - "Forum_u-hiv": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://forum.u-hiv.ru/index/8-0-{}", - "urlMain": "https://forum.u-hiv.ru", - "usernameON": "Slavochka", - "bad_site": "" - }, - "Forum_u-project": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://u-project.pro/members/?username={}", - "urlMain": "https://u-project.pro", - "usernameON": "takeshi", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_ua-vet": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://forum.ua-vet.com/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.ua-vet.com", - "usernameON": "irina", - "bad_site": "" - }, - "Forum_uahack": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://uahack.at.ua/index/8-0-{}", - "urlMain": "https://uahack.at.ua", - "usernameON": "alexeiuslugivzloma", - "bad_site": "" - }, - "Forum_uaksu": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://uaksu.forum24.ru/?32-{}", - "urlMain": "https://uaksu.forum24.ru", - "usernameON": "vleas", - "bad_site": "" - }, - "Forum_uberpeople": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.uberpeople.net/members/?username={}", - "urlMain": "https://www.uberpeople.net", - "usernameON": "nats121", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ubports": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forums.ubports.com/user/{}", - "urlMain": "https://forums.ubports.com", - "usernameON": "applee", - "bad_site": "" - }, - "Forum_ubuntu": { - "country": "🇮🇹", - "country_klas": "IT", - "errorMsg": "Nessuna iscrizione corrisponde a questi criteri di ricerca.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://forum.ubuntu-it.org/memberlist.php?username={}", - "urlMain": "https://forum.ubuntu-it.org", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_ubuntu_mate": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://ubuntu-mate.community/u/{}/summary", - "urlMain": "https://ubuntu-mate.community", - "usernameON": "oldstrummer", - "bad_site": "" - }, - "Forum_uc-portaller": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://uc-portaller.ucoz.com/index/8-0-{}", - "urlMain": "http://uc-portaller.ucoz.com", - "usernameON": "use_vse", - "bad_site": "" - }, - "Forum_ucoz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://forum.ucoz.ru/index/8-0-{}", - "urlMain": "https://forum.ucoz.ru", - "usernameON": "red", - "bad_site": "" - }, - "Forum_ucozweber": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ucozweber.3dn.ru/index/8-0-{}", - "urlMain": "https://ucozweber.3dn.ru", - "usernameON": "SoVeR", - "bad_site": "" - }, - "Forum_ucozzz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "http://ucozzz.ru/index/8-0-{}", - "urlMain": "http://ucozzz.ru", - "usernameON": "podrubaj", - "bad_site": "" - }, - "Forum_ufachgk": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>Форум Uinsell.Net", - "errorTyp��": "message", - "url": "http://forum.uinsell.net/member.php?username={}", - "urlMain": "http://forum.uinsell.net", - "usernameON": "ghost", - "bad_site": "" - }, - "Forum_uk_muscle": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.uk-muscle.co.uk/members/?username={}", - "urlMain": "https://www.uk-muscle.co.uk", - "usernameON": "zenol", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ukraine_de": { - "country": "🇩🇪", - "country_klas": "DE", - "errorMsg": "Es wurden keine passenden", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://ukraineforum.de/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Suche", - "urlMain": "https://ukraineforum.de", - "usernameON": "Handrij", - "bad_site": "" - }, - "Forum_ukriversguidebook": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "Information", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.ukriversguidebook.co.uk/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.ukriversguidebook.co.uk", - "usernameON": "Franky", - "bad_site": "" - }, - "Forum_uktechhub": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "robots\" content=\"noindex, nofollow", - "errorMsg2": "Page not found", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://uktechhub.com/forums/users/{}/", - "urlMain": "https://uktechhub.com", - "usernameON": "uk-sentinel", - "bad_site": "" - }, - "Forum_ulanovka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Результатов поиска нет", - "errorMsg2": "По вашему запросу ничего не найдено", - "errorMsg3": "возникла проблема", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://ulanovka.ru/search/?q={}&quick=1&type=core_members", - "urlMain": "https://ulanovka.ru", - "usernameON": "mac", - "bad_site": "" - }, - "Forum_ulfishing": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "Sorry, ", - "errorTyp��": "message", - "url": "https://ulfishing.ru/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://ulfishing.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_ulisp": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "http://forum.ulisp.com/u/{}", - "urlMain": "http://forum.ulisp.com", - "usernameON": "nanomonkey", - "bad_site": "" - }, - "Forum_ulybka_borda": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "профиль забанен или удален", - "errorMsg2": "/noindex>-->

", - "errorTyp��": "message", - "url": "https://sign-forum.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://sign-forum.ru", - "usernameON": "KalinaAlexandr", - "bad_site": "" - }, - "Signal_community": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Oops! That page doesn’t exist or is private.", - "errorMsg2": "Signal Community", - "errorTyp��": "message", - "url": "https://community.signalusers.org/u/{}/summary", - "urlMain": "https://community.signalusers.org", - "usernameON": "whatnoww", - "bad_site": "" - }, - "Silver-collector": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.silver-collector.com/u/{}/summary", - "urlMain": "https://www.silver-collector.com", - "usernameON": "red", - "bad_site": "" - }, - "Similarworlds": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://similarworlds.com/{}", - "urlMain": "https://similarworlds.com", - "usernameON": "Messygirl3", - "bad_site": "" - }, - "Skodaforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorMsg3": "FASTPANEL", - "errorTyp��": "message", - "url": "http://www.skodaforum.ru/member.php?username={}", - "urlMain": "http://www.skodaforum.ru", - "usernameON": "rivera", - "comments": "bad", - "bad_site": 1 - }, - "Skyblock": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://skyblock.net/members/?username={}", - "urlMain": "https://skyblock.net", - "usernameON": "noobcrew", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Skynetzone": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "url": "https://skynetzone.net/members/?username={}", - "urlMain": "https://skynetzone.net", - "usernameON": "battarismos", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Skyrimforums": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://skyrimforum.com/forum/members/?username={}", - "urlMain": "https://skyrimforum.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Skyscrapercity": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W|[а-яА-Я]", - "errorTyp��": "redirection", - "url": "https://www.skyscrapercity.com/members/?username={}", - "urlMain": "https://www.skyscrapercity.com", - "usernameON": "adam", - "bad_site": "" - }, - "Slack": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://{}.slack.com", - "urlMain": "https://slack.com", - "usernameON": "blue", - "bad_site": "" - }, - "Slamdunk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.slamdunk.ru/search/?&q={}&type=core_members", - "urlMain": "https://www.slamdunk.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Slantmagazine": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.slantmagazine.com/author/{}/", - "urlMain": "https://www.slantmagazine.com", - "usernameON": "justinclark", - "bad_site": "" - }, - "Slashdot": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": " - Slashdot User", - "errorMsg2": "The user you requested does not exist, no matter how much you wish this might be the case.", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://slashdot.org/~{}", - "urlMain": "https://slashdot.org", - "usernameON": "adam", - "bad_site": "" - }, - "Slides": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://slides.com/{}", - "urlMain": "https://slides.com/", - "usernameON": "adam", - "bad_site": "" - }, - "SlideShare": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Page no longer exists<", - "errorMsg2": "gen\">01.01.1970", - "errorTyp��": "message", - "url": "https://www.smallcar.ru/talk/profile.php?mode=viewprofile&u={}", - "urlMain": "https://www.smallcar.ru", - "usernameON": "lukey", - "bad_site": "" - }, - "Smart_lab": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://smart-lab.ru/profile/{}/", - "urlMain": "https://smart-lab.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "Smashcast": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.smashcast.tv/api/media/live/{}", - "urlMain": "https://www.smashcast.tv/", - "usernameON": "hello", - "bad_site": 1 - }, - "Smashrun": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://smashrun.com/{}/", - "urlMain": "https://smashrun.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Smogon": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://www.smogon.com/forums/members/?username={}", - "urlMain": "https://www.smogon.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Smolmama": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://smolmama.com/search.php?keywords=&terms=all&author={}", - "urlMain": "https://smolmama.com", - "usernameON": "Kisma", - "bad_site": "" - }, - "Smugmug": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W|[а-я-А-Я]", - "errorTyp��": "status_code", - "url": "https://{}.smugmug.com/", - "urlMain": "https://smugmug.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Smule": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Right tune, wrong note", - "errorMsg2": "Page Not Found", - "errorTyp��": "message", - "url": "https://www.smule.com/{}", - "urlMain": "https://www.smule.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Snapchat": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.snapchat.com/add/{}", - "urlMain": "https://www.snapchat.com", - "usernameON": "adam22hoe", - "bad_site": "" - }, - "Snbforums": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://www.snbforums.com/members/?username={}", - "urlMain": "https://www.snbforums.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Snowjapan": { - "country": "🇯🇵", - "country_klas": "JP", - "errorMsg": "Found 0 results", - "errorMsg2": "large ipsType_light'>There were no results for", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://www.snowjapan.com/community/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://www.snowjapan.com", - "usernameON": "nisoko", - "bad_site": "" - }, - "Soborno": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://soborno.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://soborno.ru", - "usernameON": "arinasha", - "bad_site": "" - }, - "Soc-life.": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://soc-life.com/index/8-0-{}", - "urlMain": "http://soc-life.com", - "usernameON": "Ilona54", - "bad_site": "" - }, - "Sochi_profi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://sochi.profi.ru/profile/{}/", - "urlMain": "https://sochi.profi.ru", - "usernameON": "Irina", - "bad_site": "" - }, - "Social_librem": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://social.librem.one/@{}", - "urlMain": "https://social.librem.one", - "usernameON": "adam", - "bad_site": "" - }, - "Social_microsoft": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "The resource you are looking for has been removed", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://social.microsoft.com/profile/{}", - "urlMain": "https://social.microsoft.com", - "usernameON": "shartbandiha", - "bad_site": 1 - }, - "Social_tchncs": { - "country": "🇩🇪", - "country_klas": "DE", - "errorTyp��": "status_code", - "url": "https://social.tchncs.de/@{}", - "urlMain": "https://social.tchncs.de/", - "usernameON": "Milan", - "bad_site": "" - }, - "Socialblade": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://socialblade.com/youtube/user/{}", - "urlMain": "https://socialblade.com", - "usernameON": "fred", - "comments": "cf", - "bad_site": "" - }, - "Socioforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.socioforum.su/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.socioforum.su", - "usernameON": "adam", - "bad_site": "" - }, - "Socionics": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "http://www.socionics.org/user/Profile.aspx?username={}", - "urlMain": "http://www.socionics.org", - "usernameON": "RWinner", - "comments": "bad", - "bad_site": 1 - }, - "Softboard": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "<p class='ipsType_large ipsType", - "errorTyp��": "message", - "url": "https://softboard.ru/search/?q={}&quick=1&type=core_members", - "urlMain": "https://softboard.ru", - "usernameON": "Rambler", - "bad_site": "" - }, - "SoftwareInformer": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://users.software.informer.com/{}/", - "urlMain": "https://users.software.informer.com", - "usernameON": "adam", - "bad_site": "" - }, - "Solaris-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "<title>Hyundai Solaris клуб Россия", - "errorTyp��": "message", - "url": "https://solaris-club.net/forum/member.php?username={}", - "urlMain": "https://solaris-club.net", - "usernameON": "adam", - "bad_site": "" - }, - "Solo": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://solo.to/{}", - "urlMain": "https://solo.to", - "usernameON": "red", - "bad_site": "" - }, - "Soloby": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "QT Media 404", - "errorMsg2": "Универ soloBY", - "errorTyp��": "message", - "url": "http://www.soloby.ru/user/{}", - "urlMain": "http://www.soloby.ru", - "usernameON": "red", - "comments": "bad", - "bad_site": 1 - }, - "Somersoft": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.somersoft.com/members/?username={}", - "urlMain": "https://www.somersoft.com", - "usernameON": "johnhenry", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Sony-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.sony-club.ru/forum/members/?username={}", - "urlMain": "https://www.sony-club.ru", - "usernameON": "usman161rus", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Sony_stratege": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Сайт закрыт", - "errorMsg2": "Форум Sony - Stratege.ru", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://sony.stratege.ru/forums/member.php?username={}", - "urlMain": "https://sony.stratege.ru", - "usernameON": "kalpak", - "bad_site": "" - }, - "Sorento_kia-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://sorento.kia-club.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://sorento.kia-club.ru/", - "usernameON": "king", - "bad_site": "" - }, - "Sotoguide": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "url": "https://sotoguide.ru/users/{}/", - "urlMain": "https://sotoguide.ru", - "usernameON": "jura1987g", - "bad_site": 1 - }, - "SoundCloud": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://soundcloud.com/{}", - "urlMain": "https://soundcloud.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Soundex": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Результатов поиска нет", - "errorTyp��": "message", - "url": "https://soundex.ru/forum/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://soundex.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "Soundgym": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "exclusion": "[а-яА-Я]", - "url": "https://www.soundgym.co/member/profile?m={}", - "urlMain": "https://www.soundgym.co", - "usernameON": "raydrcougso", - "bad_site": "" - }, - "Soup": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://www.soup.io/author/{}", - "urlMain": "https://www.soup.io", - "usernameON": "cristina", - "bad_site": "" - }, - "SourceForge": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Page not found", - "errorMsg2": "error-page", - "errorTyp��": "message", - "url": "https://sourceforge.net/u/{}/profile/", - "urlMain": "https://sourceforge.net/", - "usernameON": "blue", - "headers": { - "Accept-Language": "ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", - "DNT": "1", - "Priority": "u=1", - "Connection": "keep-alive", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "none", - "Sec-Fetch-User": "?1", - "Sec-GPC": "1", - "TE": "trailers", - "Upgrade-Insecure-Requests": "1", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0" - }, - "bad_site": "" - }, - "Sourcewatch": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.sourcewatch.org/index.php?title=User:{}", - "urlMain": "https://www.sourcewatch.org", - "usernameON": "Rebekah_Wilce", - "bad_site": "" - }, - "Southklad": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Форум кладоискателей - Юг Клад - Информация", - "errorTyp��": "message", - "url": "https://southklad.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://southklad.ru", - "usernameON": "admin", - "bad_site": "" - }, - "Soylentnews": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "The user you requested does not exist, no matter how much you wish this might be the case.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://soylentnews.org/~{}", - "urlMain": "https://soylentnews.org", - "usernameON": "adam", - "bad_site": "" - }, - "Sp-shopogoliki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://sp-shopogoliki.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://sp-shopogoliki.ru", - "usernameON": "sima", - "bad_site": "" - }, - "Spaces": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://spaces.im/mysite/index/{}/", - "urlMain": "https://spaces.im", - "usernameON": "adam", - "comments": "bad", - "bad_site": "" - }, - "Spark": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://spark.ru/startup/{}", - "urlMain": "https://spark.ru", - "usernameON": "green", - "bad_site": "" - }, - "Spartak_msk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Вы не можете произвести поиск сразу", - "errorMsg2": "Информация", - "errorMsg3": "поиска: 0", - "errorTyp��": "message", - "url": "http://spartak.msk.ru/guest/search.php?keywords=&terms=all&author={}", - "urlMain": "http://spartak.msk.ru", - "usernameON": "malyushenko", - "bad_site": "" - }, - "Spb-projects": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://spb-projects.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://spb-projects.ru", - "usernameON": "Deij", - "bad_site": "" - }, - "Speakerdeck": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "User Not Found", - "errorMsg2": "loige", - "errorTyp��": "message", - "url": "https://speakerdeck.com/{}", - "urlMain": "https://speakerdeck.com", - "usernameON": "adam", - "bad_site": "" - }, - "Speedrun": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "not found.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://speedrun.com/user/{}", - "urlMain": "https://speedrun.com/", - "usernameON": "3Tau", - "bad_site": "" - }, - "Spiceworks": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://community.spiceworks.com/people/{}", - "urlMain": "https://community.spiceworks.co", - "usernameON": "adam", - "bad_site": "" - }, - "Spinchat": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.spinchat.com/hp/{}/", - "urlMain": "https://www.spinchat.com", - "usernameON": "Adam", - "bad_site": "" - }, - "Splatoon_wiki": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://splatoonwiki.org/wiki/User:{}", - "urlMain": "https://splatoonwiki.org", - "usernameON": "Hewer", - "bad_site": "" - }, - "Spletenie": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Страница не найдена", - "errorMsg2": "
", - "errorTyp��": "message", - "url": "https://forum.sportbox.ru/index.php?app=members&module=list&app=members&module=list&showall=0&sort_key=members_l_display_name&sort_order=asc&max_results=20&name_box=begins&name={}", - "urlMain": "https://forum.sportbox.ru", - "usernameON": "Thedolphin", - "bad_site": "" - }, - "Sports": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "%20", - "errorMsg": "Ничего не найдено", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.sports.ru/search/?query={}", - "urlMain": "https://www.sports.ru/", - "usernameON": "blue", - "comments": "cf", - "bad_site": "" - }, - "Sportsjournalists": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.sportsjournalists.com/members/?username={}", - "urlMain": "https://www.sportsjournalists.com", - "usernameON": "outofplace", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "SportsTracker": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "\"code\":\"404\"", - "errorMsg2": "Not found", - "errorTyp��": "message", - "url": "https://www.sports-tracker.com/view_profile/{}", - "urlMain": "https://www.sports-tracker.com/", - "urlProbe": "https://api.sports-tracker.com/apiserver/v1/user/name/{}", - "usernameON": "blue", - "bad_site": "" - }, - "Sportstracklive": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.sportstracklive.com/en/user/{}", - "urlMain": "https://www.sportstracklive.com", - "usernameON": "PaddyLewtas", - "bad_site": "" - }, - "Spotify_community": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "\t\t0 results", - "errorMsg2": "No search results found", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://community.spotify.com/t5/forums/searchpage/tab/user?q={}", - "urlMain": "https://community.spotify.com", - "usernameON": "adam", - "bad_site": "" - }, - "Sprashivai_CLOSEDEAD": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "url": "http://sprashivai.ru/{}?sl", - "urlMain": "http://sprashivai.ru", - "usernameON": "red", - "bad_site": 1 - }, - "Spursarmy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": ">Ошибка

", - "errorMsg2": "Профиль", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://spursarmy.com/profile/{}", - "urlMain": "https://spursarmy.com", - "usernameON": "Sloock", - "bad_site": "" - }, - "SPW": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.spw.ru/members/?username={}", - "urlMain": "https://forum.spw.ru", - "usernameON": "kato", - "ignore_status_code": true, - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "SQL": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "ничего не найдено", - "errorMsg2": "begin case_noresults", - "errorMsg3": "<TITLE>Òåõíè÷åñêîå Îáúÿâëåíèå", - "errorTyp��": "message", - "url": "https://www.sql.ru/forum/actualsearch.aspx?search=&sin=0&bid=0&a={}&ma=0&dt=-1&s=1&so=1", - "urlMain": "https://www.sql.ru", - "usernameON": "Birkhoff", - "comments": "bad", - "bad_site": 1 - }, - "Srclog": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://srclog.com/{}", - "urlMain": "https://srclog.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Ssb_wiki": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.ssbwiki.com/User:{}", - "urlMain": "https://www.ssbwiki.com", - "usernameON": "NotBen", - "bad_site": "" - }, - "Stackexchange": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No users matched your search", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://unix.stackexchange.com/users/filter?search={}&filter=Month&tab=Reputation", - "urlMain": "https://unix.stackexchange.com", - "usernameON": "telcom", - "bad_site": "" - }, - "Stackoverflow": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "p>No users matched your search", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://stackoverflow.com/users/?search={}", - "urlMain": "https://stackoverflow.com", - "usernameON": "adam", - "bad_site": "" - }, - "Stackoverflow_ES": { - "country": "🇪🇸", - "country_klas": "ES", - "errorMsg": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://stalkerbar.at.ua/index/8-0-{}", - "urlMain": "https://stalkerbar.at.ua", - "usernameON": "lordsfilmpw", - "bad_site": "" - }, - "Star-girl": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено", - "errorMsg2": "Информация", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "url": "https://star-girl.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://star-girl.ru", - "usernameON": "Patricia", - "comments": "bad", - "bad_site": "" - }, - "Star_Citizen": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "404 -", - "errorMsg2": "", - "errorTyp��": "message", - "url": "https://steamcommunity.com/groups/{}", - "urlMain": "https://steamcommunity.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Steamid": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Just a moment", - "errorMsg2": "Cloudflare", - "errorMsg3": "profile information", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://steamid.uk/profile/{}", - "urlMain": "https://steamid.uk/", - "comments": "cf", - "usernameON": "blue", - "bad_site": "" - }, - "Stereo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://stereo.ru/user/{}", - "urlMain": "https://stereo.ru/", - "usernameON": "Yamiha", - "bad_site": "" - }, - "Sti-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "404 Not Found", - "errorTyp��": "message", - "url": "http://www.sti-club.su/member.php?username={}", - "urlMain": "http://www.sti-club.su", - "usernameON": "Viktor85", - "bad_site": 1 - }, - "Stihi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Автор не найден", - "errorMsg2": "Поиск авторов", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.stihi.ru/avtor/{}", - "urlMain": "https://www.stihi.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "Stop-narko_info": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://stop-narko.info/search.php?keywords=&terms=all&author={}", - "urlMain": "http://stop-narko.info", - "usernameON": "Ergo", - "bad_site": "" - }, - "Stopgame": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://stopgame.ru/user/{}", - "urlMain": "https://stopgame.ru", - "usernameON": "Diml", - "bad_site": "" - }, - "Store_kde": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://store.kde.org/u/{}", - "urlMain": "https://store.kde.org", - "usernameON": "statman", - "bad_site": "" - }, - "Storycorps": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://archive.storycorps.org/user/{}/", - "urlMain": "https://archive.storycorps.org", - "usernameON": "adam", - "bad_site": "" - }, - "Stratege": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "Форум - Stratege.ru", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.stratege.ru/forums/member.php?username={}", - "urlMain": "https://www.stratege.ru", - "usernameON": "blue", - "bad_site": "" - }, - "Strava": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://www.strava.com/athletes/{}", - "urlMain": "https://www.strava.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Studfile": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://studfile.net/users/{}/", - "urlMain": "https://studfile.net", - "usernameON": "adam", - "bad_site": "" - }, - "Stunited": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "http://stunited.org/profile/{}", - "urlMain": "http://stunited.org", - "usernameON": "mani-vel", - "bad_site": 1 - }, - "Subeta": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Invalid user", - "errorMsg2": "Error", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://subeta.net/users/{}", - "urlMain": "https://subeta.net/", - "usernameON": "Brioche", - "comments": "cf", - "bad_site": "" - }, - "Subforums": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://subforums.net/members/?username={}", - "urlMain": "https://subforums.net", - "usernameON": "romator", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Substack": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://{}.substack.com/", - "urlMain": "https://substack.com/", - "usernameON": "irina", - "bad_site": "" - }, - "Sugoidesu": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://sugoidesu.net/members/?username={}", - "urlMain": "https://sugoidesu.net", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Suicidegirls": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.suicidegirls.com/members/{}/", - "urlMain": "https://www.suicidegirls.com", - "usernameON": "dtimm87", - "bad_site": "" - }, - "Suomi24": { - "country": "🇫🇮", - "country_klas": "FI", - "errorTyp��": "status_code", - "url": "https://www.suomi24.fi/profiili/{}", - "urlMain": "https://www.suomi24.fi", - "usernameON": "Kilgore", - "bad_site": "" - }, - "Superuser": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No users matched your search.", - "errorMsg2": "s-empty-state bg-black-025", - "errorTyp��": "message", - "url": "https://superuser.com/users?tab=Reputation&filter=all&search={}", - "urlMain": "https://superuser.com", - "usernameON": "adam", - "bad_site": "" - }, - "Support_mozilla": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Page Not Found | Mozilla", - "errorMsg2": "Sorry, we couldn't find the page you were looking for.", - "errorTyp��": "message", - "url": "https://support.mozilla.org/en-US/user/{}", - "urlMain": "https://support.mozilla.org", - "usernameON": "username", - "bad_site": "" - }, - "Suunto_Movescount_CLOSEDEAD": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "error=4&", - "errorMsg2": "<title>QT Media 404", - "errorTyp��": "message", - "url": "http://www.movescount.com/ru/members/{}", - "urlMain": "http://www.movescount.com", - "usernameON": "adam", - "bad_site": 1, - "comments": "https://www.suunto.com/" - }, - "Suzuki-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://suzuki-club.ru/members/?username={}", - "urlMain": "https://suzuki-club.ru", - "usernameON": "riphkin", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Suzuri": { - "country": "🇯🇵", - "country_klas": "JP", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://suzuri.jp/{}", - "urlMain": "https://suzuri.jp", - "usernameON": "boss", - "bad_site": "" - }, - "Svidbook": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://www.svidbook.ru/user/{}/", - "urlMain": "https://www.svidbook.ru/", - "usernameON": "Moon", - "comments": "bad", - "bad_site": 1 - }, - "Sweethome3d": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": " Error", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.sweethome3d.com/support/forum/viewmember;?member={}", - "urlMain": "https://www.sweethome3d.com", - "usernameON": "empereur", - "bad_site": "" - }, - "Swimming_forum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://forumswimming.ru/index/8-0-{}", - "urlMain": "http://forumswimming.ru/", - "usernameON": "irina", - "bad_site": "" - }, - "Syberpussy": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://syberpussy.com/members/?username={}", - "urlMain": "https://syberpussy.com", - "usernameON": "akira20m", - "bad_site": 1, - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Syktforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "404Ошибка! - Форум Сыктывкар. Форум города Сыктывкар", - "errorTyp��": "message", - "url": "http://syktforum.ru/profile/{}", - "urlMain": "http://syktforum.ru", - "usernameON": "TonyT", - "bad_site": 1 - }, - "Syktyvkar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://syktyvkar-online.ru/profile/{}", - "urlMain": "http://syktyvkar-online.ru", - "usernameON": "vcaun53", - "bad_site": 1 - }, - "Sysadmins": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Could not obtain user posts information", - "errorMsg2": "", - "errorTyp��": "message", - "errorMsg3": "
(Attention Required! | Cloudflare", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.sythe.org/members/?username={}", - "urlMain": "https://www.sythe.org", - "usernameON": "rskingp", - "bad_site": "" - }, - "T_baidu": { - "country": "🇨🇳", - "country_klas": "CN", - "errorTyp��": "response_url", - "url": "https://tieba.baidu.com/home/main?un={}", - "urlMain": "https://tieba.baidu.com", - "usernameON": "irina", - "bad_site": "" - }, - "Tabun": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://tabun.everypony.ru/profile/{}/", - "urlMain": "https://tabun.everypony.ru", - "usernameON": "adam", - "bad_site": "" - }, - "TalkDrugabuse": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "url": "https://talk.drugabuse.com/members/?username={}", - "urlMain": "https://talk.drugabuse.com", - "usernameON": "adam", - "bad_site": 1, - "comments": "cf", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Talkingsober": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://talkingsober.com/u/{}/summary", - "urlMain": "https://talkingsober.com", - "usernameON": "carljr", - "bad_site": "" - }, - "Talkstats": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "[а-яА-Я]", - "url": "https://www.talkstats.com/members/?username={}", - "urlMain": "https://www.talkstats.com", - "usernameON": "johnlee", - "bad_site": 1, - "comments": "bad", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Tamboff": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Извините, такого пользователя не существуе", - "errorMsg2": " - tamboff.ru ", - "errorTyp��": "message", - "url": "http://www.tamboff.ru/forum/profile.php?mode=viewprofile&u={}", - "urlMain": "http://www.tamboff.ru", - "usernameON": "z0dl9rnd", - "comments": "bad", - "bad_site": 1 - }, - "TamTam": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "maximum-scale=1", - "errorMsg2": "ТамТам", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://tamtam.chat/{}", - "urlMain": "https://tamtam.chat/", - "usernameON": "blue", - "bad_site": "" - }, - "Taringa_CLOSEDEAD": { - "country": "🇦🇷", - "country_klas": "AR", - "errorTyp��": "response_url", - "url": "https://www.taringa.net/{}", - "urlMain": "https://www.taringa.net/", - "usernameON": "BLUE", - "bad_site": 1 - }, - "Teakdoor": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorMsg2": "Please wait", - "errorTyp��": "message", - "url": "https://teakdoor.com/members/{}.html", - "urlMain": "https://teakdoor.com", - "usernameON": "joe-90", - "comments": "bad", - "bad_site": "" - }, - "Techdirt": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": " | Techdirt", - "errorMsg2": "", - "errorTyp��": "message", - "url": "https://www.techdirt.com/user/{}/", - "urlMain": "https://www.techdirt.com/", - "usernameON": "thatoneguy", - "bad_site": "" - }, - "Techpowerup": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://www.techpowerup.com/forums/members/?username={}", - "urlMain": "https://www.techpowerup.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Techrepublic": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.techrepublic.com/members/profile/{}/", - "urlMain": "https://www.techrepublic.com", - "usernameON": "Kentertainments75", - "bad_site": 1 - }, - "Tek-tips": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.tek-tips.com/userinfo.cfm?member={}", - "urlMain": "https://www.tek-tips.com/", - "usernameON": "red", - "bad_site": "" - }, - "Teknik": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "The user does not exist", - "errorMsg2": "Not Exist | Teknik ", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://user.teknik.io/{}", - "urlMain": "https://teknik.io/", - "usernameON": "red", - "bad_site": 1 - }, - "Telegram": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://t.me/{}", - "urlMain": "https://t.me/", - "usernameON": "Klaus", - "bad_site": "" - }, - "Telepropusk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://telepropusk.ru/forums/users/{}/", - "urlMain": "https://telepropusk.ru", - "usernameON": "telepropusk", - "bad_site": "" - }, - "Teletype": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://teletype.in/@{}", - "urlMain": "https://teletype.in", - "usernameON": "adam", - "bad_site": "" - }, - "Television_linternaute": { - "country": "🇫🇷", - "country_klas": "FR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://television.linternaute.com/profile/user/{}", - "urlMain": "https://television.linternaute.com", - "usernameON": "Radinoz", - "bad_site": "" - }, - "Tellonym": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://tellonym.me/{}", - "urlMain": "https://tellonym.me/", - "usernameON": "blue", - "comments": "cf", - "bad_site": "" - }, - "Tenchat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://tenchat.ru/{}", - "urlMain": "https://tenchat.ru", - "usernameON": "agreec", - "bad_site": "" - }, - "Teplak": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Извините, такого пользователя не существует", - "errorMsg2": "Теплый Стан :: ", - "errorMsg3": "Извините,", - "errorTyp��": "message", - "url": "http://www.teplak.ru/frm/profile.php?mode=viewprofile&u={}", - "urlMain": "http://www.teplak.ru", - "usernameON": "Lexa", - "comments": "zamedlenie", - "bad_site": 1 - }, - "Terminator": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://terminator-scc.net.ru/index/8-0-{}", - "urlMain": "http://terminator-scc.net.ru", - "usernameON": "red", - "bad_site": "" - }, - "Terminatorium": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "профиль забанен или удален", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://terminatorium.borda.ru/?32-{}", - "urlMain": "https://terminatorium.borda.ru/", - "usernameON": "tengu", - "bad_site": "" - }, - "Termoshop": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://termoshop.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://termoshop.ru/", - "usernameON": "yurez", - "bad_site": "" - }, - "Test_pypi": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "page\":0,\"totalMatches\":0", - "errorMsg2": "results\":[]", - "errorTyp��": "message", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://test.pypi.org/user/{}/", - "urlMain": "https://test.pypi.org", - "usernameON": "samsja", - "urlProbe": "https://deps.dev/_/search?q={}&system=PYPI&page=0&perPage=20", - "bad_site": "" - }, - "Tetongravity": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Please wait", - "errorMsg2": "This user has not registered and therefore does not have a profile to view", - "errorTyp��": "message", - "url": "https://www.tetongravity.com/forums/member.php/?username={}", - "urlMain": "https://www.tetongravity.com", - "usernameON": "RoooR", - "bad_site": "" - }, - "Texasguntalk": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "url": "https://www.texasguntalk.com/members/?username={}", - "urlMain": "https://www.texasguntalk.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Thaicat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.thaicat.ru/index/8-0-{}", - "urlMain": "http://www.thaicat.ru", - "usernameON": "SparcO", - "bad_site": "" - }, - "Theanswerbank": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "Welcome to the AnswerBank", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://www.theanswerbank.co.uk/members/{}", - "urlMain": "https://www.theanswerbank.co.uk", - "usernameON": "adam", - "bad_site": "" - }, - "Thebeautybrains": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://thebeautybrains.com/users/{}/", - "urlMain": "https://thebeautybrains.com", - "usernameON": "randys", - "bad_site": "" - }, - "Thebigboss": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "http://thebigboss.org/author/{}", - "urlMain": "http://thebigboss.org", - "usernameON": "adam", - "bad_site": "" - }, - "Thechessforum": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Page Not Found", - "errorMsg2": "Sorry, page not found", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://thechessforum.com/profile/{}/", - "urlMain": "https://thechessforum.com", - "usernameON": "menaalkhan", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Thechive": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://thechive.com/author/{}/", - "urlMain": "https://thechive.com", - "usernameON": "camrybishop", - "bad_site": "" - }, - "THEcommunity": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://thecommunity.ru/user/{}/", - "urlMain": "https://thecommunity.ru", - "usernameON": "pjslot", - "bad_site": "" - }, - "Thefastdiet": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "Sorry, ", - "errorMsg2": "page doesn", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://thefastdiet.co.uk/forums/users/{}/", - "urlMain": "https://thefastdiet.co.uk", - "usernameON": "fadepeacock", - "bad_site": "" - }, - "Thefastlaneforum": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "url": "https://www.thefastlaneforum.com/community/members/?username={}", - "urlMain": "https://www.thefastlaneforum.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Thelion": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "We are sorry but the following error has occurred.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "http://www.thelion.com/bin/profile.cgi?c=s&ru_name={}", - "urlMain": "http://www.thelion.com", - "usernameON": "adam", - "bad_site": "" - }, - "Themeforest": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://themeforest.net/user/{}", - "urlMain": "https://themeforest.net", - "usernameON": "adam", - "bad_site": "" - }, - "Theodysseyonline": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.theodysseyonline.com/user/@{}", - "urlMain": "https://www.theodysseyonline.com", - "usernameON": "adam", - "bad_site": "" - }, - "Theoutlander": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://theoutlander.ru/index/8-0-{}", - "urlMain": "http://theoutlander.ru", - "usernameON": "Parma", - "bad_site": "" - }, - "Thephysicsforum": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorMsg2": "The Physics Forum", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.thephysicsforum.com/members/{}.html", - "urlMain": "https://www.thephysicsforum.com", - "usernameON": "andrewc", - "bad_site": "" - }, - "Thesimsresource": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.thesimsresource.com/artists/{}/", - "urlMain": "https://www.thesimsresource.com/", - "usernameON": "soloriya", - "bad_site": "" - }, - "Thestudentroom": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "NoneNone", - "errorMsg2": "This user has not registered and therefore does not have a profile to view.", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.thestudentroom.co.uk/member.php?username={}", - "urlMain": "https://www.thestudentroom.co.uk", - "usernameON": "adam", - "bad_site": "" - }, - "Thevampirediaries": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://thevampirediaries.ru/user/{}/", - "urlMain": "http://thevampirediaries", - "usernameON": "PrestonPauh", - "comments": "no_oplata", - "bad_site": 1 - }, - "Theverge": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.theverge.com/users/{}", - "urlMain": "https://www.theverge.com", - "usernameON": "Patlex", - "bad_site": "" - }, - "Thewatchforum": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "[а-яА-Я]", - "url": "https://www.thewatchforum.co.uk/members/?username={}", - "urlMain": "https://www.thewatchforum.co.uk", - "usernameON": "wrench", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Thingiverse": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.thingiverse.com/{}/designs", - "urlMain": "https://www.thingiverse.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Thlaspi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://thlaspi.com/en/user/{}", - "urlMain": "https://thlaspi.com", - "usernameON": "eblinkoff", - "comments": "-t 22 good", - "bad_site": "" - }, - "Threads": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Threads", - "errorMsg2": "| Cloudflare", - "errorMsg3": "content=\"https://www.threads.com/login", - "errorTyp��": "message", - "headers": { - "Accept-Language": "ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", - "Priority": "u=1", - "DNT": "1", - "Host": "www.threads.com", - "Connection": "keep-alive", - "Upgrade-Insecure-Requests": "1", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "none", - "Sec-Fetch-User": "?1", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0" - }, - "url": "https://www.threads.com/@{}", - "urlMain": "https://www.threads.com", - "usernameON": "adam", - "bad_site": "" - }, - "TikTok": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tiktok.com/@{}?lang=ru-RU", - "urlMain": "https://www.tiktok.com/", - "headers": { - "Accept": "*/*", - "Sec-GPC": "1", - "Connection": "keep-alive", - "Host": "www.tiktok.com", - "User-Agent": "Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots)" - }, - "usernameON": "red", - "bad_site": "" - }, - "Tildes": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://tildes.net/user/{}", - "urlMain": "https://tildes.net", - "usernameON": "Palatino", - "bad_site": "" - }, - "Tinder": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Dating, Make Friends &", - "errorMsg2": "заводи друзейТинькофф", - "errorTyp��": "message", - "url": "https://www.tinkoff.ru/invest/social/profile/{}/", - "urlMain": "https://www.tinkoff.ru", - "usernameON": "Usual_user", - "bad_site": "" - }, - "Tjournal_CLOSEDEAD": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Мы все внимательно посмотрели, но ничего не нашли :(", - "errorMsg2": "Можно попробовать изменить поисковый запрос или пойти почитать", - "errorTyp��": "message", - "url": "https://tjournal.ru/search/v2/subsite/relevant?query={}", - "urlMain": "https://tjournal.ru", - "usernameON": "adam", - "bad_site": 1 - }, - "Tkgr": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://tkgr.ru/forum/member/{}", - "urlMain": "http://tkgr.ru/", - "usernameON": "siber", - "comments": "zamedlenie", - "bad_site": "" - }, - "Tl": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://tl.net/forum/profile.php?user={}", - "urlMain": "https://tl.net", - "usernameON": "adam", - "bad_site": "" - }, - "Tolyatty": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://tolyatty.net/user/{}/", - "urlMain": "http://tolyatty.net", - "usernameON": "derre-red", - "bad_site": 1 - }, - "Tomtom_CLOSEDEAD": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://discussions.tomtom.com/en/profile/{}", - "urlMain": "https://discussions.tomtom.com/", - "usernameON": "adam", - "bad_site": 1 - }, - "Toot_mstd": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "[а-яА-Я]", - "errorTyp��": "status_code", - "url": "https://toot.cat/@{}", - "urlMain": "https://toot.cat", - "usernameON": "bob", - "bad_site": "" - }, - "Topcheats": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://topcheats.ucoz.com/index/8-0-{}", - "urlMain": "https://topcheats.ucoz.com", - "usernameON": "sergeizakaz", - "bad_site": "" - }, - "Topdb": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "Извините, но пользователь не найден", - "errorTyp��": "message", - "url": "https://topdb.ru/{}", - "urlMain": "https://topdb.ru", - "usernameON": "sukaebana2017", - "bad_site": "" - }, - "Topwar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://topwar.ru/user/{}/", - "urlMain": "https://topwar.ru", - "usernameON": "datur", - "bad_site": "" - }, - "Torrent-soft": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://torrent-soft.net/user/{}/", - "urlMain": "https://torrent-soft.net", - "usernameON": "Baguvix", - "bad_site": "" - }, - "Totalstavki_CLOSEDEAD": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "[а-яА-Я]", - "url": "https://totalstavki.ru/forum/members/?username={}", - "urlMain": "https://totalstavki.ru", - "usernameON": "turbo", - "bad_site": 1, - "comments": "zakr", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Totseans_CLOSEDEAD": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "<title>Totseans", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "http://www.totseans.com/bbs/profile/{}", - "urlMain": "http://www.totseans.com", - "usernameON": "Vizier", - "comments": "RUblock", - "bad_site": 1 - }, - "Tottenhamhotspur": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "http://tottenhamhotspur.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://tottenhamhotspur.ru", - "usernameON": "rusiakos", - "bad_site": "" - }, - "Touristlink": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Members across the World", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://www.touristlink.com/user/{}", - "urlMain": "https://www.touristlink.com", - "usernameON": "green", - "comments": "Oplata", - "bad_site": 1 - }, - "Tourney": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "По вашему запросу ничего не найдено.", - "errorMsg2": "colspan=\"4\">", - "errorTyp��": "message", - "url": "http://www.tourney.ru/forum/userlist.php?username={}&show_group=-1&sort_by=username", - "urlMain": "http://www.tourney.ru", - "usernameON": "Spirit", - "bad_site": "" - }, - "Toxicbun": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "url": "https://toxicbun.com/@{}", - "urlMain": "https://toxicbun.com", - "usernameON": "Mark", - "comments": "bad", - "bad_site": 1 - }, - "Toyster": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "toyster.ru форум", - "errorTyp��": "message", - "url": "https://toyster.ru/forum/member.php?username={}", - "urlMain": "https://toyster.ru", - "usernameON": "DEMOH85", - "bad_site": "" - }, - "TrackmaniaLadder": { - "country": "🇫🇷", - "country_klas": "FR", - "errorMsg": "player unknown or invalid", - "errorMsg2": "NoneNone", - "errorMsg3": "player unknown or invalid", - "errorTyp��": "message", - "url": "http://en.tm-ladder.com/{}_rech.php", - "urlMain": "http://en.tm-ladder.com/index.php", - "usernameON": "blue", - "comments": "bad", - "bad_site": 1 - }, - "TradingView": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "This isn't the page you're looking for", - "errorMsg2": "", - "errorTyp��": "message", - "url": "https://www.tradingview.com/u/{}/", - "urlMain": "https://www.tradingview.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Trainsim": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorMsg2": "Cloudflare", - "errorMsg3": "Just a moment", - "errorTyp��": "message", - "url": "https://www.trainsim.com/vbts/member.php?username={}", - "urlMain": "https://www.trainsim.com/", - "usernameON": "adam", - "comments": "super", - "bad_site": 1 - }, - "Trakt": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.trakt.tv/users/{}", - "urlMain": "https://www.trakt.tv/", - "usernameON": "blue", - "bad_site": "" - }, - "Translatewiki": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://translatewiki.net/wiki/User:{}", - "urlMain": "https://translatewiki.net", - "usernameON": "Adam", - "bad_site": "" - }, - "Tranzilla": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "По данному запросу ничего не найдено.", - "errorMsg2": "><div class=\"info_block\"></div><h2>", - "errorMsg3": "Internal Server Error", - "errorTyp��": "message", - "url": "https://tranzilla.ru/search/?request=&search_type=t", - "urlMain": "https://tranzilla.ru", - "usernameON": "irina", - "bad_site": 1 - }, - "Trashbox": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "div_text_error2", - "errorTyp��": "message", - "url": "https://trashbox.ru/users/{}", - "urlMain": "https://trashbox.ru/", - "usernameON": "blue", - "bad_site": "" - }, - "Travelblog": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.travelblog.org/Bloggers/{}", - "urlMain": "https://www.travelblog.org", - "usernameON": "adam", - "bad_site": "" - }, - "Travelfish": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Private or invalid", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.travelfish.org/member_popup.php?u={}", - "urlMain": "https://www.travelfish.org", - "usernameON": "YeMeansWater", - "bad_site": "" - }, - "Travellerspoint": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.travellerspoint.com/users/{}/", - "urlMain": "https://www.travellerspoint.com", - "usernameON": "blue", - "bad_site": "" - }, - "Travis": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://travis-ci.community/u/{}/summary", - "urlMain": "https://travis-ci.community/", - "usernameON": "montana", - "bad_site": "" - }, - "Trello": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "model not found", - "errorMsg2": "Trello Server Error", - "errorTyp��": "message", - "url": "https://trello.com/{}", - "urlMain": "https://trello.com/", - "urlProbe": "https://trello.com/1/Members/{}", - "usernameON": "blue", - "bad_site": "" - }, - "Trictrac": { - "country": "🇫🇷", - "country_klas": "FR", - "errorTyp��": "status_code", - "url": "https://www.trictrac.net/mur/{}", - "urlMain": "https://www.trictrac.net", - "usernameON": "entelechie", - "bad_site": "" - }, - "Trilife": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "

", - "errorTyp��": "message", - "url": "https://trilife.ru/search/?q={}&sort=&entity=users&from=&to=", - "urlMain": "https://trilife.ru", - "usernameON": "irina", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Trinixy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://trinixy.ru/user/{}/", - "urlMain": "https://trinixy.ru", - "usernameON": "green", - "bad_site": "" - }, - "TripAdvisor": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "(!cancel)", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "headers": { - "Accept-Language": "ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", - "DNT": "1", - "Priority": "u=1", - "Connection": "keep-alive", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "none", - "Sec-Fetch-User": "?1", - "Sec-GPC": "1", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0" - }, - "url": "https://www.tripadvisor.com/Profile/{}", - "urlMain": "https://www.tripadvisor.com", - "usernameON": "blue", - "bad_site": "" - }, - "Tripline": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.tripline.net/{}", - "urlMain": "https://www.tripline.net", - "usernameON": "adam", - "bad_site": "" - }, - "Tripoto": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.tripoto.com/profile/{}", - "urlMain": "https://www.tripoto.com", - "usernameON": "kapilpandit", - "bad_site": "" - }, - "Tripster": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://tripster.ru/{}/", - "urlMain": "https://tripster.ru", - "usernameON": "adam", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Trisquel": { - "country": "🇪🇺", - "country_klas": "EU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://trisquel.info/it/users/{}", - "urlMain": "https://trisquel.info", - "usernameON": "redfox", - "bad_site": "" - }, - "Trp_red": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W[а-яА-Я]", - "errorTyp��": "status_code", - "url": "https://www.trp.red/follow/{}", - "urlMain": "https://www.trp.red", - "usernameON": "AlwaysStoic", - "bad_site": "" - }, - "Truckersmp": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://truckersmp.ru/{}", - "urlMain": "https://truckersmp.ru", - "usernameON": "RamanBY", - "bad_site": "" - }, - "Trueachievements": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.trueachievements.com/gamer/{}", - "urlMain": "https://www.trueachievements.com", - "usernameON": "metallicafan459", - "bad_site": "" - }, - "Truelancer": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This page could not be found.", - "errorMsg2": "404", - "errorTyp��": "message", - "url": "https://www.truelancer.com/freelancer/{}", - "urlMain": "https://www.truelancer.com", - "usernameON": "adam", - "bad_site": "" - }, - "Truesteamachievements": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "status_code", - "url": "https://truesteamachievements.com/gamer/{}", - "urlMain": "https://truesteamachievements.com", - "usernameON": "adam", - "comments": "cf", - "bad_site": "" - }, - "Truthbook": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Please wait", - "errorTyp��": "message", - "url": "https://forum.truthbook.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sk=t&sd=d&sr=posts&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://truthbook.com", - "usernameON": "fanofVan", - "bad_site": "" - }, - "Truthpodium": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://truthpodium.org/@{}", - "urlMain": "https://truthpodium.org", - "usernameON": "Bubba8613", - "bad_site": "" - }, - "Trworkshop": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "<title>Информация", - "errorMsg2": "Подходящих тем или сообщений не найдено.", - "errorTyp��": "message", - "url": "http://www.trworkshop.net/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://www.trworkshop.net", - "usernameON": "eric", - "bad_site": "" - }, - "Ttrails": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению, пользователь не найден", - "errorMsg2": "<title data-react-helmet=\"true\">Тропинки.ру", - "errorTyp��": "message", - "url": "https://ttrails.ru/users/{}", - "urlMain": "https://ttrails.ru", - "usernameON": "danika983", - "bad_site": "" - }, - "Ttsport": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://www.ttsport.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.ttsport.ru", - "usernameON": "Roos", - "comments": "bad", - "bad_site": "" - }, - "Tula": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://tula.net.ru/user/{}/", - "urlMain": "http://tula.net.ru", - "usernameON": "evgenij", - "bad_site": 1 - }, - "Tulup": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Нет записей, удовлетворяющих условиям запроса", - "errorMsg2": "

", - "errorTyp��": "message", - "url": "https://www.tulup.ru/noindex/userlist.php?search={}", - "urlMain": "https://www.tulup.ru", - "usernameON": "Murchik", - "bad_site": "" - }, - "Tumblr": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W|[а-яА-Я]", - "errorTyp��": "status_code", - "url": "https://{}.tumblr.com/", - "urlMain": "https://tumblr.com/", - "usernameON": "red", - "comments": "cf", - "bad_site": "" - }, - "Tunefind": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "false,\"err\":{\"name", - "errorMsg2": "Tunefind", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.tunefind.com/user/profile/{}", - "urlMain": "https://www.tunefind.com", - "usernameON": "adam", - "comments": "super", - "bad_site": "" - }, - "Turbina": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "url": "https://turbinatravels.com/authors/{}/", - "urlMain": "https://turbina.ru", - "usernameON": "maklai", - "comments": "bad", - "bad_site": "" - }, - "Turkey-info": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg2": "Пользователей: 0", - "errorTyp��": "message", - "url": "https://turkey-info.ru/forum/memberlist.php?username={}", - "urlMain": "https://turkey-info.ru", - "usernameON": "orduzulu", - "bad_site": "" - }, - "Turpravda": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "", - "errorMsg2": "Страница не найдена", - "errorTyp��": "message", - "url": "https://www.turpravda.ua/profile/{}/", - "urlMain": "https://www.turpravda.ua", - "usernameON": "iryna83", - "bad_site": "" - }, - "Tutor": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению, введенный вами адрес недоступен", - "errorMsg2": "dtk-front-nuxt</title", - "errorTyp��": "message", - "url": "https://tutor.ru/tutor/{}", - "urlMain": "https://tutor.ru", - "usernameON": "veronika-vikulova", - "bad_site": 1 - }, - "Tutsplus": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://tutsplus.com/authors/{}", - "urlMain": "https://tutsplus.com", - "usernameON": "gigi-sayfan", - "bad_site": "" - }, - "Tv-games": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "http://tv-games.ru/forum/member.php?username={}", - "urlMain": "http://tv-games.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "TVgab": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "For support, please email", - "errorMsg2": "The page you are looking", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://gab.com/{}", - "urlMain": "https://gab.com/", - "usernameON": "HomerWarren", - "comments": "RUblock", - "bad_site": "" - }, - "Tvtropes": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://tvtropes.org/pmwiki/pmwiki.php/Tropers/{}", - "urlMain": "https://tvtropes.org", - "usernameON": "ZheToralf", - "bad_site": "" - }, - "Tw_weibo": { - "country": "🇨🇳", - "country_klas": "CN", - "exclusion": "\\W|[а-я-А-Я]", - "errorMsg": "<!DOCTYPE", - "errorMsg2": "Oops!", - "errorTyp��": "message", - "url": "https://tw.weibo.com/{}", - "urlMain": "https://tw.weibo.com", - "usernameON": "wow36kr", - "comments": "ZAK_user", - "ignore_status_code": true, - "bad_site": 1 - }, - "Twentysix": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://twentysix.ru/profile/{}/created/topics/", - "urlMain": "https://twentysix.ru", - "usernameON": "AleksandrGrigorev", - "bad_site": "" - }, - "Twitch": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W|[а-я-А-Я]", - "errorMsg": "g:site_name' content='Twitch'><meta property='og:title' content='T", - "errorMsg2": "<title>Just a moment", - "errorMsg3": "content='@twitch'><link", - "errorTyp��": "message", - "url": "https://www.twitch.tv/{}", - "urlMain": "https://www.twitch.tv/", - "urlProbe": "https://m.twitch.tv/{}", - "usernameON": "adam", - "bad_site": "" - }, - "Twitter": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "invalid_username", - "errorMsg2": "desc\":\"Available!", - "errorMsg3": "valid\":true,", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://x.com/{}", - "urlMain": "https://x.com", - "urlProbe": "https://api.twitter.com/i/users/username_available.json?username={}", - "usernameON": "durov", - "bad_site": "" - }, - "Typeracer": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "<title>Profile Not Found", - "errorMsg2": "We couldn't find a profile for username:", - "errorTyp��": "message", - "url": "https://data.typeracer.com/pit/profile?user={}", - "urlMain": "https://data.typeracer.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Uanime": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Тем або повідомлень", - "errorMsg2": "Інформація", - "errorMsg3": "

Please wait", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://uanime.org.ua/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://uanime.org.ua", - "usernameON": "Antigonius", - "comments": "old", - "bad_site": 1 - }, - "Uaodessa": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://uaodessa.com/index/8-0-{}", - "urlMain": "https://uaodessa.com", - "usernameON": "Trentonbouri", - "bad_site": "", - "exclusion": "\\W" - }, - "Uazpatriot": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://uazpatriot.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://uazpatriot.ru", - "usernameON": "irina", - "bad_site": "" - }, - "Ubisoft_CLOSEDEAD": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://discussions.ubisoft.com/user/{}?lang=en-US", - "urlMain": "https://discussions.ubisoft.com", - "usernameON": "mrdarrek", - "bad_site": 1 - }, - "Uchportal": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.uchportal.ru/index/8-0-{}", - "urlMain": "https://www.uchportal.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Udemy": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://www.udemy.com/user/{}/", - "urlMain": "https://www.udemy.com", - "usernameON": "adammortimer", - "bad_site": "" - }, - "Ufocomm": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Найдено: 0 результатов", - "errorMsg2": "одожд", - "errorTyp��": "message", - "url": "https://www.ufocomm.ru/search/?&q={}&type=core_members", - "urlMain": "https://www.ufocomm.ru", - "usernameON": "vik", - "bad_site": "" - }, - "Uforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "url": "https://uforum.uz/member.php?username={}", - "urlMain": "https://uforum.uz", - "usernameON": "Constantin", - "bad_site": "" - }, - "Uft": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://uft.me/persons/{}", - "urlMain": "https://uft.me", - "usernameON": "darkelectro", - "comments": "old", - "bad_site": 1 - }, - "Ukraine-footbal": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Користувача не знайдено", - "errorMsg2": "403 Forbidden", - "errorMsg3": "User not found", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ukraine-footbal.at.ua/index/8-0-{}", - "urlMain": "https://ukraine-footbal.at.ua", - "usernameON": "pavelsamoylov2022", - "bad_site": "" - }, - "Ultimate-Guitar": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://ultimate-guitar.com/u/{}", - "urlMain": "https://ultimate-guitar.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Universemc": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://universemc.us/members/?username={}", - "urlMain": "https://universemc.us", - "usernameON": "sinnfein", - "comments": "RUblock", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Unixforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "unixforum.org - Информация", - "errorTyp��": "message", - "url": "https://unixforum.org/search.php?keywords=&terms=all&author={}", - "urlMain": "https://unixforum.org", - "usernameON": "adam", - "bad_site": "" - }, - "Unsorted": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Извините, такого пользователя не существует", - "errorMsg2": "unsorted ~ ", - "errorTyp��": "message", - "url": "https://unsorted.me/profile.php?mode=viewprofile&u={}", - "urlMain": "https://unsorted.me", - "usernameON": "DALDON", - "bad_site": "" - }, - "Unsplash": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://unsplash.com/@{}/likes", - "urlMain": "https://unsplash.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Untappd": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://untappd.com/user/{}", - "urlMain": "https://untappd.com", - "usernameON": "adam", - "bad_site": "" - }, - "Uphillathlete": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://uphillathlete.com/forums/users/{}/", - "urlMain": "https://uphillathlete.com", - "usernameON": "yamabu", - "bad_site": "" - }, - "Uralfishing": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "nowrap=\"nowrap\">

14403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mradchenko-ezo.ucoz.ru/index/8-0-{}", - "urlMain": "https://mradchenko-ezo.ucoz.ru", - "usernameON": "Telejaw", - "bad_site": "" - }, - "Forum_msa-iptv": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "Користувача не знайдено", - "errorTyp��": "message", - "url": "http://msa-iptv.net/index/8-0-{}", - "urlMain": "http://msa-iptv.net", - "usernameON": "grigorili", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_msextra": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "| Cloudflare", - "errorMsg3": "search at this time", - "errorTyp��": "message", - "url": "https://www.msextra.com/forums/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.msextra.com", - "usernameON": "Laminar", - "bad_site": "" - }, - "Forum_msfn": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://msfn.org/board/search/?q={}&quick=1&type=core_members", - "urlMain": "https://msfn.org", - "usernameON": "lmacri", - "bad_site": "" - }, - "Forum_msiu": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://msiwind.ucoz.net/index/8-0-{}", - "urlMain": "https://msiwind.ucoz.net", - "usernameON": "TimurR", - "bad_site": "" - }, - "Forum_mskwa": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "ничего не найдено", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://mskwa.foroesp.com/search.php?action=search&keywords=&author={}&forum=&search_in=0&sort_by=0&sort_dir=DESC&show_as=posts&search=%CE%F2%EF%F0%E0%E2%E8%F2%FC", - "urlMain": "https://mskwa.foroesp.com", - "usernameON": "tony", - "bad_site": "" - }, - "Forum_mssuao": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mssuao.my1.ru/index/8-0-{}", - "urlMain": "https://mssuao.my1.ru/", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_mt5": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorMsg2": "Forex Forum | Forex Trading Forums | MT5 Forum", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://forum.mt5.com/member.php?username={}", - "urlMain": "https://forum.mt5.com", - "usernameON": "adam", - "bad_site": 1 - }, - "Forum_mta-info": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mta-info.ru/index/8-0-{}", - "urlMain": "https://mta-info.ru", - "usernameON": "Online", - "bad_site": "" - }, - "Forum_mtbr": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.mtbr.com/members/?username={}", - "urlMain": "https://www.mtbr.com", - "usernameON": "aargar", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_mucs": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mucs.ucoz.ru/index/8-0-{}", - "urlMain": "https://mucs.ucoz.ru", - "usernameON": "Shinjitzu", - "bad_site": "" - }, - "Forum_muffingroup": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://forum.muffingroup.com/betheme/profile/{}", - "urlMain": "https://forum.muffingroup.com", - "usernameON": "charlie27", - "bad_site": "" - }, - "Forum_muppet": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not filled", - "errorMsg2": "Please wait", - "errorMsg3": "Sorry, ", - "errorTyp��": "message", - "headers": { - "Accept-Language": "ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", - "DNT": "1", - "Priority": "u=1", - "Connection": "keep-alive", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "none", - "Sec-Fetch-User": "?1", - "Sec-GPC": "1", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0" - }, - "exclusion": "[а-яА-Я]", - "url": "https://muppet.fandom.com/wiki/User:{}", - "urlMain": "https://muppet.fandom.com", - "usernameON": "Reidtaub", - "bad_site": "" - }, - "Forum_musclemecca": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://musclemecca.com/members/?username={}", - "urlMain": "https://musclemecca.com", - "usernameON": "tkd", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_musflat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://musflat.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://musflat.kamrbb.ru", - "usernameON": "555serg2005", - "bad_site": "" - }, - "Forum_musik3": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://musik3.ucoz.ru/index/8-0-{}", - "urlMain": "http://musik3.ucoz.ru/", - "usernameON": "Futbolki", - "bad_site": "" - }, - "Forum_muz-tv": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://muz-tv-forum.ucoz.ru/index/8-0-{}", - "urlMain": "https://muz-tv-forum.ucoz.ru", - "usernameON": "nadinvorobei", - "bad_site": "" - }, - "Forum_muzcom": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://muzcom.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://muzcom.kamrbb.ru", - "usernameON": "%CA%EE%ED%F0%E0%E4", - "bad_site": "" - }, - "Forum_muzlar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://muzlar.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://muzlar.kamrbb.ru", - "usernameON": "%F8%F3%EC%E8%EB%E8%ED", - "bad_site": "" - }, - "Forum_mxlinux": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://forum.mxlinux.org/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.mxlinux.org", - "usernameON": "Stevo", - "bad_site": "" - }, - "Forum_mya": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.mya-uk.org.uk/forums/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.mya-uk.org.uk", - "usernameON": "downbytheriver", - "bad_site": "" - }, - "Forum_myaudiq5": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.myaudiq5.com/members/?username={}", - "urlMain": "https://www.myaudiq5.com", - "usernameON": "sargeq5", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_mybb": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "По вашему запросу ничего не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://forum.mybb.ru/search.php?action=search&keywords=&author={}", - "urlMain": "https://forum.mybb.ru", - "usernameON": "Deff", - "bad_site": "" - }, - "Forum_mybeautyconsultant": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://mybeautyconsultant.net/forum/members/?username={}", - "urlMain": "https://mybeautyconsultant.net", - "usernameON": "blackcoffee", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_Mybirds": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, ", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.mybirds.ru/forums/search/?&q={}&type&quick=1&search_and_or=or&sortby=relevancy", - "urlMain": "https://www.mybirds.ru/", - "usernameON": "Tanban", - "bad_site": "" - }, - "Forum_mybmwi3": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.mybmwi3.com/members/?username={}", - "urlMain": "https://www.mybmwi3.com", - "usernameON": "robjones", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_mychevybolt": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.mychevybolt.com/members/?username={}", - "urlMain": "https://www.mychevybolt.com", - "usernameON": "timetoy", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_mycity-military": { - "country": "🇪🇺", - "country_klas": "EU", - "errorMsg": "tim imenom ne postoji ", - "errorMsg2": "MyCity Military", - "errorTyp��": "message", - "url": "https://www.mycity-military.com/Korisnik/{}/", - "urlMain": "https://www.mycity-military.com", - "usernameON": "Milija", - "bad_site": "" - }, - "Forum_mycoffee": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mycoffee.ucoz.ru/index/8-0-{}", - "urlMain": "https://mycoffee.ucoz.ru", - "usernameON": "Азазелло", - "bad_site": "" - }, - "Forum_mycoweb": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403", - "errorTyp��": "message", - "url": "https://myfc.ucoz.ru/index/8-0-{}", - "urlMain": "https://myfc.ucoz.ru", - "usernameON": "jag", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_myfocuselectric": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.myfocuselectric.com/members/?username={}", - "urlMain": "https://www.myfocuselectric.com", - "usernameON": "atikovi", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_myfriendsclub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://myfriendsclub.ucoz.ru/index/8-0-{}", - "urlMain": "https://myfriendsclub.ucoz.ru", - "usernameON": "crasnovp1t", - "bad_site": "" - }, - "Forum_myfxbook": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.myfxbook.com/members/{}", - "urlMain": "https://www.myfxbook.com", - "usernameON": "esmumuex", - "bad_site": "" - }, - "Forum_mygolfspy": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Sorry, page not found", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forum.mygolfspy.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.mygolfspy.com", - "usernameON": "bmdubya", - "bad_site": "" - }, - "Forum_myimiev": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://myimiev.com/members/?username={}", - "urlMain": "https://myimiev.com", - "usernameON": "jray3", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_myimmortal": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://myimmortal.forum24.ru/?32-{}", - "urlMain": "https://myimmortal.forum24.ru", - "usernameON": "de3fmjhhfq", - "bad_site": "" - }, - "Forum_Myjane": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "<title> - Женские форумы myJane", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Извините,", - "errorTyp��": "message", - "url": "http://forum.myjane.ru/profile.php?mode=viewprofile&u={}", - "urlMain": "http://forum.myjane.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_mymbonline": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.mymbonline.com/members/?username={}", - "urlMain": "https://www.mymbonline.com", - "usernameON": "odehboy", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_mymoscow": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://myslonim.by/index/8-0-{}", - "urlMain": "http://myslonim.by", - "usernameON": "wellnemo", - "bad_site": "" - }, - "Forum_myst": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://myst.ucoz.com/index/8-0-{}", - "urlMain": "https://myst.ucoz.com", - "usernameON": "vetal99977", - "bad_site": "" - }, - "Forum_mystic-school": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.mystic-school.ru/u/{}/summary", - "urlMain": "https://forum.postwrestling.com", - "usernameON": "ivan", - "bad_site": "" - }, - "Forum_mysticalgarland": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mysticalgarland.at.ua/index/8-0-{}", - "urlMain": "https://mysticalgarland.at.ua", - "usernameON": "rusanov19110088", - "bad_site": "" - }, - "Forum_mysurvival": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://mysurvivalforum.com/members/?username={}", - "urlMain": "https://mysurvivalforum.com", - "usernameON": "mekada", - "comments": "bad", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": 1 - }, - "Forum_mytractor": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.mytractorforum.com/members/?username={}", - "urlMain": "https://www.mytractorforum.com", - "usernameON": "fuzzy2", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_mytrans": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://mytrans.3dn.ru/index/8-0-{}", - "urlMain": "https://mytrans.3dn.ru", - "usernameON": "kirilvoshnovskiy", - "bad_site": "" - }, - "Forum_myvisualdatabase": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No users were", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://myvisualdatabase.com/forum/userlist.php?username={}&show_group=-1&sort_by=username&sort_dir=ASC&search=Search", - "urlMain": "https://myvisualdatabase.com", - "usernameON": "DriveSoft", - "bad_site": "" - }, - "Forum_myword": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://myword.borda.ru/?32-{}", - "urlMain": "https://myword.borda.ru", - "usernameON": "kaccob", - "bad_site": "" - }, - "Forum_myxlam": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://myxlam.clan.su/index/8-0-{}", - "urlMain": "https://myxlam.clan.su", - "usernameON": "nagimrasul", - "bad_site": "" - }, - "Forum_mzee": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.mzee.com/forum/members/?username={}", - "urlMain": "https://www.mzee.com", - "usernameON": "eduardo", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_n2td": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.n2td.org/index.php?members/&username={}", - "urlMain": "https://forum.n2td.org", - "usernameON": "dylansmall", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nabran": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.nabran.ru/index/8-0-{}", - "urlMain": "http://www.nabran.ru/", - "usernameON": "ghgjjg", - "bad_site": "" - }, - "Forum_nada25": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://nada25.ucoz.ru/index/8-0-{}", - "urlMain": "https://nada25.ucoz.ru", - "usernameON": "svn", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_nag": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пожалуйста, подождите", - "errorMsg2": "| Cloudflare", - "errorMsg3": "0 результатов", - "errorTyp��": "message", - "url": "https://forum.nag.ru/index.php?/search/&q={}&start_after=any", - "urlMain": "https://forum.nag.ru", - "usernameON": "frol13", - "bad_site": "" - }, - "Forum_nameberry": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://forum.nameberry.com/u/{}/summary", - "urlMain": "https://forum.nameberry.com", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_Namepros": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.namepros.com/members/?username={}", - "urlMain": "https://www.namepros.com", - "usernameON": "velted", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_napolimagazine": { - "country": "🇮🇹", - "country_klas": "IT", - "errorMsg": "Nessun argomento o messaggio", - "errorMsg2": "Al momento non ti", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.napolimagazine.info/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Cerca", - "urlMain": "https://www.napolimagazine.info/", - "usernameON": "pinos", - "bad_site": "" - }, - "Forum_narkomanija": { - "country": "🇪🇺", - "country_klas": "EU", - "errorMsg": "Information", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.narkomanija.ba/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forum.narkomanija.ba", - "usernameON": "sanela", - "bad_site": "" - }, - "Forum_narutoshiprus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://narutoshiprus.ucoz.ru/index/8-0-{}", - "urlMain": "https://narutoshiprus.ucoz.ru", - "usernameON": "fint333", - "bad_site": "" - }, - "Forum_nash-dialog": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://nash-dialog.com/members/?username={}", - "urlMain": "https://nash-dialog.com", - "usernameON": "nuarr", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nashaplaneta": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg2": "0 пользоват", - "errorTyp��": "message", - "url": "https://nashaplaneta.net/forum/memberlist.php?username={}", - "urlMain": "https://nashaplaneta.net", - "usernameON": "nausla", - "bad_site": "" - }, - "Forum_nashausadba": { - "country": "🇺🇦", - "country_klas": "UA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://nashausadba.com.ua/forum/members/?username={}", - "urlMain": "https://nashausadba.com.ua", - "usernameON": "manana", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_nashtransport": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "По вашему запросу ничего не найдено", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.nashtransport.ru/search/?q={}&quick=1&type=blog_entry", - "urlMain": "https://www.nashtransport.ru", - "usernameON": "kventz", - "bad_site": "" - }, - "Forum_nationsglory": { - "country": "🇫🇷", - "country_klas": "FR", - "errorMsg": "Erreur", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Pseudo inexistant", - "errorTyp��": "message", - "url": "https://nationsglory.fr/profile/{}", - "urlMain": "https://nationsglory.fr", - "usernameON": "nimomoney", - "bad_site": "" - }, - "Forum_navi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://forum.navi.gg/search?query=&orderByType=relevance&user=+§ion=&calendarDate=", - "urlMain": "https://forum.navi.gg/", - "usernameON": "termenator46", - "bad_site": "" - }, - "Forum_navyclub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://navyclub.ucoz.ru/index/8-0-{}", - "urlMain": "https://navyclub.ucoz.ru", - "usernameON": "Delfa", - "bad_site": "" - }, - "Forum_naydemvam": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "ничего не найдено", - "errorMsg2": "<title>Информация", - "errorTyp��": "message", - "url": "https://naydemvam.naydemvam.ru/search.php?action=search&keywords=&author={}&forum=&search_in=0&sort_by=0&sort_dir=DESC&show_as=posts&search=%CE%F2%EF%F0%E0%E2%E8%F2%FC", - "urlMain": "https://naydemvam.naydemvam.ru", - "usernameON": "Urri", - "bad_site": "" - }, - "Forum_nba777": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nba777.ucoz.ru/index/8-0-{}", - "urlMain": "https://nba777.ucoz.ru", - "usernameON": "JustinFem", - "bad_site": "" - }, - "Forum_nbcsportsedge": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W", - "errorMsg": "0 results", - "errorMsg2": "0 user", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forums.nbcsportsedge.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.nbcsportsedge.com", - "usernameON": "Jtraysfan", - "bad_site": 1 - }, - "Forum_Ne-kurim": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://ne-kurim.ru/members/?username={}", - "urlMain": "https://ne-kurim.ru/", - "usernameON": "gpp", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_necropolis": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://necropolis.ucoz.ru/index/8-0-{}", - "urlMain": "https://necropolis.ucoz.ru", - "usernameON": "RuTOR", - "bad_site": "" - }, - "Forum_nedvizimost": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://nedvizimost.ucoz.ru/index/8-0-{}", - "urlMain": "https://nedvizimost.ucoz.ru", - "usernameON": "natayovzhik", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_nemodniy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "НЕМОДНЫЙ КЛУБ.", - "errorTyp��": "message", - "url": "http://forum.nemodniy.ru/member.php?username={}", - "urlMain": "http://forum.nemodniy.ru", - "usernameON": "MEDBEDb", - "comments": "bad", - "bad_site": 1 - }, - "Forum_neodni": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.my-neodni.ucoz.ru/index/8-0-{}", - "urlMain": "http://www.my-neodni.ucoz.ru", - "usernameON": "probe505", - "bad_site": "" - }, - "Forum_neptuneos": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.neptuneos.com/public/u/{}", - "urlMain": "https://forum.neptuneos.com", - "usernameON": "leszek", - "bad_site": "" - }, - "Forum_nerchinsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nerchinsk.ucoz.ru/index/8-0-{}", - "urlMain": "https://nerchinsk.ucoz.ru/", - "usernameON": "tarogadanie11", - "bad_site": "" - }, - "Forum_netcookingtalk": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://netcookingtalk.com/forums/members/?username={}", - "urlMain": "https://netcookingtalk.com", - "usernameON": "rickismom", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_netdietam": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://netdietam.ucoz.ru/index/8-0-{}", - "urlMain": "https://netdietam.ucoz.ru/", - "usernameON": "lomaempochtu", - "bad_site": "" - }, - "Forum_netduma": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.netduma.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.netduma.com", - "usernameON": "vpn", - "bad_site": "" - }, - "Forum_nettractortalk": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nettractortalk.com/forums/members/?username={}", - "urlMain": "https://www.nettractortalk.com/", - "usernameON": "chennaicontainers", - "comments": "RUblock", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nevendaar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nevendaar.3dn.ru/index/8-0-{}", - "urlMain": "https://nevendaar.3dn.ru", - "usernameON": "Химера", - "bad_site": "" - }, - "Forum_neveroyatno": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://neveroyatno.ucoz.ru/index/8-0-{}", - "urlMain": "https://neveroyatno.ucoz.ru", - "usernameON": "serko78", - "bad_site": "" - }, - "Forum_new-journals": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://new-journals.at.ua/index/8-0-{}", - "urlMain": "https://new-journals.at.ua", - "usernameON": "petrjarik77", - "bad_site": "" - }, - "Forum_new-nedvigimost": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://new-nedvigimost.moy.su/index/8-0-{}", - "urlMain": "https://new-nedvigimost.moy.su", - "usernameON": "olgapet946", - "bad_site": "" - }, - "Forum_newcok": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://newcok.ru/index/8-0-{}", - "urlMain": "http://newcok.ru/", - "usernameON": "Kass", - "bad_site": "" - }, - "Forum_newjerseyhunter": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.newjerseyhunter.com/members/?username={}", - "urlMain": "https://www.newjerseyhunter.com", - "usernameON": "slayer1962", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_newlcn": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Sorry, but that user does not exist.", - "errorMsg2": ">Information</td>", - "errorTyp��": "message", - "url": "http://forum.newlcn.com/profile.php?mode=viewprofile&u={}", - "urlMain": "http://forum.newlcn.com", - "usernameON": "sckameikin22", - "bad_site": "" - }, - "Forum_newload_ucoz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://newload.ucoz.ru/index/8-0-{}", - "urlMain": "https://newload.ucoz.ru", - "usernameON": "Shinjitzu", - "bad_site": "" - }, - "Forum_newnissanz": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.newnissanz.com/members/?username={}", - "urlMain": "https://www.newnissanz.com", - "usernameON": "speczracer", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_newpower": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://newpower.at.ua/index/8-0-{}", - "urlMain": "https://newpower.at.ua", - "usernameON": "kot358194", - "bad_site": "" - }, - "Forum_newrider": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://newrider.com/members/?username={}", - "urlMain": "https://newrider.com", - "usernameON": "trewsers", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_newros": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://newros.ru/index/8-0-{}", - "urlMain": "http://newros.ru", - "usernameON": "mrferos921", - "bad_site": "" - }, - "Forum_newschoolers": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Please wait", - "errorMsg2": "Sorry, we couldn't find anything that matched your search query.", - "errorTyp��": "message", - "url": "https://www.newschoolers.com/search?tab=members&s={}", - "urlMain": "https://www.newschoolers.com", - "usernameON": "skierman", - "bad_site": "" - }, - "Forum_next-gazel": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован", - "errorMsg2": "Результатов поиска нет", - "errorTyp��": "message", - "url": "https://next-gazel.ru/forum/member.php?username={}", - "urlMain": "https://next-gazel.ru", - "usernameON": "cmd368tv", - "bad_site": "" - }, - "Forum_nexusmods": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forums.nexusmods.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.nexusmods.com", - "usernameON": "EvilFixer", - "bad_site": "" - }, - "Forum_nf-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://nf-club.ru/index/8-0-{}", - "urlMain": "http://nf-club.ru", - "usernameON": "SloNF", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_ngs": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": " <div class=\"create-a-post actually-show-error", - "errorMsg2": "Результатов, соответствующих Вашему запросу, не найдено", - "errorTyp��": "message", - "url": "https://forum.ngs.ru/search/?words={}&forum=all&match=username&limit=25", - "urlMain": "https://forum.ngs.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_nicolaspark": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nicolaspark.my1.ru/index/8-0-{}", - "urlMain": "https://nicolaspark.my1.ru", - "usernameON": "fox", - "bad_site": "" - }, - "Forum_niflheim": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://niflheim.world/members/?username={}", - "urlMain": "https://niflheim.world", - "usernameON": "mouro3100", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_Night_kharkov": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://night.kharkov.ua/index/8-0-{}", - "urlMain": "http://night.kharkov.ua", - "usernameON": "lauraao1", - "bad_site": "" - }, - "Forum_nikmc": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://nikmc-i.ucoz.ru/index/8-0-{}", - "urlMain": "http://nikmc-i.ucoz.ru", - "usernameON": "zaiacsania", - "bad_site": "" - }, - "Forum_nikola": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nikola-apx.ucoz.ru/index/8-0-{}", - "urlMain": "https://nikola-apx.ucoz.ru", - "usernameON": "Ilya", - "bad_site": "" - }, - "Forum_nikonites": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://nikonites.com/forum/members/?username={}", - "urlMain": "https://nikonites.com/", - "usernameON": "weebee", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nikopol": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nikopol.moy.su/index/8-0-{}", - "urlMain": "https://nikopol.moy.su", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_nikos": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://nikos.at.ua/index/8-0-{}", - "urlMain": "https://nikos.at.ua", - "usernameON": "Saymon", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_nim-lang": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://forum.nim-lang.org/profile/{}", - "urlMain": "https://forum.nim-lang.org", - "usernameON": "SolitudeSF", - "bad_site": "" - }, - "Forum_nintendo": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nintendoforums.com/members/?username={}", - "urlMain": "https://www.nintendoforums.com", - "usernameON": "dustinb12", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nissan": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nissanforums.com/members/?username={}", - "urlMain": "https://www.nissanforums.com", - "usernameON": "weeaboo123", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_nissanclub": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nissanclub.com/members/?username={}", - "urlMain": "https://www.nissanclub.com", - "usernameON": "administrator", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_nissanzclub": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nissanzclub.com/forum/members/?username={}", - "urlMain": "https://www.nissanzclub.com", - "usernameON": "mcn1smo", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_njofficer": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorMsg3": "Contact your hosting provider", - "errorTyp��": "message", - "url": "https://www.njofficer.com/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.njofficer.com", - "usernameON": "JRoberts", - "comments": "Oplata", - "bad_site": 1 - }, - "Forum_nkp": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nn2000.ucoz.ru/index/8-0-{}", - "urlMain": "https://nn2000.ucoz.ru", - "usernameON": "nn2000", - "bad_site": "" - }, - "Forum_nocd": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nocd.ru/index/8-0-{}", - "urlMain": "https://nocd.ru", - "usernameON": "Fridrih", - "bad_site": "" - }, - "Forum_noginsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://noginsk.ucoz.com/index/8-0-{}", - "urlMain": "https://noginsk.ucoz.com", - "usernameON": "Skyler", - "bad_site": "" - }, - "Forum_nohide": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://nohide.io/members/?username={}", - "urlMain": "https://nohide.io", - "usernameON": "gamerocs", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_nokia6230i": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://nokia6230i.ucoz.ru/index/8-0-{}", - "urlMain": "https://nokia6230i.ucoz.ru", - "usernameON": "Dim0271", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_nokiasoft": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403", - "errorTyp��": "message", - "url": "https://nokiasoft.3dn.ru/index/8-0-{}", - "urlMain": "https://nokiasoft.3dn.ru", - "usernameON": "OOccuts", - "bad_site": "", - "comments": "bad", - "exclusion": "\\W" - }, - "Forum_nomadbsd": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://forum.nomadbsd.org/u/{}/summary", - "urlMain": "https://forum.nomadbsd.org", - "usernameON": "borgio3", - "bad_site": "" - }, - "Forum_nonarko": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum-nonarko.ru/members/?username={}", - "urlMain": "https://forum-nonarko.ru", - "usernameON": "GAVR", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_nooneaboveus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "url": "https://nooneaboveus.ucoz.ru/index/8-0-{}", - "urlMain": "https://nooneaboveus.ucoz.ru", - "usernameON": "Лана", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_nordog": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nordog.ucoz.ru/index/8-0-{}", - "urlMain": "https://nordog.ucoz.ru", - "usernameON": "gutan1201", - "bad_site": "" - }, - "Forum_northernbrewer": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://forum.northernbrewer.com/users/{}/activity", - "urlMain": "https://forum.northernbrewer.com", - "usernameON": "joonze", - "bad_site": "" - }, - "Forum_northstandchat": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.northstandchat.com/members/?username={}", - "urlMain": "https://www.northstandchat.com", - "usernameON": "hitony", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nosmoking": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://nosmoking.ru/phpBB2/search.php?keywords=&terms=all&author={}", - "urlMain": "https://nosmoking.ru", - "usernameON": "irina", - "bad_site": "" - }, - "Forum_Not_606": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://not606.com/members/?username={}", - "urlMain": "https://not606.com", - "usernameON": "fromthestands", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_nousch1": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nousch1.ucoz.ru/index/8-0-{}", - "urlMain": "https://nousch1.ucoz.ru", - "usernameON": "Lostoff", - "bad_site": "" - }, - "Forum_novascotiahunting": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.novascotiahunting.com/members/?username={}", - "urlMain": "https://www.novascotiahunting.com", - "usernameON": "3macs1", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_novelupdates": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.novelupdates.com/members/?username={}", - "urlMain": "https://forum.novelupdates.com", - "usernameON": "lilly2805", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_novelupdatesforum": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.novelupdatesforum.com/members/?username={}", - "urlMain": "https://www.novelupdatesforum.com", - "usernameON": "parth37955", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_novfishing": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "К сожалению, возникла проблема", - "errorTyp��": "message", - "url": "https://novfishing.ru/search/?&q={}&type=core_members", - "urlMain": "https://novfishing.ru", - "usernameON": "red", - "bad_site": "" - }, - "Forum_novoe-chelovech": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "http://novoe-chelovech.ucoz.ru/index/8-0-{}", - "urlMain": "http://novoe-chelovech.ucoz.ru", - "usernameON": "Asteroidbum", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_novokrasnyanka": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://novokrasnyanka.ucoz.ua/index/8-0-{}", - "urlMain": "https://novokrasnyanka.ucoz.ua", - "usernameON": "vilniy", - "bad_site": "" - }, - "Forum_novsevkuchino": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://novsevkuchino.my1.ru/index/8-0-{}", - "urlMain": "https://novsevkuchino.my1.ru", - "usernameON": "Zews", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_npest": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://npest.moy.su/index/8-0-{}", - "urlMain": "https://npest.moy.su", - "usernameON": "Juku", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_nsk-cb": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "Insufficient Storage", - "errorTyp��": "message", - "url": "http://forum.nsk-cb.ru/memberlist.php?username={}", - "urlMain": "http://forum.nsk-cb.ru", - "usernameON": "abjectradical82", - "bad_site": "" - }, - "Forum_nsk_clan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://nsk.clan.su/index/8-0-{}", - "urlMain": "https://nsk.clan.su", - "usernameON": "Elnor", - "bad_site": "" - }, - "Forum_nsu": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "http://forum.nsu.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.nsu.ru", - "usernameON": "Znaika", - "bad_site": 1 - }, - "Forum_ntc_party": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://ntc.party/u/{}", - "urlMain": "https://ntc.party", - "usernameON": "tango", - "bad_site": "" - }, - "Forum_nudostar": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://nudostar.com/forum/members/?username={}", - "urlMain": "https://nudostar.com", - "usernameON": "ahmedhananii", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nulled_CLOSEDEAD": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.nulled.to/index.php?app=core&module=search&do=search&andor_type=and&search_author={}&search_content=both&search_app_filters[members][searchInKey]=members&search_app_filters[members][members][sortKey]=date&search_term=&search_app=members&search_app_filters[members][searchInKey]=members&search_app_filters[members][members][sortKey]=title&search_app_filters[members][members][sortDir]=", - "urlMain": "https://www.nulled.to", - "usernameON": "crybaby20240", - "bad_site": 1 - }, - "Forum_numis": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.numisforums.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.numisforums.com", - "usernameON": "rasiel", - "bad_site": "" - }, - "Forum_nunchaku": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>", - "errorTyp��": "message", - "url": "https://forum.nvworld.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.nvworld.ru", - "usernameON": "epddsns", - "bad_site": "" - }, - "Forum_nyangler": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://nyangler.com/members/?username={}", - "urlMain": "https://nyangler.com", - "usernameON": "leprechaun", - "comments": "zamedlenie", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nybass": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nybass.com/members/?username={}", - "urlMain": "https://www.nybass.com", - "usernameON": "jaysen", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_nyccnc": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Oops", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://nyccnc.com/forums/users/{}/", - "urlMain": "https://nyccnc.com/", - "usernameON": "ltborg", - "bad_site": "" - }, - "Forum_nycfire": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.nycfire.net/forums/members/?username={}", - "urlMain": "https://www.nycfire.net", - "usernameON": "signal73", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_obama_ucoz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://obama.ucoz.ru/index/8-0-{}", - "urlMain": "https://obama.ucoz.ru", - "usernameON": "uKc", - "bad_site": "" - }, - "Forum_obkon": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://obkon.ucoz.com/index/8-0-{}", - "urlMain": "https://obkon.ucoz.com", - "usernameON": "ninokids", - "bad_site": "" - }, - "Forum_obninskchess": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Page not found", - "errorMsg2": "404", - "errorTyp��": "message", - "url": "https://chessiki.ru/forums/profile/{}", - "urlMain": "https://chessiki.ru/", - "usernameON": "lvdraphael", - "bad_site": "" - }, - "Forum_obovcem": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://obovcem.ucoz.ru/index/8-0-{}", - "urlMain": "https://obovcem.ucoz.ru/", - "usernameON": "Obovcem", - "bad_site": "" - }, - "Forum_obovsem_piter": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://obzhorkinsajt.ucoz.ru/index/8-0-{}", - "urlMain": "https://obzhorkinsajt.ucoz.ru", - "usernameON": "iisus1996", - "bad_site": "" - }, - "Forum_octothorp": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.octothorp.team/user/{}", - "urlMain": "https://forum.octothorp.team", - "usernameON": "porkove", - "bad_site": "" - }, - "Forum_odessacrewing": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://odessacrewing.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://odessacrewing.kamrbb.ru", - "usernameON": "csplus", - "bad_site": "" - }, - "Forum_odinhram": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://odinhram.3dn.ru/index/8-0-{}", - "urlMain": "https://odinhram.3dn.ru", - "usernameON": "elenas", - "bad_site": "" - }, - "Forum_odinochestvo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://odinochestvo.moy.su/index/8-0-{}", - "urlMain": "https://odinochestvo.moy.su", - "usernameON": "Marion", - "bad_site": "" - }, - "Forum_odnokursniki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://odnokursniki.clan.su/index/8-0-{}", - "urlMain": "https://odnokursniki.clan.su", - "usernameON": "vsetransport", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_odonvv": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://odonvv.ru/index/8-0-{}", - "urlMain": "https://odonvv.ru", - "usernameON": "Vodoley", - "bad_site": "" - }, - "Forum_officiating": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "", - "errorMsg2": "Sorry", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://offthepost.org/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://offthepost.org", - "usernameON": "Bosc", - "bad_site": "" - }, - "Forum_ofo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ofo.ucoz.ru/index/8-0-{}", - "urlMain": "https://ofo.ucoz.ru", - "usernameON": "sudba", - "bad_site": "" - }, - "Forum_ogxbox": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.ogxbox.com/forums/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://www.ogxbox.com", - "usernameON": "dtomcat", - "bad_site": "" - }, - "Forum_ohiogamefishing": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.ohiogamefishing.com/members/?username={}", - "urlMain": "https://www.ohiogamefishing.com", - "usernameON": "deadeyedeek", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ohiosportsman": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.ohiosportsman.com/members/?username={}", - "urlMain": "https://www.ohiosportsman.com", - "usernameON": "pbudi59", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ohiowaterfowler": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.ohiowaterfowlerforum.com/members/?username={}", - "urlMain": "https://www.ohiowaterfowlerforum.com", - "usernameON": "jimmy81", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ohota-ribalka": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ohota-ribalka.at.ua/index/8-0-{}", - "urlMain": "https://ohota-ribalka.at.ua", - "usernameON": "gratch79", - "bad_site": "" - }, - "Forum_ohrana-truda": { - "country": "🇧🇾", - "country_klas": "BY", - "errorMsg": "0 результатов", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.ohrana-truda.by/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.ohrana-truda.by", - "usernameON": "admin", - "bad_site": "" - }, - "Forum_oih_med": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "403 Forbidden", - "errorMsg2": "Пользователь не найден", - "errorTyp��": "message", - "url": "https://oih.at.ua/index/8-0-{}", - "urlMain": "https://oih.at.ua", - "usernameON": "fiorella", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_oil-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "<title>Just a moment", - "errorMsg2": "Found 0 results", - "errorMsg3": "Найдено 0", - "errorTyp��": "message", - "url": "https://www.oil-club.ru/forum/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.oil-club.ru", - "usernameON": "tattoedarm", - "comments": "cf", - "bad_site": 1 - }, - "Forum_oilburners": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.oilburners.net/members/?username={}", - "urlMain": "https://www.oilburners.net", - "usernameON": "kansasidi", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_oklahomahunter": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.oklahomahunter.net/members/?username={}", - "urlMain": "https://www.oklahomahunter.net", - "usernameON": "drc458", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_okna-7": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://okna-7.my1.ru/index/8-0-{}", - "urlMain": "https://okna-7.my1.ru", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_old_ap": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://old.ap-pro.ru/index/8-0-{}", - "urlMain": "http://old.ap-pro.ru/", - "usernameON": "dkfllelfhtd", - "bad_site": "" - }, - "Forum_old_sukhoi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "robots\" content=\"noindex,follow", - "errorTyp��": "message", - "url": "http://old.sukhoi.ru/forum/member.php?username={}", - "urlMain": "http://old.sukhoi.ru", - "usernameON": "GreyWind", - "bad_site": "" - }, - "Forum_oldbel-kovalevo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://oldbel-kovalevo.ucoz.ru/index/8-0-{}", - "urlMain": "https://oldbel-kovalevo.ucoz.ru", - "usernameON": "skorodihin", - "bad_site": "" - }, - "Forum_oldclassiccar": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Sorry,", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.oldclassiccar.co.uk/forum/phpbb/phpBB2/profile.php?mode=viewprofile&u={}", - "urlMain": "https://www.oldclassiccar.co.uk", - "usernameON": "davids", - "bad_site": "" - }, - "Forum_oldmeloman": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://oldmeloman.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://oldmeloman.kamrbb.ru", - "usernameON": "gustava", - "bad_site": "" - }, - "Forum_oldones": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.oldones.org/index/8-0-{}", - "urlMain": "http://www.oldones.org", - "usernameON": "rpavel693", - "comments": "bad", - "bad_site": 1 - }, - "forum_oldpokemon": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg2": "0 пользователей", - "errorTyp��": "message", - "url": "https://forum.oldpokemon.ru/memberlist.php?sk=c&sd=a&username={}", - "urlMain": "https://forum.oldpokemon.ru", - "usernameON": "BisQuit", - "bad_site": 1 - }, - "Forum_olujaz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://olujaz.ucoz.ru/index/8-0-{}", - "urlMain": "https://olujaz.ucoz.ru", - "usernameON": "ccbeclexanthirt", - "bad_site": "" - }, - "Forum_oluss": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://oluss.at.ua/index/8-0-{}", - "urlMain": "https://oluss.at.ua", - "usernameON": "oluss", - "bad_site": "" - }, - "Forum_omaddiet": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://omaddiet.com/community/members/?username={}", - "urlMain": "https://omaddiet.com", - "usernameON": "sumeria9", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_omega": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://omegaforums.net/members/?username={}", - "urlMain": "https://omegaforums.net", - "usernameON": "fsg", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_oms": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://oms.ucoz.com/index/8-0-{}", - "urlMain": "https://oms.ucoz.com", - "usernameON": "pysarievai", - "bad_site": "" - }, - "Forum_omskmama": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Извините, такого пользователя не существует", - "errorMsg2": "ОмскМама", - "errorTyp��": "message", - "url": "https://forum.omskmama.ru/profile.php?mode=viewprofile&u={}", - "urlMain": "https://forum.omskmama.ru", - "usernameON": "vo24uk", - "bad_site": "" - }, - "Forum_onbankir": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://onbankir.moy.su/index/8-0-{}", - "urlMain": "https://onbankir.moy.su", - "usernameON": "burenokscody", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_oneclickchicks": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "One Click Chicks Forum", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://forum.oneclickchicks.com/member.php?username={}", - "urlMain": "https://forum.oneclickchicks.com", - "usernameON": "osreb", - "bad_site": "" - }, - "Forum_onefinitycnc": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.onefinitycnc.com/u/{}/summary", - "urlMain": "https://forum.onefinitycnc.com/", - "usernameON": "tahoe1840", - "bad_site": "" - }, - "Forum_online-dendy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://online-dendy.ru/index/8-0-{}", - "urlMain": "http://online-dendy.ru", - "usernameON": "fumssHesy", - "bad_site": "" - }, - "Forum_online-knigi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "url": "https://forum.online-knigi.com/members/?username={}", - "urlMain": "https://forum.online-knigi.com", - "usernameON": "brazilla", - "bad_site": 1, - "comments": "bad", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_online-money": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://online-money.3dn.ru/index/8-0-{}", - "urlMain": "https://online-money.3dn.ru", - "usernameON": "JafidNub", - "bad_site": "" - }, - "Forum_onlline-game_pp": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://onlline-game.pp.net.ua/index/8-0-{}", - "urlMain": "http://onlline-game.pp.net.ua", - "usernameON": "KREDO", - "bad_site": "" - }, - "Forum_onlyfans": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "robots\" content=\"noindex, nofollow", - "errorMsg2": "Not Found", - "errorMsg3": "Verification", - "errorTyp��": "message", - "url": "https://onlyfansforum.com/author/{}/", - "urlMain": "https://onlyfansforum.com", - "usernameON": "fapello", - "comments": "Oplata", - "bad_site": 1 - }, - "Forum_onlyrus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://onlyrus.ucoz.net/index/8-0-{}", - "urlMain": "https://onlyrus.ucoz.net", - "usernameON": "gromovmail", - "bad_site": "" - }, - "Forum_onlytech": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://onlytech.com/community/members/?username={}", - "urlMain": "https://onlytech.com", - "usernameON": "davidjohn91", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_onru": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://onru.my1.ru/index/8-0-{}", - "urlMain": "https://onru.my1.ru", - "usernameON": "Heavy", - "bad_site": "" - }, - "Forum_onz-shot": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://onz-shot.3dn.ru/index/8-0-{}", - "urlMain": "https://onz-shot.3dn.ru", - "usernameON": "WezhewBlesy", - "bad_site": "" - }, - "Forum_oopkmoskva": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://oopkmoskva.ucoz.ru/index/8-0-{}", - "urlMain": "https://oopkmoskva.ucoz.ru", - "usernameON": "standartserves", - "bad_site": "" - }, - "Forum_open-chess": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorTyp��": "message", - "url": "https://www.open-chess.org/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.open-chess.org", - "usernameON": "karakaniec", - "bad_site": "" - }, - "Forum_open_vanillaforums": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://open.vanillaforums.com/profile/{}", - "urlMain": "https://open.vanillaforums.com", - "usernameON": "haryono", - "bad_site": "" - }, - "Forum_openai": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://community.openai.com/u/{}", - "urlMain": "https://community.openai.com", - "usernameON": "haktan", - "bad_site": "" - }, - "Forum_openframeworks": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://forum.openframeworks.cc/u/{}/summary", - "urlMain": "https://forum.openframeworks.cc", - "usernameON": "red", - "bad_site": "" - }, - "Forum_opennebula": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.inductiveautomation.com/u/{}/summary", - "urlMain": "https://forum.opennebula.io", - "usernameON": "vani161998", - "bad_site": "" - }, - "Forum_openoffice": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorTyp��": "message", - "url": "https://forum.openoffice.org/en/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.openoffice.org", - "usernameON": "Diane9576", - "bad_site": "" - }, - "Forum_openstreetmap": { - "country": "🇫🇷", - "country_klas": "FR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.openstreetmap.fr/u/{}/summary", - "urlMain": "https://forum.openstreetmap.fr", - "usernameON": "gendy54", - "bad_site": "" - }, - "Forum_opensuse": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.opensuse.org/u/{}/summary", - "urlMain": "https://forums.opensuse.org", - "usernameON": "someuser7852", - "bad_site": "" - }, - "Forum_openwrt": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "data-preloaded=\"{"search":"{\\"posts\\":[],\\"users\\":[]", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.openwrt.org/search?q={}&search_type=users", - "urlMain": "https://forum.openwrt.org", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_optima": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.optimaforums.com/members/?username={}", - "urlMain": "https://www.optimaforums.com", - "usernameON": "aiden15", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_optina": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.optina.ru/search/?q={}&type=core_members", - "urlMain": "https://forum.optina.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_oranj": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://oranj.3dn.ru/index/8-0-{}", - "urlMain": "https://oranj.3dn.ru", - "usernameON": "kraudsmart803", - "bad_site": "" - }, - "Forum_orbiter": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.orbiter-forum.com/members/?username={}", - "urlMain": "https://www.orbiter-forum.com/", - "usernameON": "dgatsoulis", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_orbito": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://orbito.ucoz.ru/index/8-0-{}", - "urlMain": "https://orbito.ucoz.ru", - "usernameON": "keynbr", - "bad_site": "" - }, - "Forum_orchideus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://orchideus.ucoz.net/index/8-0-{}", - "urlMain": "http://orchideus.ucoz.net", - "usernameON": "Falcon", - "bad_site": "" - }, - "Forum_ord": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ord.at.ua/index/8-0-{}", - "urlMain": "https://ord.at.ua", - "usernameON": "thompson1986", - "bad_site": "" - }, - "Forum_orelhunter": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 обнаружено совпадений всего на сайте", - "errorMsg2": "0 Ïîëüçîâàòåëè íàéäåíî", - "errorMsg3": "Аккаунт заблокирован", - "errorTyp��": "message", - "url": "https://www.orelhunter.ru/search.php?stext={}", - "urlMain": "https://www.orelhunter.ru", - "usernameON": "zevocixy", - "bad_site": "" - }, - "Forum_org-invalid": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://org-invalid-sov.ucoz.ru/index/8-0-{}", - "urlMain": "https://org-invalid-sov.ucoz.ru", - "usernameON": "Riminy", - "bad_site": "" - }, - "Forum_originalpw": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "По вашему запросу ничего не найдено", - "errorTyp��": "message", - "url": "https://forum.originalpw.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.originalpw.com", - "usernameON": "FIESTA", - "bad_site": "" - }, - "Forum_orth": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://orth.ucoz.ru/index/8-0-{}", - "urlMain": "https://orth.ucoz.ru", - "usernameON": "svv", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_orthodox": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://orthodox.3dn.ru/index/8-0-{}", - "urlMain": "https://orthodox.3dn.ru", - "usernameON": "rob3k", - "bad_site": "" - }, - "Forum_oscraps": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://oscraps.com/community/members/?username={}", - "urlMain": "https://oscraps.com", - "usernameON": "prospurring", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_oslobodjenje": { - "country": "🇪🇺", - "country_klas": "EU", - "errorMsg": "Ništa nije pronađeno.", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.sport1.oslobodjenje.ba/memberlist.php?username={}", - "urlMain": "https://forum.sport1.oslobodjenje.ba", - "usernameON": "ARBET", - "bad_site": "" - }, - "Forum_ostrov": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ostrov.ucoz.net/index/8-0-{}", - "urlMain": "https://ostrov.ucoz.net", - "usernameON": "DENI30S", - "bad_site": "" - }, - "Forum_Oszone": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "http://forum.oszone.net/member.php?username={}", - "urlMain": "http://forum.oszone.net", - "usernameON": "adam", - "comments": "Oplata", - "bad_site": 1 - }, - "Forum_otelefonax": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://otelefonax.ucoz.ru/index/8-0-{}", - "urlMain": "https://otelefonax.ucoz.ru", - "usernameON": "Christophernot", - "bad_site": "" - }, - "Forum_otlichnica": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://otlichnica.ucoz.ru/index/8-0-{}", - "urlMain": "http://otlichnica.ucoz.ru/", - "usernameON": "iamlovergirl97", - "bad_site": "" - }, - "Forum_otpm": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://otpm.do.am/index/8-0-{}", - "urlMain": "https://otpm.do.am", - "usernameON": "ua4lor", - "bad_site": "" - }, - "Forum_otzyvby": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "не зарегистрирован", - "errorMsg2": "с вашего IP-адреса", - "errorTyp��": "message", - "url": "https://otzyv.ru/reguser.php?poisk={}", - "urlMain": "https://otzyv.ru", - "usernameON": "Elena31", - "bad_site": "" - }, - "Forum_ourbeagleworld": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.ourbeagleworld.com/members/?username={}", - "urlMain": "https://www.ourbeagleworld.com", - "usernameON": "lovebeagles", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ourdjtalk": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://ourdjtalk.com/djs/?username={}", - "urlMain": "https://ourdjtalk.com", - "usernameON": "spincin", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ourflowers": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ourflowers.ucoz.ru/index/8-0-{}", - "urlMain": "https://ourflowers.ucoz.ru", - "usernameON": "kirikibus23", - "bad_site": "" - }, - "Forum_ourperevoz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ourperevoz.ucoz.ru/index/8-0-{}", - "urlMain": "https://ourperevoz.ucoz.ru", - "usernameON": "vilniy", - "bad_site": "" - }, - "Forum_ourtravels": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://ourtravels.ru/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sk=t&sd=d&sr=posts&st=0&ch=300&t=0&sid=d95024f932e887fccc0e58315bcd2b5d&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://ourtravels.ru/", - "usernameON": "Maria", - "bad_site": "" - }, - "Forum_outdoors911": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "not registered ", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.outdoors911.com/reports/member.php?username={}", - "urlMain": "https://www.montanaowners.com", - "usernameON": "Legend1958", - "bad_site": "" - }, - "Forum_outdoorsdirectory": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.outdoorsdirectory.com/members/?username={}", - "urlMain": "https://forums.outdoorsdirectory.com", - "usernameON": "leryt", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_outpostgallifrey": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://outpostgallifrey.com/members/?username={}", - "urlMain": "https://outpostgallifrey.com", - "usernameON": "rocco", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ovcharka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://ovcharka.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://ovcharka.kamrbb.ru", - "usernameON": "Tuadash", - "bad_site": "" - }, - "Forum_over50schat": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.over50schat.com/u/{}/summary", - "urlMain": "https://forum.over50schat.com", - "usernameON": "flowerpower", - "bad_site": "" - }, - "Forum_overclock": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.overclock.net/members/?username={}", - "urlMain": "https://www.overclock.net/", - "usernameON": "chipp", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_Overclockers": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.overclockers.ru/memberlist.php?username={}", - "urlMain": "https://forums.overclockers.ru", - "usernameON": "patisson", - "bad_site": "" - }, - "Forum_ovo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://ovo.ucoz.ru/index/8-0-{}", - "urlMain": "http://ovo.ucoz.ru/", - "usernameON": "Vitu", - "bad_site": "" - }, - "Forum_ovtsoft": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ovtsoft.3dn.ru/index/8-0-{}", - "urlMain": "https://ovtsoft.3dn.ru", - "usernameON": "mpg25music", - "bad_site": "" - }, - "Forum_paboma": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://paboma.ucoz.ru/index/8-0-{}", - "urlMain": "https://paboma.ucoz.ru", - "usernameON": "paboma", - "bad_site": "" - }, - "Forum_packer": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.packerforum.com/members/?username={}", - "urlMain": "https://www.packerforum.com", - "usernameON": "weeds", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pagohku": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pagohku.ucoz.ru/index/8-0-{}", - "urlMain": "https://pagohku.ucoz.ru", - "usernameON": "askutov123", - "bad_site": "" - }, - "Forum_paid-to-click": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://paid-to-click.ucoz.ru/index/8-0-{}", - "urlMain": "https://paid-to-click.ucoz.ru", - "usernameON": "%D0%A8%D1%80%D1%83%D1%81", - "bad_site": "" - }, - "Forum_palemoon": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Pale Moon forum - Information", - "errorTyp��": "message", - "url": "https://forum.palemoon.org/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.palemoon.org", - "usernameON": "Moonchild", - "comments": "super", - "bad_site": 1 - }, - "Forum_palomniki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "Ошибка", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://palomniki.su/forum/profile/user-8-0-{}", - "urlMain": "http://palomniki.su", - "usernameON": "rius", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_panda3d": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://panda3d.org.ru/index/8-0-{}", - "urlMain": "http://panda3d.org.ru", - "usernameON": "ninth", - "bad_site": "" - }, - "Forum_pandawow": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "ipsAreaBackground_light ipsType_center ipsPad", - "errorTyp��": "message", - "url": "https://forum.pandawow.me/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.pandawow.me", - "usernameON": "buka", - "bad_site": "" - }, - "Forum_panigalev4club": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.panigalev4club.com/members/?username={}", - "urlMain": "https://www.panigalev4club.com/", - "usernameON": "admin", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_Panzer35": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://panzer35.ru/index/8-0-{}", - "urlMain": "http://panzer35.ru", - "usernameON": "Loki", - "bad_site": "" - }, - "Forum_papillonomania": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://papilon-falen.my1.ru/index/8-0-{}", - "urlMain": "https://papilon-falen.my1.ru", - "usernameON": "Антонитт", - "bad_site": "" - }, - "Forum_paranormal-news": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "http://paranormal-news.ru/index/8-0-{}", - "urlMain": "http://paranormal-news.ru", - "usernameON": "aeroy", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_parasha": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://parasha.do.am/index/8-0-{}", - "urlMain": "https://parasha.do.am", - "usernameON": "maximumextreeme", - "bad_site": "" - }, - "Forum_parents41": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "Сделать сайт просто", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://parents41.ru/index/8-0-{}", - "urlMain": "http://parents41.ru", - "usernameON": "Astary", - "comments": "bad", - "bad_site": 1 - }, - "Forum_parikmaher": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Найдено: 0 результатов", - "errorMsg2": "Результатов поиска нет", - "errorTyp��": "message", - "url": "https://parikmaher.net.ru/search/?q={}&quick=1&type=core_members", - "urlMain": "https://parikmaher.net.ru", - "usernameON": "sveta9630", - "bad_site": "" - }, - "Forum_parrotpilots": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://parrotpilots.com/members/?username={}", - "urlMain": "https://parrotpilots.com", - "usernameON": "captainmavic", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_partsdr": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "not registered", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forum.partsdr.com/member.php?username={}", - "urlMain": "https://forum.partsdr.com", - "usernameON": "Smarsh", - "bad_site": "" - }, - "Forum_Partyanimals": { - "country": "🇸🇬", - "country_klas": "SG", - "errorTyp��": "status_code", - "url": "https://forum.partyanimals.com/u/{}", - "urlMain": "https://forum.partyanimals.com", - "usernameON": "HighJack", - "bad_site": "" - }, - "Forum_pascalgamedevelopment": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have a profile to view", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.pascalgamedevelopment.com/member.php?username={}", - "urlMain": "https://www.pascalgamedevelopment.com", - "usernameON": "hkhkqoo", - "bad_site": "" - }, - "Forum_paulsat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://paulsat.ucoz.ru/index/8-0-{}", - "urlMain": "https://paulsat.ucoz.ru", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_pavlovskyposad": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Павловский Посад.ру - Информация", - "errorTyp��": "message", - "url": "http://forum.pavlovskyposad.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.pavlovskyposad.ru", - "usernameON": "zandr", - "bad_site": "" - }, - "Forum_pbi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pbi.my1.ru/index/8-0-{}", - "urlMain": "https://pbi.my1.ru/", - "usernameON": "codeflare", - "bad_site": "" - }, - "Forum_pcformat": { - "country": "🇵🇱", - "country_klas": "PL", - "errorTyp��": "status_code", - "url": "https://forum.pcformat.pl/{}-u", - "urlMain": "https://forum.pcformat.pl", - "usernameON": "raxer", - "bad_site": 1 - }, - "Forum_pcreview": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.pcreview.co.uk/members/?username={}", - "urlMain": "https://www.pcreview.co.uk", - "usernameON": "floppybootstomp", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pedelecs": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.pedelecs.co.uk/forum/members/?username={}", - "urlMain": "https://www.pedelecs.co.uk", - "usernameON": "pedalfettal", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_peklama_3dn": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://peklama.3dn.ru/index/8-0-{}", - "urlMain": "https://peklama.3dn.ru", - "usernameON": "arman02151", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_pembrokcity": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://pembrokcity.borda.ru/?32-{}", - "urlMain": "https://pembrokcity.borda.ru", - "usernameON": "fata", - "bad_site": "" - }, - "Forum_peredovaj": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.mus-peredovaj.ru/index/8-0-{}", - "urlMain": "http://www.mus-peredovaj.ru", - "usernameON": "ivanovvv817", - "bad_site": "" - }, - "Forum_pereval1959": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://pereval1959.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://pereval1959.kamrbb.ru", - "usernameON": "%CF%EE%F7%E5%EC%F3%F7%EA%E0", - "bad_site": "" - }, - "Forum_perevodchik": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://perevodchik-s-s.do.am/index/8-0-{}", - "urlMain": "https://perevodchik-s-s.do.am", - "usernameON": "hvttalatathui11", - "comments": "cf", - "bad_site": "" - }, - "Forum_perfect": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://perfect.ucoz.de/index/8-0-{}", - "urlMain": "http://perfect.ucoz.de", - "usernameON": "RomaOppop", - "bad_site": "" - }, - "Forum_perfectweddings": { - "country": "🇸🇬", - "country_klas": "SG", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.perfectweddings.sg/weddingforum/members/?username={}", - "urlMain": "https://www.perfectweddings.sg", - "usernameON": "dipaa", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pes_soccer": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pes-files.ru/index/8-0-{}", - "urlMain": "https://pes-files.ru", - "usernameON": "Drobjij", - "bad_site": "" - }, - "Forum_pet-s": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pet-s.ucoz.ru/index/8-0-{}", - "urlMain": "https://pet-s.ucoz.ru/", - "usernameON": "katya1931", - "bad_site": "" - }, - "Forum_petgb": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.petforums.co.uk/members/?username={}", - "urlMain": "https://www.petforums.co.uk", - "usernameON": "peterjosy", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_petropavlovka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.petropavlovka.my1.ru/index/8-0-{}", - "urlMain": "https://www.petropavlovka.my1.ru/", - "usernameON": "Fire4ik", - "bad_site": "" - }, - "Forum_pf-v": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "одождите", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://pf-v.ru/search/?q={}&quick=1&type=core_members", - "urlMain": "https://pf-v.ru/", - "usernameON": "oxy", - "bad_site": "" - }, - "Forum_phantomhelp": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://forum.phantomhelp.com/u/{}/summary", - "urlMain": "https://forum.phantomhelp.com", - "usernameON": "bob32014", - "bad_site": "" - }, - "Forum_phantompilots": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://phantompilots.com/members/?username={}", - "urlMain": "https://phantompilots.com", - "usernameON": "steve12321", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_philippe-fournier": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forum2.philippe-fournier-viger.com/search.php?keywords=&terms=all&author={}=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forum2.philippe-fournier-viger.com", - "usernameON": "Alva&sc", - "bad_site": "" - }, - "Forum_philosophicalvegan": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://philosophicalvegan.com/search.php?keywords=&terms=all&author={}", - "urlMain": "https://philosophicalvegan.com", - "usernameON": "Hey", - "bad_site": "" - }, - "Forum_phoenixrising": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.phoenixrising.me/members/?username={}", - "urlMain": "https://forums.phoenixrising.me", - "usernameON": "pattismith", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_phoneamommy": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.phoneamommy.com/Board/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.phoneamommy.com", - "usernameON": "SitterStacie", - "bad_site": "" - }, - "Forum_photographyreview": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorMsg2": "Sorry", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "http://forums.photographyreview.com/member.php?username={}", - "urlMain": "http://forums.photographyreview.com", - "usernameON": "Weskee32", - "bad_site": "" - }, - "Forum_photographytalk": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "div id=\"system-message\">", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.photographytalk.com/forum/search?searchuser={}&childforums=1", - "urlMain": "https://www.naturescapes.net", - "usernameON": "esseff", - "bad_site": "" - }, - "Forum_photos": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://photos.ucoz.ru/index/8-0-{}", - "urlMain": "https://photos.ucoz.ru", - "usernameON": "photos", - "bad_site": "" - }, - "Forum_photoshara": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://photoshara.ucoz.ru/index/8-0-{}", - "urlMain": "https://photoshara.ucoz.ru", - "usernameON": "hestilurte", - "bad_site": "" - }, - "Forum_phototerritory": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.phototerritory.ru/index/8-0-{}", - "urlMain": "http://www.phototerritory.ru", - "usernameON": "23a3sdasdasd322", - "bad_site": "" - }, - "Forum_phpbb_de": { - "country": "🇩🇪", - "country_klas": "DE", - "errorMsg": "Information", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.phpbb.de/community/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Suche", - "urlMain": "https://www.phpbb.de", - "usernameON": "db1982", - "comments": "super", - "bad_site": "" - }, - "Forum_phpfreaks": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.phpfreaks.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.phpfreaks.com", - "usernameON": "gizmola", - "bad_site": "" - }, - "Forum_physicianassistant": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.physicianassistantforum.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.physicianassistantforum.com", - "usernameON": "CAAdmission", - "comments": "cf", - "bad_site": "" - }, - "Forum_pickleberrypop": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://pickleberrypop.com/forum/members/?username={}", - "urlMain": "https://pickleberrypop.com", - "usernameON": "cathquillscrap", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pickup": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Найдено 0 результатов", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://forum.pickup.ru/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.pickup.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_pigeons": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.pigeons.biz/members/?username={}", - "urlMain": "https://www.pigeons.biz", - "usernameON": "utahraptor300", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pilotsofamerica": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.pilotsofamerica.com/community/members/?username={}", - "urlMain": "https://www.pilotsofamerica.com", - "usernameON": "wanttaja", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pinclub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pinclub.ucoz.ru/index/8-0-{}", - "urlMain": "https://pinclub.ucoz.ru", - "usernameON": "multatuli", - "bad_site": "" - }, - "Forum_pipca": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://pipca.6bb.ru/search.php?action=search&keywords=&author={}&forum=&search_in=0&sort_by=0&sort_dir=DESC&show_as=posts&search=%CE%F2%EF%F0%E0%E2%E8%F2%FC", - "urlMain": "https://pipca.6bb.ru", - "usernameON": "ola", - "bad_site": "" - }, - "Forum_pirate4x4": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.pirate4x4.com/members/?username={}", - "urlMain": "https://www.pirate4x4.com", - "usernameON": "jeepfan2022", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_piratehub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "url": "https://s1.piratehub.biz/members/?username={}", - "urlMain": "https://s1.piratehub.biz", - "usernameON": "timetobefirst", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_pirates": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://piratesforums.co/members/?username={}", - "urlMain": "https://piratesforums.co", - "usernameON": "sergey1337", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pirates-life": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://pirates-life.ru/index/8-0-{}", - "urlMain": "http://pirates-life.ru", - "usernameON": "alerg", - "comments": "bad", - "bad_site": "" - }, - "Forum_piratich": { - "country": "🇨🇿", - "country_klas": "CZ", - "errorMsg": "Nebyly nalezeny", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Sorry, ", - "errorTyp��": "message", - "url": "https://forum.pirati.cz/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Hledat", - "urlMain": "https://forum.pirati.cz", - "usernameON": "Hextus", - "bad_site": "" - }, - "Forum_pisatelforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pisatelforum.ucoz.ru/index/8-0-{}", - "urlMain": "https://pisatelforum.ucoz.ru", - "usernameON": "nix", - "bad_site": "" - }, - "Forum_pitbull-abakan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pitbull-abakan.3dn.ru/index/8-0-{}", - "urlMain": "https://pitbull-abakan.3dn.ru", - "usernameON": "Rolandpag", - "bad_site": "" - }, - "Forum_pixelmonrealms": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://pixelmonrealms.com/members/?username={}", - "urlMain": "https://pixelmonrealms.com", - "usernameON": "dragonowater", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_pkq-clan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pkq-clan.ucoz.com/index/8-0-{}", - "urlMain": "https://pkq-clan.ucoz.com", - "usernameON": "Pinupduzwah", - "bad_site": "" - }, - "Forum_planet-9": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.planet-9.com/members/?username={}", - "urlMain": "https://www.planet-9.com", - "usernameON": "deilenberger", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_planet-nefelana": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://planet-nefelana.ucoz.ru/index/8-0-{}", - "urlMain": "https://planet-nefelana.ucoz.ru", - "usernameON": "Nefelana", - "bad_site": "" - }, - "Forum_planetarium_kharkov": { - "country": "🇺🇦", - "country_klas": "UA", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://playlist-iptv.ucoz.ru/index/8-0-{}", - "urlMain": "http://playlist-iptv.ucoz.ru", - "usernameON": "altechst", - "bad_site": "" - }, - "Forum_playtime": { - "country": "🇩🇪", - "country_klas": "DE", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.playtime-forum.info/forum/members/?username={}", - "urlMain": "https://www.playtime-forum.info", - "usernameON": "Glumbi", - "bad_site": "" - }, - "Forum_plcforum": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "http://plcforum.uz.ua/search.php?keywords=&terms=all&author={}", - "urlMain": "http://plcforum.uz.ua", - "usernameON": "Novice", - "bad_site": "" - }, - "Forum_pling": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "UH OH! You're lost.", - "errorMsg2": "", - "errorTyp��": "message", - "url": "https://www.pling.com/u/{}", - "urlMain": "https://www.pling.com", - "usernameON": "dhyegoac2007", - "bad_site": "" - }, - "Forum_plodpitomnik": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://plodpitomnik.ru/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://plodpitomnik.ru", - "usernameON": "tag", - "comments": "super", - "bad_site": 1 - }, - "Forum_plumbing": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.plumbingforums.com/members/?username={}", - "urlMain": "https://www.plumbingforums.com/", - "usernameON": "miced69", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pmfun": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorTyp��": "message", - "url": "https://forum.pmfun.com/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.pmfun.com", - "usernameON": "JPSZone", - "bad_site": "" - }, - "Forum_pngindians": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.pngindians.com/members/?username={}", - "urlMain": "https://forums.pngindians.com", - "usernameON": "indianfan", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_podolsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Подольский городской форум - Информация", - "errorTyp��": "message", - "url": "https://forum.podolsk.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.podolsk.ru", - "usernameON": "irina", - "bad_site": "" - }, - "Forum_podrabotka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://podrabotka.3dn.ru/index/8-0-{}", - "urlMain": "https://podrabotka.3dn.ru", - "usernameON": "Tara", - "bad_site": "" - }, - "Forum_podrastem": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "http://podrastem.com/index/8-0-{}", - "urlMain": "http://podrastem.com", - "usernameON": "spenga", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_poezd-photo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://poezd-photo.ucoz.ru/index/8-0-{}", - "urlMain": "https://poezd-photo.ucoz.ru", - "usernameON": "rafikakenirov", - "bad_site": "" - }, - "Forum_pokatushki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pokatushki.ucoz.ru/index/8-0-{}", - "urlMain": "https://pokatushki.ucoz.ru", - "usernameON": "Mystic", - "bad_site": "" - }, - "Forum_pokebeach": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.pokebeach.com/forums/members/?username={}", - "urlMain": "https://www.pokebeach.com", - "usernameON": "geodugtrio", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_pokemine": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W[а-яА-Я]", - "errorMsg": "0 results", - "errorMsg2": "0 user", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "http://forum.pokemine.gg/search/?q={}&type=core_members", - "urlMain": "http://forum.pokemine.gg", - "usernameON": "czoko68", - "bad_site": "" - }, - "Forum_pokemmo": { - "country": "🇪🇺", - "country_klas": "EU", - "errorMsg": "Found 0 results", - "errorMsg2": "There were no results for your search. ", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://forums.pokemmo.eu/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://forums.pokemmo.eu", - "usernameON": "kayninexl", - "bad_site": "" - }, - "Forum_pokemonrevolution": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Found 0 results", - "errorMsg2": "There were no results for your search.", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://pokemonrevolution.net/forum/search/?q={}&quick=1&type=core_members", - "urlMain": "https://pokemonrevolution.net", - "usernameON": "Hack00", - "bad_site": "" - }, - "Forum_pokerchip": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.pokerchipforum.com/members/?username={}", - "urlMain": "https://www.pokerchipforum.com", - "usernameON": "dmcl924", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pokersrbija": { - "country": "🇪🇺", - "country_klas": "EU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.pokersrbija.com/u/{}", - "urlMain": "https://forum.pokersrbija.com", - "usernameON": "mim4dayi", - "bad_site": "" - }, - "Forum_pokerus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://pokerus.ru/index/8-0-{}", - "urlMain": "https://pokerus.ru", - "usernameON": "Mult", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_poligon29": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.politik-forum.eu/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.politik-forum.eu", - "usernameON": "Michi", - "bad_site": "" - }, - "Forum_politomsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://politomsk.ru/index/8-0-{}", - "urlMain": "http://politomsk.ru", - "usernameON": "slepuhin198427", - "bad_site": "" - }, - "Forum_polkadot": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.polkadot.network/u/{}/summary", - "urlMain": "https://forum.polkadot.network", - "usernameON": "muddlebee", - "bad_site": "" - }, - "Forum_pominovenieiv": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ponarama.my1.ru/index/8-0-{}", - "urlMain": "https://ponarama.my1.ru", - "usernameON": "realhacking", - "bad_site": "" - }, - "Forum_poodle": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.poodleforum.com/members/?username={}", - "urlMain": "https://www.poodleforum.com/", - "usernameON": "cowpony", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_popasnayalife": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://popasnayalife.at.ua/index/8-0-{}", - "urlMain": "https://popasnayalife.at.ua", - "usernameON": "AlisaBerne", - "bad_site": "" - }, - "Forum_popgun": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://popgun.org/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://popgun.ru", - "usernameON": "igor42", - "comments": "bad", - "bad_site": "" - }, - "Forum_popjustice": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://forum.popjustice.com/members/?username={}", - "urlMain": "https://forum.popjustice.com", - "usernameON": "dumper", - "bad_site": "" - }, - "Forum_porcheAU": { - "country": "🇦🇺", - "country_klas": "AU", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://porscheforum.com.au/search/?q={}&quick=1&type=core_members", - "urlMain": "https://porscheforum.com", - "usernameON": "tomo", - "bad_site": "" - }, - "Forum_porka": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://porki.ucoz.ru/index/8-0-{}", - "urlMain": "https://porki.ucoz.ru", - "usernameON": "porki", - "bad_site": "" - }, - "Forum_pornworld": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://pornworld.to/members/?username={}", - "urlMain": "https://pornworld.to", - "usernameON": "popeluka", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_portal-anime": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://portal-anime.ru/index/8-0-{}", - "urlMain": "http://portal-anime.ru", - "usernameON": "SASUKE1744", - "bad_site": "" - }, - "Forum_portirkutsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "http://portirkutsk.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://portirkutsk.ru", - "usernameON": "Tema28", - "bad_site": "" - }, - "Forum_posol_BLOCK_RU_IP": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://posol.ucoz.ru/index/8-0-{}", - "urlMain": "http://posol.ucoz.ru", - "usernameON": "umtor", - "comments": "bad", - "bad_site": "" - }, - "Forum_postwrestling": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.postwrestling.com/u/{}/summary", - "urlMain": "https://forum.postwrestling.com", - "usernameON": "nealflanagan", - "bad_site": "" - }, - "Forum_potystorony": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://potystorony.ucoz.ru/index/8-0-{}", - "urlMain": "https://potystorony.ucoz.ru", - "usernameON": "zaconnic", - "bad_site": "" - }, - "Forum_pouet": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "registered
403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pravmama.ucoz.ru/index/8-0-{}", - "urlMain": "https://pravmama.ucoz.ru", - "usernameON": "toolni", - "bad_site": "" - }, - "Forum_pravo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://pravo.r1v.ru/index/8-0-{}", - "urlMain": "http://pravo.r1v.ru", - "usernameON": "Arkchloush", - "comments": "bad", - "bad_site": 1 - }, - "Forum_pravoslavie": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://pravoslavie-forum.org/members/?username={}", - "urlMain": "https://pravoslavie-forum.org", - "usernameON": "serg", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pravoslavie-12": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pravoslavie-12.ucoz.ru/index/8-0-{}", - "urlMain": "https://pravoslavie-12.ucoz.ru", - "usernameON": "Admins", - "bad_site": "" - }, - "Forum_pravoslavie-alt": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.pravoslavie-alt.ru/index/8-0-{}", - "urlMain": "https://www.pravoslavie-alt.ru", - "usernameON": "Loginova19", - "comments": "Oplata", - "bad_site": 1 - }, - "Forum_pravoslavielove": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pravoslavielove.ucoz.ru/index/8-0-{}", - "urlMain": "https://pravoslavielove.ucoz.ru", - "usernameON": "Oles", - "bad_site": "" - }, - "Forum_predatel": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://predatel.ucoz.ua/index/8-0-{}", - "urlMain": "https://predatel.ucoz.ua", - "usernameON": "Старлей", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_pregnancy": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Извините, такого пользователя не существует", - "errorMsg2": "robots\" content=\"noindex, nofollow", - "errorMsg3": "Critical Error", - "errorTyp��": "message", - "url": "https://pregnancy.org.ua/forum/profile.php?mode=viewprofile&u={}", - "urlMain": "https://pregnancy.org.ua", - "usernameON": "Nadinka", - "bad_site": "" - }, - "Forum_prepas": { - "country": "🇫🇷", - "country_klas": "FR", - "errorMsg": "Aucun sujet ou message ne correspond à vos critères de recherche.", - "errorMsg2": "Please wait", - "errorMsg3": "Information", - "errorTyp��": "message", - "url": "https://forum.prepas.org/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.prepas.org", - "usernameON": "red", - "bad_site": "" - }, - "Forum_prepperforums": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.prepperforums.net/members/?username={}", - "urlMain": "https://www.prepperforums.net", - "usernameON": "paraquack", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pressball": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация\n ", - "errorTyp��": "message", - "url": "https://forum.pressball.by/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.pressball.by", - "usernameON": "zalgiris", - "bad_site": 1 - }, - "Forum_pressurewashingresource": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://pressurewashingresource.com/community/u/{}/summary", - "urlMain": "https://pressurewashingresource.com/", - "usernameON": "letterguy", - "bad_site": "" - }, - "Forum_prestashop": { - "country": "🇪🇺", - "country_klas": "EU", - "errorMsg": "0 result", - "errorMsg2": "Please wait", - "errorTyp��": "message", - "url": "https://www.prestashop.com/forums/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.prestashop.com", - "usernameON": "cmpm", - "bad_site": "" - }, - "Forum_prihoz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://forum.prihoz.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.prihoz.ru", - "usernameON": "grawicapa", - "bad_site": "" - }, - "Forum_primat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://primat.org/index/8-0-{}", - "urlMain": "http://primat.org", - "usernameON": "alyonaaaaaa", - "bad_site": "" - }, - "Forum_primetimer": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "There were no results", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.primetimer.com/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://forums.primetimer.com", - "usernameON": "athena", - "comments": "ZAK_user", - "bad_site": "" - }, - "Forum_primhunt": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://primhunt.ru/members/?username={}", - "urlMain": "https://primhunt.ru", - "usernameON": "gap", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_primkoniponi": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>", - "errorMsg2": "hidden\" name=\"quicksearch", - "errorTyp��": "message", - "url": "http://www.priorovod.ru/blog.php?username={}", - "urlMain": "http://www.priorovod.ru", - "usernameON": "topcar77", - "bad_site": "" - }, - "Forum_priroda77": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.privateinvestor2000.com/index/8-0-{}", - "urlMain": "http://www.privateinvestor2000.com", - "usernameON": "olga77kol", - "bad_site": "" - }, - "Forum_prizrak": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "ничего не найдено", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://prizrak.ws/search.php?action=search&keywords=&author={}&forum=&search_in=0&sort_by=0&sort_dir=DESC&show_as=posts&search=%CE%F2%EF%F0%E0%E2%E8%F2%FC", - "urlMain": "https://prizrak.ws", - "usernameON": "Jockers", - "bad_site": "" - }, - "Forum_prizyvnikmoy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://prizyvnikmoy.ru/index/8-0-{}", - "urlMain": "https://prizyvnikmoy.ru", - "usernameON": "t1984n2003", - "bad_site": "" - }, - "Forum_pro-cats": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "url": "http://pro-cats.ru/index/8-0-{}", - "urlMain": "http://pro-cats.ru", - "usernameON": "parrots", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_pro-edu": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pro-edu.ucoz.ru/index/8-0-{}", - "urlMain": "https://pro-edu.ucoz.ru", - "usernameON": "ViMo", - "bad_site": "" - }, - "Forum_pro-kleim": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://pro-kleim.ucoz.ru/index/8-0-{}", - "urlMain": "http://pro-kleim.ucoz.ru/", - "usernameON": "4047916", - "bad_site": "" - }, - "Forum_pro-zarabotok": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://pro-zarabotok.su/index/8-0-{}", - "urlMain": "http://pro-zarabotok.su", - "usernameON": "grusakpavel", - "comments": "bad", - "bad_site": 1 - }, - "Forum_pro100warezz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://pro100warezz.ucoz.ru/index/8-0-{}", - "urlMain": "https://pro100warezz.ucoz.ru", - "usernameON": "jasurbekvideo1987", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_probiv": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://probiv.cc/members/?username={}", - "urlMain": "https://probiv.cc", - "usernameON": "Valerun", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_prodigy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://prodigy.moy.su/index/8-0-{}", - "urlMain": "https://prodigy.moy.su", - "usernameON": "Jap", - "bad_site": "" - }, - "Forum_prodjex": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forums.prodjex.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.prodjex.com", - "usernameON": "shriyanshi", - "bad_site": "" - }, - "Forum_proekt-gaz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://proekt-gaz.ru/index/8-0-{}", - "urlMain": "http://proekt-gaz.ru", - "usernameON": "gaspar", - "bad_site": "" - }, - "Forum_proekt-ts-ow-wk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://proekt-ts-ow-wk.ucoz.ru/index/8-0-{}", - "urlMain": "https://proekt-ts-ow-wk.ucoz.ru", - "usernameON": "demi", - "bad_site": "" - }, - "Forum_prof": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://prof.forum24.ru/?32-{}", - "urlMain": "https://prof.forum24.ru", - "usernameON": "lahamar", - "bad_site": "" - }, - "Forum_prof-foto-video": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://prof-foto-video.ucoz.ru/index/8-0-{}", - "urlMain": "https://prof-foto-video.ucoz.ru", - "usernameON": "Montager", - "bad_site": "" - }, - "Forum_prof-rem-zona": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://prof-rem-zona.at.ua/index/8-0-{}", - "urlMain": "https://prof-rem-zona.at.ua", - "usernameON": "radopitopit0002", - "bad_site": "" - }, - "Forum_professionalmuscle": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.professionalmuscle.com/forums/index.php?members/&username={}", - "urlMain": "https://www.professionalmuscle.com", - "usernameON": "lk3", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_profile_astro": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://profile.astro-seek.com/{}", - "urlMain": "https://profile.astro-seek.com", - "usernameON": "sduraybito", - "bad_site": "" - }, - "Forum_profootball": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.profootballforums.com/members/?username={}", - "urlMain": "https://www.profootballforums.com", - "usernameON": "rowdy", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_progagarin": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://progagarin.ru/index/8-0-{}", - "urlMain": "http://progagarin.ru", - "usernameON": "Pol", - "bad_site": "" - }, - "Forum_prohashing": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.prohashing.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forums.prohashing.com", - "usernameON": "lewishamilton", - "bad_site": "" - }, - "Forum_project-ss": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://project-ss.ru/index/8-0-{}", - "urlMain": "http://project-ss.ru", - "usernameON": "oleg1980nik", - "comments": "bad", - "bad_site": 1 - }, - "Forum_projectpokemon": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Found 0 results", - "errorMsg2": "There were no results for your search.", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://projectpokemon.org/home/search/?q={}&quick=1&type=core_members", - "urlMain": "https://projectpokemon.org", - "usernameON": "insanenutter", - "bad_site": "" - }, - "Forum_prokireevsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://prokireevsk.ru/index/8-0-{}", - "urlMain": "http://prokireevsk.ru", - "usernameON": "WILDKATbjr", - "bad_site": "" - }, - "Forum_pron": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://pron.my1.ru/index/8-0-{}", - "urlMain": "http://pron.my1.ru/", - "usernameON": "Belryelug", - "bad_site": "" - }, - "Forum_propisnoy": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://prostoljud.my1.ru/index/8-0-{}", - "urlMain": "https://prostoljud.my1.ru", - "usernameON": "biblicalstudiesru", - "bad_site": "" - }, - "Forum_proxmox": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.proxmox.com/members/?username={}", - "urlMain": "https://forum.proxmox.com", - "usernameON": "emunt6", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_pskovchess": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://forum.pskovchess.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.pskovchess.ru", - "usernameON": "shakh", - "bad_site": "" - }, - "Forum_psp-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://psp-club.ucoz.net/index/8-0-{}", - "urlMain": "https://psp-club.ucoz.net", - "usernameON": "swp", - "bad_site": "" - }, - "Forum_psp1": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://psp1.do.am/index/8-0-{}", - "urlMain": "https://psp1.do.am", - "usernameON": "serg2037", - "bad_site": "" - }, - "Forum_psx-core": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://psx-core.ru/index/8-0-{}", - "urlMain": "https://psx-core.ru", - "usernameON": "pvc1", - "bad_site": "" - }, - "Forum_psxworld": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://psxworld.ru/index/8-0-{}", - "urlMain": "http://psxworld.ru", - "usernameON": "majerock", - "bad_site": "" - }, - "Forum_psy-dv_org": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://psy-dv.org/index/8-0-{}", - "urlMain": "https://psy-dv.org", - "usernameON": "Michael", - "bad_site": "" - }, - "Forum_psych": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.psychforums.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.psychforums.com", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_psyche": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "возникла проблема", - "errorMsg3": "Пожалуйста, подождите", - "errorTyp��": "message", - "url": "https://psyche.guru/forum/search/?q={}&quick=1&type=core_members", - "urlMain": "https://psyche.guru", - "usernameON": "red", - "bad_site": "" - }, - "Forum_psychobike": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.psychobike.com/members/?username={}", - "urlMain": "https://www.psychobike.com", - "usernameON": "streetfighterz", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_psystan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.psystan.ru/index/8-0-{}", - "urlMain": "http://www.psystan.ru", - "usernameON": "Olsestar", - "bad_site": "" - }, - "Forum_pt_at": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://pt.at.ua/index/8-0-{}", - "urlMain": "https://pt.at.ua/", - "usernameON": "novator197726", - "bad_site": "" - }, - "Forum_punkgazetka": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>http://forum.quake2.com.ru :: ", - "errorTyp��": "message", - "url": "https://forum.quake2.com.ru/profile.php?mode=viewprofile&u={}", - "urlMain": "https://forum.quake2.com.ru/", - "usernameON": "Khidalov", - "bad_site": "" - }, - "Forum_quakeworld": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W[а-яА-Я]", - "errorMsg": "not return any result. ", - "errorMsg2": "div class=\"table\" style=\"margin-bottom", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.quakeworld.nu/profiles/?u={}", - "urlMain": "https://www.quakeworld.nu", - "usernameON": "renzo", - "bad_site": "" - }, - "Forum_questionablequesting": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://forum.questionablequesting.com/members/?username={}", - "urlMain": "https://forum.questionablequesting.com", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_quik": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Кудряшов", - "errorMsg2": "указан код пользователя", - "errorTyp��": "message", - "url": "https://forum.quik.ru/user/{}/", - "urlMain": "https://forum.quik.ru", - "usernameON": "swerg", - "comments": "super", - "bad_site": 1 - }, - "Forum_r1": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.r1-forum.com/members/?username={}", - "urlMain": "https://www.r1-forum.com", - "usernameON": "rabbit671", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_r3": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.r3-forums.com/members/?username={}", - "urlMain": "https://www.r3-forums.com", - "usernameON": "renboy", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_r4n": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация", - "errorMsg2": "сообщений не найдено", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://r4n.su/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "http://r4n.su", - "usernameON": "43Radio43", - "bad_site": "" - }, - "Forum_r4u": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://r4u.ucoz.net/index/8-0-{}", - "urlMain": "https://r4u.ucoz.net", - "usernameON": "adqeep", - "bad_site": "" - }, - "Forum_r6": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.r6-forum.com/members/?username={}", - "urlMain": "https://www.r6-forum.com", - "usernameON": "tylerjones997", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_r8talk": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.r8talk.com/members/?username={}", - "urlMain": "https://www.r8talk.com", - "usernameON": "stevekcropper", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ra1afe": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ra1afe.ucoz.ru/index/8-0-{}", - "urlMain": "https://ra1afe.ucoz.ru", - "usernameON": "Admin", - "bad_site": "" - }, - "Forum_ra4a": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://ra4a.ru/index/8-0-{}", - "urlMain": "http://ra4a.ru", - "usernameON": "Admin", - "bad_site": "" - }, - "Forum_rabbitdogs": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.rabbitdogs.net/members/?username={}", - "urlMain": "https://www.rabbitdogs.net", - "usernameON": "bigk", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_racefans": { - "country": "🇬🇧", - "country_klas": "GB", - "exclusion": "\\W[а-яА-Я]", - "errorMsg": "You've crashed", - "errorMsg2": "One moment", - "errorTyp��": "message", - "url": "https://www.racefans.net/members/{}/", - "urlMain": "https://www.racefans.net", - "usernameON": "douglaswebster", - "bad_site": "" - }, - "Forum_racer": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://racer.do.am/index/8-0-{}", - "urlMain": "https://racer.do.am", - "usernameON": "Jessika", - "bad_site": "" - }, - "Forum_racketboy": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.racketboy.com/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.racketboy.com", - "usernameON": "Limewater", - "bad_site": "" - }, - "Forum_radio1": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.radiodom.org/index/8-0-{}", - "urlMain": "http://www.radiodom.org", - "usernameON": "Andrew", - "bad_site": "" - }, - "Forum_radiotehnik72": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://radiotehnik72.ucoz.ru/index/8-0-{}", - "urlMain": "https://radiotehnik72.ucoz.ru", - "usernameON": "akhmalik72", - "bad_site": "" - }, - "Forum_rainbowhappy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://rainbowhappy.ucoz.ru/index/8-0-{}", - "urlMain": "https://rainbowhappy.ucoz.ru", - "usernameON": "FrankMate", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_rainmeter": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.rainmeter.net/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forum.rainmeter.net", - "usernameON": "Jeff", - "bad_site": "" - }, - "Forum_rakesh-jhunjhunwala": { - "country": "🇮🇳", - "country_klas": "IN", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://rakesh-jhunjhunwala.in/forum/members/?username={}", - "urlMain": "https://rakesh-jhunjhunwala.in", - "usernameON": "arjun", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_raks": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://raks.com.ua/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sk=t&sd=d&sr=posts&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://raks.com.ua", - "usernameON": "irina", - "bad_site": "" - }, - "Forum_rakursy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rakursy.ucoz.ru/index/8-0-{}", - "urlMain": "https://rakursy.ucoz.ru", - "usernameON": "Schoroch", - "bad_site": "" - }, - "Forum_rakwireless": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.rakwireless.com/u/{}/summary", - "urlMain": "https://forum.rakwireless.com", - "usernameON": "hobo", - "bad_site": "" - }, - "Forum_ram1500diesel": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.ram1500diesel.com/members/?username={}", - "urlMain": "https://www.ram1500diesel.com", - "usernameON": "kazimodo", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ramenskoe1": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ramenskoe1.ucoz.ru/index/8-0-{}", - "urlMain": "https://ramenskoe1.ucoz.ru", - "usernameON": "gorodisskyru", - "bad_site": "" - }, - "Forum_ranobes": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Just a moment", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.ranobes.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.ranobes.com", - "comments": "cf", - "usernameON": "Jaeri", - "bad_site": "" - }, - "Forum_rarib": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "DDOS-GUARD</title", - "errorMsg2": "Информация", - "errorMsg3": "технические работы", - "errorTyp��": "message", - "url": "https://forum.rarib.ru/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Поиск", - "urlMain": "https://forum.rarib.ag", - "usernameON": "kokky", - "bad_site": "" - }, - "Forum_rasmircoins": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rasmircoins.ucoz.ru/index/8-0-{}", - "urlMain": "https://rasmircoins.ucoz.ru/", - "usernameON": "Faghouri", - "bad_site": "" - }, - "Forum_raspberrypi": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Just a moment", - "errorTyp��": "message", - "url": "https://forums.raspberrypi.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forums.raspberrypi.com", - "usernameON": "adam", - "comments": "cf", - "ignore_status_code": true, - "bad_site": "" - }, - "Forum_ratsun": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://ratsun.net/search/?q={}&quick=1&type=core_members", - "urlMain": "https://ratsun.net", - "usernameON": "datzenmike", - "bad_site": "" - }, - "Forum_ravnovesie": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ravnovesie.ucoz.net/index/8-0-{}", - "urlMain": "https://ravnovesie.ucoz.net", - "usernameON": "Светлана", - "bad_site": "" - }, - "Forum_ray": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://discuss.ray.io/u/{}/summary", - "urlMain": "https://discuss.ray.io", - "usernameON": "Lacruche", - "bad_site": "" - }, - "Forum_rayven": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rayven.at.ua/index/8-0-{}", - "urlMain": "https://rayven.at.ua/", - "usernameON": "rayven", - "bad_site": "" - }, - "Forum_raznoe-vse": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://raznoe-vse.ucoz.ru/index/8-0-{}", - "urlMain": "https://raznoe-vse.ucoz.ru", - "usernameON": "egorsmirnowv", - "bad_site": "" - }, - "Forum_razrab": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://razrab.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://razrab.ru", - "usernameON": "ibev", - "bad_site": "" - }, - "Forum_razvilka": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rbk-portal.3dn.ru/index/8-0-{}", - "urlMain": "https://rbk-portal.3dn.ru", - "usernameON": "BeLoNe", - "bad_site": "" - }, - "Forum_rclone": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.rclone.org/u/{}", - "urlMain": "https://forum.rclone.org", - "usernameON": "Alexander_Andriishin", - "bad_site": "" - }, - "Forum_rcuniverse": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "not registered", - "errorMsg2": "Sorry", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.rcuniverse.com/forum/members/{}.html", - "urlMain": "https://www.rcuniverse.com", - "usernameON": "yuriy19", - "bad_site": "" - }, - "Forum_rdr2": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.rdr2.org/forums/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.rdr2.org", - "usernameON": "Parzival", - "bad_site": "" - }, - "Forum_rdw": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://rdw.ucoz.ru/index/8-0-{}", - "urlMain": "https://rdw.ucoz.ru", - "usernameON": "jabbarhuusaincs", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_real-sp": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://real-sp.ucoz.com/index/8-0-{}", - "urlMain": "https://real-sp.ucoz.com", - "usernameON": "Yuriysap", - "bad_site": "" - }, - "Forum_realistzoosafety": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>", - "errorMsg3": "banned", - "errorTyp��": "message", - "url": "https://forum.realsurf.com/forums/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forum.realsurf.com", - "usernameON": "admin", - "comments": "RUblock", - "bad_site": "" - }, - "Forum_rebkell": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Sorry,", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Critical Error", - "errorTyp��": "message", - "url": "https://boards.rebkell.net/profile.php?mode=viewprofile&u={}", - "urlMain": "https://boards.rebkell.net", - "usernameON": "rebkell", - "bad_site": "" - }, - "Forum_rebornbuddy": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "[а-яА-Я]", - "url": "https://rebornbuddy.com/xf/members/?username={}", - "urlMain": "https://rebornbuddy.com/", - "usernameON": "tony", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_recoveryRU": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://region13.ucoz.ru/index/8-0-{}", - "urlMain": "https://region13.ucoz.ru", - "usernameON": "VVS15081", - "bad_site": "" - }, - "Forum_reiki-healing": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://reiki-healing-l.org/index/8-0-{}", - "urlMain": "http://reiki-healing-l.org", - "usernameON": "YaIrina1993", - "bad_site": "" - }, - "Forum_reklama-kiev": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://reklama-kiev.at.ua/index/8-0-{}", - "urlMain": "https://reklama-kiev.at.ua", - "usernameON": "dsgvolia", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_relationlibre": { - "country": "🇫🇷", - "country_klas": "FR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://relationlibre.com/participant/{}/", - "urlMain": "https://relationlibre.com", - "usernameON": "laeti", - "bad_site": "" - }, - "Forum_relax-kei": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://relax-kei.ucoz.ru/index/8-0-{}", - "urlMain": "https://relax-kei.ucoz.ru", - "usernameON": "ztaletnted", - "bad_site": "" - }, - "Forum_religion": { - "country": "🇫🇷", - "country_klas": "FR", - "errorMsg": "Aucun membre trouvé pour ce critère de recherche", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum-religion.org/memberlist.php?username={}", - "urlMain": "https://forum-religion.org", - "usernameON": "Georges86", - "bad_site": "" - }, - "Forum_religion_s": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://religion.ucoz.ru/index/8-0-{}", - "urlMain": "https://religion.ucoz.ru", - "usernameON": "ArthurHip", - "bad_site": "" - }, - "Forum_rem-tv": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rem-tv.at.ua/index/8-0-{}", - "urlMain": "https://rem-tv.at.ua", - "usernameON": "fanttom", - "bad_site": "" - }, - "Forum_remont-lipetsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://remont-lipetsk.3dn.ru/index/8-0-{}", - "urlMain": "https://remont-lipetsk.3dn.ru", - "usernameON": "mattmabwerce", - "bad_site": "" - }, - "Forum_remsanteh": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://remsanteh.borda.ru/?32-{}", - "urlMain": "https://remsanteh.borda.ru", - "usernameON": "aleyusha", - "bad_site": "" - }, - "Forum_remzona-ekb": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://remzona-ekb.ucoz.ru/index/8-0-{}", - "urlMain": "https://remzona-ekb.ucoz.ru", - "usernameON": "REMZONA", - "bad_site": "" - }, - "Forum_render_otoy": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Information", - "errorMsg2": "Sorry, ", - "errorMsg3": "banned from this board", - "errorTyp��": "message", - "url": "https://render.otoy.com/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://render.otoy.com/", - "usernameON": "grazieromi", - "bad_site": "" - }, - "Forum_repolitics": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://repolitics.com/forums/search/?q={}&quick=1&type=core_members", - "urlMain": "https://repolitics.com", - "usernameON": "Zeitgeist", - "bad_site": "" - }, - "Forum_reptile": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не выбран", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.reptile.ru/forum/member.php?action=viewpro&member={}", - "urlMain": "https://www.reptile.ru", - "usernameON": "Zoofond", - "bad_site": "" - }, - "Forum_reptileforums": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.reptileforums.co.uk/members/?username={}", - "urlMain": "https://www.reptileforums.co.uk", - "usernameON": "malc", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_res-publica": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://res-publica.ucoz.org/index/8-0-{}", - "urlMain": "https://res-publica.ucoz.org", - "usernameON": "PUBLIUS", - "bad_site": "" - }, - "Forum_reseau-js": { - "country": "🇫🇷", - "country_klas": "FR", - "errorMsg": "0 résultat", - "errorMsg2": "Veuillez patienter", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.reseau-js.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.reseau-js.com", - "usernameON": "loup", - "bad_site": "" - }, - "Forum_reseau-naturiste": { - "country": "🇫🇷", - "country_klas": "FR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.reseau-naturiste.org/user/{}", - "urlMain": "https://www.reseau-naturiste.org/", - "usernameON": "Sephora", - "bad_site": "" - }, - "Forum_respecta": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.respecta.net/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.respecta.net/", - "usernameON": "NBN93", - "comments": "vzlom", - "bad_site": 1 - }, - "Forum_resto_clan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://resto.clan.su/index/8-0-{}", - "urlMain": "https://resto.clan.su", - "usernameON": "Riminy", - "bad_site": "" - }, - "Forum_retrievertraining": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.retrievertraining.net/members/?username={}", - "urlMain": "https://www.retrievertraining.net", - "usernameON": "johndbarrow", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_rewar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rewar.me/index/8-0-{}", - "urlMain": "https://rewar.me/", - "usernameON": "mashery", - "bad_site": "" - }, - "Forum_rexmill": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rexmill.ucoz.ru/index/8-0-{}", - "urlMain": "https://rexmill.ucoz.ru/", - "usernameON": "mun686", - "bad_site": "" - }, - "Forum_rezzoclub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.rezzoclub.ru/index/8-0-{}", - "urlMain": "http://www.rezzoclub.ru", - "usernameON": "Rapidrezzo", - "bad_site": "" - }, - "Forum_rg_myqip": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://rg.myqip.ru/?32-{}", - "urlMain": "https://rg.myqip.ru", - "usernameON": "marii", - "bad_site": "" - }, - "Forum_rhytmic": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://rhytmic.borda.ru/?32-{}", - "urlMain": "https://rhytmic.borda.ru", - "usernameON": "mammy", - "bad_site": "" - }, - "Forum_ribalka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://ribalka.ucoz.org/index/8-0-{}", - "urlMain": "http://ribalka.ucoz.org", - "usernameON": "Андрей0508", - "bad_site": "" - }, - "Forum_richelieu": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://rieltori.narod2.ru/index/8-0-{}", - "urlMain": "http://rieltori.narod2.ru", - "usernameON": "natayovzhik", - "bad_site": "" - }, - "Forum_riga-luna": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://riga-luna.ucoz.ru/index/8-0-{}", - "urlMain": "https://riga-luna.ucoz.ru", - "usernameON": "Talahassy", - "bad_site": "" - }, - "Forum_rima-pendzhieva": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rima-pendzhieva.ucoz.ru/index/8-0-{}", - "urlMain": "https://rima-pendzhieva.ucoz.ru", - "usernameON": "morozov2112", - "bad_site": "" - }, - "Forum_rio4": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rio4.ucoz.ru/index/8-0-{}", - "urlMain": "https://rio4.ucoz.ru/", - "usernameON": "Fakskaxip", - "bad_site": "" - }, - "Forum_rivianowners": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.rivianownersforum.com/members/?username={}", - "urlMain": "https://www.rivianownersforum.com", - "usernameON": "swampnut", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_rkls76": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rkls76.ucoz.ru/index/8-0-{}", - "urlMain": "https://rkls76.ucoz.ru", - "usernameON": "JosephBon", - "bad_site": "" - }, - "Forum_rks": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Извините, такого пользователя не существует ", - "errorMsg2": " :: ", - "errorTyp��": "message", - "url": "https://forum.rks.kr.ua/profile.php?mode=viewprofile&u={}", - "urlMain": "https://forum.rks.kr.ua", - "usernameON": "Mistika24", - "bad_site": "" - }, - "Forum_rllmukforum": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "0 results", - "errorMsg2": "Sorry", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.rllmukforum.com/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://www.rllmukforum.com", - "usernameON": "yakumo", - "bad_site": "" - }, - "Forum_rmmedia": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Указанный пользователь не найден. Пожалуйста, введите другое имя.", - "errorMsg2": "<title>Полезные пользователи | Rmmedia.ru", - "errorMsg3": "Пожалуйста, подождите", - "errorTyp��": "message", - "url": "https://rmmedia.ru/members/?username={}", - "urlMain": "https://rmmedia.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_rmrp": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.rmrp.ru/members/?username={}", - "urlMain": "https://forum.rmrp.ru", - "usernameON": "alqoile", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_roadbikereview": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.roadbikereview.com/members/?username={}", - "urlMain": "https://www.roadbikereview.com", - "usernameON": "finx", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_roadcontrol_BLOCK_RU_IP": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Подходящих тем или сообщений не найдено", - "errorMsg2": "Информация", - "errorMsg3": "page_pageNotFound", - "errorTyp��": "message", - "url": "https://roadcontrol.org/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://roadcontrol.org", - "usernameON": "%D0%90ndrew", - "bad_site": "" - }, - "Forum_rock-metalwave": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rock-metal-wave.ru/index/8-0-{}", - "urlMain": "https://rock-metal-wave.ru", - "usernameON": "0919swdsnb", - "bad_site": "" - }, - "Forum_rodgers": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "профиль забанен или удален", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://rodgersforum.borda.ru/?32-{}", - "urlMain": "https://rodgersforum.borda.ru", - "usernameON": "hata1979", - "bad_site": "" - }, - "Forum_rodniki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://rodniki.do.am/index/8-0-{}", - "urlMain": "http://rodniki.do.am", - "usernameON": "N278", - "bad_site": "" - }, - "Forum_rodnovira": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rodnovira.ucoz.ru/index/8-0-{}", - "urlMain": "https://rodnovira.ucoz.ru", - "usernameON": "vioooila", - "bad_site": "" - }, - "Forum_rodoslav": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>", - "errorTyp��": "message", - "url": "http://www.rohitab.com/discuss/index.php?app=core&module=search&do=search&andor_type=&search_app_filters[members][searchInKey]=members&search_app_filters[members][members][sortKey]=date&search_term={}&search_app=members&search_app_filters[members][searchInKey]=members&search_app_filters[members][members][sortKey]=date&search_app_filters[members][members][sortDir]=0", - "urlMain": "http://www.rohitab.com", - "usernameON": "adam", - "comments": "bad", - "bad_site": "" - }, - "Forum_rokslide": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://rokslide.com/forums/members/?username={}", - "urlMain": "https://rokslide.com", - "usernameON": "ukisan", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_rollerclub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorMsg3": "Срок регистрации домена истек", - "errorTyp��": "message", - "url": "http://forum.rollerclub.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.rollerclub.ru", - "usernameON": "snb", - "bad_site": "" - }, - "Forum_Rollitup": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://www.rollitup.org/members/?username={}", - "urlMain": "https://www.rollitup.org", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_romhacking": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://romhacking.ru/index/8-0-{}", - "urlMain": "https://romhacking.ru", - "usernameON": "debbietk1", - "bad_site": "" - }, - "Forum_romkaq": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://romkaq.ucoz.ru/index/8-0-{}", - "urlMain": "http://romkaq.ucoz.ru", - "usernameON": "luntik333vlz", - "bad_site": "" - }, - "Forum_root_cern": { - "country": "🇪🇺", - "country_klas": "EU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://root-forum.cern.ch/u/{}/summary", - "urlMain": "https://root-forum.cern.ch", - "usernameON": "bellenot", - "bad_site": "" - }, - "Forum_rosalinux": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация", - "errorMsg2": "Подходящих тем или сообщений не найдено.", - "errorMsg3": "Вы не можете произвести поиск сразу после предыдущего", - "errorTyp��": "message", - "url": "https://forum.rosalinux.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.rosalinux.ru", - "comments": "cf", - "usernameON": "Kelpee", - "bad_site": "" - }, - "Forum_rosen": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.rosen.com/u/{}/summary", - "urlMain": "https://forum.rosen.com", - "usernameON": "rdu2018", - "bad_site": "" - }, - "Forum_roses": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://roses.ucoz.ru/index/8-0-{}", - "urlMain": "https://roses.ucoz.ru", - "usernameON": "Roses", - "bad_site": "" - }, - "Forum_rostov": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://forum-rostov.ucoz.org/index/8-0-{}", - "urlMain": "https://forum-rostov.ucoz.org", - "usernameON": "Надя", - "bad_site": "" - }, - "Forum_rotarusofi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rotarusofi.ucoz.ru/index/8-0-{}", - "urlMain": "https://rotarusofi.ucoz.ru", - "usernameON": "Zvezdochka", - "bad_site": "" - }, - "Forum_rottweiler": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "http://rottweiler.ucoz.ru/index/8-0-{}", - "urlMain": "http://rottweiler.ucoz.ru/", - "usernameON": "Лекс2003", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_router": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.routerforums.com/members/?username={}", - "urlMain": "https://www.routerforums.com", - "usernameON": "difalkner", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_royalcaribbeanblog": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.royalcaribbeanblog.com/boards/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://www.royalcaribbeanblog.com/", - "usernameON": "mamashark", - "bad_site": "" - }, - "Forum_rpg_net": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.rpg.net/members/?username={}", - "urlMain": "https://forum.rpg.net", - "usernameON": "muddypaw", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_rpgcodex": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://rpgcodex.net/forums/members/?username={}", - "urlMain": "https://rpgcodex.net", - "usernameON": "jed", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_rpgnuke": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.rpgnuke.ru/search/?q={}&type=core_members", - "urlMain": "https://forum.rpgnuke.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_Rt20_getbb": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://www.rt20.getbb.ru/search.php?keywords=&terms=all&author=Tekumze111", - "urlMain": "http://www.rt20.getbb.ru", - "usernameON": "vevk", - "comments": "RUblock", - "bad_site": "" - }, - "Forum_ru-xbox": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ru-xbox.ru/index/8-0-{}", - "urlMain": "https://ru-xbox.ru", - "usernameON": "D1mkanx", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_ru_minecraft": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://ru-minecraft.ru/user/{}", - "urlMain": "https://ru-minecraft", - "usernameON": "dedepete", - "bad_site": "" - }, - "Forum_rudtp": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.rudtp.ru/members/?username={}", - "urlMain": "https://forum.rudtp.ru/", - "usernameON": "irma190", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_rugby": { - "country": "🇮🇹", - "country_klas": "IT", - "errorMsg": "Nessun argomento o messaggio con", - "errorMsg2": "Please wait", - "errorTyp��": "message", - "url": "https://forum.rugby.it/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.rugby.it", - "usernameON": "admin", - "comments": "super", - "bad_site": 1 - }, - "Forum_rumyantsevo": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rurip.ucoz.ru/index/8-0-{}", - "urlMain": "https://rurip.ucoz.ru", - "usernameON": "lomaempochtu", - "bad_site": "" - }, - "Forum_rus-sv-relig": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rus-sv.ucoz.ru/index/8-0-{}", - "urlMain": "https://rus-sv.ucoz.ru/", - "usernameON": "%D0%9E%D0%BB%D0%B0", - "bad_site": "" - }, - "Forum_rus_pravda": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://русскаяправда.su/index/8-0-{}", - "urlMain": "http://русскаяправда.su", - "usernameON": "PashaAlexpit", - "bad_site": "" - }, - "Forum_rusartknife": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rushistory.3dn.ru/index/8-0-{}", - "urlMain": "https://rushistory.3dn.ru", - "usernameON": "uesterr", - "bad_site": "" - }, - "Forum_rusich_ua": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://rusich.at.ua/index/8-0-{}", - "urlMain": "https://rusich.at.ua", - "usernameON": "gh1990", - "bad_site": "" - }, - "Forum_ruskeys": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://ruskeys.forum24.ru/?32-{}", - "urlMain": "https://ruskeys.forum24.ru/", - "usernameON": "aboc4", - "bad_site": "" - }, - "Forum_ruspatriot": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ruspatriot.ucoz.ru/index/8-0-{}", - "urlMain": "https://ruspatriot.ucoz.ru/", - "usernameON": "emailomaempochty", - "bad_site": "" - }, - "Forum_russiainwar": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://russian-france.ru/index/8-0-{}", - "urlMain": "http://russian-france.ru", - "usernameON": "Airin", - "bad_site": "" - }, - "Forum_russianskyeterriers": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://russims.ru/index/8-0-{}", - "urlMain": "http://russims.ru", - "usernameON": "Nikolette", - "bad_site": "" - }, - "Forum_russkie": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://russkie.ucoz.ru/index/8-0-{}", - "urlMain": "https://russkie.ucoz.ru", - "usernameON": "russkie", - "bad_site": "" - }, - "Forum_rvnetwork": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorTyp��": "message", - "url": "https://www.rvnetwork.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.rvnetwork.com/", - "usernameON": "GeorgiaHybrid", - "bad_site": "" - }, - "Forum_rwg_cc": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://rwg.cc/search/?q={}&quick=1&type=core_members", - "urlMain": "https://rwg.cc", - "usernameON": "Mike", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_rx7fb": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "http://www.rx7fb.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "http://www.rx7fb.com", - "usernameON": "Hellramsden", - "bad_site": "" - }, - "Forum_ryazandog": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "url": "https://rybnoe.net/index/8-0-{}", - "urlMain": "https://rybnoe.net", - "usernameON": "alavatsky", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_rzn": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://forum.rzn.info/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.rzn.info", - "usernameON": "Williamhar", - "bad_site": "" - }, - "Forum_rzngmu": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://rzngmu.ru/index/8-0-{}", - "urlMain": "http://rzngmu.ru/", - "usernameON": "artem300", - "bad_site": "" - }, - "Forum_s-kh": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.s-kh.ru/index/8-0-{}", - "urlMain": "http://www.s-kh.ru", - "usernameON": "fillkenna", - "bad_site": "" - }, - "Forum_s4me": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.s4me.info/members/?username={}", - "urlMain": "https://www.s4me.info", - "usernameON": "adrian", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_s7staff": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://s7staff.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://s7staff.kamrbb.ru", - "usernameON": "yadn", - "bad_site": "" - }, - "Forum_saabcentral": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.saabcentral.com/members/?username={}", - "urlMain": "https://www.saabcentral.com", - "usernameON": "aerokyle", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_sabnzbd": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forums.sabnzbd.org/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forums.sabnzbd.org", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_saddoboxing": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registere", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.saddoboxing.com/boxingforum/member.php?username={}", - "urlMain": "https://www.saddoboxing.com", - "usernameON": "Beanz", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Forum_safakulevo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://safakulevo.ucoz.ru/index/8-0-{}", - "urlMain": "https://safakulevo.ucoz.ru", - "usernameON": "ninokids", - "bad_site": "" - }, - "Forum_sailboards": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://sailboardsforum.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://sailboardsforum.com", - "usernameON": "Arf", - "bad_site": "" - }, - "Forum_sailingforums": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://sailingforums.com/members/?username={}", - "urlMain": "https://sailingforums.com", - "usernameON": "sweetime", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_sailnet": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.sailnet.com/members/?username={}", - "urlMain": "https://www.sailnet.com", - "usernameON": "colemj", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_saintsrowmods": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.saintsrowmods.com/forum/members/?username={}", - "urlMain": "https://www.saintsrowmods.com", - "usernameON": "elchuy", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_salekhardnews": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://salekhardnews.ucoz.ru/index/8-0-{}", - "urlMain": "https://salekhardnews.ucoz.ru", - "usernameON": "ACID", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_salfetka": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://salfetka.at.ua/index/8-0-{}", - "urlMain": "https://salfetka.at.ua", - "usernameON": "Yarinka", - "bad_site": "" - }, - "Forum_salo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://salo.ucoz.ru/index/8-0-{}", - "urlMain": "https://salo.ucoz.ru", - "usernameON": "Vitalinestik", - "bad_site": "" - }, - "Forum_salon-gala": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://salon-gala.moy.su/index/8-0-{}", - "urlMain": "https://salon-gala.moy.su", - "usernameON": "hairs", - "bad_site": "" - }, - "Forum_salsa": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.salsaforums.com/members/?username={}", - "urlMain": "https://www.salsaforums.com", - "usernameON": "so1001", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_samara-clad": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://samara-clad.ru/index/8-0-{}", - "urlMain": "http://samara-clad.ru", - "usernameON": "Dersu", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_samara-gaming": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://samara-gaming.clan.su/index/8-0-{}", - "urlMain": "https://samara-gaming.clan.su", - "usernameON": "deirdremo3", - "bad_site": "" - }, - "Forum_samarahunter": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "404 Not Found", - "errorTyp��": "message", - "url": "http://samarahunter.ru/forums/member.php?username={}", - "urlMain": "http://samarahunter.ru", - "usernameON": "Lonsdale", - "bad_site": "" - }, - "Forum_samatow": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://samatow.my1.ru/index/8-0-{}", - "urlMain": "https://samatow.my1.ru/", - "usernameON": "plats", - "bad_site": "" - }, - "Forum_samimiyat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://samimiyat.ucoz.net/index/8-0-{}", - "urlMain": "https://samimiyat.ucoz.net", - "usernameON": "MaRJoNa", - "bad_site": "" - }, - "Forum_samovar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.samovar-forum.ru/index/8-0-{}", - "urlMain": "https://www.samovar-forum.ru", - "usernameON": "MrKoteika", - "bad_site": "" - }, - "Forum_samp-rp": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://samp-rp.online/members/?username={}", - "urlMain": "https://samp-rp.online", - "usernameON": "allen_tyanytov", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_samp-sektor": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.samp-sektor-2.ru/index/8-0-{}", - "urlMain": "http://www.samp-sektor-2.ru", - "usernameON": "wellnemo7", - "bad_site": "" - }, - "Forum_samp-top": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://samp-top.at.ua/index/8-0-{}", - "urlMain": "https://samp-top.at.ua", - "usernameON": "Diablo", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_samru": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация отсутствует", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.samru.ru/new/forum/userinfo/user_{}.html", - "urlMain": "https://www.samru.ru", - "usernameON": "Ken", - "bad_site": "" - }, - "Forum_sanatorii": { - "country": "🇧🇾", - "country_klas": "BY", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "<title>Санатории Беларуси Белоруссии • Информация", - "errorMsg3": "SQL ERROR", - "errorTyp��": "message", - "url": "http://forum.sanatorii.by/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.sanatorii.by", - "usernameON": "pavlovich", - "bad_site": "" - }, - "Forum_sannata": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://www.phantom.sannata.org/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.phantom.sannata.org", - "usernameON": "RafGul", - "bad_site": "" - }, - "Forum_santacruz": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.santacruzforums.com/members/?username={}", - "urlMain": "https://www.santacruzforums.com", - "usernameON": "cargonaut", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_santechniki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя", - "errorMsg2": "action=\"./ucp.php?mode=login\">", - "errorTyp��": "message", - "url": "https://santechniki.com/memberlist.php?username={}", - "urlMain": "https://santechniki.com", - "usernameON": "Murza74", - "bad_site": "" - }, - "Forum_santehnik": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://сантехсвар.рф/search.php?keywords=&terms=all&author={}", - "urlMain": "http://сантехсвар.рф", - "usernameON": "SVAR", - "bad_site": "" - }, - "Forum_sape": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "url": "http://forum.sape.ru/member.php?username={}", - "urlMain": "http://forum.sape.ru", - "usernameON": "Nike99", - "comments": "Archive", - "bad_site": 1 - }, - "Forum_saranskchess": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "pr('','','',''", - "errorMsg2": "профиль
", - "errorTyp��": "message", - "url": "https://saranskchess.forum24.ru/?32-{}", - "urlMain": "https://saranskchess.forum24.ru", - "usernameON": "admin", - "bad_site": "" - }, - "Forum_Sat-prof_BLOCK_RU_IP": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Користувач не зареєстрований і не має профілю, який можна переглянути.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sat-prof.com.ua/member.php?username={}", - "urlMain": "https://sat-prof.com.ua", - "usernameON": "kreshnot", - "bad_site": "" - }, - "Forum_satisfacktion": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://satisfacktion.ucoz.ru/index/8-0-{}", - "urlMain": "https://satisfacktion.ucoz.ru", - "usernameON": "satisfacktion", - "bad_site": "" - }, - "Forum_sauna": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.saunaforums.com/forums/users/{}/", - "urlMain": "https://www.saunaforums.com", - "usernameON": "rick", - "comments": "cf", - "bad_site": 1 - }, - "Forum_saunabauen": { - "country": "🇩🇪", - "country_klas": "DE", - "errorMsg": "Es wurden keine passenden Ergebnisse gefunden", - "errorMsg2": "Information", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.saunabauen.de/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Suche", - "urlMain": "https://www.saunabauen.de", - "usernameON": "klaus", - "bad_site": "" - }, - "Forum_savasleyka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://savasleyka.ru/index/8-0-{}", - "urlMain": "http://savasleyka.ru", - "usernameON": "catalogs123123", - "bad_site": "" - }, - "Forum_say7": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено", - "errorMsg2": "", - "errorTyp��": "message", - "url": "https://forum.say7.info/search.php?search_author={}", - "urlMain": "https://forum.say7.info", - "usernameON": "Fia-Lka", - "bad_site": "" - }, - "Forum_sayyod": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://sayyod.com/index/8-0-{}", - "urlMain": "http://sayyod.com/", - "usernameON": "mushkulsavdo", - "bad_site": "" - }, - "Forum_sc2mafia": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.sc2mafia.com/forum/member.php/?username={}", - "urlMain": "https://www.sc2mafia.com", - "usernameON": "Gikkle", - "bad_site": "" - }, - "Forum_scalemodeladdict": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.scalemodeladdict.com/members/?username={}", - "urlMain": "https://www.scalemodeladdict.com", - "usernameON": "spruecutter", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_scb": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://scb.ucoz.ru/index/8-0-{}", - "urlMain": "https://scb.ucoz.ru", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_school-1130": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://school-1130.ucoz.ru/index/8-0-{}", - "urlMain": "https://school-1130.ucoz.ru", - "usernameON": "KPECT", - "bad_site": "" - }, - "Forum_school74": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://school74.ucoz.ru/index/8-0-{}", - "urlMain": "https://school74.ucoz.ru", - "usernameON": "Ruike", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_school87": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://school87.clan.su/index/8-0-{}", - "urlMain": "https://school87.clan.su", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_scienceforums": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.scienceforums.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.scienceforums.com", - "usernameON": "rohan232323", - "bad_site": "" - }, - "Forum_scienceforumsnet": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "your search. Try broadening your criteria", - "errorTyp��": "message", - "url": "https://www.scienceforums.net/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.scienceforums.net", - "usernameON": "red", - "bad_site": "" - }, - "Forum_sciforums": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.sciforums.com/members/?username={}", - "urlMain": "https://www.sciforums.com", - "usernameON": "billvon", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_scimarche": { - "country": "🇮🇹", - "country_klas": "IT", - "errorTyp��": "status_code", - "url": "https://www.scimarche.it/membri/{}/", - "urlMain": "https://www.scimarche.it", - "usernameON": "jonathan", - "bad_site": "" - }, - "Forum_sciphysicsforums": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorTyp��": "message", - "url": "http://www.sciphysicsforums.com/spfbb1/search.php?keywords=&terms=all&author={}", - "urlMain": "http://www.sciphysicsforums.com", - "usernameON": "FrediFizzx", - "bad_site": "" - }, - "Forum_scompaginando": { - "country": "🇮🇹", - "country_klas": "IT", - "errorMsg": "Questo utente non è registrato", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "http://www.scompaginando.it/member.php?username={}", - "urlMain": "http://www.scompaginando.it", - "usernameON": "Enribello", - "bad_site": "" - }, - "Forum_scooterista": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://scooterista.ru/index/8-0-{}", - "urlMain": "https://scooterista.ru", - "usernameON": "Dreamer", - "bad_site": "" - }, - "Forum_scotchmaltwhisky": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "Sorry, ", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.scotchmaltwhisky.co.uk/forum/profile.php?mode=viewprofile&u={}", - "urlMain": "https://www.scotchmaltwhisky.co.uk", - "usernameON": "William", - "bad_site": "" - }, - "Forum_scrambler": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.scramblerforum.com/members/?username={}", - "urlMain": "https://www.scramblerforum.com", - "usernameON": "fatrob", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_scrapbookcampus": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://scrapbookcampus.com/invision/search/?q={}&quick=1&type=core_members", - "urlMain": "https://scrapbookcampus.com", - "usernameON": "jacques", - "bad_site": "" - }, - "Forum_scriptmen": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://scriptmen.ucoz.ru/index/8-0-{}", - "urlMain": "https://scriptmen.ucoz.ru", - "usernameON": "reix24", - "bad_site": "" - }, - "Forum_scripts-money": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://scripts-money.clan.su/index/8-0-{}", - "urlMain": "https://scripts-money.clan.su", - "usernameON": "Diamond00744", - "bad_site": "" - }, - "Forum_scssoft": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.scssoft.com/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.scssoft.com", - "usernameON": "B787", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_scuba": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "http://forum.scuba-divers.ru/memberlist.php?username={}", - "urlMain": "http://forum.scuba-divers.ru/", - "usernameON": "bubonic", - "bad_site": "" - }, - "Forum_se-forever": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://se-forever.ucoz.com/index/8-0-{}", - "urlMain": "https://se-forever.ucoz.com", - "usernameON": "iisus1996", - "bad_site": "" - }, - "Forum_se-style": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://se-style.3dn.ru/index/8-0-{}", - "urlMain": "https://se-style.3dn.ru/", - "usernameON": "qwerty2244", - "bad_site": "" - }, - "Forum_se-zver": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://se-zver.ucoz.net/index/8-0-{}", - "urlMain": "https://se-zver.ucoz.net", - "usernameON": "magwrisK", - "bad_site": "" - }, - "Forum_se7ensins": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.se7ensins.com/members/?username={}", - "urlMain": "https://www.se7ensins.com", - "usernameON": "mocolos", - "comments": "super", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_seabreeze": { - "country": "🇦🇺", - "country_klas": "AU", - "errorTyp��": "response_url", - "url": "https://www.seabreeze.com.au/Members/Profile/Details.aspx?member={}", - "urlMain": "https://www.seabreeze.com.au", - "usernameON": "surfanimal", - "bad_site": "" - }, - "Forum_searchengines": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "
", - "errorMsg2": "class=\"nothing-found__title", - "errorTyp��": "message", - "url": "https://searchengines.guru/ru/search?keyword=&author={}&sortByDate=false", - "urlMain": "https://searchengines.guru", - "usernameON": "LevShliman", - "bad_site": "" - }, - "Forum_sebezh": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>
403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://secure-net.ucoz.ru/index/8-0-{}", - "urlMain": "https://secure-net.ucoz.ru", - "usernameON": "hcurcl", - "bad_site": "" - }, - "Forum_segaxtreme": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://segaxtreme.net/members/?username={}", - "urlMain": "https://segaxtreme.net", - "usernameON": "bluemoon95", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_selfsufficientculture": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.selfsufficientculture.com/members/?username={}", - "urlMain": "https://www.selfsufficientculture.com", - "usernameON": "daveb", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_sell-akk": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://sell-akk.at.ua/index/8-0-{}", - "urlMain": "http://sell-akk.at.ua", - "usernameON": "apelsin", - "bad_site": "" - }, - "Forum_semenovka": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Користувача не знайдено", - "errorMsg2": "403 Forbidden", - "errorMsg3": "User not found", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://semenovka.at.ua/index/8-0-{}", - "urlMain": "http://semenovka.at.ua", - "usernameON": "semenovka", - "bad_site": "" - }, - "Forum_semerkainfo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация", - "errorMsg2": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg3": "Вам закрыт доступ к конференции.", - "errorTyp��": "message", - "url": "http://www.semerkainfo.ru/forum/memberlist.php?username={}", - "urlMain": "http://www.semerkainfo.ru", - "usernameON": "DJTigra", - "bad_site": "" - }, - "Forum_semperficatholic": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Information", - "errorMsg2": "One moment,", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "http://semperficatholic.com/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "http://semperficatholic.com", - "usernameON": "MarieT", - "bad_site": "" - }, - "Forum_seniorforums": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.seniorforums.com/members/?username={}", - "urlMain": "https://www.seniorforums.com", - "usernameON": "pinky", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_sens": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sens.ucoz.ru/index/8-0-{}", - "urlMain": "https://sens.ucoz.ru", - "usernameON": "AlexSpain", - "bad_site": "" - }, - "Forum_serebropol": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://serebropol.ucoz.ru/index/8-0-{}", - "urlMain": "https://serebropol.ucoz.ru", - "usernameON": "kedrdek", - "bad_site": "" - }, - "Forum_serebryansk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://serebryansk.online/index/8-0-{}", - "urlMain": "https://serebryansk.online", - "usernameON": "Luintil", - "bad_site": "" - }, - "Forum_serega363": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://serega363.ucoz.ru/index/8-0-{}", - "urlMain": "https://serega363.ucoz.ru", - "usernameON": "realhacking", - "bad_site": "" - }, - "Forum_serenesforest": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.serenesforest.net/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://forums.serenesforest.net", - "usernameON": "Jedi", - "bad_site": "" - }, - "Forum_serial1": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.serial1forum.com/members/?username={}", - "urlMain": "https://www.serial1forum.com", - "usernameON": "sunti", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_serien": { - "country": "🇩🇪", - "country_klas": "DE", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.serienforum.com/search/?&q={}&type=core_members", - "urlMain": "https://www.serienforum.com", - "usernameON": "Redaktion", - "bad_site": "" - }, - "Forum_serioussite": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.serioussite.ru/index/8-0-{}", - "urlMain": "https://www.serioussite.ru", - "usernameON": "tisomard", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_serpentes": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.serpentes.ru/forums/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://www.serpentes.ru", - "usernameON": "TRexfood", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Forum_server1": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://server1.ucoz.net/index/8-0-{}", - "urlMain": "https://server1.ucoz.net", - "usernameON": "Arthurunige", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_servethehome": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.servethehome.com/index.php?members/&username={}", - "urlMain": "https://forums.servethehome.com", - "usernameON": "chlastakov", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_servicestack": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://forums.servicestack.net/u/{}/summary", - "urlMain": "https://forums.servicestack.net/", - "usernameON": "lai", - "bad_site": "" - }, - "Forum_serwis": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://serwis.ucoz.ru/index/8-0-{}", - "urlMain": "https://serwis.ucoz.ru", - "usernameON": "sigushki", - "bad_site": "" - }, - "Forum_setcombg": { - "country": "🇧🇬", - "country_klas": "BG", - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorMsg2": "<meta name=\"robots\" content=\"noindex,follow", - "errorTyp��": "message", - "url": "https://forum.setcombg.com/members/{}.html", - "urlMain": "https://forum.setcombg.com", - "usernameON": "ganev", - "bad_site": "" - }, - "Forum_setter": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://setter.borda.ru/?32-{}", - "urlMain": "https://setter.borda.ru", - "usernameON": "veronika12", - "bad_site": "" - }, - "Forum_sev-kav": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sev-kav.clan.su/index/8-0-{}", - "urlMain": "https://sev-kav.clan.su", - "usernameON": "tbes50203", - "bad_site": "" - }, - "Forum_sevenstring": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://sevenstring.org/members/?username={}", - "urlMain": "https://sevenstring.org", - "usernameON": "maxofmetal", - "comments": "zamedlenie", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_severushermione": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://severushermione.clan.su/index/8-0-{}", - "urlMain": "http://severushermione.clan.su", - "usernameON": "Olias", - "bad_site": "" - }, - "Forum_severussnape": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>СЕВАСТОПОЛЬСКИЙ ФОРУМ - Информация", - "errorTyp��": "message", - "url": "https://www.sevportal.info/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.sevportal.info", - "usernameON": "DarkWillow", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_sexchat": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://onlinefreechat.com/forum/members/?username={}", - "urlMain": "https://onlinefreechat.com", - "usernameON": "honeybear", - "comments": "bad", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_sexforum_top": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://ru.sexforum.top/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://ru.sexforum.top", - "usernameON": "Vzrosliy", - "bad_site": "" - }, - "Forum_sffworld": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.sffworld.com/forum/members/?username={}", - "urlMain": "https://www.sffworld.com", - "usernameON": "redmage", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_sfinx-cats": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "http://sfinx-cats.ucoz.ru/index/8-0-{}", - "urlMain": "http://sfinx-cats.ucoz.ru", - "usernameON": "Meggikliri", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_sgvavia": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.sgvavia.ru/index/8-0-{}", - "urlMain": "https://www.sgvavia.ru", - "usernameON": "alla22", - "bad_site": "" - }, - "Forum_shaman": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shaman.3dn.ru/index/8-0-{}", - "urlMain": "https://shaman.3dn.ru", - "usernameON": "vtaletkhfr", - "bad_site": "" - }, - "Forum_shanse": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shanse.ucoz.com/index/8-0-{}", - "urlMain": "https://shanse.ucoz.com", - "usernameON": "Юлия", - "bad_site": "" - }, - "Forum_shanson": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shanson.ucoz.ru/index/8-0-{}", - "urlMain": "https://shanson.ucoz.ru", - "usernameON": "FERMABOT", - "bad_site": "" - }, - "Forum_shatoy": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sherlar.3dn.ru/index/8-0-{}", - "urlMain": "https://sherlar.3dn.ru", - "usernameON": "dugimmump", - "bad_site": "" - }, - "Forum_shiachat": { - "country": "🇮🇷", - "country_klas": "IR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.shiachat.com/forum/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.shiachat.com", - "usernameON": "Hameedeh", - "bad_site": "" - }, - "Forum_shiftdelete": { - "country": "🇹🇷", - "country_klas": "TR", - "errorTyp��": "redirection", - "url": "https://forum.shiftdelete.net/uyeler/?username={}", - "urlMain": "https://forum.shiftdelete.net", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_shiptext": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shiptext.ucoz.ru/index/8-0-{}", - "urlMain": "https://shiptext.ucoz.ru", - "usernameON": "Taruto", - "bad_site": "" - }, - "Forum_shirokovskaya": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://широковская.рф/index/8-0-{}", - "urlMain": "http://широковская.рф", - "usernameON": "Надя", - "bad_site": "" - }, - "Forum_shkola-letovo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shkola-letovo.my1.ru/index/8-0-{}", - "urlMain": "https://shkola-letovo.my1.ru", - "usernameON": "belkazalesskaya", - "bad_site": "" - }, - "Forum_shkolnikov": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shkolnikov.clan.su/index/8-0-{}", - "urlMain": "https://shkolnikov.clan.su", - "usernameON": "Adelamow", - "bad_site": "" - }, - "Forum_shkval": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shoubiz.my1.ru/index/8-0-{}", - "urlMain": "https://shoubiz.my1.ru", - "usernameON": "eagles_yar", - "bad_site": "" - }, - "Forum_shumka": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://shumka.at.ua/index/8-0-{}", - "urlMain": "http://shumka.at.ua", - "usernameON": "vikadroyp08", - "bad_site": "" - }, - "Forum_shustrov": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shustrov.clan.su/index/8-0-{}", - "urlMain": "https://shustrov.clan.su", - "usernameON": "Crayulin", - "bad_site": "" - }, - "Forum_shuumm": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://shuumm.ucoz.ru/index/8-0-{}", - "urlMain": "https://shuumm.ucoz.ru", - "usernameON": "shuumm", - "bad_site": "" - }, - "Forum_shvedun": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://www.forum.shvedun.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://www.forum.shvedun.ru", - "usernameON": "red", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_siava": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://siava.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://siava.ru", - "usernameON": "Keks", - "comments": "cf", - "bad_site": 1 - }, - "Forum_sibcoins": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sibcoins.ucoz.ru/index/8-0-{}", - "urlMain": "https://sibcoins.ucoz.ru", - "usernameON": "FERMABOT", - "bad_site": "" - }, - "Forum_siberia_war": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr> :: Сибмама - о семье, беременности и детях", - "errorTyp��": "message", - "url": "https://forum.sibmama.ru/profile.php?mode=viewprofile&u={}", - "urlMain": "https://forum.sibmama.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_siccness": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.siccness.net/xf/members/?username={}", - "urlMain": "https://www.siccness.net", - "usernameON": "muthafknmexican", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_siemens-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://siemens-club.ucoz.ru/index/8-0-{}", - "urlMain": "https://siemens-club.ucoz.ru", - "usernameON": "roterb", - "bad_site": "" - }, - "Forum_siemens-town": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://siemens-town.my1.ru/index/8-0-{}", - "urlMain": "https://siemens-town.my1.ru", - "usernameON": "pomoshigorigor", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_sierraclubspb": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://sierraclubspb.borda.ru/?32-{}", - "urlMain": "https://sierraclubspb.borda.ru", - "usernameON": "truevalve", - "bad_site": "" - }, - "Forum_sierrawireless": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.sierrawireless.com/u/{}/summary", - "urlMain": "https://forum.sierrawireless.com", - "usernameON": "guigui", - "bad_site": "" - }, - "Forum_sigerous": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://sigerous.ru/index/8-0-{}", - "urlMain": "http://sigerous.ru", - "usernameON": "repteloid1111", - "bad_site": "" - }, - "Forum_silveradoev": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.silveradoevforum.com/members/?username={}", - "urlMain": "https://www.silveradoevforum.com", - "usernameON": "nebula1701", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_silveradosierra": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.silveradosierra.com/members/?username={}", - "urlMain": "https://www.silveradosierra.com", - "usernameON": "babock58", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_silverstream": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>Результатов поиска нет", - "errorMsg3": "Cloudflare", - "errorTyp��": "message", - "url": "https://f.simpleminecraft.ru/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://f.simpleminecraft.ru", - "usernameON": "delars", - "bad_site": "" - }, - "Forum_simracing": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorTyp��": "message", - "url": "https://forum.simracing.su/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.simracing.su", - "usernameON": "veter", - "bad_site": "" - }, - "Forum_sims3game": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sims3game.ucoz.ru/index/8-0-{}", - "urlMain": "https://sims3game.ucoz.ru", - "usernameON": "reveille", - "bad_site": "" - }, - "Forum_singaporebrides": { - "country": "🇸🇬", - "country_klas": "SG", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://singaporebrides.com/weddingforum/members/?username={}", - "urlMain": "https://singaporebrides.com", - "usernameON": "buzz", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_sitepoint": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "\\"posts\\":[],\\"users\\":[],", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.sitepoint.com/community/search?context=topic&q={}&search_type=users&skip_context=true", - "urlMain": "https://www.sitepoint.com", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_sivatherium": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://skachat-warcraft-3.ru/index/8-0-{}", - "urlMain": "https://skachat-warcraft-3.ru", - "usernameON": "Grandar", - "bad_site": "" - }, - "Forum_skateclass": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "url": "https://sokrovische.ucoz.ru/index/8-0-{}", - "urlMain": "https://sokrovische.ucoz.ru", - "usernameON": "Visondela", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_solana": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.solana.com/u/{}/summary", - "urlMain": "https://forum.solana.com", - "usernameON": "ilian", - "bad_site": "" - }, - "Forum_soligorsk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://soligorsk-info.ucoz.com/index/8-0-{}", - "urlMain": "https://soligorsk-info.ucoz.com", - "usernameON": "andydudyk", - "bad_site": "" - }, - "Forum_solikamsk1": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://solikamsk1.ucoz.org/index/8-0-{}", - "urlMain": "https://solikamsk1.ucoz.org", - "usernameON": "Openair", - "bad_site": "" - }, - "Forum_solnechnyi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://solnechnyi.ucoz.ru/index/8-0-{}", - "urlMain": "https://solnechnyi.ucoz.ru", - "usernameON": "eameln07", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_solonkino": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://solonkino.3dn.ru/index/8-0-{}", - "urlMain": "https://solonkino.3dn.ru", - "usernameON": "tasya", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_solotouch": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.solotouch.com/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.solotouch.com/", - "usernameON": "rosco1", - "bad_site": "" - }, - "Forum_solstar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "домен, регистратор, доменные имена", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://solstar.ru/index/8-0-{}", - "urlMain": "http://solstar.ru", - "usernameON": "wellnemo", - "bad_site": "" - }, - "Forum_sonexbuilders": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Information", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://sonexbuilders.net/search.php?keywords=&terms=all&author={}", - "urlMain": "https://sonexbuilders.net", - "usernameON": "lakespookie", - "bad_site": "" - }, - "Forum_sony127": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sony127.3dn.ru/index/8-0-{}", - "urlMain": "https://sony127.3dn.ru", - "usernameON": "htaletuauo", - "bad_site": "" - }, - "Forum_sonyalpha": { - "country": "🇩🇪", - "country_klas": "DE", - "errorMsg": "0 Ergebnisse", - "errorMsg2": "One moment,", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.sonyalphaforum.de/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.sonyalphaforum.de", - "usernameON": "ger100", - "bad_site": "" - }, - "Forum_sonycam": { - "country": "🇪🇸", - "country_klas": "ES", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.sonycam.es/foro/members/?username={}", - "urlMain": "https://www.sonycam.es", - "usernameON": "dano", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_soslujivzi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://soslujivzi.ru/index/8-0-{}", - "urlMain": "https://soslujivzi.ru", - "usernameON": "bazy", - "bad_site": "" - }, - "Forum_sosuave": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.sosuave.net/forum/members/?username={}", - "urlMain": "https://www.sosuave.net", - "usernameON": "theprospect", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_sourcepython": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Information", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.sourcepython.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://forums.sourcepython.com/", - "usernameON": "Mahi", - "comments": "Archive", - "bad_site": 1 - }, - "Forum_south-tm": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://south-tm.clan.su/index/8-0-{}", - "urlMain": "http://south-tm.clan.su", - "usernameON": "Shchedrovnops", - "bad_site": "" - }, - "Forum_sovet-miliziy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://sovet-miliziy.narod.ru/index/8-0-{}", - "urlMain": "http://sovet-miliziy.narod.ru", - "usernameON": "Евпатий", - "bad_site": "" - }, - "Forum_sovetskoye": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sovetskoye.ucoz.ru/index/8-0-{}", - "urlMain": "https://sovetskoye.ucoz.ru", - "usernameON": "VikingRUS", - "bad_site": "" - }, - "Forum_sovgavan": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "http://www.sovgavan.ru/index/8-0-{}", - "urlMain": "http://www.sovgavan.ru", - "usernameON": "Titana", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_sovpl": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403", - "errorTyp��": "message", - "url": "https://soyuz-pisatelei.ru/index/8-0-{}", - "urlMain": "https://soyuz-pisatelei.ru", - "usernameON": "Litvin", - "bad_site": "" - }, - "Forum_space": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.space.com/members/?username={}", - "urlMain": "https://forums.space.com", - "usernameON": "helio", - "comments": "Archive", - "bad_site": 1, - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_spacebattles": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.spacebattles.com/members/?username={}", - "urlMain": "https://forums.spacebattles.com", - "usernameON": "lt_ryguy", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_spanielclub": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://spanielclub.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://spanielclub.kamrbb.ru", - "usernameON": "kertezayde", - "bad_site": "" - }, - "Forum_spchat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://forum.spchat.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.spchat.ru", - "usernameON": "Taniar", - "bad_site": "" - }, - "Forum_spdonetsk": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://spdonetsk.ucoz.ua/index/8-0-{}", - "urlMain": "https://spdonetsk.ucoz.ua", - "usernameON": "Alazany", - "bad_site": "" - }, - "Forum_speakev": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.speakev.com/members/?username={}", - "urlMain": "https://www.speakev.com", - "usernameON": "nickkk32", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_specialstage": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.specialstage.com/members/?username={}", - "urlMain": "https://www.specialstage.com", - "usernameON": "ssadmin", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_specktra": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.specktra.net/members/?username={}", - "urlMain": "https://www.specktra.net", - "usernameON": "shellygrrl", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_spellbinder": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://forum.spellbinder.tv/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.spellbinder.tv", - "usernameON": "vov2302", - "bad_site": "" - }, - "Forum_spiceworks": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://community.spiceworks.com/u/{}", - "urlMain": "https://community.spiceworks.com", - "usernameON": "hulksmash72", - "comments": "RUblock", - "bad_site": "" - }, - "Forum_spinningist": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.spinningist.com/index/8-0-{}", - "urlMain": "http://www.spinningist.com", - "usernameON": "Nux", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_spitz-dog": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://spitz-dog.ucoz.ru/index/8-0-{}", - "urlMain": "http://spitz-dog.ucoz.ru", - "usernameON": "hieswivay", - "bad_site": "" - }, - "Forum_spoiledmaltese": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.spoiledmaltese.com/members/?username={}", - "urlMain": "https://www.spoiledmaltese.com", - "usernameON": "duncanweishaar093", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_spolo": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://sporeland.ru/index/8-0-{}", - "urlMain": "https://sporeland.ru/", - "usernameON": "ms_Zeys", - "bad_site": "" - }, - "Forum_sport_f": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.sport-forums.com/members/?username={}", - "urlMain": "https://www.sport-forums.com", - "usernameON": "bascampt", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_sportgymnastic": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://sputnikkey.ru/index/8-0-{}", - "urlMain": "http://sputnikkey.ru", - "usernameON": "alexstvpr", - "bad_site": "" - }, - "Forum_spyro-realms": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.spyro-realms.com/index/8-0-{}", - "urlMain": "https://www.spyro-realms.com", - "usernameON": "ftaletoxrf", - "bad_site": "" - }, - "Forum_sqlteam": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forums.sqlteam.com/u/{}/summary", - "urlMain": "https://forums.sqlteam.com", - "usernameON": "waterduck", - "bad_site": "" - }, - "Forum_squarespace": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Found 0 results", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://svet-unlimited.ucoz.ru/index/8-0-{}", - "urlMain": "https://svet-unlimited.ucoz.ru", - "usernameON": "Milija", - "bad_site": "" - }, - "Forum_svobodavnutri": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://svobodavnutri.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://svobodavnutri.kamrbb.ru", - "usernameON": "lurdopufye", - "bad_site": "" - }, - "Forum_svoystyle": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://svoystyle.ucoz.ru/index/8-0-{}", - "urlMain": "https://svoystyle.ucoz.ru/", - "usernameON": "isaeva3", - "bad_site": "" - }, - "Forum_svstrazh": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://svstrazh.forum24.ru/?32-{}", - "urlMain": "https://svstrazh.forum24.ru", - "usernameON": "blagimip", - "bad_site": "" - }, - "Forum_svstudio": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://svstudio.ucoz.ru/index/8-0-{}", - "urlMain": "https://svstudio.ucoz.ru/", - "usernameON": "sunkid", - "bad_site": "" - }, - "Forum_svvptau": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://svvptau.borda.ru/?32-{}", - "urlMain": "https://svvptau.borda.ru", - "usernameON": "sops", - "bad_site": "" - }, - "Forum_swedespeed": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "url": "https://www.swedespeed.com/members/?username={}", - "urlMain": "https://www.swedespeed.com", - "usernameON": "stewart13", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_swift": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "posts\\":[],\\"users\\", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.swift.org/search?q={}&search_type=users", - "urlMain": "https://forums.swift.org", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_swiftbook": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://forum.swiftbook.ru/u/{}/summary", - "urlMain": "https://forum.swiftbook.ru", - "usernameON": "green", - "comments": "bad", - "bad_site": 1 - }, - "Forum_swleague": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.swleague.ru/index/8-0-{}", - "urlMain": "http://www.swleague.ru", - "usernameON": "rtalethabg", - "bad_site": "" - }, - "Forum_swoy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://swoy.ucoz.ru/index/8-0-{}", - "urlMain": "https://swoy.ucoz.ru", - "usernameON": "Tampy", - "bad_site": "" - }, - "Forum_symerechnaya": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://symerechnaya.kamrbb.ru/?x=find&f={}&type=topics&nick=on#top", - "urlMain": "https://symerechnaya.kamrbb.ru/", - "usernameON": "jelmafesti", - "bad_site": "" - }, - "Forum_synfig": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.synfig.org/u/{}/summary", - "urlMain": "https://forums.synfig.org", - "usernameON": "weranimators", - "bad_site": "" - }, - "Forum_synwrite_sourceforge": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://synwrite.sourceforge.net/forums/search.php?keywords=&terms=all&author={}", - "urlMain": "https://synwrite.sourceforge.net/", - "usernameON": "SamC", - "bad_site": "" - }, - "Forum_sys-adm": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://forum.sys-adm.in/u/{}", - "urlMain": "https://forum.sys-adm.in", - "usernameON": "sysadmin", - "bad_site": 1 - }, - "Forum_szaokprf": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://szaokprf.ucoz.ru/index/8-0-{}", - "urlMain": "https://szaokprf.ucoz.ru", - "usernameON": "sapsap", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_t-shirt": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.t-shirtforums.com/members/?username={}", - "urlMain": "https://www.t-shirtforums.com", - "usernameON": "tom703", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tachograph": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://tachograph.ucoz.ru/index/8-0-{}", - "urlMain": "http://tachograph.ucoz.ru", - "usernameON": "zokfada", - "bad_site": "" - }, - "Forum_tacticalwargames": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No members found", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.tacticalwargames.net/taccmd/memberlist.php?username={}", - "urlMain": "https://www.tacticalwargames.net", - "usernameON": "MephistonAG", - "bad_site": "" - }, - "Forum_taek": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://taek.3dn.ru/index/8-0-{}", - "urlMain": "https://taek.3dn.ru/", - "usernameON": "provzlom", - "bad_site": "" - }, - "Forum_taganrog-stop": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://taganrog-stop.clan.su/index/8-0-{}", - "urlMain": "https://taganrog-stop.clan.su", - "usernameON": "avtoritetniy", - "bad_site": "" - }, - "Forum_tagheuer": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://tagheuerforums.com/members/?username={}", - "urlMain": "https://tagheuerforums.com", - "usernameON": "hubert", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tagilshops": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "url": "https://taipaqi.moy.su/index/8-0-{}", - "urlMain": "https://taipaqi.moy.su", - "usernameON": "lotly", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_taksafonchik": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://tambov.clan.su/index/8-0-{}", - "urlMain": "https://tambov.clan.su", - "usernameON": "Xando", - "bad_site": "" - }, - "Forum_tanki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "Что-то пошло не так", - "errorTyp��": "message", - "url": "https://ru.tankiforum.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://ru.tankiforum.com", - "usernameON": "anmo", - "bad_site": "" - }, - "Forum_tanknet": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.tanknet.org/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://www.tanknet.org", - "usernameON": "bojan", - "bad_site": "" - }, - "Forum_taragorod": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://taragorod.ru/index/8-0-{}", - "urlMain": "https://taragorod.ru", - "usernameON": "unlockserver", - "bad_site": "" - }, - "Forum_tarjaturunen": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://tarjaturunen.ucoz.ru/index/8-0-{}", - "urlMain": "https://tarjaturunen.ucoz.ru", - "usernameON": "timoxa", - "bad_site": "" - }, - "Forum_taro": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://www.taro.lv/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.taro.lv", - "usernameON": "Cha", - "bad_site": "" - }, - "Forum_tarokus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://tarokus.ru/index/8-0-{}", - "urlMain": "http://tarokus.ru", - "usernameON": "pridorozhniy", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_tarot": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "http://tarot.my1.ru/index/8-0-{}", - "urlMain": "http://tarot.my1.ru", - "usernameON": "seklimqwdal", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_tarot-siberia": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "url": "https://tarot-siberia.ru/index/8-0-{}", - "urlMain": "https://tarot-siberia.ru", - "usernameON": "Lila", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_taruska": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.taruska.ru/index/8-0-{}", - "urlMain": "http://www.taruska.ru", - "usernameON": "kuhni30", - "bad_site": "" - }, - "Forum_tatfish": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://forum.tatfish.com/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.tatfish.com", - "usernameON": "Krilov", - "bad_site": "" - }, - "Forum_tathunter": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://forum.tathunter.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.tathunter.ru", - "usernameON": "ramon", - "bad_site": "" - }, - "Forum_tattle": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://tattle.life/members/?username={}", - "urlMain": "https://tattle.life", - "usernameON": "chita", - "bad_site": "" - }, - "Forum_tauck": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://forums.tauck.com/profile/{}", - "urlMain": "https://forums.tauck.com", - "usernameON": "billzappa", - "bad_site": "" - }, - "Forum_taycan": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.taycanforum.com/forum/members/?username={}", - "urlMain": "https://www.taycanforum.com", - "usernameON": "f1eng", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_taycanev": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.taycanevforum.com/members/?username={}", - "urlMain": "https://www.taycanevforum.com", - "usernameON": "hz1946", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tbrus": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://tbrus.ucoz.ru/index/8-0-{}", - "urlMain": "https://tbrus.ucoz.ru", - "usernameON": "aktotytusipkalieva", - "bad_site": "" - }, - "Forum_tdiclub": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.tdiclub.com/index.php&members/?username={}", - "urlMain": "https://forums.tdiclub.com", - "usernameON": "matthew16", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_team-pros": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://team-pros.3dn.ru/index/8-0-{}", - "urlMain": "https://team-pros.3dn.ru", - "usernameON": "leifwoolned", - "bad_site": "" - }, - "Forum_tebepolezno": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://tebepolezno.ucoz.ru/index/8-0-{}", - "urlMain": "https://tebepolezno.ucoz.ru", - "usernameON": "Wtgrljya", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_techclan_planeta2": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://techclan.planeta2.org/index/8-0-{}", - "urlMain": "http://techclan.planeta2.org", - "usernameON": "youmather", - "bad_site": "" - }, - "Forum_techenclave": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://techenclave.com/members/?username={}", - "urlMain": "https://techenclave.com", - "usernameON": "jacob909", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_techguy": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.techguy.org/members/?username={}", - "urlMain": "https://www.techguy.org", - "usernameON": "novictory", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_techist": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.techist.com/forums/members/?username={}", - "urlMain": "https://www.techist.com", - "usernameON": "benefitspils3", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_technofino": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://technofino.in/community/members/?username={}", - "urlMain": "https://technofino.in", - "usernameON": "abhishek012", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_techsupport": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.techsupportforum.com/members/?username={}", - "urlMain": "https://www.techsupportforum.com", - "usernameON": "masterchiefxx17", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_teckelfriends": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://telesat-news.net/index/8-0-{}", - "urlMain": "https://telesat-news.net/", - "usernameON": "peresihne", - "bad_site": "" - }, - "Forum_tellopilots": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://tellopilots.com/members/?username={}", - "urlMain": "https://tellopilots.com", - "usernameON": "cougare", - "comments": "RUblock", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tenews": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://teron.at.ua/index/8-0-{}", - "urlMain": "https://teron.at.ua", - "usernameON": "nieminenmik", - "bad_site": "" - }, - "Forum_terraforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.terraforum.net/member.php?username={}", - "urlMain": "https://www.terraforum.net", - "usernameON": "mcdonald", - "comments": "bad", - "bad_site": "" - }, - "Forum_terror62": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://terror62.ru/index/8-0-{}", - "urlMain": "http://terror62.ru", - "usernameON": "Trotskiy", - "comments": "Oplata", - "bad_site": "" - }, - "Forum_terrylove": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://terrylove.com/forums/index.php?members/&username={}", - "urlMain": "https://terrylove.com", - "usernameON": "arisonpump", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tezosagora": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.tezosagora.org/u/{}/summary", - "urlMain": "https://forum.tezosagora.org", - "usernameON": "kevinmehrabi", - "bad_site": "" - }, - "Forum_TG": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://tgforum.ru/members/?username={}", - "urlMain": "https://tgforum.ru", - "usernameON": "grigorii", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thaidog": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://the-brinkoftime.ru/index/8-0-{}", - "urlMain": "http://the-brinkoftime.ru", - "usernameON": "Kardinal", - "bad_site": "" - }, - "Forum_the-covenant": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://the-covenant.ucoz.ru/index/8-0-{}", - "urlMain": "https://the-covenant.ucoz.ru", - "usernameON": "Gwynbleidd", - "bad_site": "" - }, - "Forum_the-sunny": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://the-sunny.ucoz.ru/index/8-0-{}", - "urlMain": "https://the-sunny.ucoz.ru", - "usernameON": "Sejlin", - "bad_site": "" - }, - "Forum_thebassbarn": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thebassbarn.com/members/?username={}", - "urlMain": "https://www.thebassbarn.com/", - "usernameON": "hardtop", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thebenchtrading": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://thebenchtrading.com/members/?username={}", - "urlMain": "https://thebenchtrading.com/", - "usernameON": "dragonslayer913", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thebrownsboard": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.thebrownsboard.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.thebrownsboard.com", - "usernameON": "calfoxwc", - "bad_site": "" - }, - "Forum_thecatsite": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://thecatsite.com/members/?username={}", - "urlMain": "https://thecatsite.com", - "usernameON": "stefanz", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_thecoding": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thecodingforums.com/members/?username={}", - "urlMain": "https://www.thecodingforums.com/", - "usernameON": "nataliayou", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thecomicboard": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thecomicboard.com/members/?username={}", - "urlMain": "https://www.thecomicboard.com", - "usernameON": "selfishmisery", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thedaobums": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W[а-яА-Я]", - "errorMsg": "0 results", - "errorMsg2": "Not found", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.thedaobums.com/search/?&q={}&type=core_members", - "urlMain": "https://www.thedaobums.com", - "usernameON": "Maddie", - "bad_site": "" - }, - "Forum_thedarkmod": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forums.thedarkmod.com/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://forums.thedarkmod.com", - "usernameON": "greebo", - "bad_site": "" - }, - "Forum_thedarts": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No members found", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.thedartsforum.com/memberlist.php?username={}", - "urlMain": "https://www.thedartsforum.com", - "usernameON": "ChrisW", - "bad_site": "" - }, - "Forum_theden": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://thedenforum.com/u/{}/summary", - "urlMain": "https://thedenforum.com", - "usernameON": "weaselpuppy", - "bad_site": "" - }, - "Forum_thedieselgarage": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thedieselgarage.com/members/?username={}", - "urlMain": "https://www.thedieselgarage.com", - "usernameON": "carid", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thedieselstop": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thedieselstop.com/members/?username={}", - "urlMain": "https://www.thedieselstop.com", - "usernameON": "bugman", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thedoctorwho": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.thedoctorwhoforum.com/members/{}/", - "urlMain": "https://www.thedoctorwhoforum.com", - "usernameON": "ps1l0v3y0u", - "bad_site": "" - }, - "Forum_thefappeningblog": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://thefappeningblog.com/forum/members/?username={}", - "urlMain": "https://thefappeningblog.com", - "usernameON": "peterwebb", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thefedoralounge": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thefedoralounge.com/members/?username={}", - "urlMain": "https://www.thefedoralounge.com", - "usernameON": "kblake", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thefewgoodmen": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thefewgoodmen.com/thefgmforum/members/?username={}", - "urlMain": "https://www.thefewgoodmen.com", - "usernameON": "bootie", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thefinalfantasy": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered", - "errorMsg2": "STANDARD_ERROR", - "errorMsg3": "content=\"final fantasy,", - "errorTyp��": "message", - "url": "https://thefinalfantasy.net/forums/members/{}/", - "urlMain": "https://thefinalfantasy.net", - "usernameON": "fuzz", - "bad_site": "" - }, - "Forum_thefirearms": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thefirearmsforum.com/members/?username={}", - "urlMain": "https://www.thefirearmsforum.com", - "usernameON": "alpo", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_theflooring": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://theflooringforum.com/members/?username={}", - "urlMain": "https://theflooringforum.com", - "usernameON": "dazlight", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thefootballforum": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thefootballforum.net/members/?username={}", - "urlMain": "https://www.thefootballforum.net", - "usernameON": "oakroader", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_thegambling": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "Unavailable", - "errorTyp��": "message", - "url": "https://thegamblingcommunity.com/forum/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://thegamblingcommunity.com/", - "usernameON": "howfin", - "bad_site": "" - }, - "Forum_thegradcafe": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorTyp��": "message", - "url": "https://forum.thegradcafe.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.thegradcafe.com", - "usernameON": "admin", - "bad_site": "" - }, - "Forum_thegreenliving": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://permies.com/forums/jforum?module=search&action=search&forum_id=-1&search_keywords=&match_type=all&search_in=ALL&forum=&groupByTopic=true&sort_by=time&sort_dir=DESC&search_date=ALL&member_number=&member_first_name={}&member_last_name=&member_match_type=memberPosted", - "urlMain": "https://permies.com", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_thegtaplace": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": " 0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://thegtaplace.com/forums/search/?q={}&quick=1&type=core_members", - "urlMain": "https://thegtaplace.com", - "usernameON": "chuken", - "bad_site": "" - }, - "Forum_thehomebrew": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thehomebrewforum.co.uk/members/?username={}", - "urlMain": "https://www.thehomebrewforum.co.uk", - "usernameON": "mashbag", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thehuddle": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Please wait", - "errorMsg2": "0 results", - "errorTyp��": "message", - "url": "https://forums.thehuddle.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.thehuddle.com", - "usernameON": "red", - "bad_site": "" - }, - "Forum_theislamicquotes": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.theislamicquotes.com/members/?username={}", - "urlMain": "https://forum.theislamicquotes.com", - "usernameON": "awanromesa", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_theknot": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forums.theknot.com/profile/{}", - "urlMain": "https://forums.theknot.com", - "usernameON": "mrsconn23", - "bad_site": "" - }, - "Forum_thektog": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thektog.org/members/?username={}", - "urlMain": "https://www.thektog.org", - "usernameON": "editor", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thelaw": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thelaw.com/members/?username={}", - "urlMain": "https://www.thelaw.com", - "usernameON": "zddoodah", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_themodernfilmmaker": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.themodernfilmmaker.com/ru/profile/{}/profile", - "urlMain": "https://www.themodernfilmmaker.com", - "usernameON": "shadrachhanohano", - "bad_site": "" - }, - "Forum_theohiooutdoors": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://theohiooutdoors.com/members/?username={}", - "urlMain": "https://theohiooutdoors.com", - "usernameON": "p8riot", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_theologyonline": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://theologyonline.com/members/?username={}", - "urlMain": "https://theologyonline.com", - "usernameON": "benavraham", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_theoutlander": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://theoutlander.ru/index/8-0-{}", - "urlMain": "https://theoutlander.ru", - "usernameON": "talia", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_thepatriotwoodworker": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://thepatriotwoodworker.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://thepatriotwoodworker.com", - "usernameON": "frederickh", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Forum_thephins": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thephins.com/members/?username={}", - "urlMain": "https://www.thephins.com", - "usernameON": "dolphin25", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thephoto": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thephotoforum.com/members/?username={}", - "urlMain": "https://www.thephotoforum.com", - "usernameON": "sterk03", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_theprodigy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь, чей профиль вы пытаетесь посмотреть, не существует.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://forum.theprodigy.ru/index.php?board=13&action=viewprofile&user={}", - "urlMain": "https://forum.theprodigy.ru/", - "usernameON": "red", - "bad_site": "" - }, - "Forum_thepw": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Найдено 0 результатов", - "errorMsg2": "По вашему запросу ничего не найдено", - "errorTyp��": "message", - "url": "http://forum.thepw.ru/index.php?/search/&q={}&type=core_members", - "urlMain": "http://forum.thepw.ru", - "usernameON": "thepwsupport", - "bad_site": "" - }, - "Forum_therepair": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "title>Упс! Что-то пошло не так", - "errorMsg2": "Найдено 0 результатов", - "errorTyp��": "message", - "url": "https://therepair.ru/search/?&q={}", - "urlMain": "https://therepair.ru", - "usernameON": "Engineer", - "comments": "bad", - "bad_site": "" - }, - "Forum_therpf": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.therpf.com/forums/members/?username={}", - "urlMain": "https://www.therpf.com", - "usernameON": "wayneb", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thesandtrap": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "0 results", - "errorMsg2": "Sorry, page not found", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://thesandtrap.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://thesandtrap.com", - "usernameON": "iacas", - "bad_site": "" - }, - "Forum_thescienceforum": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "http://www.thescienceforum.com/member.php?username={}", - "urlMain": "http://www.thescienceforum.com", - "usernameON": "mathman", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_thesimsworldnew": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.thesimsworldnew.ru/index/8-0-{}", - "urlMain": "http://www.thesimsworldnew.ru", - "usernameON": "Samara", - "bad_site": "" - }, - "Forum_thesmartmarks": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forums.thesmartmarks.com/search/?q={}&type=core_members", - "urlMain": "https://forums.thesmartmarks.com", - "usernameON": "janusd", - "bad_site": "" - }, - "Forum_thewatchsite": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.thewatchsite.com/members/?username={}", - "urlMain": "https://www.thewatchsite.com/", - "usernameON": "gatsuk", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_thewhitewolf": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://thewhitewolf.3dn.ru/index/8-0-{}", - "urlMain": "https://thewhitewolf.3dn.ru/", - "usernameON": "ttaletpbod", - "bad_site": "" - }, - "Forum_thewindowsforum": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://thewindowsforum.com/members/?username={}", - "urlMain": "https://thewindowsforum.com", - "usernameON": "mook777", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_thrash-attack": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://thrash-attack.ru/index/8-0-{}", - "urlMain": "http://thrash-attack.ru", - "usernameON": "Manowarrior", - "bad_site": "" - }, - "Forum_thule": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://thule.ucoz.ru/index/8-0-{}", - "urlMain": "https://thule.ucoz.ru", - "usernameON": "jtaletbcse", - "bad_site": "" - }, - "Forum_thumpertalk": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.thumpertalk.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.thumpertalk.com", - "usernameON": "mildride", - "bad_site": "" - }, - "Forum_tidalfish": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tidalfish.com/members/?username={}", - "urlMain": "https://www.tidalfish.com", - "usernameON": "longtail", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tigerdata": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forum.tigerdata.com/forum/u/{}/summary", - "urlMain": "https://forum.tigerdata.com", - "usernameON": "ts101", - "bad_site": "" - }, - "Forum_tights4men": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://time-paradox.ucoz.ru/index/8-0-{}", - "urlMain": "https://time-paradox.ucoz.ru", - "usernameON": "uliaandreeva149", - "bad_site": "" - }, - "Forum_timich": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://timich.ru/index/8-0-{}", - "urlMain": "http://timich.ru", - "usernameON": "rektie", - "bad_site": "" - }, - "Forum_titanquest": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://titanquest.org.ua/index/8-0-{}", - "urlMain": "https://titanquest.org.ua", - "usernameON": "Jack", - "bad_site": "" - }, - "Forum_tk_do": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://tk.do.am/index/8-0-{}", - "urlMain": "https://tk.do.am", - "usernameON": "romzik3", - "bad_site": "" - }, - "Forum_tks": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "403 Forbidden", - "errorMsg3": "временно приостановлен", - "errorTyp��": "message", - "url": "https://forum.tks.ru/member.php?username={}", - "urlMain": "https://forum.tks.ru/", - "usernameON": "red", - "bad_site": "" - }, - "Forum_tlm": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://tokiogirl.ucoz.ru/index/8-0-{}", - "urlMain": "https://tokiogirl.ucoz.ru", - "usernameON": "iisus1996", - "bad_site": "" - }, - "Forum_tolkienist": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://tolkienist.ucoz.ru/index/8-0-{}", - "urlMain": "http://tolkienist.ucoz.ru", - "usernameON": "Банту", - "bad_site": "" - }, - "Forum_tomtom": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tomtomforums.com/members/?username={}", - "urlMain": "https://www.tomtomforums.com", - "usernameON": "silberpfeil", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tootimid": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://forums.tootimid.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.tootimid.com", - "usernameON": "eagle143", - "bad_site": "" - }, - "Forum_topeleven": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered", - "errorMsg2": "Top Eleven Forum", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.topeleven.com/member.php?username={}", - "urlMain": "https://forum.topeleven.com", - "usernameON": "Taliyah25", - "bad_site": "" - }, - "Forum_topgold": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://topgold.forum/search/?q={}&quick=1&type=core_members", - "urlMain": "https://topgold.forum/", - "usernameON": "Resolve", - "bad_site": "" - }, - "Forum_topgoldforum": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "There were no results for your search", - "errorTyp��": "message", - "url": "https://topgoldforum.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://topgoldforum.com", - "usernameON": "symphonizedbm", - "bad_site": "" - }, - "Forum_topteam": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://topteam.ucoz.ru/index/8-0-{}", - "urlMain": "https://topteam.ucoz.ru", - "usernameON": "Spinne", - "bad_site": "" - }, - "Forum_toribash": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.toribash.com/member.php?username={}", - "urlMain": "https://forum.toribash.com/", - "usernameON": "s1lvered", - "bad_site": "" - }, - "Forum_tornado": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.tornado.ws/u/{}/summary", - "urlMain": "https://forum.tornado.ws", - "usernameON": "sean", - "bad_site": "" - }, - "Forum_torquecars": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.torquecars.com/forums/members/?username={}", - "urlMain": "https://www.torquecars.com", - "usernameON": "mrmacbirch", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tortik": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://tortik.ucoz.ru/index/8-0-{}", - "urlMain": "https://tortik.ucoz.ru", - "usernameON": "ggdrEmodyz", - "bad_site": "", - "exclusion": "\\W" - }, - "Forum_tosdr": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://tosdr.community/u/{}/summary", - "urlMain": "https://tosdr.community", - "usernameON": "shadowwwind", - "bad_site": "" - }, - "Forum_totallympics": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://totallympics.com/search/?q={}&quick=1&type=core_members", - "urlMain": "https://totallympics.com", - "usernameON": "josh", - "bad_site": "" - }, - "Forum_totalrl": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.totalrl.com/forums/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://www.totalrl.com", - "usernameON": "bobbruce", - "bad_site": "" - }, - "Forum_touchussuri": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://touchussuri.ucoz.ru/index/8-0-{}", - "urlMain": "https://touchussuri.ucoz.ru", - "usernameON": "staletpuhh", - "bad_site": "" - }, - "Forum_tour": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://tourum.net/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://tourum.net", - "usernameON": "etolmacheff", - "comments": "bad", - "bad_site": "" - }, - "Forum_touringplans": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.touringplans.com/u/{}/summary", - "urlMain": "https://forum.touringplans.com", - "usernameON": "heathernoel", - "bad_site": "" - }, - "Forum_tourtrans": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://forum.tourtrans.ru/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forum.tourtrans.ru", - "usernameON": "Evgeniya", - "bad_site": "" - }, - "Forum_toyotanation": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.toyotanation.com/members/?username={}", - "urlMain": "https://www.toyotanation.com", - "usernameON": "dna59", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_traceryoffate": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user does not exist.", - "errorMsg2": "Sorry, page not found", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://traceryoffate.com/forum/profile/{}/", - "urlMain": "https://traceryoffate.com", - "usernameON": "sentinel", - "bad_site": "" - }, - "Forum_tracfone": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.tracfoneforum.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.tracfoneforum.com", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_trackchecker": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Информация", - "errorMsg2": "Подходящих тем или сообщений не найдено.", - "errorTyp��": "message", - "url": "https://forum.trackchecker.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://forum.trackchecker.ru", - "usernameON": "f2065", - "bad_site": "" - }, - "Forum_tractorbynet": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tractorbynet.com/forums/members/?username={}", - "urlMain": "https://www.tractorbynet.com", - "usernameON": "bmaverick", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_trade-print": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "url": "http://forum.trade-print.ru/member.php?username={}", - "urlMain": "http://forum.trade-print.ru", - "usernameON": "trioprint", - "bad_site": "" - }, - "Forum_trade2win": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.trade2win.com/members/?username={}", - "urlMain": "https://www.trade2win.com", - "usernameON": "wackypete2", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tradebrains": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "well-known/sgcaptcha", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://forum.tradebrains.in/u/{}/summary", - "urlMain": "https://forum.tradebrains.in", - "usernameON": "nikitawaghmare", - "bad_site": "" - }, - "Forum_traderji": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.traderji.com/community/members/?username={}", - "urlMain": "https://www.traderji.com/", - "usernameON": "arunbalan", - "comments": "bad", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": 1 - }, - "Forum_traderslaboratory": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "0 results", - "errorMsg2": "Please wait", - "errorMsg3": "NotFound", - "errorTyp��": "message", - "url": "http://www.traderslaboratory.com/forums/search/?q={}&type=core_members", - "urlMain": "http://www.traderslaboratory.com", - "usernameON": "fxeconomist", - "bad_site": "" - }, - "Forum_tradingqna": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://tradingqna.com/u/{}/summary", - "urlMain": "https://tradingqna.com", - "usernameON": "akashkb", - "bad_site": "" - }, - "Forum_tradtalk": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tradtalk.com/members/?username={}", - "urlMain": "https://www.tradtalk.com/", - "usernameON": "lumis17", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_trainerroad": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.trainerroad.com/forum/u/{}/summary", - "urlMain": "https://www.trainerroad.com", - "usernameON": "joex", - "bad_site": "" - }, - "Forum_transit-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://transit-club.com/index/8-0-{}", - "urlMain": "http://transit-club.com", - "usernameON": "Gidanov", - "bad_site": "" - }, - "Forum_trassa": { - "country": "🇧🇾", - "country_klas": "BY", - "errorMsg": "Информация", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "url": "https://trassa.by/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://trassa.by", - "usernameON": "admin", - "bad_site": "" - }, - "Forum_travel": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Поиск не дал результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.travel.ru/community/index.php?app=core&module=search&do=search&andor_type=and&search_author={}&search_app_filters[forums][sortKey]=date&search_content=both&search_app_filters[forums][noPreview]=1&search_app_filters[forums][pCount]=&search_app_filters[forums][pViews]=&search_app_filters[forums][sortKey]=date&search_app_filters[forums][sortDir]=0&search_app_filters[forums][searchInKey]=&search_term=&search_app=forums&search_app_filters[forums][searchInKey]=&search_app_filters[forums][sortKey]=title&search_app_filters[forums][sortDir]=0", - "urlMain": "https://www.travel.ru", - "usernameON": "larsen099", - "comments": "ERR_TE", - "bad_site": 1 - }, - "Forum_travel_do": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://travel.do.am/index/8-0-{}", - "urlMain": "https://travel.do.am", - "usernameON": "askutov123", - "bad_site": "" - }, - "Forum_travel_my1": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://travel.my1.ru/index/8-0-{}", - "urlMain": "https://travel.my1.ru", - "usernameON": "nbirukova1", - "bad_site": "" - }, - "Forum_trekbbs": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.trekbbs.com/members/?username={}", - "urlMain": "https://www.trekbbs.com", - "usernameON": "ericf", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_trialscentral": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W", - "errorMsg": "0 results", - "errorMsg2": "0 user", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.trialscentral.com/forums/search/?q={}&quick=1&type=core_members", - "urlMain": "https://www.trialscentral.com", - "usernameON": "choover", - "bad_site": "" - }, - "Forum_trimdownclub": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.trimdownclub.com/members/{}/", - "urlMain": "https://www.trimdownclub.com", - "usernameON": "kellyannsi", - "bad_site": "" - }, - "Forum_trinity-ai": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://trinity-ai.at.ua/index/8-0-{}", - "urlMain": "https://trinity-ai.at.ua", - "usernameON": "apelsinikgzy", - "bad_site": "" - }, - "Forum_trmk": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.trmk.org/forums/members/?username={}", - "urlMain": "https://www.trmk.org", - "usernameON": "ingend1945", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_troitsa": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://troitsa.ucoz.ru/index/8-0-{}", - "urlMain": "https://troitsa.ucoz.ru", - "usernameON": "Passhikinsky", - "bad_site": "" - }, - "Forum_trotting": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://tschkalowo.ucoz.ru/index/8-0-{}", - "urlMain": "https://tschkalowo.ucoz.ru", - "usernameON": "btaletjwhs", - "bad_site": "" - }, - "Forum_tskaro": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://tulaignk.ucoz.ru/index/8-0-{}", - "urlMain": "http://tulaignk.ucoz.ru", - "usernameON": "prokofjev7", - "bad_site": "" - }, - "Forum_tumult": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forums.tumult.com/u/{}/summary", - "urlMain": "https://forums.tumult.com", - "usernameON": "daniel", - "bad_site": "" - }, - "Forum_tundrasolutions": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tundrasolutions.com/members/?username={}", - "urlMain": "https://www.tundrasolutions.com", - "usernameON": "dxrouse", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tuning_lviv": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Тем або повідомлень, які відповідають вашому запиту, не знайдено.", - "errorMsg2": "Інформація", - "errorTyp��": "message", - "url": "http://tuning.lviv.ua/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://tuning.lviv.ua", - "usernameON": "jam", - "bad_site": "" - }, - "Forum_tupa-germania": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://forum.tupa-germania.ru/members/?username={}", - "urlMain": "https://forum.tupa-germania.ru", - "usernameON": "lagrange", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_tur_borda": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>403 Forbidden", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://turkmeniya.ucoz.ru/index/8-0-{}", - "urlMain": "https://turkmeniya.ucoz.ru", - "usernameON": "koleg5992", - "bad_site": "" - }, - "Forum_turntoislam": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://turntoislam.com/community/members/?username={}", - "urlMain": "https://turntoislam.com", - "usernameON": "exceller", - "comments": "RUblock", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tus-wa": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "does not exist.", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.tus-wa.com/profile/{}/", - "urlMain": "https://www.tus-wa.com", - "usernameON": "TheWalrus", - "comments": "super", - "bad_site": 1 - }, - "Forum_tvnewstalk": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Please wait", - "errorMsg2": "0 results", - "errorTyp��": "message", - "url": "https://forums.tvnewstalk.net/search/?q={}&quick=1&type=core_members", - "urlMain": "https://forums.tvnewstalk.net", - "usernameON": "red", - "bad_site": "" - }, - "Forum_tvsbook": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tvsbook.com/members/?username={}", - "urlMain": "https://www.tvsbook.com", - "usernameON": "jhjg67", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tvsput": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://tvsput.ru/index/8-0-{}", - "urlMain": "http://tvsput.ru", - "usernameON": "sickorskyvik", - "bad_site": "" - }, - "Forum_tvwbb": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://tvwbb.com/members/?username={}", - "urlMain": "https://tvwbb.com", - "usernameON": "bruno", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_tw200forum": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tw200forum.com/members/?username={}", - "urlMain": "https://www.tw200forum.com", - "usernameON": "drlemonator", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_twilightmovie": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://twilightmovie.ucoz.com/index/8-0-{}", - "urlMain": "https://twilightmovie.ucoz.com", - "usernameON": "фанатка", - "bad_site": "" - }, - "Forum_twilightrussia": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "\\W", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403", - "errorTyp��": "message", - "url": "https://twilightrussia.ru/index/8-0-{}", - "urlMain": "https://twilightrussia.ru", - "usernameON": "MissElen", - "bad_site": "" - }, - "Forum_twospoke": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.twospoke.com/members/?username={}", - "urlMain": "https://www.twospoke.com", - "usernameON": "stevesmith143", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_type2diabetes": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Page not found", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://type2diabetes.com/members/{}", - "urlMain": "https://type2diabetes.com", - "usernameON": "girlsaylor", - "bad_site": "" - }, - "Forum_u-hiv": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://forum.u-hiv.ru/index/8-0-{}", - "urlMain": "https://forum.u-hiv.ru", - "usernameON": "Slavochka", - "bad_site": "" - }, - "Forum_u-project": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://u-project.pro/members/?username={}", - "urlMain": "https://u-project.pro", - "usernameON": "takeshi", - "bad_site": 1, - "comments": "vzlom", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Forum_ua-vet": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://forum.ua-vet.com/search.php?keywords=&terms=all&author={}", - "urlMain": "http://forum.ua-vet.com", - "usernameON": "irina", - "bad_site": "" - }, - "Forum_uahack": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://uahack.at.ua/index/8-0-{}", - "urlMain": "https://uahack.at.ua", - "usernameON": "alexeiuslugivzloma", - "bad_site": "" - }, - "Forum_uaksu": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr><td colspan", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://uaksu.forum24.ru/?32-{}", - "urlMain": "https://uaksu.forum24.ru", - "usernameON": "vleas", - "bad_site": "" - }, - "Forum_uberpeople": { - "country": "🇨🇦", - "country_klas": "CA", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.uberpeople.net/members/?username={}", - "urlMain": "https://www.uberpeople.net", - "usernameON": "nats121", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ubports": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://forums.ubports.com/user/{}", - "urlMain": "https://forums.ubports.com", - "usernameON": "applee", - "bad_site": "" - }, - "Forum_ubuntu": { - "country": "🇮🇹", - "country_klas": "IT", - "errorMsg": "Nessuna iscrizione corrisponde a questi criteri di ricerca.", - "errorMsg2": "re not a", - "errorTyp��": "message", - "url": "https://forum.ubuntu-it.org/memberlist.php?username={}", - "urlMain": "https://forum.ubuntu-it.org", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_ubuntu_mate": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://ubuntu-mate.community/u/{}/summary", - "urlMain": "https://ubuntu-mate.community", - "usernameON": "oldstrummer", - "bad_site": "" - }, - "Forum_uc-portaller": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://uc-portaller.ucoz.com/index/8-0-{}", - "urlMain": "http://uc-portaller.ucoz.com", - "usernameON": "use_vse", - "bad_site": "" - }, - "Forum_ucoz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://forum.ucoz.ru/index/8-0-{}", - "urlMain": "https://forum.ucoz.ru", - "usernameON": "red", - "bad_site": "" - }, - "Forum_ucozweber": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ucozweber.3dn.ru/index/8-0-{}", - "urlMain": "https://ucozweber.3dn.ru", - "usernameON": "SoVeR", - "bad_site": "" - }, - "Forum_ucozzz": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "http://ucozzz.ru/index/8-0-{}", - "urlMain": "http://ucozzz.ru", - "usernameON": "podrubaj", - "comments": "vzlom", - "bad_site": 1 - }, - "Forum_ufachgk": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "[а-яА-Я]", - "errorMsg": "профиль забанен", - "errorMsg2": "tr>Форум Uinsell.Net", - "errorTyp��": "message", - "url": "http://forum.uinsell.net/member.php?username={}", - "urlMain": "http://forum.uinsell.net", - "usernameON": "ghost", - "bad_site": "" - }, - "Forum_uk_muscle": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.uk-muscle.co.uk/members/?username={}", - "urlMain": "https://www.uk-muscle.co.uk", - "usernameON": "zenol", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ukbusiness": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.ukbusinessforums.co.uk/members/?username={}", - "urlMain": "https://www.ukbusinessforums.co.uk", - "usernameON": "fisicx", - "headers": { - "User-Agent": "curl/8.11.0" - }, - "bad_site": "" - }, - "Forum_ukraine_de": { - "country": "🇩🇪", - "country_klas": "DE", - "errorMsg": "Es wurden keine passenden", - "errorMsg2": "Please wait", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://ukraineforum.de/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Suche", - "urlMain": "https://ukraineforum.de", - "usernameON": "Handrij", - "bad_site": "" - }, - "Forum_ukriversguidebook": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "Information", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.ukriversguidebook.co.uk/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://www.ukriversguidebook.co.uk", - "usernameON": "Franky", - "bad_site": "" - }, - "Forum_uktechhub": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "robots\" content=\"noindex, nofollow", - "errorMsg2": "Page not found", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://uktechhub.com/forums/users/{}/", - "urlMain": "https://uktechhub.com", - "usernameON": "uk-sentinel", - "bad_site": "" - }, - "Forum_ulanovka": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Результатов поиска нет", - "errorMsg2": "По вашему запросу ничего не найдено", - "errorMsg3": "возникла проблема", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://ulanovka.ru/search/?q={}&quick=1&type=core_members", - "urlMain": "https://ulanovka.ru", - "usernameON": "mac", - "bad_site": "" - }, - "Forum_ulfishing": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "Sorry, ", - "errorTyp��": "message", - "url": "https://ulfishing.ru/forum/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA", - "urlMain": "https://ulfishing.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Forum_ulisp": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "http://forum.ulisp.com/u/{}", - "urlMain": "http://forum.ulisp.com", - "usernameON": "nanomonkey", - "bad_site": "" - }, - "Forum_ulybka_borda": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "профиль забанен или удален", - "errorMsg2": "/noindex>-->

", - "errorTyp��": "message", - "url": "https://sign-forum.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://sign-forum.ru", - "usernameON": "KalinaAlexandr", - "bad_site": "" - }, - "Signal_community": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Oops! That page doesn’t exist or is private.", - "errorMsg2": "Signal Community", - "errorTyp��": "message", - "url": "https://community.signalusers.org/u/{}/summary", - "urlMain": "https://community.signalusers.org", - "usernameON": "whatnoww", - "bad_site": "" - }, - "Silver-collector": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.silver-collector.com/u/{}/summary", - "urlMain": "https://www.silver-collector.com", - "usernameON": "red", - "bad_site": "" - }, - "Similarworlds": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://similarworlds.com/{}", - "urlMain": "https://similarworlds.com", - "usernameON": "Messygirl3", - "bad_site": "" - }, - "Skodaforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorMsg3": "FASTPANEL", - "errorTyp��": "message", - "url": "http://www.skodaforum.ru/member.php?username={}", - "urlMain": "http://www.skodaforum.ru", - "usernameON": "rivera", - "comments": "bad", - "bad_site": 1 - }, - "Skyblock": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://skyblock.net/members/?username={}", - "urlMain": "https://skyblock.net", - "usernameON": "noobcrew", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Skynetzone": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "url": "https://skynetzone.net/members/?username={}", - "urlMain": "https://skynetzone.net", - "usernameON": "battarismos", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Skyrimforums": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://skyrimforum.com/forum/members/?username={}", - "urlMain": "https://skyrimforum.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Skyscrapercity": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W|[а-яА-Я]", - "errorTyp��": "redirection", - "url": "https://www.skyscrapercity.com/members/?username={}", - "urlMain": "https://www.skyscrapercity.com", - "usernameON": "adam", - "bad_site": "" - }, - "Slack": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://{}.slack.com", - "urlMain": "https://slack.com", - "usernameON": "blue", - "bad_site": "" - }, - "Slamdunk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.slamdunk.ru/search/?&q={}&type=core_members", - "urlMain": "https://www.slamdunk.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Slashdot": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": " - Slashdot User", - "errorMsg2": "The user you requested does not exist, no matter how much you wish this might be the case.", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://slashdot.org/~{}", - "urlMain": "https://slashdot.org", - "usernameON": "adam", - "bad_site": "" - }, - "Slides": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "title>Slides: 404Page no longer exists<", - "errorMsg2": "gen\">01.01.1970", - "errorTyp��": "message", - "url": "https://www.smallcar.ru/talk/profile.php?mode=viewprofile&u={}", - "urlMain": "https://www.smallcar.ru", - "usernameON": "lukey", - "bad_site": "" - }, - "Smart_lab": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://smart-lab.ru/profile/{}/", - "urlMain": "https://smart-lab.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "Smashcast": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.smashcast.tv/api/media/live/{}", - "urlMain": "https://www.smashcast.tv/", - "usernameON": "hello", - "bad_site": 1 - }, - "Smashrun": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://smashrun.com/{}/", - "urlMain": "https://smashrun.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Smogon": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://www.smogon.com/forums/members/?username={}", - "urlMain": "https://www.smogon.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Smolmama": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://smolmama.com/search.php?keywords=&terms=all&author={}", - "urlMain": "https://smolmama.com", - "usernameON": "Kisma", - "bad_site": "" - }, - "Smugmug": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W|[а-я-А-Я]", - "errorTyp��": "status_code", - "url": "https://{}.smugmug.com/", - "urlMain": "https://smugmug.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Smule": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Right tune, wrong note", - "errorMsg2": "Page Not Found", - "errorTyp��": "message", - "url": "https://www.smule.com/{}", - "urlMain": "https://www.smule.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Snapchat": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.snapchat.com/add/{}", - "urlMain": "https://www.snapchat.com", - "usernameON": "adam22hoe", - "bad_site": "" - }, - "Snbforums": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://www.snbforums.com/members/?username={}", - "urlMain": "https://www.snbforums.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Snowjapan": { - "country": "🇯🇵", - "country_klas": "JP", - "errorMsg": "Found 0 results", - "errorMsg2": "large ipsType_light'>There were no results for", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://www.snowjapan.com/community/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://www.snowjapan.com", - "usernameON": "nisoko", - "bad_site": "" - }, - "Soborno": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://soborno.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://soborno.ru", - "usernameON": "arinasha", - "bad_site": "" - }, - "Soc-life.": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://soc-life.com/index/8-0-{}", - "urlMain": "http://soc-life.com", - "usernameON": "Ilona54", - "bad_site": "" - }, - "Sochi_profi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://sochi.profi.ru/profile/{}/", - "urlMain": "https://sochi.profi.ru", - "usernameON": "Irina", - "bad_site": "" - }, - "Social_librem": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://social.librem.one/@{}", - "urlMain": "https://social.librem.one", - "usernameON": "adam", - "bad_site": "" - }, - "Social_microsoft": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "The resource you are looking for has been removed", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://social.microsoft.com/profile/{}", - "urlMain": "https://social.microsoft.com", - "usernameON": "shartbandiha", - "bad_site": 1 - }, - "Social_tchncs": { - "country": "🇩🇪", - "country_klas": "DE", - "errorTyp��": "status_code", - "url": "https://social.tchncs.de/@{}", - "urlMain": "https://social.tchncs.de/", - "usernameON": "Milan", - "bad_site": "" - }, - "Socialblade": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://socialblade.com/youtube/user/{}", - "urlMain": "https://socialblade.com", - "usernameON": "fred", - "comments": "cf", - "bad_site": "" - }, - "Socioforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.socioforum.su/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.socioforum.su", - "usernameON": "adam", - "bad_site": "" - }, - "Socionics": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "http://www.socionics.org/user/Profile.aspx?username={}", - "urlMain": "http://www.socionics.org", - "usernameON": "RWinner", - "comments": "bad", - "bad_site": 1 - }, - "Softboard": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "<p class='ipsType_large ipsType", - "errorTyp��": "message", - "url": "https://softboard.ru/search/?q={}&quick=1&type=core_members", - "urlMain": "https://softboard.ru", - "usernameON": "Rambler", - "bad_site": "" - }, - "SoftwareInformer": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://users.software.informer.com/{}/", - "urlMain": "https://users.software.informer.com", - "usernameON": "adam", - "bad_site": "" - }, - "Solo": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://solo.to/{}", - "urlMain": "https://solo.to", - "usernameON": "red", - "bad_site": "" - }, - "Soloby": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "<title>QT Media 404", - "errorMsg2": "Универ soloBY", - "errorTyp��": "message", - "url": "http://www.soloby.ru/user/{}", - "urlMain": "http://www.soloby.ru", - "usernameON": "red", - "comments": "bad", - "bad_site": 1 - }, - "Somersoft": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.somersoft.com/members/?username={}", - "urlMain": "https://www.somersoft.com", - "usernameON": "johnhenry", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Sony-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.sony-club.ru/forum/members/?username={}", - "urlMain": "https://www.sony-club.ru", - "usernameON": "usman161rus", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Sony_stratege": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Сайт закрыт", - "errorMsg2": "Форум Sony - Stratege.ru", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://sony.stratege.ru/forums/member.php?username={}", - "urlMain": "https://sony.stratege.ru", - "usernameON": "kalpak", - "bad_site": "" - }, - "Sorento_kia-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://sorento.kia-club.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://sorento.kia-club.ru/", - "usernameON": "king", - "bad_site": "" - }, - "Sotoguide": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "url": "https://sotoguide.ru/users/{}/", - "urlMain": "https://sotoguide.ru", - "usernameON": "jura1987g", - "bad_site": 1 - }, - "SoundCloud": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://soundcloud.com/{}", - "urlMain": "https://soundcloud.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Soundex": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "0 результатов", - "errorMsg2": "Результатов поиска нет", - "errorTyp��": "message", - "url": "https://soundex.ru/forum/index.php?/search/&q={}&quick=1&type=core_members", - "urlMain": "https://soundex.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "Soundgym": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "exclusion": "[а-яА-Я]", - "url": "https://www.soundgym.co/member/profile?m={}", - "urlMain": "https://www.soundgym.co", - "usernameON": "raydrcougso", - "bad_site": "" - }, - "Soup": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://www.soup.io/author/{}", - "urlMain": "https://www.soup.io", - "usernameON": "cristina", - "bad_site": "" - }, - "SourceForge": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Page not found", - "errorMsg2": "error-page", - "errorTyp��": "message", - "url": "https://sourceforge.net/u/{}/profile/", - "urlMain": "https://sourceforge.net/", - "usernameON": "blue", - "headers": { - "Accept-Language": "ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", - "DNT": "1", - "Priority": "u=1", - "Connection": "keep-alive", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "none", - "Sec-Fetch-User": "?1", - "Sec-GPC": "1", - "TE": "trailers", - "Upgrade-Insecure-Requests": "1", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0" - }, - "bad_site": "" - }, - "Sourcewatch": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.sourcewatch.org/index.php?title=User:{}", - "urlMain": "https://www.sourcewatch.org", - "usernameON": "Rebekah_Wilce", - "bad_site": "" - }, - "Southklad": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Форум кладоискателей - Юг Клад - Информация", - "errorTyp��": "message", - "url": "https://southklad.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://southklad.ru", - "usernameON": "admin", - "bad_site": "" - }, - "Soylentnews": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "The user you requested does not exist, no matter how much you wish this might be the case.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://soylentnews.org/~{}", - "urlMain": "https://soylentnews.org", - "usernameON": "adam", - "bad_site": "" - }, - "Sp-shopogoliki": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://sp-shopogoliki.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://sp-shopogoliki.ru", - "usernameON": "sima", - "bad_site": "" - }, - "Spaces": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://spaces.im/mysite/index/{}/", - "urlMain": "https://spaces.im", - "usernameON": "adam", - "comments": "bad", - "bad_site": "" - }, - "Spark": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://spark.ru/startup/{}", - "urlMain": "https://spark.ru", - "usernameON": "green", - "bad_site": "" - }, - "Spartak_msk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Вы не можете произвести поиск сразу", - "errorMsg2": "Информация", - "errorMsg3": "поиска: 0", - "errorTyp��": "message", - "url": "http://spartak.msk.ru/guest/search.php?keywords=&terms=all&author={}", - "urlMain": "http://spartak.msk.ru", - "usernameON": "malyushenko", - "bad_site": "" - }, - "Spb-projects": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://spb-projects.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://spb-projects.ru", - "usernameON": "Deij", - "bad_site": "" - }, - "Speakerdeck": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "User Not Found", - "errorMsg2": "loige", - "errorMsg3": "mariozaki", - "errorTyp��": "message", - "url": "https://speakerdeck.com/{}", - "urlMain": "https://speakerdeck.com", - "usernameON": "adam", - "bad_site": "" - }, - "Speedrun": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "not found.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://speedrun.com/user/{}", - "urlMain": "https://speedrun.com/", - "usernameON": "3Tau", - "bad_site": "" - }, - "Spiceworks": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://community.spiceworks.com/people/{}", - "urlMain": "https://community.spiceworks.co", - "usernameON": "adam", - "bad_site": "" - }, - "Spinchat": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.spinchat.com/hp/{}/", - "urlMain": "https://www.spinchat.com", - "usernameON": "Adam", - "bad_site": "" - }, - "Splatoon_wiki": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://splatoonwiki.org/wiki/User:{}", - "urlMain": "https://splatoonwiki.org", - "usernameON": "Hewer", - "bad_site": "" - }, - "Spletenie": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Страница не найдена", - "errorMsg2": "
", - "errorTyp��": "message", - "url": "https://forum.sportbox.ru/index.php?app=members&module=list&app=members&module=list&showall=0&sort_key=members_l_display_name&sort_order=asc&max_results=20&name_box=begins&name={}", - "urlMain": "https://forum.sportbox.ru", - "usernameON": "Thedolphin", - "bad_site": "" - }, - "Sports": { - "country": "🇷🇺", - "country_klas": "RU", - "exclusion": "%20", - "errorMsg": "Ничего не найдено", - "errorMsg2": "Пожалуйста, подождите", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.sports.ru/search/?query={}", - "urlMain": "https://www.sports.ru/", - "usernameON": "blue", - "comments": "cf", - "bad_site": "" - }, - "Sportsjournalists": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.sportsjournalists.com/members/?username={}", - "urlMain": "https://www.sportsjournalists.com", - "usernameON": "outofplace", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "SportsTracker": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "\"code\":\"404\"", - "errorMsg2": "Not found", - "errorTyp��": "message", - "url": "https://www.sports-tracker.com/view_profile/{}", - "urlMain": "https://www.sports-tracker.com/", - "urlProbe": "https://api.sports-tracker.com/apiserver/v1/user/name/{}", - "usernameON": "blue", - "bad_site": "" - }, - "Sportstracklive": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.sportstracklive.com/en/user/{}", - "urlMain": "https://www.sportstracklive.com", - "usernameON": "PaddyLewtas", - "bad_site": "" - }, - "Spotify_community": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "\t\t0 results", - "errorMsg2": "No search results found", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://community.spotify.com/t5/forums/searchpage/tab/user?q={}", - "urlMain": "https://community.spotify.com", - "usernameON": "adam", - "bad_site": "" - }, - "Sprashivai_CLOSEDEAD": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "url": "http://sprashivai.ru/{}?sl", - "urlMain": "http://sprashivai.ru", - "usernameON": "red", - "bad_site": 1 - }, - "Spursarmy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": ">Ошибка

", - "errorMsg2": "Профиль", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://spursarmy.com/profile/{}", - "urlMain": "https://spursarmy.com", - "usernameON": "Sloock", - "bad_site": "" - }, - "SPW": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://forum.spw.ru/members/?username={}", - "urlMain": "https://forum.spw.ru", - "usernameON": "kato", - "ignore_status_code": true, - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "SQL": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "ничего не найдено", - "errorMsg2": "begin case_noresults", - "errorMsg3": "<TITLE>Òåõíè÷åñêîå Îáúÿâëåíèå", - "errorTyp��": "message", - "url": "https://www.sql.ru/forum/actualsearch.aspx?search=&sin=0&bid=0&a={}&ma=0&dt=-1&s=1&so=1", - "urlMain": "https://www.sql.ru", - "usernameON": "Birkhoff", - "comments": "bad", - "bad_site": 1 - }, - "Srclog": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://srclog.com/{}", - "urlMain": "https://srclog.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Ssb_wiki": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.ssbwiki.com/User:{}", - "urlMain": "https://www.ssbwiki.com", - "usernameON": "NotBen", - "bad_site": "" - }, - "Stackexchange": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No users matched your search", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://unix.stackexchange.com/users/filter?search={}&filter=Month&tab=Reputation", - "urlMain": "https://unix.stackexchange.com", - "usernameON": "telcom", - "bad_site": "" - }, - "Stackoverflow": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "p>No users matched your search", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://stackoverflow.com/users/?search={}", - "urlMain": "https://stackoverflow.com", - "usernameON": "adam", - "bad_site": "" - }, - "Stackoverflow_ES": { - "country": "🇪🇸", - "country_klas": "ES", - "errorMsg": "403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://stalkerbar.at.ua/index/8-0-{}", - "urlMain": "https://stalkerbar.at.ua", - "usernameON": "lordsfilmpw", - "bad_site": "" - }, - "Star-girl": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено", - "errorMsg2": "Информация", - "errorMsg3": "едеральн", - "errorTyp��": "message", - "url": "https://star-girl.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "https://star-girl.ru", - "usernameON": "Patricia", - "comments": "bad", - "bad_site": "" - }, - "Star_Citizen": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "404 -", - "errorMsg2": "", - "errorTyp��": "message", - "url": "https://steamcommunity.com/groups/{}", - "urlMain": "https://steamcommunity.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Steamid": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Just a moment", - "errorMsg2": "Cloudflare", - "errorMsg3": "profile information", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://steamid.uk/profile/{}", - "urlMain": "https://steamid.uk/", - "comments": "cf", - "usernameON": "blue", - "bad_site": "" - }, - "Stereo": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://stereo.ru/user/{}", - "urlMain": "https://stereo.ru/", - "usernameON": "Yamiha", - "bad_site": "" - }, - "Sti-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "404 Not Found", - "errorTyp��": "message", - "url": "http://www.sti-club.su/member.php?username={}", - "urlMain": "http://www.sti-club.su", - "usernameON": "Viktor85", - "bad_site": 1 - }, - "Stihi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Автор не найден", - "errorMsg2": "Поиск авторов", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.stihi.ru/avtor/{}", - "urlMain": "https://www.stihi.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "Stop-narko_info": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "http://stop-narko.info/search.php?keywords=&terms=all&author={}", - "urlMain": "http://stop-narko.info", - "usernameON": "Ergo", - "bad_site": "" - }, - "Stopgame": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://stopgame.ru/user/{}", - "urlMain": "https://stopgame.ru", - "usernameON": "Diml", - "bad_site": "" - }, - "Store_kde": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "", - "errorTyp��": "message", - "exclusion": "[а-яА-Я]", - "url": "https://store.kde.org/u/{}", - "urlMain": "https://store.kde.org", - "usernameON": "statman", - "bad_site": "" - }, - "Storycorps": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://archive.storycorps.org/user/{}/", - "urlMain": "https://archive.storycorps.org", - "usernameON": "adam", - "bad_site": "" - }, - "Stratege": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "Форум - Stratege.ru", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.stratege.ru/forums/member.php?username={}", - "urlMain": "https://www.stratege.ru", - "usernameON": "blue", - "bad_site": "" - }, - "Strava": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://www.strava.com/athletes/{}", - "urlMain": "https://www.strava.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Studfile": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://studfile.net/users/{}/", - "urlMain": "https://studfile.net", - "usernameON": "adam", - "bad_site": "" - }, - "Stunited": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "http://stunited.org/profile/{}", - "urlMain": "http://stunited.org", - "usernameON": "mani-vel", - "bad_site": 1 - }, - "Subeta": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Invalid user", - "errorMsg2": "Error", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://subeta.net/users/{}", - "urlMain": "https://subeta.net/", - "usernameON": "Brioche", - "comments": "cf", - "bad_site": "" - }, - "Subforums": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://subforums.net/members/?username={}", - "urlMain": "https://subforums.net", - "usernameON": "romator", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Substack": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://{}.substack.com/", - "urlMain": "https://substack.com/", - "usernameON": "irina", - "bad_site": "" - }, - "Sugoidesu": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://sugoidesu.net/members/?username={}", - "urlMain": "https://sugoidesu.net", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Suicidegirls": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://www.suicidegirls.com/members/{}/", - "urlMain": "https://www.suicidegirls.com", - "usernameON": "dtimm87", - "bad_site": "" - }, - "Suomi24": { - "country": "🇫🇮", - "country_klas": "FI", - "errorTyp��": "status_code", - "url": "https://www.suomi24.fi/profiili/{}", - "urlMain": "https://www.suomi24.fi", - "usernameON": "Kilgore", - "bad_site": "" - }, - "Superuser": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No users matched your search.", - "errorMsg2": "s-empty-state bg-black-025", - "errorTyp��": "message", - "url": "https://superuser.com/users?tab=Reputation&filter=all&search={}", - "urlMain": "https://superuser.com", - "usernameON": "adam", - "bad_site": "" - }, - "Support_mozilla": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Page Not Found | Mozilla", - "errorMsg2": "Sorry, we couldn't find the page you were looking for.", - "errorTyp��": "message", - "url": "https://support.mozilla.org/en-US/user/{}", - "urlMain": "https://support.mozilla.org", - "usernameON": "username", - "bad_site": "" - }, - "Suunto_Movescount_CLOSEDEAD": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "error=4&", - "errorMsg2": "<title>QT Media 404", - "errorTyp��": "message", - "url": "http://www.movescount.com/ru/members/{}", - "urlMain": "http://www.movescount.com", - "usernameON": "adam", - "bad_site": 1, - "comments": "https://www.suunto.com/" - }, - "Suzuki-club": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://suzuki-club.ru/members/?username={}", - "urlMain": "https://suzuki-club.ru", - "usernameON": "riphkin", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Suzuri": { - "country": "🇯🇵", - "country_klas": "JP", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://suzuri.jp/{}", - "urlMain": "https://suzuri.jp", - "usernameON": "boss", - "bad_site": "" - }, - "Svidbook": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://www.svidbook.ru/user/{}/", - "urlMain": "https://www.svidbook.ru/", - "usernameON": "Moon", - "comments": "bad", - "bad_site": 1 - }, - "Sweethome3d": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": " Error", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.sweethome3d.com/support/forum/viewmember;?member={}", - "urlMain": "https://www.sweethome3d.com", - "usernameON": "empereur", - "bad_site": "" - }, - "Swimming_forum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://forumswimming.ru/index/8-0-{}", - "urlMain": "http://forumswimming.ru/", - "usernameON": "irina", - "bad_site": "" - }, - "Syberpussy": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://syberpussy.com/members/?username={}", - "urlMain": "https://syberpussy.com", - "usernameON": "akira20m", - "bad_site": 1, - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Syktforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "404Ошибка! - Форум Сыктывкар. Форум города Сыктывкар", - "errorTyp��": "message", - "url": "http://syktforum.ru/profile/{}", - "urlMain": "http://syktforum.ru", - "usernameON": "TonyT", - "bad_site": 1 - }, - "Syktyvkar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://syktyvkar-online.ru/profile/{}", - "urlMain": "http://syktyvkar-online.ru", - "usernameON": "vcaun53", - "bad_site": 1 - }, - "Sysadmins": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Could not obtain user posts information", - "errorMsg2": "", - "errorMsg3": "Hagakure", - "errorTyp��": "message", - "url": "https://sysadmins.ru/member{}.html", - "urlMain": "https://sysadmins.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Sysprogs": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://sysprogs.com/w/forums/users/{}/", - "urlMain": "https://sysprogs.com", - "usernameON": "jamessmith", - "comments": "RKN", - "bad_site": "" - }, - "Sythe": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", - "errorMsg2": "Attention Required! | Cloudflare", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.sythe.org/members/?username={}", - "urlMain": "https://www.sythe.org", - "usernameON": "rskingp", - "bad_site": "" - }, - "T_baidu": { - "country": "🇨🇳", - "country_klas": "CN", - "errorTyp��": "response_url", - "url": "https://tieba.baidu.com/home/main?un={}", - "urlMain": "https://tieba.baidu.com", - "usernameON": "irina", - "bad_site": "" - }, - "Tabun": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://tabun.everypony.ru/profile/{}/", - "urlMain": "https://tabun.everypony.ru", - "usernameON": "adam", - "bad_site": "" - }, - "TalkDrugabuse": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "url": "https://talk.drugabuse.com/members/?username={}", - "urlMain": "https://talk.drugabuse.com", - "usernameON": "adam", - "bad_site": 1, - "comments": "cf", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Talkingsober": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://talkingsober.com/u/{}/summary", - "urlMain": "https://talkingsober.com", - "usernameON": "carljr", - "bad_site": "" - }, - "Talkstats": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "[а-яА-Я]", - "url": "https://www.talkstats.com/members/?username={}", - "urlMain": "https://www.talkstats.com", - "usernameON": "johnlee", - "bad_site": 1, - "comments": "bad", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Tamboff": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Извините, такого пользователя не существуе", - "errorMsg2": " - tamboff.ru ", - "errorTyp��": "message", - "url": "http://www.tamboff.ru/forum/profile.php?mode=viewprofile&u={}", - "urlMain": "http://www.tamboff.ru", - "usernameON": "z0dl9rnd", - "comments": "bad", - "bad_site": 1 - }, - "TamTam": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "maximum-scale=1", - "errorMsg2": "ТамТам", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://tamtam.chat/{}", - "urlMain": "https://tamtam.chat/", - "usernameON": "blue", - "bad_site": "" - }, - "Taringa_CLOSEDEAD": { - "country": "🇦🇷", - "country_klas": "AR", - "errorTyp��": "response_url", - "url": "https://www.taringa.net/{}", - "urlMain": "https://www.taringa.net/", - "usernameON": "BLUE", - "bad_site": 1 - }, - "Teakdoor": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorMsg2": "Please wait", - "errorTyp��": "message", - "url": "https://teakdoor.com/members/{}.html", - "urlMain": "https://teakdoor.com", - "usernameON": "joe-90", - "comments": "bad", - "bad_site": "" - }, - "Techdirt": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": " | Techdirt", - "errorMsg2": "", - "errorTyp��": "message", - "url": "https://www.techdirt.com/user/{}/", - "urlMain": "https://www.techdirt.com/", - "usernameON": "thatoneguy", - "bad_site": "" - }, - "Techpowerup": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "url": "https://www.techpowerup.com/forums/members/?username={}", - "urlMain": "https://www.techpowerup.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Techrepublic": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.techrepublic.com/members/profile/{}/", - "urlMain": "https://www.techrepublic.com", - "usernameON": "Kentertainments75", - "bad_site": 1 - }, - "Tek-tips": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.tek-tips.com/userinfo.cfm?member={}", - "urlMain": "https://www.tek-tips.com/", - "usernameON": "red", - "bad_site": "" - }, - "Teknik": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "The user does not exist", - "errorMsg2": "Not Exist | Teknik ", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://user.teknik.io/{}", - "urlMain": "https://teknik.io/", - "usernameON": "red", - "bad_site": 1 - }, - "Telegram": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://t.me/{}", - "urlMain": "https://t.me/", - "usernameON": "Klaus", - "bad_site": "" - }, - "Telepropusk": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://telepropusk.ru/forums/users/{}/", - "urlMain": "https://telepropusk.ru", - "usernameON": "telepropusk", - "bad_site": "" - }, - "Teletype": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://teletype.in/@{}", - "urlMain": "https://teletype.in", - "usernameON": "adam", - "bad_site": "" - }, - "Television_linternaute": { - "country": "🇫🇷", - "country_klas": "FR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://television.linternaute.com/profile/user/{}", - "urlMain": "https://television.linternaute.com", - "usernameON": "Radinoz", - "bad_site": "" - }, - "Tellonym": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://tellonym.me/{}", - "urlMain": "https://tellonym.me/", - "usernameON": "blue", - "comments": "cf", - "bad_site": "" - }, - "Tenchat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://tenchat.ru/{}", - "urlMain": "https://tenchat.ru", - "usernameON": "agreec", - "bad_site": "" - }, - "Teplak": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Извините, такого пользователя не существует", - "errorMsg2": "Теплый Стан :: ", - "errorMsg3": "Извините,", - "errorTyp��": "message", - "url": "http://www.teplak.ru/frm/profile.php?mode=viewprofile&u={}", - "urlMain": "http://www.teplak.ru", - "usernameON": "Lexa", - "comments": "zamedlenie", - "bad_site": 1 - }, - "Terminator": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://terminator-scc.net.ru/index/8-0-{}", - "urlMain": "http://terminator-scc.net.ru", - "usernameON": "red", - "bad_site": "" - }, - "Terminatorium": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "профиль забанен или удален", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://terminatorium.borda.ru/?32-{}", - "urlMain": "https://terminatorium.borda.ru/", - "usernameON": "tengu", - "bad_site": "" - }, - "Termoshop": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://termoshop.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://termoshop.ru/", - "usernameON": "yurez", - "bad_site": "" - }, - "Test_pypi": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "page\":0,\"totalMatches\":0", - "errorMsg2": "results\":[]", - "errorTyp��": "message", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://test.pypi.org/user/{}/", - "urlMain": "https://test.pypi.org", - "usernameON": "samsja", - "urlProbe": "https://deps.dev/_/search?q={}&system=PYPI&page=0&perPage=20", - "bad_site": "" - }, - "Tetongravity": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "Please wait", - "errorMsg2": "This user has not registered and therefore does not have a profile to view", - "errorTyp��": "message", - "url": "https://www.tetongravity.com/forums/member.php/?username={}", - "urlMain": "https://www.tetongravity.com", - "usernameON": "RoooR", - "bad_site": "" - }, - "Texasguntalk": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "url": "https://www.texasguntalk.com/members/?username={}", - "urlMain": "https://www.texasguntalk.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Thaicat": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://www.thaicat.ru/index/8-0-{}", - "urlMain": "http://www.thaicat.ru", - "usernameON": "SparcO", - "bad_site": "" - }, - "Theanswerbank": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "Welcome to the AnswerBank", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://www.theanswerbank.co.uk/members/{}", - "urlMain": "https://www.theanswerbank.co.uk", - "usernameON": "adam", - "bad_site": "" - }, - "Thebeautybrains": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://thebeautybrains.com/users/{}/", - "urlMain": "https://thebeautybrains.com", - "usernameON": "randys", - "bad_site": "" - }, - "Thebigboss": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "http://thebigboss.org/author/{}", - "urlMain": "http://thebigboss.org", - "usernameON": "adam", - "bad_site": "" - }, - "Thechessforum": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Page Not Found", - "errorMsg2": "Sorry, page not found", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://thechessforum.com/profile/{}/", - "urlMain": "https://thechessforum.com", - "usernameON": "menaalkhan", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Thechive": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://thechive.com/author/{}/", - "urlMain": "https://thechive.com", - "usernameON": "camrybishop", - "bad_site": "" - }, - "THEcommunity": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://thecommunity.ru/user/{}/", - "urlMain": "https://thecommunity.ru", - "usernameON": "pjslot", - "bad_site": "" - }, - "Thefastdiet": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "Sorry, ", - "errorMsg2": "page doesn", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://thefastdiet.co.uk/forums/users/{}/", - "urlMain": "https://thefastdiet.co.uk", - "usernameON": "fadepeacock", - "bad_site": "" - }, - "Thefastlaneforum": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "redirection", - "url": "https://www.thefastlaneforum.com/community/members/?username={}", - "urlMain": "https://www.thefastlaneforum.com", - "usernameON": "adam", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Thelion": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "We are sorry but the following error has occurred.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "http://www.thelion.com/bin/profile.cgi?c=s&ru_name={}", - "urlMain": "http://www.thelion.com", - "usernameON": "adam", - "bad_site": "" - }, - "Themeforest": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://themeforest.net/user/{}", - "urlMain": "https://themeforest.net", - "usernameON": "adam", - "bad_site": "" - }, - "Theodysseyonline": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.theodysseyonline.com/user/@{}", - "urlMain": "https://www.theodysseyonline.com", - "usernameON": "adam", - "bad_site": "" - }, - "Theoutlander": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403 Forbidden", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://theoutlander.ru/index/8-0-{}", - "urlMain": "http://theoutlander.ru", - "usernameON": "Parma", - "bad_site": "" - }, - "Thephysicsforum": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorMsg2": "The Physics Forum", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.thephysicsforum.com/members/{}.html", - "urlMain": "https://www.thephysicsforum.com", - "usernameON": "andrewc", - "bad_site": "" - }, - "Thesimsresource": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.thesimsresource.com/artists/{}/", - "urlMain": "https://www.thesimsresource.com/", - "usernameON": "soloriya", - "bad_site": "" - }, - "Thestudentroom": { - "country": "🇬🇧", - "country_klas": "GB", - "errorMsg": "NoneNone", - "errorMsg2": "This user has not registered and therefore does not have a profile to view.", - "errorMsg3": "| Cloudflare", - "errorTyp��": "message", - "url": "https://www.thestudentroom.co.uk/member.php?username={}", - "urlMain": "https://www.thestudentroom.co.uk", - "usernameON": "adam", - "bad_site": "" - }, - "Thevampirediaries": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://thevampirediaries.ru/user/{}/", - "urlMain": "http://thevampirediaries", - "usernameON": "PrestonPauh", - "comments": "no_oplata", - "bad_site": 1 - }, - "Theverge": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.theverge.com/users/{}", - "urlMain": "https://www.theverge.com", - "usernameON": "Patlex", - "bad_site": "" - }, - "Thewatchforum": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "redirection", - "exclusion": "[а-яА-Я]", - "url": "https://www.thewatchforum.co.uk/members/?username={}", - "urlMain": "https://www.thewatchforum.co.uk", - "usernameON": "wrench", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Thingiverse": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.thingiverse.com/{}/designs", - "urlMain": "https://www.thingiverse.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Thlaspi": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://thlaspi.com/en/user/{}", - "urlMain": "https://thlaspi.com", - "usernameON": "eblinkoff", - "comments": "-t 22 good", - "bad_site": "" - }, - "Threads": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Threads", - "errorMsg2": "| Cloudflare", - "errorMsg3": "content=\"https://www.threads.com/login", - "errorTyp��": "message", - "headers": { - "Accept-Language": "ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", - "Priority": "u=1", - "DNT": "1", - "Host": "www.threads.com", - "Connection": "keep-alive", - "Upgrade-Insecure-Requests": "1", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "none", - "Sec-Fetch-User": "?1", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0" - }, - "url": "https://www.threads.com/@{}", - "urlMain": "https://www.threads.com", - "usernameON": "adam", - "bad_site": "" - }, - "TikTok": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://www.tiktok.com/@{}?lang=ru-RU", - "urlMain": "https://www.tiktok.com/", - "headers": { - "Accept": "*/*", - "Sec-GPC": "1", - "Connection": "keep-alive", - "Host": "www.tiktok.com", - "User-Agent": "Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots)" - }, - "usernameON": "red", - "bad_site": "" - }, - "Tildes": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://tildes.net/user/{}", - "urlMain": "https://tildes.net", - "usernameON": "Palatino", - "bad_site": "" - }, - "Tinder": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Dating, Make Friends &", - "errorMsg2": "заводи друзейТинькофф", - "errorTyp��": "message", - "url": "https://www.tinkoff.ru/invest/social/profile/{}/", - "urlMain": "https://www.tinkoff.ru", - "usernameON": "Usual_user", - "bad_site": "" - }, - "Tjournal_CLOSEDEAD": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Мы все внимательно посмотрели, но ничего не нашли :(", - "errorMsg2": "Можно попробовать изменить поисковый запрос или пойти почитать", - "errorTyp��": "message", - "url": "https://tjournal.ru/search/v2/subsite/relevant?query={}", - "urlMain": "https://tjournal.ru", - "usernameON": "adam", - "bad_site": 1 - }, - "Tkgr": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://tkgr.ru/forum/member/{}", - "urlMain": "http://tkgr.ru/", - "usernameON": "siber", - "comments": "zamedlenie", - "bad_site": "" - }, - "Tl": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://tl.net/forum/profile.php?user={}", - "urlMain": "https://tl.net", - "usernameON": "adam", - "bad_site": "" - }, - "Tolyatty": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://tolyatty.net/user/{}/", - "urlMain": "http://tolyatty.net", - "usernameON": "derre-red", - "bad_site": 1 - }, - "Tomtom_CLOSEDEAD": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://discussions.tomtom.com/en/profile/{}", - "urlMain": "https://discussions.tomtom.com/", - "usernameON": "adam", - "bad_site": 1 - }, - "Toot_mstd": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "[а-яА-Я]", - "errorTyp��": "status_code", - "url": "https://toot.cat/@{}", - "urlMain": "https://toot.cat", - "usernameON": "bob", - "bad_site": "" - }, - "Topcheats": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "<title>403", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://topcheats.ucoz.com/index/8-0-{}", - "urlMain": "https://topcheats.ucoz.com", - "usernameON": "sergeizakaz", - "bad_site": "" - }, - "Topdb": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "Извините, но пользователь не найден", - "errorTyp��": "message", - "url": "https://topdb.ru/{}", - "urlMain": "https://topdb.ru", - "usernameON": "sukaebana2017", - "bad_site": "" - }, - "Topwar": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://topwar.ru/user/{}/", - "urlMain": "https://topwar.ru", - "usernameON": "datur", - "bad_site": "" - }, - "Torrent-soft": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://torrent-soft.net/user/{}/", - "urlMain": "https://torrent-soft.net", - "usernameON": "Baguvix", - "bad_site": "" - }, - "Totalstavki_CLOSEDEAD": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "redirection", - "exclusion": "[а-яА-Я]", - "url": "https://totalstavki.ru/forum/members/?username={}", - "urlMain": "https://totalstavki.ru", - "usernameON": "turbo", - "bad_site": 1, - "comments": "zakr", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Totseans_CLOSEDEAD": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "<title>Totseans", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "http://www.totseans.com/bbs/profile/{}", - "urlMain": "http://www.totseans.com", - "usernameON": "Vizier", - "comments": "RUblock", - "bad_site": 1 - }, - "Tottenhamhotspur": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "http://tottenhamhotspur.ru/search.php?keywords=&terms=all&author={}", - "urlMain": "http://tottenhamhotspur.ru", - "usernameON": "rusiakos", - "bad_site": "" - }, - "Touristlink": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Members across the World", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "https://www.touristlink.com/user/{}", - "urlMain": "https://www.touristlink.com", - "usernameON": "green", - "comments": "Oplata", - "bad_site": 1 - }, - "Tourney": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "По вашему запросу ничего не найдено.", - "errorMsg2": "colspan=\"4\">", - "errorTyp��": "message", - "url": "http://www.tourney.ru/forum/userlist.php?username={}&show_group=-1&sort_by=username", - "urlMain": "http://www.tourney.ru", - "usernameON": "Spirit", - "bad_site": "" - }, - "Toxicbun": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "url": "https://toxicbun.com/@{}", - "urlMain": "https://toxicbun.com", - "usernameON": "Mark", - "comments": "bad", - "bad_site": 1 - }, - "Toyster": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "toyster.ru форум", - "errorTyp��": "message", - "url": "https://toyster.ru/forum/member.php?username={}", - "urlMain": "https://toyster.ru", - "usernameON": "DEMOH85", - "bad_site": "" - }, - "TrackmaniaLadder": { - "country": "🇫🇷", - "country_klas": "FR", - "errorMsg": "player unknown or invalid", - "errorMsg2": "NoneNone", - "errorMsg3": "player unknown or invalid", - "errorTyp��": "message", - "url": "http://en.tm-ladder.com/{}_rech.php", - "urlMain": "http://en.tm-ladder.com/index.php", - "usernameON": "blue", - "comments": "bad", - "bad_site": 1 - }, - "TradingView": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "This isn't the page you're looking for", - "errorMsg2": "", - "errorTyp��": "message", - "url": "https://www.tradingview.com/u/{}/", - "urlMain": "https://www.tradingview.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Trainsim": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorMsg2": "Cloudflare", - "errorMsg3": "Just a moment", - "errorTyp��": "message", - "url": "https://www.trainsim.com/vbts/member.php?username={}", - "urlMain": "https://www.trainsim.com/", - "usernameON": "adam", - "comments": "super", - "bad_site": 1 - }, - "Trakt": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://www.trakt.tv/users/{}", - "urlMain": "https://www.trakt.tv/", - "usernameON": "blue", - "bad_site": "" - }, - "Translatewiki": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://translatewiki.net/wiki/User:{}", - "urlMain": "https://translatewiki.net", - "usernameON": "Adam", - "bad_site": "" - }, - "Tranzilla": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "По данному запросу ничего не найдено.", - "errorMsg2": "><div class=\"info_block\"></div><h2>", - "errorMsg3": "Internal Server Error", - "errorTyp��": "message", - "url": "https://tranzilla.ru/search/?request=&search_type=t", - "urlMain": "https://tranzilla.ru", - "usernameON": "irina", - "bad_site": 1 - }, - "Trashbox": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "div_text_error2", - "errorTyp��": "message", - "url": "https://trashbox.ru/users/{}", - "urlMain": "https://trashbox.ru/", - "usernameON": "blue", - "bad_site": "" - }, - "Travelblog": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.travelblog.org/Bloggers/{}", - "urlMain": "https://www.travelblog.org", - "usernameON": "adam", - "bad_site": "" - }, - "Travelfish": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "Private or invalid", - "errorMsg2": "| Cloudflare", - "errorMsg3": "Please wait", - "errorTyp��": "message", - "url": "https://www.travelfish.org/member_popup.php?u={}", - "urlMain": "https://www.travelfish.org", - "usernameON": "YeMeansWater", - "bad_site": "" - }, - "Travellerspoint": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.travellerspoint.com/users/{}/", - "urlMain": "https://www.travellerspoint.com", - "usernameON": "blue", - "bad_site": "" - }, - "Travis": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://travis-ci.community/u/{}/summary", - "urlMain": "https://travis-ci.community/", - "usernameON": "montana", - "bad_site": "" - }, - "Trello": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "model not found", - "errorMsg2": "Trello Server Error", - "errorTyp��": "message", - "url": "https://trello.com/{}", - "urlMain": "https://trello.com/", - "urlProbe": "https://trello.com/1/Members/{}", - "usernameON": "blue", - "bad_site": "" - }, - "Trictrac": { - "country": "🇫🇷", - "country_klas": "FR", - "errorTyp��": "status_code", - "url": "https://www.trictrac.net/mur/{}", - "urlMain": "https://www.trictrac.net", - "usernameON": "entelechie", - "bad_site": "" - }, - "Trilife": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению", - "errorMsg2": "

", - "errorTyp��": "message", - "url": "https://trilife.ru/search/?q={}&sort=&entity=users&from=&to=", - "urlMain": "https://trilife.ru", - "usernameON": "irina", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Trinixy": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://trinixy.ru/user/{}/", - "urlMain": "https://trinixy.ru", - "usernameON": "green", - "bad_site": "" - }, - "TripAdvisor": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "(!cancel)", - "errorMsg2": "| Cloudflare", - "errorTyp��": "message", - "headers": { - "Accept-Language": "ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", - "DNT": "1", - "Priority": "u=1", - "Connection": "keep-alive", - "Sec-Fetch-Dest": "document", - "Sec-Fetch-Mode": "navigate", - "Sec-Fetch-Site": "none", - "Sec-Fetch-User": "?1", - "Sec-GPC": "1", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0" - }, - "url": "https://www.tripadvisor.com/Profile/{}", - "urlMain": "https://www.tripadvisor.com", - "usernameON": "blue", - "bad_site": "" - }, - "Tripline": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.tripline.net/{}", - "urlMain": "https://www.tripline.net", - "usernameON": "adam", - "bad_site": "" - }, - "Tripoto": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.tripoto.com/profile/{}", - "urlMain": "https://www.tripoto.com", - "usernameON": "kapilpandit", - "bad_site": "" - }, - "Tripster": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://tripster.ru/{}/", - "urlMain": "https://tripster.ru", - "usernameON": "adam", - "comments": "ZAK_user", - "bad_site": 1 - }, - "Trisquel": { - "country": "🇪🇺", - "country_klas": "EU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://trisquel.info/it/users/{}", - "urlMain": "https://trisquel.info", - "usernameON": "redfox", - "bad_site": "" - }, - "Trp_red": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W[а-яА-Я]", - "errorTyp��": "status_code", - "url": "https://www.trp.red/follow/{}", - "urlMain": "https://www.trp.red", - "usernameON": "AlwaysStoic", - "bad_site": "" - }, - "Truckersmp": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "https://truckersmp.ru/{}", - "urlMain": "https://truckersmp.ru", - "usernameON": "RamanBY", - "bad_site": "" - }, - "Trueachievements": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://www.trueachievements.com/gamer/{}", - "urlMain": "https://www.trueachievements.com", - "usernameON": "metallicafan459", - "bad_site": "" - }, - "Truelancer": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "This page could not be found.", - "errorMsg2": "404", - "errorTyp��": "message", - "url": "https://www.truelancer.com/freelancer/{}", - "urlMain": "https://www.truelancer.com", - "usernameON": "adam", - "bad_site": "" - }, - "Truesteamachievements": { - "country": "🇬🇧", - "country_klas": "GB", - "errorTyp��": "status_code", - "url": "https://truesteamachievements.com/gamer/{}", - "urlMain": "https://truesteamachievements.com", - "usernameON": "adam", - "comments": "cf", - "bad_site": "" - }, - "Truthbook": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "No suitable matches were found.", - "errorMsg2": "Please wait", - "errorTyp��": "message", - "url": "https://forum.truthbook.com/search.php?keywords=&terms=all&author={}&sc=1&sf=all&sk=t&sd=d&sr=posts&st=0&ch=300&t=0&submit=Search", - "urlMain": "https://truthbook.com", - "usernameON": "fanofVan", - "bad_site": "" - }, - "Truthpodium": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://truthpodium.org/@{}", - "urlMain": "https://truthpodium.org", - "usernameON": "Bubba8613", - "bad_site": "" - }, - "Trworkshop": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "<title>Информация", - "errorMsg2": "Подходящих тем или сообщений не найдено.", - "errorTyp��": "message", - "url": "http://www.trworkshop.net/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://www.trworkshop.net", - "usernameON": "eric", - "bad_site": "" - }, - "Ttrails": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению, пользователь не найден", - "errorMsg2": "<title data-react-helmet=\"true\">Тропинки.ру", - "errorTyp��": "message", - "url": "https://ttrails.ru/users/{}", - "urlMain": "https://ttrails.ru", - "usernameON": "danika983", - "bad_site": "" - }, - "Ttsport": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://www.ttsport.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://www.ttsport.ru", - "usernameON": "Roos", - "comments": "bad", - "bad_site": "" - }, - "Tula": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "url": "http://tula.net.ru/user/{}/", - "urlMain": "http://tula.net.ru", - "usernameON": "evgenij", - "bad_site": 1 - }, - "Tulup": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Нет записей, удовлетворяющих условиям запроса", - "errorMsg2": "

", - "errorTyp��": "message", - "url": "https://www.tulup.ru/noindex/userlist.php?search={}", - "urlMain": "https://www.tulup.ru", - "usernameON": "Murchik", - "bad_site": "" - }, - "Tumblr": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W|[а-яА-Я]", - "errorTyp��": "status_code", - "url": "https://{}.tumblr.com/", - "urlMain": "https://tumblr.com/", - "usernameON": "red", - "comments": "cf", - "bad_site": "" - }, - "Tunefind": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "false,\"err\":{\"name", - "errorMsg2": "Tunefind", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://www.tunefind.com/user/profile/{}", - "urlMain": "https://www.tunefind.com", - "usernameON": "adam", - "comments": "super", - "bad_site": "" - }, - "Turbina": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "response_url", - "url": "https://turbinatravels.com/authors/{}/", - "urlMain": "https://turbina.ru", - "usernameON": "maklai", - "comments": "bad", - "bad_site": "" - }, - "Turkey-info": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Не найдено ни одного пользователя по заданным критериям", - "errorMsg2": "Пользователей: 0", - "errorTyp��": "message", - "url": "https://turkey-info.ru/forum/memberlist.php?username={}", - "urlMain": "https://turkey-info.ru", - "usernameON": "orduzulu", - "bad_site": "" - }, - "Turpravda": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "", - "errorMsg2": "Страница не найдена", - "errorTyp��": "message", - "url": "https://www.turpravda.ua/profile/{}/", - "urlMain": "https://www.turpravda.ua", - "usernameON": "iryna83", - "bad_site": "" - }, - "Tutor": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "К сожалению, введенный вами адрес недоступен", - "errorMsg2": "dtk-front-nuxt</title", - "errorTyp��": "message", - "url": "https://tutor.ru/tutor/{}", - "urlMain": "https://tutor.ru", - "usernameON": "veronika-vikulova", - "bad_site": 1 - }, - "Tutsplus": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://tutsplus.com/authors/{}", - "urlMain": "https://tutsplus.com", - "usernameON": "gigi-sayfan", - "bad_site": "" - }, - "Tv-games": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "url": "http://tv-games.ru/forum/member.php?username={}", - "urlMain": "http://tv-games.ru/", - "usernameON": "adam", - "bad_site": "" - }, - "TVgab": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "For support, please email", - "errorMsg2": "content=\"black-translucent\"/><link", - "errorMsg3": "user-scalable=no\"}],[\"$\",\"meta\\", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://gab.com/{}", - "urlMain": "https://gab.com/", - "usernameON": "HomerWarren", - "comments": "RUblock", - "bad_site": "" - }, - "Tvtropes": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://tvtropes.org/pmwiki/pmwiki.php/Tropers/{}", - "urlMain": "https://tvtropes.org", - "usernameON": "ZheToralf", - "bad_site": "" - }, - "Tw_weibo": { - "country": "🇨🇳", - "country_klas": "CN", - "exclusion": "\\W|[а-я-А-Я]", - "errorMsg": "<!DOCTYPE", - "errorMsg2": "Oops!", - "errorTyp��": "message", - "url": "https://tw.weibo.com/{}", - "urlMain": "https://tw.weibo.com", - "usernameON": "wow36kr", - "comments": "ZAK_user", - "ignore_status_code": true, - "bad_site": 1 - }, - "Twentysix": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "[а-яА-Я]", - "url": "https://twentysix.ru/profile/{}/created/topics/", - "urlMain": "https://twentysix.ru", - "usernameON": "AleksandrGrigorev", - "bad_site": "" - }, - "Twitch": { - "country": "🌎", - "country_klas": "WR", - "exclusion": "\\W|[а-я-А-Я]", - "errorMsg": "g:site_name' content='Twitch'><meta property='og:title' content='T", - "errorMsg2": "<title>Just a moment", - "errorMsg3": "content='@twitch'><link", - "errorTyp��": "message", - "url": "https://www.twitch.tv/{}", - "urlMain": "https://www.twitch.tv/", - "urlProbe": "https://m.twitch.tv/{}", - "usernameON": "adam", - "bad_site": "" - }, - "Twitter": { - "country": "🌎", - "country_klas": "WR", - "errorMsg": "invalid_username", - "errorMsg2": "desc\":\"Available!", - "errorMsg3": "valid\":true,", - "errorTyp��": "message", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://x.com/{}", - "urlMain": "https://x.com", - "urlProbe": "https://api.twitter.com/i/users/username_available.json?username={}", - "usernameON": "durov", - "bad_site": "" - }, - "Typeracer": { - "country": "🇺🇸", - "country_klas": "US", - "errorMsg": "<title>Profile Not Found", - "errorMsg2": "We couldn't find a profile for username:", - "errorTyp��": "message", - "url": "https://data.typeracer.com/pit/profile?user={}", - "urlMain": "https://data.typeracer.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Uanime": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Тем або повідомлень", - "errorMsg2": "Інформація", - "errorMsg3": "

Please wait", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "http://uanime.org.ua/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "http://uanime.org.ua", - "usernameON": "Antigonius", - "comments": "old", - "bad_site": 1 - }, - "Uaodessa": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Пользователь не найден", - "errorMsg2": "403 Forbidden", - "errorTyp��": "message", - "url": "https://uaodessa.com/index/8-0-{}", - "urlMain": "https://uaodessa.com", - "usernameON": "Trentonbouri", - "bad_site": "", - "exclusion": "\\W" - }, - "Uazpatriot": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "Информация", - "errorTyp��": "message", - "url": "https://uazpatriot.ru/forum/search.php?keywords=&terms=all&author={}", - "urlMain": "https://uazpatriot.ru", - "usernameON": "irina", - "bad_site": "" - }, - "Ubisoft_CLOSEDEAD": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://discussions.ubisoft.com/user/{}?lang=en-US", - "urlMain": "https://discussions.ubisoft.com", - "usernameON": "mrdarrek", - "bad_site": 1 - }, - "Uchportal": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не найден", - "errorMsg2": "NoneNone", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://www.uchportal.ru/index/8-0-{}", - "urlMain": "https://www.uchportal.ru", - "usernameON": "adam", - "bad_site": "" - }, - "Udemy": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "response_url", - "url": "https://www.udemy.com/user/{}/", - "urlMain": "https://www.udemy.com", - "usernameON": "adammortimer", - "bad_site": "" - }, - "Ufocomm": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Найдено: 0 результатов", - "errorMsg2": "одожд", - "errorTyp��": "message", - "url": "https://www.ufocomm.ru/search/?&q={}&type=core_members", - "urlMain": "https://www.ufocomm.ru", - "usernameON": "vik", - "bad_site": "" - }, - "Uforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "errorMsg2": "content=\"noindex,follow", - "errorTyp��": "message", - "url": "https://uforum.uz/member.php?username={}", - "urlMain": "https://uforum.uz", - "usernameON": "Constantin", - "bad_site": "" - }, - "Uft": { - "country": "🇷🇺", - "country_klas": "RU", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://uft.me/persons/{}", - "urlMain": "https://uft.me", - "usernameON": "darkelectro", - "comments": "old", - "bad_site": 1 - }, - "Ukraine-footbal": { - "country": "🇺🇦", - "country_klas": "UA", - "errorMsg": "Користувача не знайдено", - "errorMsg2": "403 Forbidden", - "errorMsg3": "User not found", - "errorTyp��": "message", - "exclusion": "\\W", - "url": "https://ukraine-footbal.at.ua/index/8-0-{}", - "urlMain": "https://ukraine-footbal.at.ua", - "usernameON": "pavelsamoylov2022", - "bad_site": "" - }, - "Ultimate-Guitar": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://ultimate-guitar.com/u/{}", - "urlMain": "https://ultimate-guitar.com/", - "usernameON": "blue", - "bad_site": "" - }, - "Universemc": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "redirection", - "exclusion": "\\W|[а-я-А-Я]", - "url": "https://universemc.us/members/?username={}", - "urlMain": "https://universemc.us", - "usernameON": "sinnfein", - "comments": "RUblock", - "bad_site": "", - "headers": { - "User-Agent": "curl/8.11.0" - } - }, - "Unixforum": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Подходящих тем или сообщений не найдено.", - "errorMsg2": "unixforum.org - Информация", - "errorTyp��": "message", - "url": "https://unixforum.org/search.php?keywords=&terms=all&author={}", - "urlMain": "https://unixforum.org", - "usernameON": "adam", - "bad_site": "" - }, - "Unsorted": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "Извините, такого пользователя не существует", - "errorMsg2": "unsorted ~ ", - "errorTyp��": "message", - "url": "https://unsorted.me/profile.php?mode=viewprofile&u={}", - "urlMain": "https://unsorted.me", - "usernameON": "DALDON", - "bad_site": "" - }, - "Unsplash": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "url": "https://unsplash.com/@{}/likes", - "urlMain": "https://unsplash.com/", - "usernameON": "adam", - "bad_site": "" - }, - "Untappd": { - "country": "🇺🇸", - "country_klas": "US", - "errorTyp��": "status_code", - "url": "https://untappd.com/user/{}", - "urlMain": "https://untappd.com", - "usernameON": "adam", - "bad_site": "" - }, - "Uphillathlete": { - "country": "🌎", - "country_klas": "WR", - "errorTyp��": "status_code", - "exclusion": "\\W|[а-яА-Я]", - "url": "https://uphillathlete.com/forums/users/{}/", - "urlMain": "https://uphillathlete.com", - "usernameON": "yamabu", - "bad_site": "" - }, - "Uralfishing": { - "country": "🇷🇺", - "country_klas": "RU", - "errorMsg": "nowrap=\"nowrap\">

14
+ + + + + {{range .Data.Services}} + + + + + {{end}} + +
ServiceStatus
{{.Name}} + {{if .Running}} + {{.Status}} + {{else}} + {{.Status}} + {{end}} +
+{{end}} diff --git a/services/setec-manager/web/templates/firewall.html b/services/setec-manager/web/templates/firewall.html new file mode 100644 index 0000000..4a16d9f --- /dev/null +++ b/services/setec-manager/web/templates/firewall.html @@ -0,0 +1,40 @@ +{{define "content"}} +

Firewall Rules

+ +
+

Status: + {{if .Data.Active}} + Active + {{else}} + Inactive + {{end}} +

+ +
+ + + + + + + {{range .Data.Rules}} + + + + + + + + + {{else}} + + {{end}} + +
#ActionFromToPortProto
{{.Num}} + {{if eq .Action "ALLOW"}} + ALLOW + {{else}} + {{.Action}} + {{end}} + {{.From}}{{.To}}{{.Port}}{{.Proto}}
No rules configured.
+{{end}} diff --git a/services/setec-manager/web/templates/float.html b/services/setec-manager/web/templates/float.html new file mode 100644 index 0000000..5bbd4b7 --- /dev/null +++ b/services/setec-manager/web/templates/float.html @@ -0,0 +1,40 @@ +{{define "content"}} +

Float Mode Sessions

+ +
+

Active Sessions: {{len .Data.Sessions}}

+
+
+ + + + + + + {{range .Data.Sessions}} + + + + + + + + {{else}} + + {{end}} + +
Session IDTargetStartedStatusActions
{{.ID}}{{.Target}}{{.Started}} + {{if eq .Status "active"}} + Active + {{else if eq .Status "paused"}} + Paused + {{else}} + {{.Status}} + {{end}} + + View +
+ +
+
No active float sessions.
+{{end}} diff --git a/services/setec-manager/web/templates/hosting.html b/services/setec-manager/web/templates/hosting.html new file mode 100644 index 0000000..271e7cd --- /dev/null +++ b/services/setec-manager/web/templates/hosting.html @@ -0,0 +1,783 @@ +{{define "content"}} +

Hosting Providers

+ + +
+ {{if .Data.Providers}} + {{range .Data.Providers}} +
+

{{.DisplayName}}

+

+ {{if .Connected}} + Connected + {{else if .HasConfig}} + Disconnected + {{else}} + Not Configured + {{end}} +

+
+ {{end}} + {{else}} +
+

No Providers

+

No hosting providers are registered. Providers are loaded at server start.

+
+ {{end}} +
+ + + + + + + + +{{end}} diff --git a/services/setec-manager/web/templates/login.html b/services/setec-manager/web/templates/login.html new file mode 100644 index 0000000..ccfa486 --- /dev/null +++ b/services/setec-manager/web/templates/login.html @@ -0,0 +1,49 @@ + + + + + + Setec App Manager — Login + + + + + + + + diff --git a/services/setec-manager/web/templates/logs.html b/services/setec-manager/web/templates/logs.html new file mode 100644 index 0000000..9829a98 --- /dev/null +++ b/services/setec-manager/web/templates/logs.html @@ -0,0 +1,38 @@ +{{define "content"}} +

Logs

+ +
+ + + + +
+ +
{{.Data.Lines}}
+ + +{{end}} diff --git a/services/setec-manager/web/templates/monitor.html b/services/setec-manager/web/templates/monitor.html new file mode 100644 index 0000000..f7018ed --- /dev/null +++ b/services/setec-manager/web/templates/monitor.html @@ -0,0 +1,50 @@ +{{define "content"}} +

System Monitor

+ +
+
+

CPU

+
+
+
+

{{printf "%.1f" .Data.CPU}}%

+
+
+

Memory

+
+
+
+

{{.Data.MemUsed}} / {{.Data.MemTotal}} ({{printf "%.1f" .Data.MemPercent}}%)

+
+
+

Disk

+
+
+
+

{{.Data.DiskUsed}} / {{.Data.DiskTotal}} ({{printf "%.1f" .Data.DiskPercent}}%)

+
+
+

Network

+

In: {{.Data.NetIn}}

+

Out: {{.Data.NetOut}}

+
+
+ +

Processes (Top 10)

+ + + + + + {{range .Data.Processes}} + + + + + + + + {{end}} + +
PIDNameCPU %Mem %User
{{.PID}}{{.Name}}{{printf "%.1f" .CPU}}{{printf "%.1f" .Mem}}{{.User}}
+{{end}} diff --git a/services/setec-manager/web/templates/nginx.html b/services/setec-manager/web/templates/nginx.html new file mode 100644 index 0000000..730a628 --- /dev/null +++ b/services/setec-manager/web/templates/nginx.html @@ -0,0 +1,58 @@ +{{define "content"}} +

Nginx

+ +
+
+

Service Status

+ {{if .Data.Running}} + Running + {{else}} + Stopped + {{end}} +

Version: {{.Data.Version}}

+

Config Test: + {{if .Data.ConfigOK}} + OK + {{else}} + Error + {{end}} +

+
+
+

Connections

+

Active: {{.Data.ActiveConns}}

+

Requests: {{.Data.TotalRequests}}

+
+
+ +

Actions

+
+
+
+
+
+ +

Virtual Hosts

+ + + + + + {{range .Data.VHosts}} + + + + + + {{else}} + + {{end}} + +
Server NameListenEnabled
{{.ServerName}}{{.Listen}} + {{if .Enabled}} + Yes + {{else}} + No + {{end}} +
No virtual hosts configured.
+{{end}} diff --git a/services/setec-manager/web/templates/site_detail.html b/services/setec-manager/web/templates/site_detail.html new file mode 100644 index 0000000..a850d2e --- /dev/null +++ b/services/setec-manager/web/templates/site_detail.html @@ -0,0 +1,63 @@ +{{define "content"}} +
+

{{.Data.Site.Domain}}

+
+ {{if .Data.Site.Running}} +
+ {{else}} +
+ {{end}} +
+ Back +
+
+ +
+
+

Info

+

Type: {{.Data.Site.Type}}

+

Root: {{.Data.Site.Root}}

+

Status: + {{if .Data.Site.Running}} + Running + {{else}} + Stopped + {{end}} +

+
+
+

SSL

+ {{if .Data.Site.SSL}} + Active +

Expires: {{.Data.Site.SSLExpiry}}

+ {{else}} + Not Configured + {{end}} +
+
+ +

Deployment History

+ + + + + + {{range .Data.Deployments}} + + + + + + + {{else}} + + {{end}} + +
DateCommitStatusDuration
{{.Date}}{{.Commit}} + {{if eq .Status "ok"}} + OK + {{else}} + {{.Status}} + {{end}} + {{.Duration}}
No deployments yet.
+{{end}} diff --git a/services/setec-manager/web/templates/site_new.html b/services/setec-manager/web/templates/site_new.html new file mode 100644 index 0000000..6305e75 --- /dev/null +++ b/services/setec-manager/web/templates/site_new.html @@ -0,0 +1,31 @@ +{{define "content"}} +

New Site

+
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+ + Cancel +
+
+{{end}} diff --git a/services/setec-manager/web/templates/sites.html b/services/setec-manager/web/templates/sites.html new file mode 100644 index 0000000..b520447 --- /dev/null +++ b/services/setec-manager/web/templates/sites.html @@ -0,0 +1,44 @@ +{{define "content"}} +
+

Sites

+ + New Site +
+ + + + + + + + + + + + {{range .Data.Sites}} + + + + + + + + {{else}} + + {{end}} + +
DomainTypeSSLStatusActions
{{.Domain}}{{.Type}} + {{if .SSL}} + Active + {{else}} + None + {{end}} + + {{if .Running}} + Running + {{else}} + Stopped + {{end}} + + View +
No sites configured.
+{{end}} diff --git a/services/setec-manager/web/templates/ssl.html b/services/setec-manager/web/templates/ssl.html new file mode 100644 index 0000000..45dffde --- /dev/null +++ b/services/setec-manager/web/templates/ssl.html @@ -0,0 +1,31 @@ +{{define "content"}} +

SSL / TLS Certificates

+ + + + + + {{range .Data.Certs}} + + + + + + + + {{else}} + + {{end}} + +
DomainIssuerExpiresStatusActions
{{.Domain}}{{.Issuer}}{{.Expiry}} + {{if .Valid}} + Valid + {{else}} + Expired + {{end}} + +
+ +
+
No certificates found.
+{{end}} diff --git a/services/setec-manager/web/templates/users.html b/services/setec-manager/web/templates/users.html new file mode 100644 index 0000000..e25a047 --- /dev/null +++ b/services/setec-manager/web/templates/users.html @@ -0,0 +1,56 @@ +{{define "content"}} +
+

Users

+ +
+ + + + + + + + + {{range .Data.Users}} + + + + + + + {{else}} + + {{end}} + +
UsernameRoleCreatedActions
{{.Username}}{{.Role}}{{.Created}} +
+ +
+
No users.
+{{end}} diff --git a/setup_freeze.py b/setup_freeze.py deleted file mode 100644 index 1da36ad..0000000 --- a/setup_freeze.py +++ /dev/null @@ -1,86 +0,0 @@ -""" -cx_Freeze setup for AUTARCH Windows MSI installer. - -Usage: - pip install cx_Freeze - python setup_freeze.py bdist_msi - -Output: dist/bin/autarch-1.3-win64.msi (or similar) -""" - -import sys -from pathlib import Path -from cx_Freeze import setup, Executable - -SRC = Path(__file__).parent -VERSION = "1.3" - -# ── Data files ──────────────────────────────────────────────────────────────── -include_files = [ - # Web assets - (str(SRC / 'web' / 'templates'), 'lib/web/templates'), - (str(SRC / 'web' / 'static'), 'lib/web/static'), - - # Data directory - (str(SRC / 'data'), 'lib/data'), - - # Modules (dynamically imported) - (str(SRC / 'modules'), 'lib/modules'), - - # Docs and config - (str(SRC / 'autarch_settings.conf'), 'autarch_settings.conf'), - (str(SRC / 'user_manual.md'), 'user_manual.md'), - (str(SRC / 'windows_manual.md'), 'windows_manual.md'), - (str(SRC / 'custom_sites.inf'), 'custom_sites.inf'), - (str(SRC / 'custom_adultsites.json'), 'custom_adultsites.json'), - - # Android tools - (str(SRC / 'android'), 'android'), - (str(SRC / 'tools'), 'tools'), -] - -# ── Build options ───────────────────────────────────────────────────────────── -build_options = { - 'packages': [ - 'flask', 'jinja2', 'werkzeug', 'markupsafe', 'bcrypt', - 'requests', 'msgpack', 'pyserial', 'qrcode', 'PIL', - 'core', 'web', 'modules', - ], - 'excludes': ['tkinter', 'matplotlib', 'torch', 'transformers'], - 'include_files': include_files, - 'path': [str(SRC)] + sys.path, - 'build_exe': str(SRC / 'dist' / 'bin' / 'AUTARCH-build'), -} - -# ── MSI-specific options ────────────────────────────────────────────────────── -bdist_msi_options = { - 'add_to_path': True, - 'initial_target_dir': r'[ProgramFilesFolder]\AUTARCH', - 'product_code': '{6E4A2B35-C8F1-4D28-A91E-8D4F7C3B2A91}', - 'upgrade_code': '{A1B2C3D4-E5F6-7890-ABCD-EF1234567890}', - 'install_icon': None, - 'summary_data': { - 'author': 'darkHal Security Group', - 'comments': 'AUTARCH Security Platform', - 'keywords': 'security, pentest, OSINT, AI', - }, -} - -setup( - name='AUTARCH', - version=VERSION, - description='AUTARCH — Autonomous Tactical Agent for Reconnaissance, Counterintelligence, and Hacking', - author='darkHal Security Group & Setec Security Labs', - options={ - 'build_exe': build_options, - 'bdist_msi': bdist_msi_options, - }, - executables=[ - Executable( - script='autarch.py', - target_name='AUTARCH.exe', - base='Console', # Console app (not GUI) - icon=None, - ) - ], -)