Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/OwO-Network/WeiboSearcher

Weibo Data Searcher
https://github.com/OwO-Network/WeiboSearcher

Last synced: about 2 months ago
JSON representation

Weibo Data Searcher

Awesome Lists containing this project

README

        

# 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
- [x] Support custom configuration
- [x] Support Telegram Bot
- [ ] Add frontend pages

## Statement
**We do not provide nor do we keep any leaked data.**

## Author

**WeiboSearcher** © [Vincent Young](https://github.com/missuo), Released under the [MIT](./LICENSE) License.