Skip to content

OwO-Network/WeiboSearcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WeiboSearcher

Weibo Searcher is a query tool for the database leaked by Weibo.

Usage

Support any request method, including GET/POST, etc.

Search for mobile phone numbers by uid

http://localhost:11119/wb?u=1234567890

Search for uid by mobile phone number

http://localhost:11119/wb?u=13901018888

Preparing the data source

We highly recommend you to use Clickhouse database.

Create table(uid)

CREATE TABLE wb(
uid String,
mobile String
)ENGINE = MergeTree()
    ORDER BY  (uid)
    PRIMARY KEY (uid);

Create table(mobile)

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.

TODO List

  • Support custom configuration
  • Support Telegram Bot
  • Add frontend pages

Statement

We do not provide nor do we keep any leaked data.

Author

WeiboSearcher © Vincent Young, Released under the MIT License.