Weibo Searcher is a query tool for the database leaked by Weibo.
Support any request method, including GET/POST, etc.
http://localhost:11119/wb?u=1234567890
http://localhost:11119/wb?u=13901018888
We highly recommend you to use Clickhouse database.
CREATE TABLE wb(
uid String,
mobile String
)ENGINE = MergeTree()
ORDER BY (uid)
PRIMARY KEY (uid);
CREATE TABLE wbm(
uid String,
mobile String
)ENGINE = MergeTree()
ORDER BY (mobile)
PRIMARY KEY (mobile);
We recommend that you use two tables, which can greatly speed up the efficiency of the reverse query.
- Support custom configuration
- Support Telegram Bot
- Add frontend pages
We do not provide nor do we keep any leaked data.
WeiboSearcher © Vincent Young, Released under the MIT License.