Skip to main content

Malware DB Python Client

Test Lint Release Documentation PyPI - Wheel Crates.io Version Bluesky

This is a Python module for interacting with an instance of Malware DB.

Installation

From Source

The best way to compile the Python client is with Maturin.

  1. python3 -m venv mdb-venv
  2. source mdb-venv/bin/activate
  3. pip install maturin
  4. git clone https://github.com/malwaredb/malwaredb-rs.git
  5. cd client-py
  6. maturin develop (or maturin build to create a distributable wheel)

Features

If using this crate with another library, be sure to use the rust_lib feature flag to avoid creating the Malware DB client module type. This could be useful for reusing the functions defined in this crate with another Python module.

Use

  1. Import the module: from malwaredb import MalwareDBClient
  2. Create a client object from one of three ways:
    • MalwareDBClient.from_file() to use a configuration file
    • MalwareDBClient() to have the client library find a configuration file
    • MalwareDBClient.anonymous(url, [cert_path]) to provide the URL and optional certifcate path to connect anonymously, if supported by the server
    • MalwareDBClient.connect(url, api_key, [cert_path]) to provide the URL, API key, and optional path for a certificate for encrypted communication
    • MalwareDBClient.login(url, username, password, save, [cert_path]) to provide the URL, username, password, whether to save the configuration, and optional path for a certificate for encrypted communication
    • MalwareDBCLient.discover() to find local servers via multicast DNS
  3. Client functionality:
    • .get_file_bytes() get a file from Malware DB
    • .server_info() get server information
    • .submit_file() submit a file to Malware DB
    • .get_supported_file_types() get a list of file types supported by the Malware DB server
    • .search() search for files based on some criteria. Some optional keyword arguments, a minimum of one criterion is required:
      • hash=: specify a partial hash
      • hash_type=: specify the type of the partial hash, options are md5, sha1, sha256, or sha512, default is sha256
      • file_name=: specify all or part of a file name
      • labels=: specify a list of labels
      • file_type=: specify a file type, which must match a file type from .get_supported_file_types()
      • magic=: specify all or part of the file command (libmagic) output for a given file
      • response_hash=: specify the hash type to be returned, options are md5, sha1, sha256, or sha512, default is sha256
      • limit=: integer specifying the maximum results to be returned, must be greater than zero
    • .labels() get available labels for samples
    • .whoami() get information about the user's account
    • .yara_search() search for files using Yara, if the server supports it
    • .yara_result() get results of Yara search using UUID
  4. CaRT functionality:
    • malwaredb.cart.create_cart() encodes bytes into a CaRT bytes
    • malwaredb.cart.decode_cart() decodes CaRT bytes back into the original binary long with header and footer data. See client-py/py_test/cart.py.
    • Current limitations:
      • create_cart() doesn't allow setting custom fields.
      • decode_cart() will not be able to return fields which aren't plain float, integer, or string types.
    • See cart as an alternative CaRT module which is probably more feature-rich.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

malwaredb-0.3.7.tar.gz (136.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ppc64le

malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl (2.7 MB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_i686.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

malwaredb-0.3.7-cp315-cp315t-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

malwaredb-0.3.7-cp315-cp315t-manylinux_2_28_i686.whl (2.8 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ i686

malwaredb-0.3.7-cp315-cp315t-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_ppc64le.whl (3.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

malwaredb-0.3.7-cp314-cp314t-manylinux_2_31_riscv64.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_ppc64le.whl (3.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_i686.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

malwaredb-0.3.7-cp314-abi3-win_arm64.whl (2.9 MB view details)

Uploaded CPython 3.14+Windows ARM64

malwaredb-0.3.7-cp314-abi3-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.14+Windows x86-64

malwaredb-0.3.7-cp314-abi3-win32.whl (2.5 MB view details)

Uploaded CPython 3.14+Windows x86

malwaredb-0.3.7-cp314-abi3-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14+macOS 11.0+ ARM64

malwaredb-0.3.7-cp314-abi3-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14+macOS 10.12+ x86-64

malwaredb-0.3.7-cp39-abi3-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.28+ x86-64

malwaredb-0.3.7-cp39-abi3-manylinux_2_28_i686.whl (2.9 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.28+ i686

malwaredb-0.3.7-cp39-abi3-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.28+ ARM64

malwaredb-0.3.7-cp38-abi3-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ x86-64

malwaredb-0.3.7-cp38-abi3-musllinux_1_2_ppc64le.whl (3.1 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ppc64le

malwaredb-0.3.7-cp38-abi3-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ i686

malwaredb-0.3.7-cp38-abi3-musllinux_1_2_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARMv7l

malwaredb-0.3.7-cp38-abi3-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARM64

malwaredb-0.3.7-cp38-abi3-manylinux_2_31_riscv64.whl (2.7 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.31+ riscv64

malwaredb-0.3.7-cp38-abi3-manylinux_2_28_ppc64le.whl (3.0 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.28+ ppc64le

malwaredb-0.3.7-cp38-abi3-manylinux_2_28_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.28+ ARMv7l

File details

Details for the file malwaredb-0.3.7.tar.gz.

File metadata

  • Download URL: malwaredb-0.3.7.tar.gz
  • Upload date:
  • Size: 136.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for malwaredb-0.3.7.tar.gz
Algorithm Hash digest
SHA256 c423fde1c2145ff8d16e96c0e29a4738fe6cb0380d4e783527dddeb6189084f0
MD5 b7a5ea39dd9724ebb0440953bbcb8232
BLAKE2b-256 4780c63f8581e0e0e733e8e9a57ae5ca71dc5441790da777af360ccf1a3d04f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7.tar.gz:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 921c7fcae4f52b31e70895917427beb7ecdb1516d35124e945dd5274c192d44d
MD5 eb2027690e0c92028e24834823cceca2
BLAKE2b-256 f73db3d3d1deea851eab982d16c25ab917e656725e7e1064b855fc9755b1ffa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9d52ee7727bda577718dc64338d63e6122a839ec48b130fd8a693458f8a1c7e1
MD5 0521ffb320757a0ce5caae7a533eb190
BLAKE2b-256 c9d30e4cc2efc2988b98bb0c4e2e1da026e010fa52f223fbbf6e9c2e5222688d

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f09f4804dee158ce546a22357c63e07acba0b9fc6d3bb8f50ea323abf3a5271
MD5 1544fbf7505989723061a0ade17d2049
BLAKE2b-256 6aa6c1a420120835d87034168f562a0abec49f79a1c61cc7cc0f8b558e9e9e1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e9e48b662eb0e09b90e8bc4cab30ba2b81da370f329206aea85a491ad5235fa6
MD5 35ebef3eaa15a9517cf1578c291abee1
BLAKE2b-256 2db71dd718ee358d436e21488cad224332c04ae081be21a97679552380afb0da

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d67f7b9b28b42d266fd0cdfc21b1671d98eabc08165ab24cec1e8fb950f09c9
MD5 ae4bd97e0fe91feafddb87b189f33302
BLAKE2b-256 f1cf1fad9066bb0b774791c0817d77b1c72007209a3a05017cc664e7b63fd6b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 caaf6ff8e6be098975d877440d1e369afb7dcc6bb71e3b5ba6880c6dc79d30fc
MD5 27c3bbf0aca1853b0e5de25d9825ae45
BLAKE2b-256 6024c94bcd684a0a5793964870d782fbc7d445a6222178f6606dbee10fca3fa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce0a44dec1489a3baa96e0cd4e35d1f2a0aeb667d89d19cd98419eada2eb5edf
MD5 e0765bb33d4de23e6e73f09fe41c77b2
BLAKE2b-256 f0bfa7058d6c1be660c0e900ab6e00da1badb4eb19202b38be91da213d9b4279

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 46452c52f6370855dc41cd6c0438f99738dba045a228bc105d0f797d8a580cf2
MD5 f0d0445d2807bc39e07ed9a86387a4eb
BLAKE2b-256 d7e03982b7e6aa8db1088ef0db783e2590a37341fde87843443032989de33bff

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 16818919bd8d52dbf22ef5fcd2b53136f2b7affd5e0c3c16e102b9c143e3556a
MD5 edcbb1bd49f9c7b1caa32cb021e96948
BLAKE2b-256 7c6ca2c14384c197050249b13cdcb00a448ed80d77b389cc1906a29ca16401c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_i686.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 53f029ab5b6904824180d0c52f9a03164b6e377d707ead63a92bc8e1054a19e6
MD5 3c0774d9743156c8975bccdf8cd61251
BLAKE2b-256 378fd7497f55449293dc6767e9451739383c5fd1f0f7e0cf0f658c301b2f5051

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3d0328d631d902926539c84c53ef390e10994d7fc63e904a04f013b3dd13f17
MD5 47cb78a403d9cdbfd680d87995332569
BLAKE2b-256 cc3169b249dde42f7d16fc738a5e481ea459f495588e2cecc60e98b6d6cd12b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f46b3663d9eeb0544fc479cf44aab35fea071e5b8cb9d5cf22d4eaeb0c2a8dc8
MD5 e089c81849113499bebe0507cc9f2507
BLAKE2b-256 047399a5afa325098fb9df47cb0a5a173a64b2f89e9d8f1bc9295ed1b44bbb9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp315-cp315t-manylinux_2_28_x86_64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp315-cp315t-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp315-cp315t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5e4c9e183a6131e0b1418a846c73ca15fd59164a2bd263fddc7400e6db371806
MD5 6b80b829d7be20706d8899f01ed2f30d
BLAKE2b-256 4571e4a78d79f528ffaf423e6dbd71030b010459fb0c78f184fcd319ad6e6907

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp315-cp315t-manylinux_2_28_i686.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp315-cp315t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 efd0f5d948afc2d240837ab78950b3786eaf3f27a03d40332c4e50428fe5283b
MD5 d690d9a3bf6ceaa3882dafeed0535a37
BLAKE2b-256 b0f4381cddadda267c5d3add7e42d9929af3ca4e7d24481fab93bb6ec2ae9059

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp315-cp315t-manylinux_2_28_aarch64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 721e8509f3c481efbb5311e400b676561e4bfc2711c20eb3d26bd9e6bb4e387f
MD5 5848dca25d55f84fcedd5568538534fc
BLAKE2b-256 5f9d639849cbb3bae3384cd7eb5196135e4f5bd7c7fef8233de8fcb72de425a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b2380a97904f7e9376a6ef464aa7e0001722271f5a91cfaa52ebe97687b1e53b
MD5 54eb6c686d0ff1d7dae8371aaae5c0c9
BLAKE2b-256 1f0258fe33d314f05472945c9c0f577bec948e92bf308e4d48ecf492d69eb82b

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed94c1826cc5959567f7386049add848c24b04e33e939dec5cb2c294293790a4
MD5 3cdf08d059997e36b7254c9c543dd773
BLAKE2b-256 9dffc4dd5235352985fc0b090b0939c9922b177e17d0f48070a505d47221e33a

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 737e1f1e6ce3ce78ed9836b03d89ed0bdfb40f5953017c57cc43b8965185800f
MD5 1a82b5f3f4e054874f47c2f387d6a09f
BLAKE2b-256 c87ba3ab771027f3d66b84769d82b9b2135f2ec497dbe51d2c72272c7ac93951

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f35b6bba66e078d094c76204d21cc24a3ff2f2f80d8d7bedbaf8b5434103cb0
MD5 2cb4ccc7d0472f986478f213d576fb90
BLAKE2b-256 1617b802ba9018a24bf222e375519e6d38a182c73ae39541d4196d87a228fa5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 b4f25e005889f7c2efa0d09fa7fe26f6d0b2c5104afcba4d44f89985eea40837
MD5 b902063d40f5729732a8002218a194f5
BLAKE2b-256 e6f80ae528ca6bec655e0659822311f4316cea901b53b6f7b7a07b29b0cb6d16

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-cp314t-manylinux_2_31_riscv64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9e681128687957f121a00c54950b2eef02fee8712865c2aaa0a3abf2cdceb2d
MD5 3357c8e35a951c85b256a63906e25eef
BLAKE2b-256 4af728a6781ecad65eb833f09548ff9673fbe7862c5349dd644fa35d575de295

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a1a0fbc5e98e615e4f971a4c82e5d34145bdad0e9182cc2601fe9690d5c18266
MD5 b904593417c66dcdfed58cc48aab483b
BLAKE2b-256 b4da828276c3f819b54562909d27608d6adca04edcb7b750eb6f366b050ed206

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_ppc64le.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d76cb7e2b19dd41fa01f38cdb7daec6e6495db7ac9fe589b554895cdc9faf7e9
MD5 37772d0f1c8204798307f10378ebb582
BLAKE2b-256 ac9a32324c7348abc045d4aa2fc98110663dac99352525f25785903bbf277b88

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_i686.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 361cab4788c46b486ae78f896f45b230070e0107f409550d283f6570e2631254
MD5 eacab88edd5fc75d8baa86fb706d9f77
BLAKE2b-256 f7da9ea34feaa099838965678bb6b608c90d4cc69ae13d67e4d73fac747c0a19

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_armv7l.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75b7257f7e7d36102680a0d11c34f8b5951dde503010b34076c5baec18efd77c
MD5 e9bed69f03836303ac0180f5d1e2ff13
BLAKE2b-256 52feb50dfdc3540528037766dc155302f861d607d5561edfc3a33f474fe2d5f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-abi3-win_arm64.whl.

File metadata

  • Download URL: malwaredb-0.3.7-cp314-abi3-win_arm64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.14+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for malwaredb-0.3.7-cp314-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 08a9e13199aa51170cdbc7f268c205b1b0e229273ef85d66953327a7a0b643ff
MD5 07db471824bc693f4a621584162defdb
BLAKE2b-256 02a7c7ebc49760503c7da982aae6b710bf44b3fd65864c3d846bb0a9c005ced3

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-abi3-win_arm64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-abi3-win_amd64.whl.

File metadata

  • Download URL: malwaredb-0.3.7-cp314-abi3-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for malwaredb-0.3.7-cp314-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 85fc9772beee422c4140327a899d34984f76310a086ccca6bb93b4eff6e1bacd
MD5 2893464aefaeb029557a1de7964e89ed
BLAKE2b-256 b89791c94546f08c1ffe848c9bd920cafc8ed9a8fb979969df11b4e6c215747f

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-abi3-win_amd64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-abi3-win32.whl.

File metadata

  • Download URL: malwaredb-0.3.7-cp314-abi3-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.14+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for malwaredb-0.3.7-cp314-abi3-win32.whl
Algorithm Hash digest
SHA256 33687b15c947b418c9ff21d677baaf98a47a00e6b6aea6dcc57a32904de80f48
MD5 d2c663bc02d1722c286c621c4b212fe7
BLAKE2b-256 c98ce2770979715a71091a355e801d8b929a45c0be0a45c3d94f9f846321630b

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-abi3-win32.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp314-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d124653de2993d0e65598827586540c5d00673cb1aed9224b83eb0a0de649b1
MD5 03cc4de5d06cebc9775d0ab8ca6e7011
BLAKE2b-256 53a340bc35467559d38a0269d9060e29e2ab0ff7e1947d4efd909cfe41af25d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-abi3-macosx_11_0_arm64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp314-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp314-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 135f90383dff2fa7959a247eccff1079f79b92fc00686a6f3603c862b40647df
MD5 d1e77cead01d70ac82f616be64552fbf
BLAKE2b-256 4aa14af4f7284d4d538b0121858e1614a59a33f3bc0f9eb182bb0c3cc09a24bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp314-abi3-macosx_10_12_x86_64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp39-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp39-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66cc1cf76e33689b2c59db1a682037d00e892106828870e25a12936e00876c6b
MD5 665756f4f0029868c0b7c59c77b4633d
BLAKE2b-256 61f608f743ec618f7c89b4a0b5bed6d2e9dfd48d029e0bc6b74e6e72a11c6833

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp39-abi3-manylinux_2_28_x86_64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp39-abi3-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp39-abi3-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f36a6832847fb7d256427e5c5cbe2c1fdae5e68e2d4dfbfd195f6e40d498a925
MD5 10c65d0026dd1d7950f62c684733b06a
BLAKE2b-256 553c1f1ab437dde5e29b8a4bf558554fe8be0d993ea279b1e9558eec2dce794b

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp39-abi3-manylinux_2_28_i686.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp39-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp39-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 36542275ed8f143a099d2c6359808e6948483be8d28d59e5e6bd4f28fac3b802
MD5 42f7e3aff72f57bac9f161250d8aba23
BLAKE2b-256 28cca640cf74942b515cc75349d71224f3ae86532a715d7f0f31463e3c3f0ddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp39-abi3-manylinux_2_28_aarch64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp38-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp38-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97da7a29738e92852c32d3e057c6b3c90b5d26eca77ed540afb7683786d10fd6
MD5 e367d80c71748064c50376c1e196b86d
BLAKE2b-256 f3f2d61d0e9f96f1541274768d04df8517cd76be4eb7e8b5d71146babde3c682

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp38-abi3-musllinux_1_2_x86_64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp38-abi3-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp38-abi3-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dc3f955514d0913bf8230666d6c0fc4944d7e8906a31f55af5c359b82d8406ae
MD5 7ef07b27f0ec9e179cca05681e74246c
BLAKE2b-256 1e0eef41d61d6c6edd5888b6f9601fd25ee2ad3dd61e26e023cfc5e1c4ec2b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp38-abi3-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp38-abi3-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp38-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ccdd5e64b69cc1ea9f2a59e4cecfd099af559bb29e4533a502788b2b59aeabf
MD5 2d8d168a93c90cb15b62c2851a8606d5
BLAKE2b-256 b684a57d07fc5882a1c9bbb0c0e42f943b79ecbe9d323452ae2ab570f14385b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp38-abi3-musllinux_1_2_i686.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp38-abi3-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp38-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f133fdbf58457ef53b30989d31f49d2f58fb5e06b2c2d6b3d823f721a6aa018e
MD5 f50b1ee1bd11eaaefb31cd083cc94a97
BLAKE2b-256 964eeb6fe2d2bb75e02594615b224a4ef970b688835e14ad4381fc8f6cb26e74

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp38-abi3-musllinux_1_2_armv7l.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp38-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp38-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0bd9888460568b7e8740f9faf0015315ee49d65dd17a2159ef03db7527c8ea1
MD5 60cbe8cf584eaf6f085e0cc1c9a988eb
BLAKE2b-256 1269decf71d5075f0a6cbcdf8f9639c0e3d0272750adf203bfd2911180d25c6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp38-abi3-musllinux_1_2_aarch64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp38-abi3-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp38-abi3-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 45abed48ebf74468a396ca68985e73ffc92d9bc433a3abc21fe371fd36ded38f
MD5 8b2b1c65751ec7b63698972f2fac566f
BLAKE2b-256 37e4e5192a075c2d4ff9f19d788470cee08d09375f6a98f20bbe0b92f3aa869b

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp38-abi3-manylinux_2_31_riscv64.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp38-abi3-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp38-abi3-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fd7466e7b5f94a420d98df9c098cb21551e7689086d45ef695b327b320745cf0
MD5 57a9309601925bdd88db2c29b6b766c5
BLAKE2b-256 9781d304da4674c6eecc514b33cb42ea1d3f9aab20466dff763256357c448da3

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp38-abi3-manylinux_2_28_ppc64le.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file malwaredb-0.3.7-cp38-abi3-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for malwaredb-0.3.7-cp38-abi3-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 670ebd55402e1261f5d92bb164015f766fcf1cec1de614861a4e3635661a3d52
MD5 db78e3fd9b6ec3504bd894c7707ab33e
BLAKE2b-256 7686e7a8eb77ddcb9c2d9a55d6feec8669f576486ddf34d0111d84c7b534c4ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for malwaredb-0.3.7-cp38-abi3-manylinux_2_28_armv7l.whl:

Publisher: release.yml on malwaredb/malwaredb-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page