mirror of
https://github.com/soxoj/maigret.git
synced 2026-05-07 14:34:33 +00:00
Compare commits
46 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b62aec4882 | |||
| 4062dab288 | |||
| 356d7d4e49 | |||
| 6020e766ce | |||
| b4e963b2b1 | |||
| aebd8539ed | |||
| fea1c6b552 | |||
| fd8f5f90fd | |||
| b06fd470cc | |||
| ec1aaacb41 | |||
| bc1035c1ec | |||
| 026fd98304 | |||
| f03a4c81a5 | |||
| 79afab11c2 | |||
| 10ef102791 | |||
| 523317e760 | |||
| 82074d77b1 | |||
| 002c8359fe | |||
| 08bba20003 | |||
| 0a628d2b8f | |||
| f1969a12a1 | |||
| 3cb03fe09c | |||
| 5769144ac3 | |||
| 99c9b0a8ca | |||
| 8e9722a285 | |||
| 95276b841c | |||
| 9484d6f05e | |||
| 06f94cd476 | |||
| d4d525647c | |||
| f988c532ec | |||
| e71c8907f0 | |||
| 45ed832ec8 | |||
| a57e5f1d90 | |||
| d9fd6e0b29 | |||
| 827c11f2e1 | |||
| 647a3fabb9 | |||
| efb2a9501e | |||
| 44c009e570 | |||
| eb304b6804 | |||
| e1b9b62c4d | |||
| ad6938f068 | |||
| 1c9ccfe77b | |||
| 1fd1e2c809 | |||
| c5e973bc5b | |||
| b288c37d91 | |||
| 2f76f22202 |
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
python3 ./utils/update_site_data.py
|
||||
@@ -27,6 +27,7 @@ jobs:
|
||||
with:
|
||||
push: true
|
||||
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/maigret:latest
|
||||
platforms: linux/amd64,linux/arm64
|
||||
-
|
||||
name: Image digest
|
||||
run: echo ${{ steps.docker_build.outputs.digest }}
|
||||
|
||||
+9
-9
@@ -1,16 +1,16 @@
|
||||
FROM python:3.9-slim
|
||||
MAINTAINER Soxoj <soxoj@protonmail.com>
|
||||
LABEL maintainer="Soxoj <soxoj@protonmail.com>"
|
||||
WORKDIR /app
|
||||
RUN pip install --upgrade pip
|
||||
RUN apt update && \
|
||||
apt install -y \
|
||||
RUN pip install --no-cache-dir --upgrade pip
|
||||
RUN apt-get update && \
|
||||
apt-get install --no-install-recommends -y \
|
||||
gcc \
|
||||
musl-dev \
|
||||
libxml2 \
|
||||
libxml2-dev \
|
||||
libxslt-dev
|
||||
RUN apt clean \
|
||||
&& rm -rf /var/lib/apt/lists/* /tmp/*
|
||||
ADD . .
|
||||
RUN YARL_NO_EXTENSIONS=1 python3 -m pip install .
|
||||
libxslt-dev \
|
||||
&& \
|
||||
rm -rf /var/lib/apt/lists/* /tmp/*
|
||||
COPY . .
|
||||
RUN YARL_NO_EXTENSIONS=1 python3 -m pip install --no-cache-dir .
|
||||
ENTRYPOINT ["maigret"]
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
## About
|
||||
|
||||
**Maigret** collect a dossier on a person **by username only**, checking for accounts on a huge number of sites and gathering all the available information from web pages. No API keys required. Maigret is an easy-to-use and powerful fork of [Sherlock](https://github.com/sherlock-project/sherlock).
|
||||
**Maigret** collects a dossier on a person **by username only**, checking for accounts on a huge number of sites and gathering all the available information from web pages. No API keys required. Maigret is an easy-to-use and powerful fork of [Sherlock](https://github.com/sherlock-project/sherlock).
|
||||
|
||||
Currently supported more than 2500 sites ([full list](https://github.com/soxoj/maigret/blob/main/sites.md)), search is launched against 500 popular sites in descending order of popularity by default. Also supported checking of Tor sites, I2P sites, and domains (via DNS resolving).
|
||||
|
||||
@@ -44,7 +44,7 @@ Standalone EXE-binaries for Windows are located in [Releases section](https://gi
|
||||
Also you can run Maigret using cloud shells and Jupyter notebooks (see buttons below).
|
||||
|
||||
[](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/soxoj/maigret&tutorial=README.md)
|
||||
<a href="https://repl.it/github/soxoj/maigret"><img src="https://user-images.githubusercontent.com/27065646/92304596-bf719b00-ef7f-11ea-987f-2c1f3c323088.png" alt="Run on Repl.it" height="50"></a>
|
||||
<a href="https://repl.it/github/soxoj/maigret"><img src="https://replit.com/badge/github/soxoj/maigret" alt="Run on Replit" height="50"></a>
|
||||
|
||||
<a href="https://colab.research.google.com/gist/soxoj/879b51bc3b2f8b695abb054090645000/maigret-collab.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab" height="45"></a>
|
||||
<a href="https://mybinder.org/v2/gist/soxoj/9d65c2f4d3bec5dd25949197ea73cf3a/HEAD"><img src="https://mybinder.org/badge_logo.svg" alt="Open In Binder" height="45"></a>
|
||||
@@ -57,10 +57,6 @@ Also you can run Maigret using cloud shells and Jupyter notebooks (see buttons b
|
||||
# install from pypi
|
||||
pip3 install maigret
|
||||
|
||||
# or clone and install manually
|
||||
git clone https://github.com/soxoj/maigret && cd maigret
|
||||
pip3 install .
|
||||
|
||||
# usage
|
||||
maigret username
|
||||
```
|
||||
@@ -68,6 +64,7 @@ maigret username
|
||||
### Cloning a repository
|
||||
|
||||
```bash
|
||||
# or clone and install manually
|
||||
git clone https://github.com/soxoj/maigret && cd maigret
|
||||
pip3 install -r requirements.txt
|
||||
|
||||
@@ -82,7 +79,7 @@ pip3 install -r requirements.txt
|
||||
docker pull soxoj/maigret
|
||||
|
||||
# usage
|
||||
docker run soxoj/maigret:latest username
|
||||
docker run -v /mydir:/app/reports soxoj/maigret:latest username --html
|
||||
|
||||
# manual build
|
||||
docker build -t maigret .
|
||||
@@ -103,6 +100,11 @@ maigret user1 user2 user3 -a
|
||||
|
||||
Use `maigret --help` to get full options description. Also options [are documented](https://maigret.readthedocs.io/en/latest/command-line-options.html).
|
||||
|
||||
## Contributing
|
||||
|
||||
Maigret has open-source code, so you may contribute your own sites by adding them to `data.json` file, or bring changes to it's code!
|
||||
If you want to contribute, don't forget to activate statistics update hook, command for it would look like this: `git config --local core.hooksPath .githooks/`
|
||||
You should make your git commits from your maigret git repo folder, or else the hook wouldn't find the statistics update script.
|
||||
|
||||
## Demo with page parsing and recursive username search
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ Options are also configurable through settings files, see
|
||||
:doc:`settings section <settings>`.
|
||||
|
||||
``--tags`` - Filter sites for searching by tags: sites categories and
|
||||
two-letter country codes. E.g. photo, dating, sport; jp, us, global.
|
||||
two-letter country codes (**not a language!**). E.g. photo, dating, sport; jp, us, global.
|
||||
Multiple tags can be associated with one site. **Warning: tags markup is
|
||||
not stable now.**
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ What kind of information is this? First, links to person accounts. Secondly, all
|
||||
pieces of info, such as: other usernames, full name, URLs to people's images, birthday, location (country,
|
||||
city, etc.), gender.
|
||||
|
||||
All this infromations forms some dossier, but it also useful for other tools and analytical purposes.
|
||||
Each collected piece of data has a label of a certain format (for exa,ple, ``follower_count`` for the number
|
||||
All this information forms some dossier, but it also useful for other tools and analytical purposes.
|
||||
Each collected piece of data has a label of a certain format (for example, ``follower_count`` for the number
|
||||
of subscribers or ``created_at`` for account creation time) so that it can be parsed and analyzed by various
|
||||
systems and stored in databases.
|
||||
|
||||
@@ -17,7 +17,7 @@ There are several types of tags:
|
||||
|
||||
Usage
|
||||
-----
|
||||
``--tags en,jp`` -- search on US and Japanese sites (actually marked as such in the Maigret database)
|
||||
``--tags us,jp`` -- search on US and Japanese sites (actually marked as such in the Maigret database)
|
||||
|
||||
``--tags coding`` -- search on sites related to software development.
|
||||
|
||||
|
||||
@@ -37,17 +37,17 @@ Start a search for accounts with username ``machine42`` only on US and Japanese
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
maigret michael --tags en,jp
|
||||
maigret machine42 --tags en,jp
|
||||
|
||||
Start a search for accounts with username ``machine42`` only on sites related to software development.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
maigret michael --tags coding
|
||||
maigret machine42 --tags coding
|
||||
|
||||
Start a search for accounts with username ``machine42`` on uCoz sites only (mostly CIS countries).
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
maigret michael --tags ucoz
|
||||
maigret machine42 --tags ucoz
|
||||
|
||||
|
||||
+9
-4
@@ -10,6 +10,7 @@ import re
|
||||
import ssl
|
||||
import sys
|
||||
import tqdm
|
||||
import random
|
||||
from typing import Tuple, Optional, Dict, List
|
||||
from urllib.parse import quote
|
||||
|
||||
@@ -397,7 +398,7 @@ def process_site_result(
|
||||
|
||||
|
||||
def make_site_result(
|
||||
site: MaigretSite, username: str, options: QueryOptions, logger
|
||||
site: MaigretSite, username: str, options: QueryOptions, logger, *args, **kwargs
|
||||
) -> QueryResultWrapper:
|
||||
results_site: QueryResultWrapper = {}
|
||||
|
||||
@@ -421,6 +422,10 @@ def make_site_result(
|
||||
if "url" not in site.__dict__:
|
||||
logger.error("No URL for site %s", site.name)
|
||||
|
||||
if kwargs.get('retry') and hasattr(site, "mirrors"):
|
||||
site.url_main = random.choice(site.mirrors)
|
||||
logger.info(f"Use {site.url_main} as a main url of site {site}")
|
||||
|
||||
# URL of user on site (if it exists)
|
||||
url = site.url.format(
|
||||
urlMain=site.url_main, urlSubpath=site.url_subpath, username=quote(username)
|
||||
@@ -524,7 +529,7 @@ def make_site_result(
|
||||
async def check_site_for_username(
|
||||
site, username, options: QueryOptions, logger, query_notify, *args, **kwargs
|
||||
) -> Tuple[str, QueryResultWrapper]:
|
||||
default_result = make_site_result(site, username, options, logger)
|
||||
default_result = make_site_result(site, username, options, logger, retry=kwargs.get('retry'))
|
||||
future = default_result.get("future")
|
||||
if not future:
|
||||
return site.name, default_result
|
||||
@@ -599,7 +604,7 @@ async def maigret(
|
||||
is_parsing_enabled -- Extract additional info from account pages.
|
||||
id_type -- Type of username to search.
|
||||
Default is 'username', see all supported here:
|
||||
https://github.com/soxoj/maigret/wiki/Supported-identifier-types
|
||||
https://maigret.readthedocs.io/en/latest/supported-identifier-types.html
|
||||
max_connections -- Maximum number of concurrent connections allowed.
|
||||
Default is 100.
|
||||
no_progressbar -- Displaying of ASCII progressbar during scanner.
|
||||
@@ -705,7 +710,7 @@ async def maigret(
|
||||
tasks_dict[sitename] = (
|
||||
check_site_for_username,
|
||||
[site, username, options, logger, query_notify],
|
||||
{'default': (sitename, default_result)},
|
||||
{'default': (sitename, default_result), 'retry': retries-attempts+1},
|
||||
)
|
||||
|
||||
cur_results = await executor.run(tasks_dict.values())
|
||||
|
||||
+2
-1
@@ -63,8 +63,9 @@ COMMON_ERRORS = {
|
||||
ERRORS_TYPES = {
|
||||
'Captcha': 'Try to switch to another IP address or to use service cookies',
|
||||
'Bot protection': 'Try to switch to another IP address',
|
||||
'Censorship': 'switch to another internet service provider',
|
||||
'Censorship': 'Switch to another internet service provider',
|
||||
'Request timeout': 'Try to increase timeout or to switch to another internet service provider',
|
||||
'Connecting failure': 'Try to decrease number of parallel connections (e.g. -n 10)',
|
||||
}
|
||||
|
||||
# TODO: checking for reason
|
||||
|
||||
+1
-1
@@ -172,7 +172,7 @@ def setup_arguments_parser(settings: Settings):
|
||||
type=int,
|
||||
dest="connections",
|
||||
default=settings.max_connections,
|
||||
help="Allowed number of concurrent connections.",
|
||||
help=f"Allowed number of concurrent connections (default {settings.max_connections}).",
|
||||
)
|
||||
parser.add_argument(
|
||||
"--no-recursion",
|
||||
|
||||
+332
-40
@@ -1,4 +1,4 @@
|
||||
{
|
||||
es{
|
||||
"sites": {
|
||||
"0-3.RU": {
|
||||
"tags": [
|
||||
@@ -673,6 +673,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"AllTheSoft": {
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"in"
|
||||
],
|
||||
@@ -832,6 +833,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"Anapakurort": {
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"ru"
|
||||
],
|
||||
@@ -1253,6 +1255,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"Arduino": {
|
||||
"disabled": true,
|
||||
"checkType": "status_code",
|
||||
"url": "https://create.arduino.cc/projecthub/{username}",
|
||||
"usernameClaimed": "uehkon",
|
||||
@@ -1458,6 +1461,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"Askvoprosy": {
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"coding"
|
||||
],
|
||||
@@ -3152,7 +3156,8 @@
|
||||
"checkType": "message",
|
||||
"absenceStrs": [
|
||||
"<title>Internet Chess Club Forum | Forum Home</title>",
|
||||
"The member profile you requested is currently not available"
|
||||
"The member profile you requested is currently not available",
|
||||
"There are no records on this user."
|
||||
],
|
||||
"alexaRank": 325766,
|
||||
"urlMain": "https://www.chessclub.com",
|
||||
@@ -3164,6 +3169,7 @@
|
||||
"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."
|
||||
@@ -4258,7 +4264,8 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"DonationsAlerts": {
|
||||
"tags": [
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"finance",
|
||||
"ru"
|
||||
],
|
||||
@@ -4273,13 +4280,16 @@
|
||||
"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"
|
||||
"\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",
|
||||
"<h2>\u041f\u043e\u0438\u0441\u043a \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d</h2>"
|
||||
],
|
||||
"alexaRank": 54365,
|
||||
"urlMain": "https://dota2.ru/",
|
||||
@@ -4475,8 +4485,11 @@
|
||||
"us"
|
||||
],
|
||||
"checkType": "message",
|
||||
"presenseStrs": [
|
||||
"Positive feedback"
|
||||
],
|
||||
"absenceStrs": [
|
||||
"<!-- - --></i><p class=\"sm-md\">"
|
||||
"<svg role=\"img\" class=\"icon icon--attention-filled-small\""
|
||||
],
|
||||
"headers": {
|
||||
"user-agent": "Curl"
|
||||
@@ -5250,20 +5263,6 @@
|
||||
"usernameClaimed": "blue",
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"Fapforum": {
|
||||
"urlSubpath": "/forum",
|
||||
"disabled": true,
|
||||
"engine": "vBulletin",
|
||||
"alexaRank": 954536,
|
||||
"urlMain": "http://fapforum.net",
|
||||
"usernameClaimed": "adam",
|
||||
"usernameUnclaimed": "noonewouldeverusethis7",
|
||||
"tags": [
|
||||
"forum",
|
||||
"porn",
|
||||
"ua"
|
||||
]
|
||||
},
|
||||
"Faqusha": {
|
||||
"tags": [
|
||||
"ru"
|
||||
@@ -5338,6 +5337,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"Fegatch": {
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"ru"
|
||||
],
|
||||
@@ -7438,6 +7438,7 @@
|
||||
"ru",
|
||||
"us"
|
||||
],
|
||||
"disabled": true,
|
||||
"engine": "XenForo",
|
||||
"alexaRank": 389296,
|
||||
"urlMain": "https://www.hipforums.com/",
|
||||
@@ -7514,6 +7515,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"Hoobly": {
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"classified",
|
||||
"in"
|
||||
@@ -9721,6 +9723,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"Mbclub": {
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"ru"
|
||||
],
|
||||
@@ -9788,6 +9791,7 @@
|
||||
"tags": [
|
||||
"ru"
|
||||
],
|
||||
"disabled": true,
|
||||
"checkType": "status_code",
|
||||
"alexaRank": 3843048,
|
||||
"urlMain": "https://mediarepost.ru",
|
||||
@@ -10330,6 +10334,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"Movie-forum": {
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"forum",
|
||||
"pk"
|
||||
@@ -12059,6 +12064,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"Pinterest": {
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"art",
|
||||
"photo",
|
||||
@@ -13094,8 +13100,8 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"Rap-royalty": {
|
||||
"disabled": true,
|
||||
"urlSubpath": "/forum",
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"forum",
|
||||
"music",
|
||||
@@ -13823,8 +13829,12 @@
|
||||
"\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/",
|
||||
"url": "https://rutracker.org/forum/profile.php?mode=viewprofile&u={username}",
|
||||
"urlMain": "http://37.1.216.121/",
|
||||
"mirrors": [
|
||||
"https://rutracker.org/",
|
||||
"http://37.1.216.121/"
|
||||
],
|
||||
"url": "{urlMain}forum/profile.php?mode=viewprofile&u={username}",
|
||||
"usernameClaimed": "adam",
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
@@ -14349,7 +14359,7 @@
|
||||
],
|
||||
"checkType": "message",
|
||||
"absenceStrs": [
|
||||
"T\u00e4m\u00e4p\u00e4 yll\u00e4tt\u00e4v\u00e4\u00e4..."
|
||||
"<img loading=\"lazy\" src=\"/assets/images/ent_not_found_404.png\" alt=\"404\""
|
||||
],
|
||||
"alexaRank": 184,
|
||||
"urlMain": "https://www.shutterstock.com",
|
||||
@@ -14392,6 +14402,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"SkodaForum": {
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"forum",
|
||||
"ru"
|
||||
@@ -15539,6 +15550,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"TRASHBOX.RU": {
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"az",
|
||||
"ru"
|
||||
@@ -16079,6 +16091,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"Tomtom": {
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"de",
|
||||
"in",
|
||||
@@ -16375,7 +16388,8 @@
|
||||
],
|
||||
"checkType": "message",
|
||||
"absenceStrs": [
|
||||
"There were no results for your search."
|
||||
"There were no results for your search.",
|
||||
"Forums currently down for maintenance. No ETA on return."
|
||||
],
|
||||
"alexaRank": 32270,
|
||||
"urlMain": "https://forum.truckersmp.com",
|
||||
@@ -16538,10 +16552,16 @@
|
||||
"presenseStrs": [
|
||||
"<div class=\"profile-tabs\">"
|
||||
],
|
||||
"mirrors": [
|
||||
"https://nitter.net/",
|
||||
"https://nitter.42l.fr/",
|
||||
"https://nitter.1d4.us/",
|
||||
"https://nitter.kavin.rocks/"
|
||||
],
|
||||
"source": "Twitter",
|
||||
"alexaRank": 48,
|
||||
"urlMain": "https://www.nitter.net/",
|
||||
"url": "https://nitter.net/{username}",
|
||||
"urlMain": "https://nitter.kavin.rocks/",
|
||||
"url": "{urlMain}{username}",
|
||||
"usernameClaimed": "blue",
|
||||
"usernameUnclaimed": "noonewould123"
|
||||
},
|
||||
@@ -16869,6 +16889,7 @@
|
||||
"tags": [
|
||||
"ru"
|
||||
],
|
||||
"disabled": true,
|
||||
"checkType": "status_code",
|
||||
"alexaRank": 32067,
|
||||
"urlMain": "https://vkfaces.com",
|
||||
@@ -17060,7 +17081,7 @@
|
||||
"video"
|
||||
],
|
||||
"headers": {
|
||||
"Authorization": "jwt eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2NjIyMDE5NjAsInVzZXJfaWQiOm51bGwsImFwcF9pZCI6NTg0NzksInNjb3BlcyI6InB1YmxpYyIsInRlYW1fdXNlcl9pZCI6bnVsbH0.Omx8x6yyzU_AdxxnVSzo7jv9JPLTrKCrIiridIW8YCY"
|
||||
"Authorization": "jwt eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2NjI4NDkxODAsInVzZXJfaWQiOm51bGwsImFwcF9pZCI6NTg0NzksInNjb3BlcyI6InB1YmxpYyIsInRlYW1fdXNlcl9pZCI6bnVsbH0.DAmAaaKixSd_WQ9-7PiTZDmyK61SHEYluYC-qdcJtkE"
|
||||
},
|
||||
"activation": {
|
||||
"url": "https://vimeo.com/_rv/viewer",
|
||||
@@ -18245,10 +18266,19 @@
|
||||
"tags": [
|
||||
"ru"
|
||||
],
|
||||
"checkType": "status_code",
|
||||
"checkType": "message",
|
||||
"absenceStrs": [
|
||||
".zen-ui-page-404"
|
||||
],
|
||||
"presenseStrs": [
|
||||
"zen_object_id"
|
||||
],
|
||||
"alexaRank": 50,
|
||||
"urlMain": "https://zen.yandex.ru",
|
||||
"url": "https://zen.yandex.ru/{username}",
|
||||
"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"
|
||||
@@ -18267,6 +18297,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis77777"
|
||||
},
|
||||
"Yapisal": {
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"forum",
|
||||
"tr"
|
||||
@@ -18340,17 +18371,41 @@
|
||||
},
|
||||
"YouTube": {
|
||||
"tags": [
|
||||
"us",
|
||||
"video"
|
||||
],
|
||||
"regexCheck": "^[^\\/]+$",
|
||||
"checkType": "message",
|
||||
"presenseStrs": [
|
||||
"href=\"/feed/channel"
|
||||
],
|
||||
"absenceStrs": [
|
||||
"Not Found"
|
||||
"Error - Invidious",
|
||||
"This channel does not exist"
|
||||
],
|
||||
"alexaRank": 2,
|
||||
"urlMain": "https://www.youtube.com/",
|
||||
"url": "https://www.youtube.com/{username}",
|
||||
"urlProbe": "https://invidious.slipfox.xyz/c/{username}",
|
||||
"usernameClaimed": "test",
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"YouTube User": {
|
||||
"tags": [
|
||||
"video"
|
||||
],
|
||||
"regexCheck": "^[^\\/]+$",
|
||||
"checkType": "message",
|
||||
"presenseStrs": [
|
||||
"href=\"/feed/channel"
|
||||
],
|
||||
"absenceStrs": [
|
||||
"Error - Invidious",
|
||||
"This channel does not exist"
|
||||
],
|
||||
"alexaRank": 2,
|
||||
"urlMain": "https://www.youtube.com/",
|
||||
"url": "https://www.youtube.com/{username}",
|
||||
"urlProbe": "https://invidious.slipfox.xyz/user/{username}",
|
||||
"usernameClaimed": "blue",
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
@@ -19514,6 +19569,7 @@
|
||||
"usernameUnclaimed": "noonewouldeverusethis7"
|
||||
},
|
||||
"forum-b.ru": {
|
||||
"disabled": true,
|
||||
"tags": [
|
||||
"forum",
|
||||
"freelance",
|
||||
@@ -26920,12 +26976,18 @@
|
||||
},
|
||||
"Intigriti": {
|
||||
"tags": [
|
||||
"hacking",
|
||||
"in"
|
||||
"eu",
|
||||
"hacking"
|
||||
],
|
||||
"checkType": "message",
|
||||
"presenseStrs": [
|
||||
"avatar-container"
|
||||
],
|
||||
"absenceStrs": [
|
||||
"We didn't find what you're looking for"
|
||||
],
|
||||
"engine": "engine404message",
|
||||
"urlMain": "https://intigriti.com",
|
||||
"url": "https://intigriti.com/public/profile/{username}",
|
||||
"url": "https://app.intigriti.com/profile/{username}",
|
||||
"usernameUnclaimed": "noonewouldeverusethis7",
|
||||
"usernameClaimed": "alex",
|
||||
"alexaRank": 128097
|
||||
@@ -27823,7 +27885,7 @@
|
||||
"name"
|
||||
],
|
||||
"absenceStrs": [
|
||||
"isPageNotFound"
|
||||
"This page is lost.</h1>"
|
||||
],
|
||||
"urlMain": "https://opensea.io",
|
||||
"url": "https://opensea.io/accounts/{username}",
|
||||
@@ -29606,6 +29668,7 @@
|
||||
"alexaRank": 4645861
|
||||
},
|
||||
"Yelp": {
|
||||
"disabled": true,
|
||||
"absenceStrs": [
|
||||
"viewName",
|
||||
" dropdown_user-name"
|
||||
@@ -29664,6 +29727,7 @@
|
||||
"alexaRank": 349163
|
||||
},
|
||||
"Reddit Search (Pushshift)": {
|
||||
"disabled": true,
|
||||
"urlMain": "https://camas.github.io/reddit-search/",
|
||||
"url": "https://camas.github.io/reddit-search/#{{\"author\":\"{username}\",\"resultSize\":100}}",
|
||||
"urlProbe": "https://api.pushshift.io/reddit/comment/search?html_decode=true&author={username}&size=100",
|
||||
@@ -30000,7 +30064,15 @@
|
||||
},
|
||||
"lightstalking.com": {
|
||||
"urlMain": "https://www.lightstalking.com",
|
||||
"engine": "Wordpress/Author",
|
||||
"presenseStrs": [
|
||||
"NPRL.onLoadStyle"
|
||||
],
|
||||
"absenceStrs": [
|
||||
"location:"
|
||||
],
|
||||
"checkType": "message",
|
||||
"requestHeadOnly": true,
|
||||
"url": "https://www.lightstalking.com/author/{username}/",
|
||||
"usernameClaimed": "jasonrow",
|
||||
"usernameUnclaimed": "noonewouldeverusethis7",
|
||||
"tags": [
|
||||
@@ -31345,6 +31417,7 @@
|
||||
]
|
||||
},
|
||||
"coder.social": {
|
||||
"disabled": true,
|
||||
"absenceStrs": [
|
||||
"<title>Coder Social Home</title>"
|
||||
],
|
||||
@@ -31621,6 +31694,7 @@
|
||||
"url": "https://choice.community/u/{username}"
|
||||
},
|
||||
"cloudromance.com": {
|
||||
"disabled": true,
|
||||
"checkType": "status_code",
|
||||
"usernameClaimed": "adam",
|
||||
"usernameUnclaimed": "noonewouldeverusethis7",
|
||||
@@ -31984,7 +32058,8 @@
|
||||
"checkType": "status_code",
|
||||
"usernameClaimed": "adam",
|
||||
"usernameUnclaimed": "noonewouldeverusethis7",
|
||||
"url": "https://flirtic.ee/{username}"
|
||||
"url": "https://flirtic.ee/{username}",
|
||||
"regexCheck": "^[^\\.]+$"
|
||||
},
|
||||
"forum.banana-pi.org": {
|
||||
"checkType": "status_code",
|
||||
@@ -32005,6 +32080,7 @@
|
||||
"url": "https://forum.cfx.re/u/{username}"
|
||||
},
|
||||
"forum.cockroachlabs.com": {
|
||||
"disabled": true,
|
||||
"checkType": "status_code",
|
||||
"usernameClaimed": "adam",
|
||||
"usernameUnclaimed": "noonewouldeverusethis7",
|
||||
@@ -32131,6 +32207,7 @@
|
||||
"url": "https://forums.mmorpg.com/profile/{username}"
|
||||
},
|
||||
"forums.penny-arcade.com": {
|
||||
"disabled": true,
|
||||
"checkType": "status_code",
|
||||
"usernameClaimed": "adam",
|
||||
"usernameUnclaimed": "noonewouldeverusethis7",
|
||||
@@ -33625,6 +33702,221 @@
|
||||
],
|
||||
"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 Not Found - Breakers.TV"
|
||||
],
|
||||
"presenseStrs": [
|
||||
"profile",
|
||||
"copy_username",
|
||||
"View Profile",
|
||||
"copy_username_chat",
|
||||
"chatterUserBoxName"
|
||||
],
|
||||
"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": "status_code",
|
||||
"url": "https://manifold.markets/{username}",
|
||||
"urlMain": "https://manifold.markets/",
|
||||
"usernameClaimed": "ManifoldMarkets",
|
||||
"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</div>"
|
||||
],
|
||||
"presenseStrs": [
|
||||
"username",
|
||||
"/{username}/",
|
||||
" data-username=",
|
||||
"name",
|
||||
" data-name="
|
||||
],
|
||||
"url": "https://imginn.com/tagged/{username}/",
|
||||
"urlMain": "https://imginn.com",
|
||||
"usernameClaimed": "morgen_shtern",
|
||||
"usernameUnclaimed": "noonewouldeverusethis7",
|
||||
"checkType": "message",
|
||||
"alexaRank": 4271,
|
||||
"source": "Instagram",
|
||||
"tags": [
|
||||
"photo"
|
||||
]
|
||||
}
|
||||
},
|
||||
"engines": {
|
||||
@@ -33904,4 +34196,4 @@
|
||||
"i2p",
|
||||
"q&a"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -465,7 +465,7 @@ class MaigretDatabase:
|
||||
status_checks_perc = round(100*status_checks/enabled_count, 2)
|
||||
output += f"Status code checks: {status_checks}/{enabled_count} = {status_checks_perc}% (false positive risks)\n\n"
|
||||
|
||||
output += f"False positive risk (total): {checks_perc+status_checks_perc}%\n\n"
|
||||
output += f"False positive risk (total): {checks_perc+status_checks_perc:.2f}%\n\n"
|
||||
|
||||
top_urls_count = 20
|
||||
output += f"Top {top_urls_count} profile URLs:\n"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
maigret @ https://github.com/soxoj/maigret/archive/refs/heads/main.zip
|
||||
pefile==2022.5.30
|
||||
psutil==5.9.1
|
||||
psutil==5.9.2
|
||||
pyinstaller @ https://github.com/pyinstaller/pyinstaller/archive/develop.zip
|
||||
pywin32-ctypes==0.2.0
|
||||
+10
-10
@@ -1,23 +1,23 @@
|
||||
aiodns==3.0.0
|
||||
aiohttp==3.8.1
|
||||
aiohttp==3.8.3
|
||||
aiohttp-socks==0.7.1
|
||||
arabic-reshaper==2.1.3
|
||||
arabic-reshaper==2.1.4
|
||||
async-timeout==4.0.2
|
||||
attrs==22.1.0
|
||||
certifi==2022.6.15
|
||||
certifi==2022.9.24
|
||||
chardet==5.0.0
|
||||
colorama==0.4.5
|
||||
colorama==0.4.6
|
||||
future==0.18.2
|
||||
future-annotations==1.0.0
|
||||
html5lib==1.1
|
||||
idna==3.3
|
||||
idna==3.4
|
||||
Jinja2==3.1.2
|
||||
lxml==4.9.1
|
||||
MarkupSafe==2.1.1
|
||||
mock==4.0.3
|
||||
multidict==6.0.2
|
||||
pycountry==22.3.5
|
||||
PyPDF2==2.10.4
|
||||
PyPDF2==2.10.8
|
||||
PySocks==1.7.1
|
||||
python-bidi==0.4.2
|
||||
requests==2.28.1
|
||||
@@ -25,15 +25,15 @@ requests-futures==1.0.0
|
||||
six==1.16.0
|
||||
socid-extractor>=0.0.21
|
||||
soupsieve==2.3.2.post1
|
||||
stem==1.8.0
|
||||
stem==1.8.1
|
||||
torrequest==0.1.0
|
||||
tqdm==4.64.1
|
||||
typing-extensions==4.3.0
|
||||
typing-extensions==4.4.0
|
||||
webencodings==0.5.1
|
||||
xhtml2pdf==0.2.8
|
||||
XMind==1.2.0
|
||||
yarl==1.7.2
|
||||
yarl==1.8.1
|
||||
networkx==2.5.1
|
||||
pyvis==0.2.1
|
||||
reportlab==3.6.11
|
||||
cloudscraper==1.2.64
|
||||
cloudscraper==1.2.66
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
|
||||
## List of supported sites (search methods): total 3055
|
||||
## List of supported sites (search methods): total 3068
|
||||
|
||||
Rank data fetched from Alexa by domains.
|
||||
|
||||
1.  [Google Maps (https://maps.google.com/)](https://maps.google.com/)*: top 1, maps, us*
|
||||
1.  [Google Plus (archived) (https://plus.google.com)](https://plus.google.com)*: top 1*
|
||||
1.  [GooglePlayStore (https://play.google.com/store)](https://play.google.com/store)*: top 1, apps, us*
|
||||
1.  [YouTube (https://www.youtube.com/)](https://www.youtube.com/)*: top 2, us, video*
|
||||
1.  [YouTube (https://www.youtube.com/)](https://www.youtube.com/)*: top 2, video*
|
||||
1.  [YouTube User (https://www.youtube.com/)](https://www.youtube.com/)*: top 2, video*
|
||||
1.  [Baidu (https://tieba.baidu.com)](https://tieba.baidu.com)*: top 3, cn*
|
||||
1.  [Facebook (https://www.facebook.com/)](https://www.facebook.com/)*: top 10, networking*
|
||||
1.  [Amazon (https://amazon.com)](https://amazon.com)*: top 50, us*
|
||||
@@ -27,7 +28,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Naver (https://naver.com)](https://naver.com)*: top 50, kr*
|
||||
1.  [AppleDeveloper (https://developer.apple.com/forums)](https://developer.apple.com/forums)*: top 50, forum, us*
|
||||
1.  [AppleDiscussions (https://discussions.apple.com/)](https://discussions.apple.com/)*: top 50, us*
|
||||
1.  [Nitter (https://www.nitter.net/)](https://www.nitter.net/)*: top 50, messaging*
|
||||
1.  [Nitter (https://nitter.kavin.rocks/)](https://nitter.kavin.rocks/)*: top 50, messaging*
|
||||
1.  [Twitter (https://www.twitter.com/)](https://www.twitter.com/)*: top 50, messaging*
|
||||
1.  [Allods (https://allods.mail.ru)](https://allods.mail.ru)*: top 50, forum, gaming, ru*
|
||||
1.  [ArcheAge (https://aa.mail.ru)](https://aa.mail.ru)*: top 50, forum, gaming, ru*, search is disabled
|
||||
@@ -53,7 +54,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [YandexMarket (https://market.yandex.ru/)](https://market.yandex.ru/)*: top 50, ru*
|
||||
1.  [YandexMusic (https://music.yandex.ru/)](https://music.yandex.ru/)*: top 50, music, ru*
|
||||
1.  [YandexZnatoki (https://yandex.ru/q/)](https://yandex.ru/q/)*: top 50, ru*
|
||||
1.  [YandexZenChannel (https://zen.yandex.ru)](https://zen.yandex.ru)*: top 50, ru*
|
||||
1.  [YandexZenChannel (https://dzen.ru)](https://dzen.ru)*: top 50, ru*
|
||||
1.  [YandexZenUser (https://zen.yandex.ru)](https://zen.yandex.ru)*: top 50, ru*
|
||||
1.  [WordPress (https://wordpress.com)](https://wordpress.com)*: top 100, blog*
|
||||
1.  [Douban (https://www.douban.com)](https://www.douban.com)*: top 100, cn*
|
||||
@@ -108,7 +109,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [opensea.io (https://opensea.io)](https://opensea.io)*: top 500, us*
|
||||
1.  [DailyMotion (https://www.dailymotion.com/)](https://www.dailymotion.com/)*: top 500, us, video*
|
||||
1.  [Behance (https://www.behance.net/)](https://www.behance.net/)*: top 500, business*
|
||||
1.  [Yelp (http://www.yelp.com)](http://www.yelp.com)*: top 500, review*
|
||||
1.  [Yelp (http://www.yelp.com)](http://www.yelp.com)*: top 500, review*, search is disabled
|
||||
1.  [Yelp (by id) (https://www.yelp.com)](https://www.yelp.com)*: top 500, review*
|
||||
1.  [Blogger (https://www.blogger.com/)](https://www.blogger.com/)*: top 500, blog*
|
||||
1.  [Patreon (https://www.patreon.com/)](https://www.patreon.com/)*: top 500, finance*
|
||||
@@ -143,7 +144,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Oracle Community (https://community.oracle.com)](https://community.oracle.com)*: top 500, us*, search is disabled
|
||||
1.  [calendly.com (https://calendly.com)](https://calendly.com)*: top 500, us*
|
||||
1.  [1337x (https://1337x.to)](https://1337x.to)*: top 500, torrent*
|
||||
1.  [Rutracker (https://rutracker.org/)](https://rutracker.org/)*: top 500, ru, torrent*
|
||||
1.  [Rutracker (http://37.1.216.121/)](http://37.1.216.121/)*: top 500, ru, torrent*
|
||||
1.  [DeviantART (https://deviantart.com)](https://deviantart.com)*: top 1K, art, photo*
|
||||
1.  [BuzzFeed (https://buzzfeed.com/)](https://buzzfeed.com/)*: top 1K, news, us*
|
||||
1.  [ThemeForest (https://themeforest.net)](https://themeforest.net)*: top 1K, in*
|
||||
@@ -171,6 +172,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Gamefaqs (https://gamefaqs.gamespot.com)](https://gamefaqs.gamespot.com)*: top 1K, gaming, us*
|
||||
1.  [Gamespot (https://www.gamespot.com/)](https://www.gamespot.com/)*: top 1K, gaming, us*
|
||||
1.  [note (https://note.com/)](https://note.com/)*: top 1K, jp*
|
||||
1.  [AfreecaTV (http://bjapi.afreecatv.com)](http://bjapi.afreecatv.com)*: top 1K, streaming*
|
||||
1.  [Redbubble (https://www.redbubble.com/)](https://www.redbubble.com/)*: top 1K, shopping, us*
|
||||
1.  [Tom's guide (http://forums.tomsguide.com)](http://forums.tomsguide.com)*: top 1K, forum, tech*
|
||||
1.  [Yumpu (https://www.yumpu.com)](https://www.yumpu.com)*: top 1K, stock*, search is disabled
|
||||
@@ -310,6 +312,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [FilmWeb (https://www.filmweb.pl/user/adam)](https://www.filmweb.pl/user/adam)*: top 5K, movies, pl*
|
||||
1.  [forums.bulbagarden.net (http://forums.bulbagarden.net)](http://forums.bulbagarden.net)*: top 5K, forum, us*
|
||||
1.  [videohive.net (https://videohive.net)](https://videohive.net)*: top 5K, video*
|
||||
1.  [ImgInn (https://imginn.com)](https://imginn.com)*: top 5K, photo*
|
||||
1.  [BoardGameGeek (https://www.boardgamegeek.com)](https://www.boardgamegeek.com)*: top 5K, gaming, us*
|
||||
1.  [osu! (https://osu.ppy.sh/)](https://osu.ppy.sh/)*: top 5K, us*
|
||||
1.  [Pluralsight (https://app.pluralsight.com)](https://app.pluralsight.com)*: top 5K, in, us*
|
||||
@@ -470,6 +473,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Smule (https://www.smule.com/)](https://www.smule.com/)*: top 100K, music*
|
||||
1.  [TVTropes (https://tvtropes.org)](https://tvtropes.org)*: top 100K, us*
|
||||
1.  [profi.ru (https://profi.ru)](https://profi.ru)*: top 100K, freelance*
|
||||
1.  [Pixwox (https://www.pixwox.com)](https://www.pixwox.com)*: top 100K, photo*
|
||||
1.  [author.today (https://author.today)](https://author.today)*: top 100K, reading, ru*
|
||||
1.  [discussion.squadhelp.com (https://discussion.squadhelp.com)](https://discussion.squadhelp.com)*: top 100K, forum, in*
|
||||
1.  [TheSimsResource (https://www.thesimsresource.com/)](https://www.thesimsresource.com/)*: top 100K, gaming*
|
||||
@@ -509,6 +513,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [mel.fm (https://mel.fm)](https://mel.fm)*: top 100K, ru*
|
||||
1.  [Influenster (https://www.influenster.com/)](https://www.influenster.com/)*: top 100K, us*
|
||||
1.  [forums.indiegala.com (https://forums.indiegala.com)](https://forums.indiegala.com)*: top 100K, forum, us*
|
||||
1.  [Picarto (https://ptvintern.picarto.tv)](https://ptvintern.picarto.tv)*: top 100K, art, streaming*
|
||||
1.  [Neoseeker (https://www.neoseeker.com)](https://www.neoseeker.com)*: top 100K, us*
|
||||
1.  [InfosecInstitute (https://community.infosecinstitute.com)](https://community.infosecinstitute.com)*: top 100K, us*
|
||||
1.  [Armorgames (https://armorgames.com)](https://armorgames.com)*: top 100K, gaming, us*
|
||||
@@ -523,6 +528,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [DigitalPoint (https://www.digitalpoint.com)](https://www.digitalpoint.com)*: top 100K, forum*
|
||||
1.  [forums.digitalpoint.com (https://forums.digitalpoint.com/)](https://forums.digitalpoint.com/)*: top 100K, forum, in*
|
||||
1.  [forum.ghost.org (https://forum.ghost.org)](https://forum.ghost.org)*: top 100K, forum, us*
|
||||
1.  [dlive.tv (https://dlive.tv)](https://dlive.tv)*: top 100K, streaming*
|
||||
1.  [Voices (https://www.voices.com/)](https://www.voices.com/)*: top 100K, us*
|
||||
1.  [forums.overclockers.co.uk (https://forums.overclockers.co.uk)](https://forums.overclockers.co.uk)*: top 100K, forum, gb, uk*, search is disabled
|
||||
1.  [Lingvolive (http://forum.lingvolive.com)](http://forum.lingvolive.com)*: top 100K, de, forum, it, ru*, search is disabled
|
||||
@@ -583,7 +589,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Eva (https://eva.ru/)](https://eva.ru/)*: top 100K, ru*, search is disabled
|
||||
1.  [E621 (https://e621.net)](https://e621.net)*: top 100K, us*
|
||||
1.  [Metacafe (https://www.metacafe.com/)](https://www.metacafe.com/)*: top 100K, in, us*, search is disabled
|
||||
1.  [Tomtom (https://discussions.tomtom.com/)](https://discussions.tomtom.com/)*: top 100K, de, in, it, nl, no, us*
|
||||
1.  [Tomtom (https://discussions.tomtom.com/)](https://discussions.tomtom.com/)*: top 100K, de, in, it, nl, no, us*, search is disabled
|
||||
1.  [designspiration.com (https://designspiration.com)](https://designspiration.com)*: top 100K, art*
|
||||
1.  [TryHackMe (https://tryhackme.com/)](https://tryhackme.com/)*: top 100K, hacking, in, us*
|
||||
1.  [forum.inaturalist.org (https://forum.inaturalist.org)](https://forum.inaturalist.org)*: top 100K, forum, us*
|
||||
@@ -609,7 +615,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [LiverpoolFC (https://forums.liverpoolfc.com)](https://forums.liverpoolfc.com)*: top 100K, forum, us, za*
|
||||
1.  [NetworkInformatica (https://network.informatica.com)](https://network.informatica.com)*: top 100K, tech*
|
||||
1.  [Samlib (http://samlib.ru/)](http://samlib.ru/)*: top 100K, gb, ru, writing*
|
||||
1.  [Hoobly (https://www.hoobly.com)](https://www.hoobly.com)*: top 100K, classified, in*
|
||||
1.  [Hoobly (https://www.hoobly.com)](https://www.hoobly.com)*: top 100K, classified, in*, search is disabled
|
||||
1.  [LibraryThing (https://www.librarything.com/)](https://www.librarything.com/)*: top 100K, us*
|
||||
1.  [Fatsecret (https://www.fatsecret.com)](https://www.fatsecret.com)*: top 100K, au, us*
|
||||
1.  [imgsrc.ru (https://imgsrc.ru/)](https://imgsrc.ru/)*: top 100K, be, de, es, in, pt, ru, us*
|
||||
@@ -648,7 +654,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Bukkit (https://bukkit.org/)](https://bukkit.org/)*: top 100K, at, forum, us*
|
||||
1.  [Elakiri (https://elakiri.com)](https://elakiri.com)*: top 100K, lk*
|
||||
1.  [Manutd (https://manutd.one)](https://manutd.one)*: top 100K, forum, sport*
|
||||
1.  [VKFaces (https://vkfaces.com)](https://vkfaces.com)*: top 100K, ru*
|
||||
1.  [VKFaces (https://vkfaces.com)](https://vkfaces.com)*: top 100K, ru*, search is disabled
|
||||
1.  [TruckersMP.com (https://forum.truckersmp.com)](https://forum.truckersmp.com)*: top 100K, de, forum, tr*
|
||||
1.  [awd.ru (https://forum.awd.ru)](https://forum.awd.ru)*: top 100K, forum, ru, travel*
|
||||
1.  [Joomlart (https://www.joomlart.com)](https://www.joomlart.com)*: top 100K, us*
|
||||
@@ -774,8 +780,9 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Proglib (https://proglib.io)](https://proglib.io)*: top 100K, ru*
|
||||
1.  [7Cups (https://www.7cups.com/)](https://www.7cups.com/)*: top 100K, medicine*
|
||||
1.  [Bookcrossing (https://www.bookcrossing.com/)](https://www.bookcrossing.com/)*: top 100K, in*
|
||||
1.  [Dota2 (https://dota2.ru/)](https://dota2.ru/)*: top 100K, gaming, ru*
|
||||
1.  [Dota2 (https://dota2.ru/)](https://dota2.ru/)*: top 100K, gaming, ru*, search is disabled
|
||||
1.  [fancy.com (https://fancy.com)](https://fancy.com)*: top 100K, shopping*
|
||||
1.  [goodgame.ru (https://goodgame.ru)](https://goodgame.ru)*: top 100K, ru, streaming*
|
||||
1.  [QuestionableQuesting (https://forum.questionablequesting.com)](https://forum.questionablequesting.com)*: top 100K, forum, gb, jp, us*, search is disabled
|
||||
1.  [community.startupnation.com (https://community.startupnation.com)](https://community.startupnation.com)*: top 100K, business*
|
||||
1.  [Appian ()]()*: top 100K*
|
||||
@@ -845,7 +852,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [dumskaya.net (https://dumskaya.net)](https://dumskaya.net)*: top 100K, ru*
|
||||
1.  [WOW Circle (https://forum.wowcircle.net)](https://forum.wowcircle.net)*: top 100K, forum, it, ru*
|
||||
1.  [Dating.Ru (http://dating.ru)](http://dating.ru)*: top 100K, dating, ru, us*
|
||||
1.  [Reddit Search (Pushshift) (https://camas.github.io/reddit-search/)](https://camas.github.io/reddit-search/)*: top 100K, discussion, news*
|
||||
1.  [Reddit Search (Pushshift) (https://camas.github.io/reddit-search/)](https://camas.github.io/reddit-search/)*: top 100K, discussion, news*, search is disabled
|
||||
1.  [Antichat (https://forum.antichat.ru/)](https://forum.antichat.ru/)*: top 100K, forum, ru, us*
|
||||
1.  [F-droid (https://forum.f-droid.org)](https://forum.f-droid.org)*: top 100K, forum, in, us*
|
||||
1.  [Math10 (https://www.math10.com/)](https://www.math10.com/)*: top 100K, forum, ru, us*
|
||||
@@ -945,6 +952,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Stratege (https://www.stratege.ru)](https://www.stratege.ru)*: top 10M, forum, gaming, news, ru*
|
||||
1.  [boominfo.org (https://boominfo.org)](https://boominfo.org)*: top 10M, forum, us*
|
||||
1.  [collegy.ucoz.ru (http://collegy.ucoz.ru)](http://collegy.ucoz.ru)*: top 10M, kz*
|
||||
1.  [stripchat.global (https://stripchat.global)](https://stripchat.global)*: top 10M, webcam*, search is disabled
|
||||
1.  [Quibblo (https://www.quibblo.com/)](https://www.quibblo.com/)*: top 10M, in*, search is disabled
|
||||
1.  [Riftgame (http://forums.riftgame.com)](http://forums.riftgame.com)*: top 10M, cr, forum, us*
|
||||
1.  [ForumOdUa (https://forumodua.com)](https://forumodua.com)*: top 10M, forum, ro, ua*, search is disabled
|
||||
@@ -966,7 +974,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Mylespaul (https://www.mylespaul.com)](https://www.mylespaul.com)*: top 10M, cl, us*
|
||||
1.  [forum.palemoon.org (https://forum.palemoon.org)](https://forum.palemoon.org)*: top 10M, forum, in*
|
||||
1.  [Amperka (http://forum.amperka.ru)](http://forum.amperka.ru)*: top 10M, forum, ru*
|
||||
1.  [Intigriti (https://intigriti.com)](https://intigriti.com)*: top 10M, hacking, in*
|
||||
1.  [Intigriti (https://intigriti.com)](https://intigriti.com)*: top 10M, eu, hacking*
|
||||
1.  [forum.exkavator.ru (https://forum.exkavator.ru)](https://forum.exkavator.ru)*: top 10M, forum, ru*
|
||||
1.  [navi (http://forum.navi.gg/)](http://forum.navi.gg/)*: top 10M, forum, ru*
|
||||
1.  [The AnswerBank (https://www.theanswerbank.co.uk)](https://www.theanswerbank.co.uk)*: top 10M, gb, q&a*
|
||||
@@ -1133,6 +1141,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Newreporter (https://newreporter.org)](https://newreporter.org)*: top 10M, ru*
|
||||
1.  [Govloop (https://www.govloop.com)](https://www.govloop.com)*: top 10M, education*
|
||||
1.  [Modx_pro (https://modx.pro)](https://modx.pro)*: top 10M, ru, uz*
|
||||
1.  [instaprofi.ru (https://instaprofi.ru)](https://instaprofi.ru)*: top 10M, photo*
|
||||
1.  [Lobsters (https://lobste.rs/)](https://lobste.rs/)*: top 10M, in, us, vn*
|
||||
1.  [Whonix Forum (https://forums.whonix.org/)](https://forums.whonix.org/)*: top 10M, forum, in, ir, tech, us*
|
||||
1.  [Pesiq (http://pesiq.ru/)](http://pesiq.ru/)*: top 10M, forum, ru*
|
||||
@@ -1237,7 +1246,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Pogovorim (https://pogovorim.by)](https://pogovorim.by)*: top 10M, by, ru*
|
||||
1.  [Qbn (https://www.qbn.com/)](https://www.qbn.com/)*: top 10M, in, us*
|
||||
1.  [Mobrep (https://www.mobrep.ru)](https://www.mobrep.ru)*: top 10M, ru*
|
||||
1.  [Hipforums (https://www.hipforums.com/)](https://www.hipforums.com/)*: top 10M, forum, in, ru, us*
|
||||
1.  [Hipforums (https://www.hipforums.com/)](https://www.hipforums.com/)*: top 10M, forum, in, ru, us*, search is disabled
|
||||
1.  [induste.com (https://induste.com/)](https://induste.com/)*: top 10M, forum, ma, re*
|
||||
1.  [MinecraftOnly (https://minecraftonly.ru)](https://minecraftonly.ru)*: top 10M, forum, gaming, ru*
|
||||
1.  [vauxhallownersnetwork.co.uk (http://www.vauxhallownersnetwork.co.uk)](http://www.vauxhallownersnetwork.co.uk)*: top 10M, forum, tr*
|
||||
@@ -1382,7 +1391,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [GGIZI (https://gg-izi.ru/)](https://gg-izi.ru/)*: top 10M, ru*
|
||||
1.  [Thefirearmsforum (https://www.thefirearmsforum.com)](https://www.thefirearmsforum.com)*: top 10M, forum, us*
|
||||
1.  [AnimeUKNews (https://forums.animeuknews.net/)](https://forums.animeuknews.net/)*: top 10M, forum, pk*
|
||||
1.  [Askvoprosy (https://askvoprosy.com/)](https://askvoprosy.com/)*: top 10M, coding*
|
||||
1.  [Askvoprosy (https://askvoprosy.com/)](https://askvoprosy.com/)*: top 10M, coding*, search is disabled
|
||||
1.  [Movie-list (https://www.movie-list.com)](https://www.movie-list.com)*: top 10M, ca, forum, in, pk*
|
||||
1.  [S-forum (https://s-forum.biz)](https://s-forum.biz)*: top 10M, forum*
|
||||
1.  [crown6.org (http://crown6.org)](http://crown6.org)*: top 10M*
|
||||
@@ -1461,7 +1470,6 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [ForumEvaveda (http://forum.evaveda.com/)](http://forum.evaveda.com/)*: top 10M, forum, ru*
|
||||
1.  [kpyto.pp.net.ua (http://kpyto.pp.net.ua)](http://kpyto.pp.net.ua)*: top 10M, ua*
|
||||
1.  [samsungmobile.pp.net.ua (http://samsungmobile.pp.net.ua)](http://samsungmobile.pp.net.ua)*: top 10M, ua*
|
||||
1.  [Fapforum (http://fapforum.net)](http://fapforum.net)*: top 10M, forum, porn, ua*, search is disabled
|
||||
1.  [audi-belarus.by (https://audi-belarus.by/forum)](https://audi-belarus.by/forum)*: top 10M, by, forum*
|
||||
1.  [SocialLibremOne (https://social.librem.one)](https://social.librem.one)*: top 10M, tech*
|
||||
1.  [uforum.uz (https://uforum.uz)](https://uforum.uz)*: top 10M*
|
||||
@@ -1471,6 +1479,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [niva-club.net (https://www.niva-club.net)](https://www.niva-club.net)*: top 10M*
|
||||
1.  [red-forum.com (https://red-forum.com)](https://red-forum.com)*: top 10M*
|
||||
1.  [Vapenews (https://vapenews.ru/)](https://vapenews.ru/)*: top 10M, in, ru*
|
||||
1.  [breakers.tv (https://breakers.tv)](https://breakers.tv)*: top 10M, streaming, us*
|
||||
1.  [Writercenter (https://writercenter.ru)](https://writercenter.ru)*: top 10M, ru, ua*
|
||||
1.  [southbayriders.com (http://www.southbayriders.com/forums/)](http://www.southbayriders.com/forums/)*: top 10M, forum*
|
||||
1.  [pobedish.ru (https://pobedish.ru/forum)](https://pobedish.ru/forum)*: top 10M, forum, ru*
|
||||
@@ -1602,7 +1611,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Nixp (https://www.nixp.ru/)](https://www.nixp.ru/)*: top 10M, ru*
|
||||
1.  [mstdn.io (https://mstdn.io/)](https://mstdn.io/)*: top 10M*
|
||||
1.  [devushka (https://devushka.ru/)](https://devushka.ru/)*: top 10M, forum, ru*
|
||||
1.  [AllTheSoft (http://www.allthesoft.com)](http://www.allthesoft.com)*: top 10M, in*
|
||||
1.  [AllTheSoft (http://www.allthesoft.com)](http://www.allthesoft.com)*: top 10M, in*, search is disabled
|
||||
1.  [Starvault (https://starvault.se)](https://starvault.se)*: top 10M, gaming*
|
||||
1.  [theprodigy (https://forum.theprodigy.ru/)](https://forum.theprodigy.ru/)*: top 10M, forum, ru, ua*, search is disabled
|
||||
1.  [forum.dusterclub.ru (http://forum.dusterclub.ru)](http://forum.dusterclub.ru)*: top 10M, forum*
|
||||
@@ -1668,9 +1677,9 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [markweinguitarlessons.com (http://markweinguitarlessons.com/forums/)](http://markweinguitarlessons.com/forums/)*: top 10M, forum, hobby*
|
||||
1.  [Bgforum (https://bgforum.ru)](https://bgforum.ru)*: top 10M, forum, ru*
|
||||
1.  [samp-sektor.ru (http://samp-sektor.ru)](http://samp-sektor.ru)*: top 10M*
|
||||
1.  [coder.social (https://coder.social)](https://coder.social)*: top 10M, coding*
|
||||
1.  [coder.social (https://coder.social)](https://coder.social)*: top 10M, coding*, search is disabled
|
||||
1.  [KubanForum24 (https://kuban.forum24.ru/)](https://kuban.forum24.ru/)*: top 10M, forum, ru*
|
||||
1.  [Chevrolet-cruze-club (http://www.chevrolet-cruze-club.ru)](http://www.chevrolet-cruze-club.ru)*: top 10M, ru*
|
||||
1.  [Chevrolet-cruze-club (http://www.chevrolet-cruze-club.ru)](http://www.chevrolet-cruze-club.ru)*: top 10M, ru*, search is disabled
|
||||
1.  [mix-best.ucoz.ru (http://mix-best.ucoz.ru)](http://mix-best.ucoz.ru)*: top 10M, ru*
|
||||
1.  [futajik.at.ua (http://futajik.at.ua)](http://futajik.at.ua)*: top 10M, ru*
|
||||
1.  [avtoexamen.com (http://avtoexamen.com)](http://avtoexamen.com)*: top 10M*
|
||||
@@ -1738,7 +1747,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Interfaith (https://www.interfaith.org)](https://www.interfaith.org)*: top 10M, forum*
|
||||
1.  [prizyvnikmoy.ru (http://prizyvnikmoy.ru)](http://prizyvnikmoy.ru)*: top 10M, ru*
|
||||
1.  [Worldis.me (http://en.worldis.me)](http://en.worldis.me)*: top 10M, ru*
|
||||
1.  [Anapakurort (http://www.anapakurort.info)](http://www.anapakurort.info)*: top 10M, ru*
|
||||
1.  [Anapakurort (http://www.anapakurort.info)](http://www.anapakurort.info)*: top 10M, ru*, search is disabled
|
||||
1.  [Mastera-forum (https://www.mastera-forum.ru)](https://www.mastera-forum.ru)*: top 10M, forum, ru*, search is disabled
|
||||
1.  [old.rubezhnoe.com (http://old.rubezhnoe.com)](http://old.rubezhnoe.com)*: top 10M, ua*
|
||||
1.  [fordating.ru (http://fordating.ru)](http://fordating.ru)*: top 10M, forum, ru*
|
||||
@@ -1784,7 +1793,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Plug.DJ (https://plug.dj/)](https://plug.dj/)*: top 10M, music*, search is disabled
|
||||
1.  [Zapravdu (http://zapravdu.ru/)](http://zapravdu.ru/)*: top 10M, ru*
|
||||
1.  [Ramta (http://ramta.0pk.ru)](http://ramta.0pk.ru)*: top 10M, ru*
|
||||
1.  [Mediarepost (https://mediarepost.ru)](https://mediarepost.ru)*: top 10M, ru*
|
||||
1.  [Mediarepost (https://mediarepost.ru)](https://mediarepost.ru)*: top 10M, ru*, search is disabled
|
||||
1.  [nelubit.ru (https://nelubit.ru)](https://nelubit.ru)*: top 10M, forum*
|
||||
1.  [KristallovNet (https://forum.kristallov.net)](https://forum.kristallov.net)*: top 10M, forum, ru*
|
||||
1.  [forum.lancerx.ru (https://forum.lancerx.ru)](https://forum.lancerx.ru)*: top 10M*
|
||||
@@ -2137,7 +2146,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [Friendfinder-x ()]()*: top 100M*
|
||||
1.  [Furaffinity ()]()*: top 100M*
|
||||
1.  [Fameswap ()]()*: top 100M*
|
||||
1.  [Fegatch (http://www.fegatch.com/)](http://www.fegatch.com/)*: top 100M, ru*
|
||||
1.  [Fegatch (http://www.fegatch.com/)](http://www.fegatch.com/)*: top 100M, ru*, search is disabled
|
||||
1.  [Filmogs (https://www.filmo.gs/)](https://www.filmo.gs/)*: top 100M, movies*, search is disabled
|
||||
1.  [Finanzfrage ()]()*: top 100M*
|
||||
1.  [Forum.quake2.com.ru (http://forum.quake2.com.ru/)](http://forum.quake2.com.ru/)*: top 100M, forum, ru*
|
||||
@@ -2877,7 +2886,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [caddy.community ()]()*: top 100M*
|
||||
1.  [chiefdelphi.com ()]()*: top 100M*
|
||||
1.  [choice.community ()]()*: top 100M*
|
||||
1.  [cloudromance.com ()]()*: top 100M*
|
||||
1.  [cloudromance.com ()]()*: top 100M*, search is disabled
|
||||
1.  [club.myce.com ()]()*: top 100M*
|
||||
1.  [cnblogs.com ()]()*: top 100M*
|
||||
1.  [commons.commondreams.org ()]()*: top 100M*
|
||||
@@ -2940,7 +2949,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [forum.banana-pi.org ()]()*: top 100M*
|
||||
1.  [forum.bonsaimirai.com ()]()*: top 100M*
|
||||
1.  [forum.cfx.re ()]()*: top 100M*
|
||||
1.  [forum.cockroachlabs.com ()]()*: top 100M*
|
||||
1.  [forum.cockroachlabs.com ()]()*: top 100M*, search is disabled
|
||||
1.  [forum.core-electronics.com.au ()]()*: top 100M*
|
||||
1.  [forum.freecodecamp.org ()]()*: top 100M*
|
||||
1.  [forum.gitlab.com ()]()*: top 100M*
|
||||
@@ -2961,7 +2970,7 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [forums.gearboxsoftware.com ()]()*: top 100M*
|
||||
1.  [forums.lawrencesystems.com ()]()*: top 100M*
|
||||
1.  [forums.mmorpg.com ()]()*: top 100M*
|
||||
1.  [forums.penny-arcade.com ()]()*: top 100M*
|
||||
1.  [forums.penny-arcade.com ()]()*: top 100M*, search is disabled
|
||||
1.  [forums.pimoroni.com ()]()*: top 100M*
|
||||
1.  [forums.t-nation.com ()]()*: top 100M*
|
||||
1.  [forums.theanimenetwork.com ()]()*: top 100M*
|
||||
@@ -3058,26 +3067,30 @@ Rank data fetched from Alexa by domains.
|
||||
1.  [lifeintravel.ru (https://lifeintravel.ru/forum)](https://lifeintravel.ru/forum)*: top 100M, forum, ru*
|
||||
1.  [make-ups.ru (http://make-ups.ru/forum)](http://make-ups.ru/forum)*: top 100M, forum, ru*
|
||||
1.  [rest.feo.ru (https://rest.feo.ru/forum)](https://rest.feo.ru/forum)*: top 100M, forum, ru*
|
||||
1.  [Harvard Scholar (https://scholar.harvard.edu/)](https://scholar.harvard.edu/)*: top 100M*
|
||||
1.  [Google Scholar (https://scholar.google.com/)](https://scholar.google.com/)*: top 100M*
|
||||
1.  [HuggingFace (https://huggingface.co/)](https://huggingface.co/)*: top 100M*
|
||||
1.  [ManifoldMarkets (https://manifold.markets/)](https://manifold.markets/)*: top 100M*
|
||||
|
||||
The list was updated at (2022-09-03 11:19:37.101948 UTC)
|
||||
The list was updated at (2022-12-17 12:30:00.619095 UTC)
|
||||
## Statistics
|
||||
|
||||
Enabled/total sites: 2820/3055 = 92.31%
|
||||
Enabled/total sites: 2816/3068 = 91.79%
|
||||
|
||||
Incomplete message checks: 477/2820 = 16.91% (false positive risks)
|
||||
Incomplete message checks: 470/2816 = 16.69% (false positive risks)
|
||||
|
||||
Status code checks: 719/2820 = 25.5% (false positive risks)
|
||||
Status code checks: 722/2816 = 25.64% (false positive risks)
|
||||
|
||||
False positive risk (total): 42.41%
|
||||
False positive risk (total): 42.33%
|
||||
|
||||
Top 20 profile URLs:
|
||||
- (796) `{urlMain}/index/8-0-{username} (uCoz)`
|
||||
- (288) `/{username}`
|
||||
- (293) `/{username}`
|
||||
- (221) `{urlMain}{urlSubpath}/members/?username={username} (XenForo)`
|
||||
- (160) `/user/{username}`
|
||||
- (134) `{urlMain}{urlSubpath}/member.php?username={username} (vBulletin)`
|
||||
- (133) `{urlMain}{urlSubpath}/member.php?username={username} (vBulletin)`
|
||||
- (127) `{urlMain}{urlSubpath}/search.php?author={username} (phpBB/Search)`
|
||||
- (111) `/profile/{username}`
|
||||
- (114) `/profile/{username}`
|
||||
- (108) `/u/{username}`
|
||||
- (87) `/users/{username}`
|
||||
- (87) `{urlMain}/u/{username}/summary (Discourse)`
|
||||
@@ -3087,18 +3100,18 @@ Top 20 profile URLs:
|
||||
- (41) `/members/?username={username}`
|
||||
- (29) `/members/{username}`
|
||||
- (27) `{urlMain}{urlSubpath}/memberlist.php?username={username} (phpBB)`
|
||||
- (23) `/author/{username}`
|
||||
- (24) `/author/{username}`
|
||||
- (18) `/forum/members/?username={username}`
|
||||
- (18) `/forum/search.php?keywords=&terms=all&author={username}`
|
||||
- (17) `/search.php?keywords=&terms=all&author={username}`
|
||||
|
||||
Top 20 tags:
|
||||
- (297) `NO_TAGS` (non-standard)
|
||||
- (301) `NO_TAGS` (non-standard)
|
||||
- (275) `forum`
|
||||
- (47) `gaming`
|
||||
- (24) `coding`
|
||||
- (23) `photo`
|
||||
- (23) `coding`
|
||||
- (19) `news`
|
||||
- (20) `news`
|
||||
- (19) `blog`
|
||||
- (16) `music`
|
||||
- (16) `tech`
|
||||
@@ -3106,10 +3119,10 @@ Top 20 tags:
|
||||
- (12) `sharing`
|
||||
- (12) `finance`
|
||||
- (11) `art`
|
||||
- (11) `shopping`
|
||||
- (10) `dating`
|
||||
- (10) `shopping`
|
||||
- (9) `movies`
|
||||
- (8) `hobby`
|
||||
- (8) `hacking`
|
||||
- (7) `sport`
|
||||
- (7) `hacking`
|
||||
- (6) `stock`
|
||||
|
||||
+31
-18
@@ -1,30 +1,43 @@
|
||||
name: maigret2
|
||||
version: git
|
||||
adopt-info: maigret2
|
||||
summary: SOCMINT / Instagram
|
||||
description: |
|
||||
Test Test Test
|
||||
base: core18
|
||||
|
||||
license: MIT
|
||||
|
||||
base: core20
|
||||
grade: stable
|
||||
confinement: strict
|
||||
compression: lzo
|
||||
|
||||
|
||||
parts:
|
||||
maigret2:
|
||||
plugin: python
|
||||
python-version: python3
|
||||
source: .
|
||||
stage-packages:
|
||||
- python-six
|
||||
|
||||
architectures:
|
||||
- build-on: amd64
|
||||
|
||||
apps:
|
||||
maigret2:
|
||||
command: bin/maigret
|
||||
environment:
|
||||
LC_ALL: C.UTF-8
|
||||
plugs:
|
||||
- home
|
||||
- network
|
||||
|
||||
parts:
|
||||
maigret2:
|
||||
plugin: python
|
||||
source: https://github.com/soxoj/maigret
|
||||
source-type: git
|
||||
|
||||
|
||||
architectures:
|
||||
- build-on: amd64
|
||||
- build-on: i386
|
||||
|
||||
|
||||
|
||||
build-packages:
|
||||
- python3-pip
|
||||
- python3-six
|
||||
- python3
|
||||
|
||||
stage-packages:
|
||||
- python3
|
||||
- python3-six
|
||||
|
||||
override-pull: |
|
||||
snapcraftctl pull
|
||||
snapcraftctl set-version "$(git describe --tags | sed 's/^v//' | cut -d "-" -f1)"
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
reportlab==3.6.11
|
||||
flake8==5.0.4
|
||||
pytest==7.1.3
|
||||
pytest==7.2.0
|
||||
pytest-asyncio==0.16.0;python_version<"3.7"
|
||||
pytest-asyncio==0.19.0;python_version>="3.7"
|
||||
pytest-cov==3.0.0
|
||||
pytest-httpserver==1.0.5
|
||||
pytest-asyncio==0.20.1;python_version>="3.7"
|
||||
pytest-cov==4.0.0
|
||||
pytest-httpserver==1.0.6
|
||||
pytest-rerunfailures==10.2
|
||||
|
||||
Reference in New Issue
Block a user