yara-python 4.5.2
pip install yara-python
Released:
Python interface for YARA
Navigation
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIMeta
- License: Apache Software License (Apache 2.0)
- Author: Victor M. Alvarez
Classifiers
- Development Status
- License
- Operating System
- Programming Language
Project description
.. image:: https://ci.appveyor.com/api/projects/status/gidnb9ulj3rje5s2?svg=true :target: https://ci.appveyor.com/project/plusvic/yara-python
yara-python
With this library you can use YARA <https://github.com/VirusTotal/yara>
_ from
your Python programs. It covers all YARA's features, from compiling, saving
and loading rules to scanning files, strings and processes.
Here it goes a little example:
.. code-block:: python
>>> import yara
>>> rule = yara.compile(source='rule foo: bar {strings: $a = "lmn" condition: $a}')
>>> matches = rule.match(data='abcdefgjiklmnoprstuvwxyz')
>>> print(matches)
[foo]
>>> print(matches[0].rule)
foo
>>> print(matches[0].tags)
['bar']
>>> print(matches[0].strings)
[$a]
>>> print(matches[0].strings[0].identifier)
$a
>>> print(matches[0].strings[0].instances)
[lmn]
>>> print(matches[0].strings[0].instances[0].offset)
10
>>> print(matches[0].strings[0].instances[0].matched_length)
3
Installation
The easiest way to install YARA is by using pip
:
.. code-block:: bash
$ pip install yara-python
But you can also get the source from GitHub and compile it yourself:
.. code-block:: bash
$ git clone --recursive https://github.com/VirusTotal/yara-python
Notice the --recursive
option used with git
. This is important because
we need to download the yara
subproject containing the source code for
libyara
(the core YARA library). It's also important to note that the two
methods above link libyara
statically into yara-python. If you want to link
dynamically against a shared libyara
library, use:
.. code-block:: bash
$ python setup.py build --dynamic-linking
For this option to work you must build and install
YARA <https://github.com/VirusTotal/yara>
_ separately before installing
yara-python
.
Documentation
Find more information about how to use yara-python at https://yara.readthedocs.org/en/latest/yarapython.html.
Project details
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIMeta
- License: Apache Software License (Apache 2.0)
- Author: Victor M. Alvarez
Classifiers
- Development Status
- License
- Operating System
- Programming Language
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 Distributions
Uploaded
CPython 3.13
Windows x86-64
Uploaded
CPython 3.13
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.13
musllinux: musl 1.2+ i686
Uploaded
CPython 3.13
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.13
macOS 10.13+ x86-64
Uploaded
CPython 3.13
macOS 10.13+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.12
Windows x86-64
Uploaded
CPython 3.12
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.12
musllinux: musl 1.2+ i686
Uploaded
CPython 3.12
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.12
macOS 10.13+ x86-64
Uploaded
CPython 3.12
macOS 10.13+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.11
Windows x86-64
Uploaded
CPython 3.11
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.2+ i686
Uploaded
CPython 3.11
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.11
macOS 10.9+ x86-64
Uploaded
CPython 3.11
macOS 10.9+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.10
Windows x86-64
Uploaded
CPython 3.10
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.2+ i686
Uploaded
CPython 3.10
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.10
macOS 10.9+ x86-64
Uploaded
CPython 3.10
macOS 10.9+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.9
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.2+ i686
Uploaded
CPython 3.9
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.9
macOS 10.9+ x86-64
Uploaded
CPython 3.9
macOS 10.9+ universal2 (ARM64, x86-64)
File details
Details for the file yara_python-4.5.2.tar.gz
.
File metadata
- Download URL: yara_python-4.5.2.tar.gz
- Upload date:
- Size: 550.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9086a53c810c58740a5129f14d126b39b7ef61af00d91580c2efb654e2f742ce |
|
MD5 | 21e9673a6860f1d78b57ee3fb2521870 |
|
BLAKE2b-256 | f01273703b53de2d3aa1ead055d793035739031793c32c6b20aa2f252d4eb946 |
Provenance
The following attestation bundles were made for yara_python-4.5.2.tar.gz
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2.tar.gz
- Subject digest:
9086a53c810c58740a5129f14d126b39b7ef61af00d91580c2efb654e2f742ce
- Sigstore transparency entry: 206044301
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f6ccde3f30d0c3cda9a86e91f2a74073c9aeb127856d9a62ed5c4bb22ccd75f |
|
MD5 | 6baab1dc572f9653fa1e1741589aeb9a |
|
BLAKE2b-256 | 90fb93452ff294669f935d457ec5376a599dd93da0ac7a9a590e58c1e537df13 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp313-cp313-win_amd64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp313-cp313-win_amd64.whl
- Subject digest:
2f6ccde3f30d0c3cda9a86e91f2a74073c9aeb127856d9a62ed5c4bb22ccd75f
- Sigstore transparency entry: 206044361
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp313-cp313-win32.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp313-cp313-win32.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7b58296ed2d262468d58f213b19df3738e48d46b8577485aecca0edf703169f |
|
MD5 | 752330b08b4f45a6d23e29dd8fb80e07 |
|
BLAKE2b-256 | 428264ef5a30f39554f7b58e8a42db31dd284766d50504fb23d19475becc83f8 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp313-cp313-win32.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp313-cp313-win32.whl
- Subject digest:
d7b58296ed2d262468d58f213b19df3738e48d46b8577485aecca0edf703169f
- Sigstore transparency entry: 206044397
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57928557c85af27d27cca21de66d2070bf1860de365fb18fc591ddfb1778b959 |
|
MD5 | 1beb34751692e03ae0976a93ff9d67f6 |
|
BLAKE2b-256 | 76c1ea7a67235e9c43a27c89454c38555338683015a3cc9fe20f44a2163f2361 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Subject digest:
57928557c85af27d27cca21de66d2070bf1860de365fb18fc591ddfb1778b959
- Sigstore transparency entry: 206044384
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp313-cp313-musllinux_1_2_i686.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98b4732a9f5b184ade78b4675501fbdc4975302dc78aa3e917c60ca4553980d5 |
|
MD5 | c585f6d7870270f13e9901e46573c583 |
|
BLAKE2b-256 | 76424d1f67f09b10e0aa087214522fb1ea7fe68b54bb1d09111687d3683956f6 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp313-cp313-musllinux_1_2_i686.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp313-cp313-musllinux_1_2_i686.whl
- Subject digest:
98b4732a9f5b184ade78b4675501fbdc4975302dc78aa3e917c60ca4553980d5
- Sigstore transparency entry: 206044349
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e857bc94ef54d5db89e0a58652df609753d5b95f837dde101e1058dd755896b5 |
|
MD5 | 33e23dd283153186115d191b19072bc4 |
|
BLAKE2b-256 | 408b32acec8da17f91377331d55d01c90f6cd3971584209ae29647a6ce29721d |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Subject digest:
e857bc94ef54d5db89e0a58652df609753d5b95f837dde101e1058dd755896b5
- Sigstore transparency entry: 206044407
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5980d96ac2742e997e55ba20d2746d3a42298bbb5e7d327562a01bac70c9268 |
|
MD5 | 5b23cdf5acbee53485de919133d3da35 |
|
BLAKE2b-256 | 9eb7ca274eee26237ae60da2bca66288737d7b503aa67032b756059cdb69d254 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
e5980d96ac2742e997e55ba20d2746d3a42298bbb5e7d327562a01bac70c9268
- Sigstore transparency entry: 206044346
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef7f592db5e2330efd01b40760c3e2be5de497ff22bd6d12e63e9cf6f37b4213 |
|
MD5 | 2a64aea592fe5ff72d20c7aff7f60a50 |
|
BLAKE2b-256 | 4ab91b361bec1b7d1f216303ca8dbf85f417cf20dba0543272bb7897e7853ce7 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
- Subject digest:
ef7f592db5e2330efd01b40760c3e2be5de497ff22bd6d12e63e9cf6f37b4213
- Sigstore transparency entry: 206044337
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c73009bd6e73b04ffcbc8d47dddd4df87623207cb772492c516e16605ced5dd6 |
|
MD5 | fe6091f97b95d2505ac20db73d4930d1 |
|
BLAKE2b-256 | c5ae6a170b8eabffb3086b08f20ad9abfe7eb060c2ca06f6cf8b860155413575 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
c73009bd6e73b04ffcbc8d47dddd4df87623207cb772492c516e16605ced5dd6
- Sigstore transparency entry: 206044308
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp313-cp313-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 209.5 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c7021e6c4e34b2b11ad82de330728134831654ca1f5c24dcf093fedc0db07ae |
|
MD5 | c785902a27d19a2008980a0609d82521 |
|
BLAKE2b-256 | 4cde2d28216b23beca46d9eb3784c198cbf48068437b2220359f372d56a32dc0 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp313-cp313-macosx_10_13_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp313-cp313-macosx_10_13_x86_64.whl
- Subject digest:
0c7021e6c4e34b2b11ad82de330728134831654ca1f5c24dcf093fedc0db07ae
- Sigstore transparency entry: 206044328
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp313-cp313-macosx_10_13_universal2.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 403.1 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffc3101354188d23d00b831b0d070e2d1482a60d4e9964452004276f7c1edee8 |
|
MD5 | 2ac800a285bea08a63aa5d68d24e2f3a |
|
BLAKE2b-256 | 0f36c55ff5d0abe89faffddff23c266b0247b93016eb97830bf079c873f9721c |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp313-cp313-macosx_10_13_universal2.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp313-cp313-macosx_10_13_universal2.whl
- Subject digest:
ffc3101354188d23d00b831b0d070e2d1482a60d4e9964452004276f7c1edee8
- Sigstore transparency entry: 206044428
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe5b4c9c5cb48526e8f9c67fc1fdafb9dbd9078a27d89af30de06424c8c67588 |
|
MD5 | 70818115e81ec3338dd3a2adeb60fa69 |
|
BLAKE2b-256 | c19065e96967cbfc65fd5d117580cb7601bc79d0c95f9dbd8b0ffbf25cdd0114 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp312-cp312-win_amd64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp312-cp312-win_amd64.whl
- Subject digest:
fe5b4c9c5cb48526e8f9c67fc1fdafb9dbd9078a27d89af30de06424c8c67588
- Sigstore transparency entry: 206044422
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp312-cp312-win32.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp312-cp312-win32.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d066da7f963f4a68a2681cbe1d7c41cb1ef2c5668de3a756731b1a7669a3120 |
|
MD5 | 2338aa5d473e73c1ec0173c4306cc91e |
|
BLAKE2b-256 | ef56e7713f9e7afd51d3112b5c4c6a3d3a4f84ed7baf807967043a9ac7773f1b |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp312-cp312-win32.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp312-cp312-win32.whl
- Subject digest:
9d066da7f963f4a68a2681cbe1d7c41cb1ef2c5668de3a756731b1a7669a3120
- Sigstore transparency entry: 206044342
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3338f492e9bb655381dbf7e526201c1331d8c1e3760f1b06f382d901cc10cdf0 |
|
MD5 | 9c64f65fbfaa3987181e3aa9f88673a6 |
|
BLAKE2b-256 | 6b43742d44b76c2483aebdf5b8c0495556416de7762c9becec18869f8830df01 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Subject digest:
3338f492e9bb655381dbf7e526201c1331d8c1e3760f1b06f382d901cc10cdf0
- Sigstore transparency entry: 206044461
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2ba9fddafe573614fc8e77973f07e74a359bd1f3a6152f93b814a6f8cfc0004 |
|
MD5 | 08a00187fa3c907e3ede6fd42976b0ee |
|
BLAKE2b-256 | 9d9e65de40d1cd60386675d03a2a0c7679274e2be0fb76eaa878622a21497db8 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp312-cp312-musllinux_1_2_i686.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp312-cp312-musllinux_1_2_i686.whl
- Subject digest:
a2ba9fddafe573614fc8e77973f07e74a359bd1f3a6152f93b814a6f8cfc0004
- Sigstore transparency entry: 206044351
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6366d197079848d4c2534f07bc47f8a3c53d42855e6a492ed2191775e8cd294 |
|
MD5 | a72c1c42d8a0c50dd397a2c017f9aaca |
|
BLAKE2b-256 | 901d4b9470380838b96681ed6b6254e7d236042b7871c0b662c4b8e9469eacf0 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Subject digest:
d6366d197079848d4c2534f07bc47f8a3c53d42855e6a492ed2191775e8cd294
- Sigstore transparency entry: 206044415
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b98e0a77dc0f90bc53cf77cca1dc1a4e6836c7c5a283198c84d5dbb0701e722 |
|
MD5 | 0af48ebc946d539d97596cbbde40ef93 |
|
BLAKE2b-256 | 8976b55016776948b01fc3c989dd0257ee675ca1ce86011f502db7aa84cb9cd4 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
8b98e0a77dc0f90bc53cf77cca1dc1a4e6836c7c5a283198c84d5dbb0701e722
- Sigstore transparency entry: 206044445
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f16d9b23f107fd0569c676ec9340b24dd5a2a2a239a163dcdeaed6032933fb94 |
|
MD5 | f8ca1df73259fcdc643a975eac2911fe |
|
BLAKE2b-256 | 8279c3f96ff13349b0efd25b70f4ae423d37503116badf2af27df4e645f1f107 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
- Subject digest:
f16d9b23f107fd0569c676ec9340b24dd5a2a2a239a163dcdeaed6032933fb94
- Sigstore transparency entry: 206044402
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e892b2111122552f0645bc1a55f2525117470eea3b791d452de12ae0c1ec37b |
|
MD5 | 5b1e1483f8a1d71e14f665eb66616d6f |
|
BLAKE2b-256 | 0e51a41f6b62c4b7990dbc94582200bbd7fe52ee8e0aa2634c3733705811c93d |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
0e892b2111122552f0645bc1a55f2525117470eea3b791d452de12ae0c1ec37b
- Sigstore transparency entry: 206044494
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp312-cp312-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 209.5 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77c8192f56e2bbf42b0c16cd1c368ba7083047e5b11467c8b3d6330d268e1f86 |
|
MD5 | 4edbee7489c45b75085a22ea3870adca |
|
BLAKE2b-256 | 6c87146e9582e8f5b069d888ec410c02c4b3501ec024f2985b4903177d18dda1 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp312-cp312-macosx_10_13_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp312-cp312-macosx_10_13_x86_64.whl
- Subject digest:
77c8192f56e2bbf42b0c16cd1c368ba7083047e5b11467c8b3d6330d268e1f86
- Sigstore transparency entry: 206044386
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp312-cp312-macosx_10_13_universal2.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 403.1 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 037be5f9d5dd9f067bbbeeac5d311815611ba8298272a14b03d7ad0f42b36f5a |
|
MD5 | abc1b0ecb2fc92e6bbf36548a22e7eaf |
|
BLAKE2b-256 | 1b1cc91a0af659d7334e6899db3e9fc10deb0dae56232ac036bddc2f6ce14a7b |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp312-cp312-macosx_10_13_universal2.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp312-cp312-macosx_10_13_universal2.whl
- Subject digest:
037be5f9d5dd9f067bbbeeac5d311815611ba8298272a14b03d7ad0f42b36f5a
- Sigstore transparency entry: 206044332
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a699917ea1f3f47aecacd8a10b8ee82137205b69f9f29822f839a0ffda2c41a1 |
|
MD5 | 6a824d33d75b747a7f675126919b8ebb |
|
BLAKE2b-256 | 781f99fdeafb66702a3efe9072b7c8a8d4403938384eac7b4f46fc6e077ec484 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp311-cp311-win_amd64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp311-cp311-win_amd64.whl
- Subject digest:
a699917ea1f3f47aecacd8a10b8ee82137205b69f9f29822f839a0ffda2c41a1
- Sigstore transparency entry: 206044433
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp311-cp311-win32.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp311-cp311-win32.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b19ac28b3b55134ea12f1ee8500d7f695e735e9bead46b822abec96f9587f06 |
|
MD5 | 9845c877577c3fd585106bd5c78b4651 |
|
BLAKE2b-256 | a13b7bdf6a37b4df79f9c51599d5f02f96e8372bd0ddc53a3f2852016fda990f |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp311-cp311-win32.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp311-cp311-win32.whl
- Subject digest:
7b19ac28b3b55134ea12f1ee8500d7f695e735e9bead46b822abec96f9587f06
- Sigstore transparency entry: 206044440
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96ead034a1aef94671ea92a82f1c2db6defa224cf21eb5139cff7e7345e55153 |
|
MD5 | 26d2eae3e0ab4c8f47ed7b6ffacc6e73 |
|
BLAKE2b-256 | bbb68505c7486935b277622703ae7f3fb1ee83635d749facf0fed99aeb2078e3 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Subject digest:
96ead034a1aef94671ea92a82f1c2db6defa224cf21eb5139cff7e7345e55153
- Sigstore transparency entry: 206044316
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1f009d99e05f5be7c3d4e349c949226bfe32e0a9c3c75ff5476e94385824c26 |
|
MD5 | 16e2b5ffae0f27ed38aaffa08565558a |
|
BLAKE2b-256 | 058bd0e06cdc5767f64516864fb9d9a49a3956801cb1c76f757243dad7cb3891 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp311-cp311-musllinux_1_2_i686.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp311-cp311-musllinux_1_2_i686.whl
- Subject digest:
f1f009d99e05f5be7c3d4e349c949226bfe32e0a9c3c75ff5476e94385824c26
- Sigstore transparency entry: 206044473
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8ca11d6877d453f69987b18963398744695841b4e2e56c2f1763002d5d22dbd |
|
MD5 | ad937d5ebf8e2024161e44552a680e2a |
|
BLAKE2b-256 | 93c39c035b9bad05156ad79399e96527ee09fb44734504077919459e83c39401 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Subject digest:
f8ca11d6877d453f69987b18963398744695841b4e2e56c2f1763002d5d22dbd
- Sigstore transparency entry: 206044426
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d487dcce1e9cf331a707e16a12c841f99071dcd3e17646fff07d8b3da6d9a05c |
|
MD5 | 4e1aaee451be5b34bfa40cc5b769413f |
|
BLAKE2b-256 | 6a841753c2c0e5077e4e474928617a245576b61892027afa851f1972905e842a |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
d487dcce1e9cf331a707e16a12c841f99071dcd3e17646fff07d8b3da6d9a05c
- Sigstore transparency entry: 206044410
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d6d7e04d1f5f64ccc7d60ff76ffa5a24d929aa32809f20c2164799b63f46822 |
|
MD5 | 84b28ed4f03934272aa10a6f5c8f9916 |
|
BLAKE2b-256 | dd64275394c7ed93505926bb6f17e85abdf36efc2f1dc5c091c8f674adb1ec02 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl
- Subject digest:
0d6d7e04d1f5f64ccc7d60ff76ffa5a24d929aa32809f20c2164799b63f46822
- Sigstore transparency entry: 206044492
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4bcfa3d4bda3c0822871a35dd95acf6a0fe1ab2d7869b5ae25b0a722688053a |
|
MD5 | 9d16edd2877a36bd808d5b818d22c7ea |
|
BLAKE2b-256 | 8fcf73759180b5d3ccb0ba18712a4bce7e3aee88935ccf76d8fc954dff89947a |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
d4bcfa3d4bda3c0822871a35dd95acf6a0fe1ab2d7869b5ae25b0a722688053a
- Sigstore transparency entry: 206044437
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 208.6 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5657c268275a025b7b2f2f57ea2be0b7972a104cce901c0ac3713787eea886e |
|
MD5 | 9444064a2332229c37cbb7fdac3cceed |
|
BLAKE2b-256 | 1292e76cab3da5096a839187a8e42f94cb960be179d6fba2af787b1fd8c7f7aa |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp311-cp311-macosx_10_9_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp311-cp311-macosx_10_9_x86_64.whl
- Subject digest:
b5657c268275a025b7b2f2f57ea2be0b7972a104cce901c0ac3713787eea886e
- Sigstore transparency entry: 206044458
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp311-cp311-macosx_10_9_universal2.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 402.0 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 727d3e590f41a89bbc6c1341840a398dee57bc816b9a17f69aed717f79abd5af |
|
MD5 | fd8e4c34bbda5ef42811a1a244e15ce2 |
|
BLAKE2b-256 | a7e0a52e0e07bf9ec1c02a3f2136111a8e13178a41a6e10f471bcafea5e0cdb5 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp311-cp311-macosx_10_9_universal2.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp311-cp311-macosx_10_9_universal2.whl
- Subject digest:
727d3e590f41a89bbc6c1341840a398dee57bc816b9a17f69aed717f79abd5af
- Sigstore transparency entry: 206044392
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd54d92c8fe33cc7cd7b8b29ac8ac5fdb6ca498c5a697af479ff31a58258f023 |
|
MD5 | 9664ade8b2e177a8ff87f97c4f3127d7 |
|
BLAKE2b-256 | ad0d5a8b3960af506f62391568b27a4d809d0f85366d3f9edd02952e75757868 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp310-cp310-win_amd64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp310-cp310-win_amd64.whl
- Subject digest:
dd54d92c8fe33cc7cd7b8b29ac8ac5fdb6ca498c5a697af479ff31a58258f023
- Sigstore transparency entry: 206044321
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp310-cp310-win32.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp310-cp310-win32.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef499e273d12b0119fc59b396a85f00d402b103c95b5a4075273cff99f4692df |
|
MD5 | 34bc5836c235e1b4e61744448a7b6d0f |
|
BLAKE2b-256 | 5bd601d7ff8281e10b8fced269bf022d471d70cc7213b055f48dbae329246c52 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp310-cp310-win32.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp310-cp310-win32.whl
- Subject digest:
ef499e273d12b0119fc59b396a85f00d402b103c95b5a4075273cff99f4692df
- Sigstore transparency entry: 206044325
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 399f484847d5cb978f3dd522d3c0f20cbf36fe760d90be7aaeb5cf0e82947742 |
|
MD5 | 58b54e3ba7a0b44427dee50fe0ee5d4b |
|
BLAKE2b-256 | e3236b9f097bcfb6e47da068240034422a543b6c55ef32f3500c344ddbe0f1da |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Subject digest:
399f484847d5cb978f3dd522d3c0f20cbf36fe760d90be7aaeb5cf0e82947742
- Sigstore transparency entry: 206044452
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ff1e140529e7ade375b3c4c2623d155c93438bd56c8e9bebce30b1d0831350d |
|
MD5 | 82dceba65535777f0c14863cb1ab34a5 |
|
BLAKE2b-256 | 24fa82fc55fdfc4c2e8fe94495063d33eafccacc7b3afd3122817197a52c3523 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp310-cp310-musllinux_1_2_i686.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp310-cp310-musllinux_1_2_i686.whl
- Subject digest:
2ff1e140529e7ade375b3c4c2623d155c93438bd56c8e9bebce30b1d0831350d
- Sigstore transparency entry: 206044319
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2a293e30484abb6c137d9603fe899dfe112c327bf7a75e46f24737dd43a5e44 |
|
MD5 | 219a865ed3ce2081cbd496be755bed31 |
|
BLAKE2b-256 | c0f7f12b796841995131515abef4ae2b6e9a6ac2dc9f397d3e18d77a9a607b5f |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp310-cp310-musllinux_1_2_aarch64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Subject digest:
f2a293e30484abb6c137d9603fe899dfe112c327bf7a75e46f24737dd43a5e44
- Sigstore transparency entry: 206044323
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5558325eb7366f610a06e8c7c4845062d6880ee88f1fbc35e92fae333c3333c |
|
MD5 | 62e4749b1e0790dd2858a43739dbc369 |
|
BLAKE2b-256 | 2cc6571f8d5dcd682038238a50f0101572cbecee50e20e51bf0de2f75bf00723 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
b5558325eb7366f610a06e8c7c4845062d6880ee88f1fbc35e92fae333c3333c
- Sigstore transparency entry: 206044368
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc2216bc73d4918012a4b270a93f9042445c7246b4a668a1bea220fbf64c7990 |
|
MD5 | 9046f4039cafe36b125e48f24fb062b6 |
|
BLAKE2b-256 | 8d1318e66baf4d6220692d4e8957796386524dc32053ccd8118dfb93c241afb2 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
- Subject digest:
bc2216bc73d4918012a4b270a93f9042445c7246b4a668a1bea220fbf64c7990
- Sigstore transparency entry: 206044485
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fc5abddf8767ca923a5a88b38b8057d4fab039323d5c6b2b5be6cba5e6e7350 |
|
MD5 | 64bea411074a4f748fccef9234f58585 |
|
BLAKE2b-256 | daf954bb72a4c8d79c22b211bb30065281de785ee638fa3e5856b6c7a8fd60e5 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
9fc5abddf8767ca923a5a88b38b8057d4fab039323d5c6b2b5be6cba5e6e7350
- Sigstore transparency entry: 206044363
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 208.6 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9899c3a80e6c543585daf49c5b06ba5987e2f387994a5455d841262ea6e8577c |
|
MD5 | ad2af1944891b9643c1022d0704c0c4a |
|
BLAKE2b-256 | cfca9696ebaa5b345aa1d670b848af36889f01bea79520598e09d2c62c5e19ad |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp310-cp310-macosx_10_9_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp310-cp310-macosx_10_9_x86_64.whl
- Subject digest:
9899c3a80e6c543585daf49c5b06ba5987e2f387994a5455d841262ea6e8577c
- Sigstore transparency entry: 206044481
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp310-cp310-macosx_10_9_universal2.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 402.0 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20aee068c8f14e8ebb40ebf03e7e2c14031736fbf6f32fca58ad89d211e4aaa0 |
|
MD5 | aaced8733163cc1e051c61d9c5616327 |
|
BLAKE2b-256 | 86778576d9ad375d396aabd87cf2510d3696440d830908114489a1e72df0e8f9 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp310-cp310-macosx_10_9_universal2.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp310-cp310-macosx_10_9_universal2.whl
- Subject digest:
20aee068c8f14e8ebb40ebf03e7e2c14031736fbf6f32fca58ad89d211e4aaa0
- Sigstore transparency entry: 206044380
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab8d75dc181b915ca7eb8eb1c3f66597286436820122f84ae9f07a7b98f256fc |
|
MD5 | 890c2f2f9d804bde2b71357aa4079c4b |
|
BLAKE2b-256 | 408edc166b2af1ef2d474278358b4ad7360b63fdaa81bae6192a97729222830a |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp39-cp39-win_amd64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp39-cp39-win_amd64.whl
- Subject digest:
ab8d75dc181b915ca7eb8eb1c3f66597286436820122f84ae9f07a7b98f256fc
- Sigstore transparency entry: 206044355
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp39-cp39-win32.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp39-cp39-win32.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ccd788c8103f43c58d4072f696ee7b7e5be6c19bbce32f9f8e5d7b7def3ecd4 |
|
MD5 | 3bb078f91ec3af2d96ea0272562d3a0b |
|
BLAKE2b-256 | a94d6a3e6770b31e89a502fc29854fde808d747b82b5bed8c8295946532f2d7c |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp39-cp39-win32.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp39-cp39-win32.whl
- Subject digest:
2ccd788c8103f43c58d4072f696ee7b7e5be6c19bbce32f9f8e5d7b7def3ecd4
- Sigstore transparency entry: 206044371
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cc49f5543398b48e6bcf20c6a93a34ebe6732b8ff1e55918c8908a4a6cfeaf8 |
|
MD5 | dd3cd91d766a490ec06feea3084c8081 |
|
BLAKE2b-256 | 67eb6e75b174870edfdf070259aedf1a10e15c684912b8fcd586fac80d27593d |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp39-cp39-musllinux_1_2_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Subject digest:
8cc49f5543398b48e6bcf20c6a93a34ebe6732b8ff1e55918c8908a4a6cfeaf8
- Sigstore transparency entry: 206044487
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c195d69253681751d75c6f79c88f57ebf5cc547821bdcba89fa29466356f241b |
|
MD5 | 1582336a3d91f9b8b90e638825f7553e |
|
BLAKE2b-256 | 8f8a485a5ba6aa91d350bb7c1483d5d1f6c4751e8f7afe6e8af1e65f1a783fa5 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp39-cp39-musllinux_1_2_i686.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp39-cp39-musllinux_1_2_i686.whl
- Subject digest:
c195d69253681751d75c6f79c88f57ebf5cc547821bdcba89fa29466356f241b
- Sigstore transparency entry: 206044378
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 475fb16f33767c8c048cf009cdf307688b4ed961cf29fc28b2a020c3469e4cba |
|
MD5 | 80ff6bd50915d55bc5bbf9c44c0f9292 |
|
BLAKE2b-256 | d0ea5501b5fb8b53908330cef8b1a72a2de970d06a13fc5a977a9a96c462f1c5 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp39-cp39-musllinux_1_2_aarch64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Subject digest:
475fb16f33767c8c048cf009cdf307688b4ed961cf29fc28b2a020c3469e4cba
- Sigstore transparency entry: 206044314
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e96c6cdf2284077ae039832481046806cd2b0c42c45d160da567dd0cc5673f3 |
|
MD5 | f26cca850d9fc6f0aca0123cf31ddb3d |
|
BLAKE2b-256 | 2be395d0b46933a14cfb98d67599e27e432dc1209df9a55fce18b721beda2b96 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
7e96c6cdf2284077ae039832481046806cd2b0c42c45d160da567dd0cc5673f3
- Sigstore transparency entry: 206044389
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96b22ae1651f8fd2eb61d0d140daa71dce4346137124abead0bb15c47b1259ec |
|
MD5 | 8f22f1b904c24727f586a8f7c6fca346 |
|
BLAKE2b-256 | 50e7b98c7787827cf4bc5cbeb65129e3f31a99f3874f17fcd42076a5ffca9dbb |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl
- Subject digest:
96b22ae1651f8fd2eb61d0d140daa71dce4346137124abead0bb15c47b1259ec
- Sigstore transparency entry: 206044468
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cb760bb5aaa9c37e0e43b64cccfb7ff1a5ae584392661ebd82a50b758ea2d86 |
|
MD5 | 489000b083c809592f3b5b38962b25ec |
|
BLAKE2b-256 | cdbbafe004f22c04e02539f8bcd4cde234ec5dd4920090cf3e7fd3ea3a0ffe21 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
1cb760bb5aaa9c37e0e43b64cccfb7ff1a5ae584392661ebd82a50b758ea2d86
- Sigstore transparency entry: 206044435
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 208.6 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6cbb9ded3d6dd981cb1f1a7e01b12efd260548bc2f27bf29e9dbeca1ab241363 |
|
MD5 | dfb86d8c31b1e3c0cfd68129304fa299 |
|
BLAKE2b-256 | 0d51ce782ddda7ec10d1e3ed218f14f014f2757f179b01258dc9cbadbe48b058 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp39-cp39-macosx_10_9_x86_64.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp39-cp39-macosx_10_9_x86_64.whl
- Subject digest:
6cbb9ded3d6dd981cb1f1a7e01b12efd260548bc2f27bf29e9dbeca1ab241363
- Sigstore transparency entry: 206044447
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type:
File details
Details for the file yara_python-4.5.2-cp39-cp39-macosx_10_9_universal2.whl
.
File metadata
- Download URL: yara_python-4.5.2-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 402.0 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba81f3bfba7cd7aa7bf97840eba7e2bb3d9f643090e47cbc03b2070e4f44568f |
|
MD5 | 584c58ea8e2f3bb6965274619fc09bda |
|
BLAKE2b-256 | 4179a3e7f8f84d4e772c9aa7d7eeb60e846ecfff29709ff2279ae3e79a66c2a9 |
Provenance
The following attestation bundles were made for yara_python-4.5.2-cp39-cp39-macosx_10_9_universal2.whl
:
Publisher:
publish-to-pypi.yml
on VirusTotal/yara-python
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
yara_python-4.5.2-cp39-cp39-macosx_10_9_universal2.whl
- Subject digest:
ba81f3bfba7cd7aa7bf97840eba7e2bb3d9f643090e47cbc03b2070e4f44568f
- Sigstore transparency entry: 206044478
- Sigstore integration time:
- Permalink:
VirusTotal/yara-python@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Branch / Tag:
refs/tags/v4.5.2
- Owner: https://github.com/VirusTotal
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-to-pypi.yml@7b6a7f9d8d60f5c7feb4ebbd13ef6f0d62504157
- Trigger Event:
workflow_dispatch
- Statement type: