Skip to main content

Sigmaker is an IDA Pro 9.0+ cross-platform signature maker plugin that works on MacOS/Linux/Windows. It creates unique binary pattern signatures to identify specific functions or addresses within binaries, even after updates. It helps reverse engineers preserve their analysis work by generating resilient signatures that can quickly relocate important code locations in new binary versions.

Project description

Signature Maker Plugin for IDA Pro 9.0+

Magnifying glass with the word 'sigmaker' and a cross-hair over the 'A' in sigmaker ida-sigmaker tests

An IDA Pro 9.0+ zero-dependency cross-platform signature maker plugin with optional SIMD (e.g. AVX2/NEON/SSE2) speedups that works on MacOS/Linux/Windows. The primary goal of this plugin is to work with future versions of IDA without needing to compile against the IDA SDK as well as to allow for easier community contributions.

Table of contents

Installation

sigmaker's main value proposition is its cross-platform (Windows, macOS, Linux) Python 3 support. It uses zero third party dependencies, making the code both portable and easy to install.

Quick Install

  • Copy src/sigmaker/__init__.py into the /plugins/ folder to the plugin directory!
  • Rename it to sigmaker.py
  • OPTIONALLY, if you would like SIMD speedups, just pip install sigmaker
  • Restart IDA Pro.

From Releases

  • Download the latest conveniently renamed sigmaker.py release from the Releases page
  • Copy it to your IDA Pro plugins directory
  • OPTIONALLY, if you would like SIMD speedups, just pip install sigmaker
  • Restart IDA Pro

That's it!

Need to find your plugin directory?

From IDA's Python console run the following command to find its plugin directory:

import idaapi, os; print(os.path.join(idaapi.get_user_idadir(), "plugins"))

Where and what is my default user directory?

The user directory is a location where IDA stores some of the global settings and which can be used for some additional customization. Default location:

  • On Windows: %APPDATA%/Hex-Rays/IDA Pro
  • On Linux and Mac: $HOME/.idapro

SIMD Speedups

If you just followed the installation above and ran pip install sigmaker, then based on your system and architecture (i.e. Windows (x64), Linux (x64), Mac (x64), Mac (ARM/Silicon)), the plugin will install the appropriate wheel and will automatically use them if they're available. You do not have to do anything else. The plugin is designed to display the status of whether or not SIMD speedups are installed. They are shown in the top right menu bar of the plugin:

SIMD Enabled

No SIMD Speedups

Requirements

  • IDA Pro 9.0+
  • IDA Python
  • Python 3.10+

What is a "sigmaker"?

Sigmaker stands for "signature maker." It enables users to create unique binary pattern signatures that can identify specific addresses or routines within a binary, even after the binary has been updated.

In malware analysis or binary reverse engineering, a common challenge is pinpointing an important address, such as a function or global variable. However, when the binary is updated, all the effort spent identifying these locations can be lost if their addresses change.

To preserve this work, reverse engineers take advantage of the fact that most programs do not change drastically between updates. While some functions or data may be modified, much of the binary remains the same. Most often, previously identified addresses are simply relocated. This is where sigmaker comes in.

Sigmaker lets you create unique patterns to track important parts of a program, making your analysis more resilient to updates. By generating signatures for specific functions, data references, or other critical locations, you can quickly relocate these points in a new version of the binary, saving time and effort in future reverse engineering tasks.

Usage

In disassembly view, select a line you want to generate a signature for, and press CTRL+ALT+S:

OR Right-Click and select SigMaker:

The generated signature will be printed to the output console, as well as copied to the clipboard:


Signature type Example preview
IDA Signature E8 ? ? ? ? 45 33 F6 66 44 89 34 33
x64Dbg Signature E8 ?? ?? ?? ?? 45 33 F6 66 44 89 34 33
C Byte Array Signature + String mask \xE8\x00\x00\x00\x00\x45\x33\xF6\x66\x44\x89\x34\x33 x????xxxxxxxx
C Raw Bytes Signature + Bitmask 0xE8, 0x00, 0x00, 0x00, 0x00, 0x45, 0x33, 0xF6, 0x66, 0x44, 0x89, 0x34, 0x33 0b1111111100001

Finding XREFs

Generating code Signatures by data or code xrefs and finding the shortest ones is also supported:


Signature searching

Searching for Signatures works for supported formats:

It also supports wildcard nibble search support:

Just enter any string containing your Signature, it will automatically try to figure out what kind of Signature format is being used:

Currently, all output formats you can generate are supported.

Match(es) of your signature will be printed to console alongside the containing function name:

If the matched address is not a function name or has no function name, it falls back to just printing the address:

Signature Configuration

sigmaker also supports configurable wildcardable operands for unique signature creation:

There are also various options that be configured via the Other options button:

Performance

SigMaker's "find the shortest unique signature for the current function" search has been heavily optimized. On a real 16 MB module, a single worst-case function search once took 462 seconds (7.7 minutes). A stack of four optimizations brought the heaviest searches down to the tens-of-seconds range and typical ones to near-instant. One user reported the progress wait-box now "barely show[s] up for a 26 byte signature."

The full derivation, including the match-set math, the counting-sort index, the selectivity proof, and what is novel about the approach, is written up in ALGORITHM.md.

Benchmarks

Measured on the largest function (8486 bytes) of a 16 MB module via native idalib on Apple Silicon. The effects are cumulative across the four phases:

Optimization Effect PR
Phase 1: seed-then-refine candidate refinement ~13x faster function search #33
Phase 2: 2-byte bucket position index additional ~2.48x on large databases, widening as the database grows #35
Phase 3: dynamic seed selection (1- or 2-byte) per-anchor seed scans cut from 206 to 2 #36
Phase 4: Cython in-place refinement per-byte refinement ~14 s to ~0.28 s (~50x); function total ~24 s to ~15.6 s #36

Signature output is byte-identical before and after every optimization. The test suite cross-checks each fast path against a brute-force oracle and diffs the generated signatures across the entire test binary.

How it works

A short tour (see ALGORITHM.md for the math):

  • Seed, then refine. The set of database matches can only shrink as a signature grows, so instead of rescanning the whole database for every candidate length, SigMaker scans once to seed a candidate set and then filters that set in place as each byte is appended.
  • Index the database once. A counting-sort index over every adjacent byte pair lets the seed be drawn from the rarest exact run in the pattern, in time proportional to that run's frequency rather than to the database size. The same index serves both 1-byte and 2-byte runs for free, so the most selective anchor is always chosen.
  • Push the hot loops into C. With the optional pip install sigmaker SIMD wheel, the index build and the per-byte refinement run as nogil C over typed buffers with zero per-call allocation, and the raw byte scan uses AVX2/NEON/SSE2. Without the wheel, pure-Python fallbacks produce identical results.

Using SigMaker as a library

Beyond the IDA plugin, sigmaker is imported directly as a Python library by other tools (for example, batch signature-generation pipelines). The core types are usable from any IDAPython or idalib context:

import sigmaker

cfg = sigmaker.SigMakerConfig(
    output_format=sigmaker.SignatureType.IDA,
    wildcard_operands=True,
    continue_outside_of_function=False,
    wildcard_optimized=True,
    ask_longer_signature=False,
)
result = sigmaker.SignatureMaker().make_signature(ea, cfg)
print(f"{result.signature:ida}")   # IDA-style string
print(len(result.signature))       # byte length

# Cross-references:
xrefs = sigmaker.XrefFinder().find_xrefs(ea, cfg)
for gen in xrefs.signatures:
    print(str(gen.address), f"{gen.signature:ida}")

Stability contract

If you embed sigmaker, you can rely on the following. These are treated as a contract and are checked before any change to the public surface:

  1. Append-only config. SigMakerConfig fields are never reordered or removed. New behavior arrives as new fields with safe defaults, so existing constructions keep working.
  2. Stable public names. These names and their documented attributes are not renamed or removed: SignatureMaker, SigMakerConfig, SignatureType (IDA, x64Dbg, Mask, BitMask), XrefFinder, GeneratedSignature (signature, address, status, match_count), XrefGeneratedSignature (signatures), Match (__str__ returns the hex address), Signature (__len__, __format__), GenerationPolicy, GenerationStatus.
  3. Stable method signatures. SignatureMaker.make_signature(ea, cfg, end=None, *, progress_reporter=None, policy=GenerationPolicy.strict()), XrefFinder.find_xrefs(ea, cfg), XrefFinder.count_code_xrefs_to(ea), and XrefFinder.iter_code_xrefs_to(ea).
  4. Stable format specs. f"{sig:ida}", f"{sig:x64dbg}", f"{sig:mask}", and f"{sig:bitmask}" keep producing their current output exactly.
  5. Byte-identical defaults. Production defaults are unchanged across optimizations: a script that does not opt into a new flag gets byte-identical signatures to previous versions.

Acknowledgements

Thank you to @A200K's IDA-Pro-SigMaker plugin, which served as inspiration and the basis for the initial port of this plugin. I would also like to acknowledge @kweatherman's sigmakerex as independent prior work within the SigMaker ecosystem. While the initial port did not draw from sigmakerex, members of the community later requested compatibility and feature parity with parts of its functionality (for example, see issue #17). As documented in sigmakerex's README credits, there is a long history of SigMaker authors and contributors, and I would like to thank and acknowledge them as well:

thanks to the previous creators of the original SigMaker tool back from the gamedeception.net days up to the current C/C++ and Python iteration authors: P4TR!CK, bobbysing, xero|hawk, ajkhoury, and zoomgod et al.

Thanks to Wojciech Mula for his SIMD programming resources.

Development & Releases

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Test thoroughly
  5. Submit a pull request

Contact

ping me on x @mahmoudimus or you may contact me from any one of the addresses on mahmoudimus.com.

MIT License

Copyright (c) 2024 Mahmoud Abdelkader (@mahmoudimus)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

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

Source Distribution

sigmaker-1.8.0.tar.gz (251.7 kB view details)

Uploaded Source

Built Distributions

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

sigmaker-1.8.0-cp313-cp313-win_amd64.whl (330.1 kB view details)

Uploaded CPython 3.13Windows x86-64

sigmaker-1.8.0-cp313-cp313-win32.whl (317.0 kB view details)

Uploaded CPython 3.13Windows x86

sigmaker-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl (830.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sigmaker-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl (808.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sigmaker-1.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (835.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sigmaker-1.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (821.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sigmaker-1.8.0-cp313-cp313-macosx_11_0_arm64.whl (339.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sigmaker-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl (342.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

sigmaker-1.8.0-cp312-cp312-win_amd64.whl (330.3 kB view details)

Uploaded CPython 3.12Windows x86-64

sigmaker-1.8.0-cp312-cp312-win32.whl (317.1 kB view details)

Uploaded CPython 3.12Windows x86

sigmaker-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl (833.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sigmaker-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl (812.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sigmaker-1.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (837.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sigmaker-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (824.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sigmaker-1.8.0-cp312-cp312-macosx_11_0_arm64.whl (340.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sigmaker-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl (342.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

sigmaker-1.8.0-cp311-cp311-win_amd64.whl (329.5 kB view details)

Uploaded CPython 3.11Windows x86-64

sigmaker-1.8.0-cp311-cp311-win32.whl (316.6 kB view details)

Uploaded CPython 3.11Windows x86

sigmaker-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl (835.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sigmaker-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl (819.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sigmaker-1.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (834.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sigmaker-1.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (827.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sigmaker-1.8.0-cp311-cp311-macosx_11_0_arm64.whl (339.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sigmaker-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl (341.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

sigmaker-1.8.0-cp310-cp310-win_amd64.whl (329.5 kB view details)

Uploaded CPython 3.10Windows x86-64

sigmaker-1.8.0-cp310-cp310-win32.whl (317.1 kB view details)

Uploaded CPython 3.10Windows x86

sigmaker-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl (805.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sigmaker-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl (790.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sigmaker-1.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (805.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sigmaker-1.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (798.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sigmaker-1.8.0-cp310-cp310-macosx_11_0_arm64.whl (339.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sigmaker-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl (341.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file sigmaker-1.8.0.tar.gz.

File metadata

  • Download URL: sigmaker-1.8.0.tar.gz
  • Upload date:
  • Size: 251.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sigmaker-1.8.0.tar.gz
Algorithm Hash digest
SHA256 7b4fe1e70599e10195a5d0fbd6affc309e04131776cdea6d90f434dce85f1ce1
MD5 33452eec54e8c930ce36a4e93786223a
BLAKE2b-256 56acf6e9fe732145723fcb34567fdec16f3b30a1fb63eb18a7c9bb0c268309af

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0.tar.gz:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sigmaker-1.8.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 330.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sigmaker-1.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 918f6040b3a68ca704e7f22bcde37ac0e440a32409dc8da6743a8b9e17b8eadb
MD5 f27124b83f7bb5d7a5486ef91be2aadd
BLAKE2b-256 a6438ad99a210e750bee05fa47a4ffe244172dd7662841b376640c68bf86bb26

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp313-cp313-win_amd64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: sigmaker-1.8.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 317.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sigmaker-1.8.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 85949441cd80a9bc99cbb80cd70ac79894d7a3823a19315aff1cd749d9f40087
MD5 72344002f941c7dfc4a752d523396d6b
BLAKE2b-256 b10662300ddb53d20b1bbf93426ba7b8a56a27f1a0abdb387e009eae805e9e03

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp313-cp313-win32.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fe3c9964ec11c71a579f67a82878d6133fd41de2aba3d3aa0fce7b0b4c83c0f
MD5 32a30712471af9b2294d94df0519e807
BLAKE2b-256 dddf1ae203d7ba80e6ff44cb036e49aa3b78726eecb678e670a94839532c2aa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 820ff0c5bfa3fa7f9ee02b642826389b3b26449d782950cf85395d252279e5bc
MD5 77e2dd4ea0a9faa36359ef0a33b09be3
BLAKE2b-256 f6c3045a0482c8c10faf6b185b3ea79ae0effe9c8205141211495c8d59aaf47f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34b9b267edac553d717f0de56ce46fefb9a4332bf2f2f5cc9bedf00dd744ae55
MD5 4bb3962a2571b3631e0e664a09c1abf2
BLAKE2b-256 39962de100ec01f67a50a5065965e470ac1bb498607c316bfaa85e34d51f8295

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cddd31b6ec4da19cf0b6821bd16f7218fbb4c03528a137017bb87d64db56affc
MD5 007f3c49a22b1059b06625306f73a56c
BLAKE2b-256 24b7091f95d29ecae27a37992d761a476819c66850c404c3e54a874af2bd39a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d21fba5f7f7476bc9cee2dadec503514a4879838e3a7a4e91d81ec6991d7c77
MD5 83a032d21e4b487bf798b8b2fc9b3a39
BLAKE2b-256 b21723a9973c3fbbbd8f4d857324fe25c463bc9cad08f06e62db857cb07cbcb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3c0dba2b4bceacd43bce027011237ec64aecd45b635d9de11a92cc732f8f3f4e
MD5 88a669e31813a1bd1d85405952ac1d9d
BLAKE2b-256 39888afd7d27b95e3a0432edc535d8c7173467312786497627ff9bdd3d7bfeef

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sigmaker-1.8.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 330.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sigmaker-1.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9973e067d1bd33b8808da8f0b599080ca607e3c26e9f17b42ac96c8bf011ab02
MD5 75a91cad906729d83842d70d0f20686f
BLAKE2b-256 f9c01c6eacac9c99f61de3c9c072d9155a42cca6f989e0d1d2cc41d554d03766

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp312-cp312-win_amd64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: sigmaker-1.8.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 317.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sigmaker-1.8.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b99268aca6e1b1219bc136268675a8aa27ba7b9fb8df7d2064cd4796bd78f4ad
MD5 e823789ec1cfd5b065602b8c0522c636
BLAKE2b-256 b427e930e2625f70a383d552127b6663570f5e931a91bbd7214a938c11318d57

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp312-cp312-win32.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9cb6e3e87b89c5b1b9aad91ba5731b5bc8d8c711d877bae9a9012a0b5240b100
MD5 8c7b171ca468b63acc97a83649eb6e2e
BLAKE2b-256 0307711d5dfeaa7f12b1e5d52b299f79b8b6477360cd67718423459fe861ed6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9426e83040d322a22aca37cdcc2c332a5d94f2f669527b87635fbcad2e47849
MD5 d9c9b17ef48585767704f7402ca684ec
BLAKE2b-256 3ef588163756d6b8e761f1c0b8d4a5fac24046d101b9af51fa7da120478b3965

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ae0e0a39f4a96959073f6104ef4450dfc5ca86d007d567b4578b229d3fff411
MD5 bfc06ae04bafe801a205c4d12346c5d8
BLAKE2b-256 8b2007590147d363dceeaba277e1006613390c4512808f64adf75baa19c71770

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1142e5d254de626df135e100aa14dc8689e9e602db3f4cd86479fb9e623fcdd
MD5 750e5f67691b9d566f62af3ea63f47cb
BLAKE2b-256 ab7a0b38da0cac8bef647f64d7465db4234b8c97c5b2ca0fbbc6adb095d7dc51

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9dc659e5750b33229508bb63f210ccd8acfebaa3915f9eeaf8b8fc163e033023
MD5 f9e9dac7f736d35c3d54112e178d1e05
BLAKE2b-256 82875f9da603a69f69ea802190520eced81f2276722216582138ea6d131e8f5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 998f87082554ebdfc4378f1c918eafa7c54d67cd8453d35ccac0f970bfe68070
MD5 f81f76f8f7159dc0b57d6b748abc060b
BLAKE2b-256 3d670fb753bf7cdcf9c531c4372dfaca75961cad1470cb87c2b03e0235770f33

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sigmaker-1.8.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 329.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sigmaker-1.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 069426b50192eb3775a9a59369e8fbcadb0768ba620c3d3fa62922a123260a97
MD5 198844b0f863489cde72b42112de9a63
BLAKE2b-256 d7555bdf9931090d169483b46cd81a850b249d9d968a5d530530f10d8e56e4e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp311-cp311-win_amd64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: sigmaker-1.8.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 316.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sigmaker-1.8.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 67455b5e1477128fb03c4194facba92ad36d12c56f0bc92ccf2c95c6787c0438
MD5 3318ec138c6c922c2a0f31124aa8548b
BLAKE2b-256 688e99525d0cdabddfdcd9125cd9103f38a77b82e3fc6daf056deda0bc7f41e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp311-cp311-win32.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 faa443a68ac15f3324f568b4760c4cf1cf8d64620acae0c85a7fc4631e5d0308
MD5 1be7eda664d123d49669b454956f1779
BLAKE2b-256 bf3c94a7aaca39f26c37bcddbd27a235b780f71b69050093310d5fc719c7cab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de349c6874031dcb914c8cb546d0201253b8f42a18d489864d7943502a7d1287
MD5 5791844ac6acc2b2b1c6e8491328b595
BLAKE2b-256 5adb0bd10b07de96f2f3a4127c8cd9e95154d865466a7d33475cc6df03e5f806

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b89aa7e0a28a768bf67c3189ce1d0ba2b091ff1ff4fb6530322e2666f4508a04
MD5 a6e07da9a1379b0c6746b2d44f455c7c
BLAKE2b-256 8f0753f645421ffcfa1d71f73bdde62c5c2a7a24b79b6025b684222b5cebaf0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ad849b97d996045f223b43b972f59f7f940dbbfc55317eb1b9e197a70cc84e7
MD5 98a4752eb84ad2d72d998e52b5f2adeb
BLAKE2b-256 e915da8b4b2b455b9425db59cd1cfb1c0e4e8c8ca1fa9ffd2c65bb2dfd4681ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1baadfdcbb5aa014f9dc89f5684d44fb5e599cc697e2e841f6ed172597e5c004
MD5 eaa2b50b321221c04bf7363a7fdc5ad1
BLAKE2b-256 c1f99c0db88b792c3879b92fad36e4b861dff5f8374d78a5da9eee904ebf7c13

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 475662c5d96ed3383aa39e6b95d0c88f87d1db85df56786ac26e7f87adb8def6
MD5 be1aac1fb590e1c2263b2588b8a8e0a1
BLAKE2b-256 a4d7cb0c18c1cb23aeb16c5ead25b53ecf74431b9dfa185fdffb21b3c4812f16

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sigmaker-1.8.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 329.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sigmaker-1.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c80d1190f8ec55692007470b0a2d6aa30e97a51bc43bfbdaa0fb702e57940277
MD5 d3a389fbfa09c89db6e543cd9f9243b6
BLAKE2b-256 aca97a2935bb378f04b89c75a1cfa42b61c9601641a14fc876eb7bbc556a4286

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp310-cp310-win_amd64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: sigmaker-1.8.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 317.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sigmaker-1.8.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1f9959bb43d9d2c85d18ca993eabee7b3bdfb60bb0a4bf94a77c4389eb34eb56
MD5 ba6fb5a3ba960f84d609409033e6a90f
BLAKE2b-256 e1367a9c408d2cfa3432196099d523982e9700173d6aa4ac2f794e3dc383d802

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp310-cp310-win32.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65840d45bee2df6f3c38ae849db3ee5975d1cba18907f3351d0461b7c50a9671
MD5 a2239e8861c53b51f6c31060a6506d80
BLAKE2b-256 f1b14617b2a565f345b1c44818fe1c27b33e9ac0b25a3d8724dd0c733c84abb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 95b2ac7104aeca8b238c5e876c77b4739b49e5551cabd79cbd5e888f0d795015
MD5 5804d4f3025c1f732399270ebbd2a189
BLAKE2b-256 c3ce3dfce84e9ee11b48de8f055076b6426bb14528aaa4a7a974fdb4958639e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 284dc3011ea528dd07a4987a8e9df1c0ee67aada054584f8a61c01ae797964d5
MD5 62ba70173718e7352033d6b1355a39ec
BLAKE2b-256 b7edd207341eb42d6a9cfcf5b87ef71900fd05e69df9c270416282b835936f2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c55d15e84220ebf702455f97bc7d5845f4231382f8278d7ea6e34a614921bd6d
MD5 726c9b7bd5e9876afaccf1235e897365
BLAKE2b-256 4e4fab2cc7acb19bc57f5524a8bbab7ffcdf5601c20f49e6ce45fd5ee32329af

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bd23dc4d73b8455505f0b2a1c354321403ff3fde5e70c1b54352f50b88f75b1
MD5 885ba8fb2d324b9c7c8e9374fb980e4d
BLAKE2b-256 efcf04b98f9f080931675fe7e883572851dc3cbce53a0c8fb34a58458adb6633

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 167de08d9fe2d26416f6eceb1575aa2360b9b4f8a66aa4367a7b83de0a5be8b9
MD5 f356fa8417435c8b4d033a94036ff536
BLAKE2b-256 dd04939ef5da8c2ef03e14e5715018a53008705dc7e1eec4e02d7979c77c4ab6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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 Pingdom Monitoring Sentry Error logging StatusPage Status page