No project description provided
Project description
MMDB
Create a MaxMind Databases for your own needs.
pip install mmdb[cli]
Features
- Query any maxmind database:
mmdb get <IP> -d <DATABASE>
- Download and build DBIP database ASN Lite, Country Lite, and City Lite:
mmdb dbip-build
- Create an IP database from a CSV file:
mmdb build <CSV>
- Logstash GeoIP Filter Plugin compatibility:
mmdb build <CSV> --lsc
- Additional country data such as is_eu, is_nato, or is_g7:
mmdb build <CSV> -f country
Examples
Logstash Compatibility
Logstash ships with the GeoIP Filter Plugin which enriches a document with IP GeoData. However, the plugin supports specific MaxMind database types only. As a result, any other database type disables the plugin.
Regarding this, the plag --lsc
enables logstash support. Long story short:
You get a MaxMind ASN Database, but the IP info as an embedded json string within the
asn_organization_name
field. The logstash pipeline must load that json data and adds it to
the document, exemplified below
filter {
geoip {
source => "ip"
database => "/path/to/my/database.mmdb"
ecs_compatibility => disabled
target => "wrapped_ip_data"
}
json {
source => "[wrapped_ip_data][organization_name]"
target => "myip"
}
mutate {
remove_field => ["wrapped_ip_data"]
}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mmdb-0.1.0.tar.gz
.
File metadata
- Download URL: mmdb-0.1.0.tar.gz
- Upload date:
- Size: 21.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.9.2 Linux/5.10.0-19-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66765b7d120e266fce9ed6b516ee21f9c4f85aa8f20714dae73999611c363498 |
|
MD5 | a2f7955db63bb5ecb1c713eecc43c00b |
|
BLAKE2b-256 | 99d4e974371bfbcc7bbbcec52b0e8b0f741c64bd3f0d262ad018b5449e9d8073 |
File details
Details for the file mmdb-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: mmdb-0.1.0-py3-none-any.whl
- Upload date:
- Size: 21.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.9.2 Linux/5.10.0-19-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5dd1cfd408da17d63a20d12c2d7997ee8b7aa619ced2cd41e070cf94934af095 |
|
MD5 | f427b3566b9fb273b01a5ae21715df50 |
|
BLAKE2b-256 | 382aed13c55c62efb64c09871e31d675f37d9942454d50db89dab8ef5b68975c |