mirror of
https://github.com/zu1k/nali.git
synced 2025-02-02 10:22:41 +08:00
update readme
This commit is contained in:
parent
62f5dcf081
commit
130e6dafe7
29
README.md
29
README.md
@ -48,21 +48,21 @@ docker pull docker.pkg.github.com//zu1k/nali/nali:v0.0.2
|
|||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
#### Query a simple IP address
|
### Query a simple IP address
|
||||||
|
|
||||||
```
|
```
|
||||||
$ nali 1.2.3.4
|
$ nali 1.2.3.4
|
||||||
1.2.3.4 [澳大利亚 APNIC Debogon-prefix网络]
|
1.2.3.4 [澳大利亚 APNIC Debogon-prefix网络]
|
||||||
```
|
```
|
||||||
|
|
||||||
##### or use `pipe`
|
#### or use `pipe`
|
||||||
|
|
||||||
```
|
```
|
||||||
$ echo IP 6.6.6.6 | nali
|
$ echo IP 6.6.6.6 | nali
|
||||||
IP 6.6.6.6 [美国 亚利桑那州华楚卡堡市美国国防部网络中心]
|
IP 6.6.6.6 [美国 亚利桑那州华楚卡堡市美国国防部网络中心]
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Query multiple IP addresses
|
### Query multiple IP addresses
|
||||||
|
|
||||||
```
|
```
|
||||||
$ nali 1.2.3.4 4.3.2.1 123.23.3.0
|
$ nali 1.2.3.4 4.3.2.1 123.23.3.0
|
||||||
@ -71,7 +71,7 @@ $ nali 1.2.3.4 4.3.2.1 123.23.3.0
|
|||||||
123.23.3.0 [越南 越南邮电集团公司]
|
123.23.3.0 [越南 越南邮电集团公司]
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Interactive query
|
### Interactive query
|
||||||
|
|
||||||
use `exit` or `quit` to quit
|
use `exit` or `quit` to quit
|
||||||
|
|
||||||
@ -86,7 +86,7 @@ $ nali
|
|||||||
quit
|
quit
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Use with dig
|
### Use with dig
|
||||||
|
|
||||||
```
|
```
|
||||||
$ dig nali.lgf.im +short | nali
|
$ dig nali.lgf.im +short | nali
|
||||||
@ -95,7 +95,7 @@ $ dig nali.lgf.im +short | nali
|
|||||||
172.67.135.48 [美国 CloudFlare节点]
|
172.67.135.48 [美国 CloudFlare节点]
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Use with nslookup
|
### Use with nslookup
|
||||||
|
|
||||||
```
|
```
|
||||||
$ nslookup nali.lgf.im 8.8.8.8 | nali
|
$ nslookup nali.lgf.im 8.8.8.8 | nali
|
||||||
@ -111,7 +111,7 @@ Name: nali.lgf.im
|
|||||||
Address: 172.67.135.48 [美国 CloudFlare节点]
|
Address: 172.67.135.48 [美国 CloudFlare节点]
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Use with any other program
|
### Use with any other program
|
||||||
|
|
||||||
Because nali can read the contents of the `stdin` pipeline, it can be used with any program
|
Because nali can read the contents of the `stdin` pipeline, it can be used with any program
|
||||||
|
|
||||||
@ -123,7 +123,7 @@ Nali will insert ip information after ip
|
|||||||
|
|
||||||
## Interface
|
## Interface
|
||||||
|
|
||||||
#### Help
|
### Help
|
||||||
|
|
||||||
```
|
```
|
||||||
$ nali --help
|
$ nali --help
|
||||||
@ -143,7 +143,7 @@ Flags:
|
|||||||
Use "nali [command] --help" for more information about a command.
|
Use "nali [command] --help" for more information about a command.
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Update chunzhen IP database
|
### 纯真 Update chunzhen IP database
|
||||||
|
|
||||||
```
|
```
|
||||||
$ nali update
|
$ nali update
|
||||||
@ -151,7 +151,16 @@ $ nali update
|
|||||||
2020/07/17 12:54:05 已将最新的纯真 IP 库保存到本地 /root/.nali/qqwry.dat
|
2020/07/17 12:54:05 已将最新的纯真 IP 库保存到本地 /root/.nali/qqwry.dat
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Thanks
|
||||||
|
|
||||||
|
- [纯真QQIP离线数据库](http://www.cz88.net/fox/ipdat.shtml)
|
||||||
|
- [qqwry mirror](https://qqwry.mirror.noc.one/)
|
||||||
|
- [qqwry纯真数据库解析](https://github.com/yinheli/qqwry)
|
||||||
|
- [Geoip2 city数据库](https://www.maxmind.com/en/geoip2-precision-city-service)
|
||||||
|
- [geoip2-golang解析器](github.com/oschwald/geoip2-golang)
|
||||||
|
- [Cobra CLI库](https://github.com/spf13/cobra)
|
||||||
|
- [Nali-cli](https://github.com/SukkaW/nali-cli)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
MIT
|
MIT
|
||||||
|
|
||||||
|
1
go.mod
1
go.mod
@ -3,7 +3,6 @@ module github.com/zu1k/nali
|
|||||||
go 1.14
|
go 1.14
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/mitchellh/go-homedir v1.1.0
|
|
||||||
github.com/oschwald/geoip2-golang v1.4.0
|
github.com/oschwald/geoip2-golang v1.4.0
|
||||||
github.com/spf13/cobra v1.0.0
|
github.com/spf13/cobra v1.0.0
|
||||||
github.com/spf13/pflag v1.0.5 // indirect
|
github.com/spf13/pflag v1.0.5 // indirect
|
||||||
|
Loading…
Reference in New Issue
Block a user