Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Detect file content types with deep learning

License

NotificationsYou must be signed in to change notification settings

google/magika

imageimageOpenSSF ScorecardOpenSSF Best PracticesCodeQLActions statusPyPI Monthly Downloads

Magika is a novel AI-powered file type detection tool that relies on the recent advance of deep learning to provide accurate detection. Under the hood, Magika employs a custom, highly optimized model that only weighs about a few MBs, and enables precise file identification within milliseconds, even when running on a single CPU. Magika has been trained and evaluated on a dataset of ~100M samples across 200+ content types (covering both binary and textual file formats), and it achieves an average ~99% accuracy on our test set.

Here is an example of what Magika command line output looks like:

Magika is used at scale to help improve Google users' safety by routing Gmail, Drive, and Safe Browsing files to the proper security and content policy scanners, processing hundreds billions samples on a weekly basis. Magika has also been integrated withVirusTotal (example) andabuse.ch (example).

For more context you can read our initialannouncement post on Google's OSS blog, and you can read more in ourresearch paper, published at the IEEE/ACM International Conference on Software Engineering (ICSE) 2025.

You can try Magika without installing anything by using ourweb demo, which runs locally in your browser! (Note: the website runs an older version of the model; but while results may differ, it is still useful to get an idea of Magika's capabilities.)

Important

  • The documentation on GitHub refers to the latest, potentially unreleased and unstable version of Magika. The latest stable release of themagika Python package is0.5.1, and you can consult the associated documenationhere. You can install the latest stable version with:pip install magika.
  • Help testing the latest release candidate is very appreciated! See the available candidateshere and the recent changes in theCHANGELOG.md. You can install the latest release candidate withpip install --pre magika.

Highlights

  • Available as a command line tool written in Rust, a Python API, and additional bindings for Rust, JavaScript/TypeScript (with an experimental npm package, which powers ourweb demo), and GoLang (WIP).
  • Trained and evaluated on a dataset of ~100M files across200+ content types.
  • On our test set, Magika achieves ~99% average precision and recall, outperforming existing approaches.
  • After the model is loaded (which is a one-off overhead), the inference time is about 5ms per file, even when run on a single CPU.
  • You can invoke Magika with even thousands of files at the same time. You can also use-r for recursively scanning a directory.
  • Near-constant inference time, independently from the file size; Magika only uses a limited subset of the file's content.
  • Magika uses a per-content-type threshold system that determines whether to "trust" the prediction for the model, or whether to return a generic label, such as "Generic text document" or "Unknown binary data".
  • The tolerance to errors can be controlled via different prediction modes, such ashigh-confidence,medium-confidence, andbest-guess.
  • The client and the bindings are already open source, and more is coming soon!

Table of Contents

  1. Getting Started
    1. Installation
    2. Usage
      1. Command line client
      2. Python module and other bindings
  2. Documentation
  3. Bindings
  4. Development Setup
  5. Known Limitations & Contributing
  6. Additional Resources
  7. Research Paper and Citation
  8. Security vulnerabilities
  9. License
  10. Disclaimer

Getting Started

Installation

Magika is available asmagika on PyPI:

$ pip install magika

If you intend to use Magika only as a command line, you may want to use$ pipx install magika instead.

If you want to test out the latest release candidate, you can install withpip install --pre magika.

If you want to test Magika within a Docker container, you can run:

git clone https://github.com/google/magikacd magika/docker build -t magika.docker run -it --rm -v$(pwd):/magika magika -r /magika/tests_data/basic

Usage

Command line client

Magika is available as a command line tool, written in Rust (themagika python package ships this client). Here below are a few examples on how to use it, and the output ofmagika --help, which documents the list of options. Seehere for developer notes and documentation on how to install the Rust client viacargo.

Examples:

$cd tests_data/basic&& magika -r*asm/code.asm: Assembly (code)batch/simple.bat: DOS batch file (code)c/code.c: Csource (code)css/code.css: CSSsource (code)csv/magika_test.csv: CSV document (code)dockerfile/Dockerfile: Dockerfile (code)docx/doc.docx: Microsoft Word 2007+ document (document)epub/doc.epub: EPUB document (document)epub/magika_test.epub: EPUB document (document)flac/test.flac: FLAC audio bitstream data (audio)handlebars/example.handlebars: Handlebarssource (code)html/doc.html: HTML document (code)ini/doc.ini: INI configuration file (text)javascript/code.js: JavaScriptsource (code)jinja/example.j2: Jinja template (code)jpeg/magika_test.jpg: JPEG image data (image)json/doc.json: JSON document (code)latex/sample.tex: LaTeX document (text)makefile/simple.Makefile: Makefilesource (code)markdown/README.md: Markdown document (text)[...]
$ magika ./tests_data/basic/python/code.py --json[  {"path":"./tests_data/basic/python/code.py","result": {"status":"ok","value": {"dl": {"description":"Python source","extensions": ["py","pyi"          ],"group":"code","is_text": true,"label":"python","mime_type":"text/x-python"        },"output": {"description":"Python source","extensions": ["py","pyi"          ],"group":"code","is_text": true,"label":"python","mime_type":"text/x-python"        },"score": 0.753000020980835      }    }  }]
$ cat doc.ini| magika --: INI configuration file (text)
$ magika --helpDetermines the content type of files with deep-learningUsage: magika[OPTIONS][PATH]...Arguments:[PATH]...          List of paths to the files to analyze.          Use a dash (-) to read from standard input (can only be used once).Options:  -r, --recursive          Identifies files within directories instead of identifying the directory itself      --no-dereference          Identifies symbolic links as is instead of identifying their content by following them      --colors          Prints with colors regardless of terminal support      --no-colors          Prints without colors regardless of terminal support  -s, --output-score          Prints the prediction score in addition to the content type  -i, --mime-type          Prints the MIME type instead of the content type description  -l, --label          Prints a simple label instead of the content type description      --json          Prints in JSON format      --jsonl          Prints in JSONL format      --format<CUSTOM>          Prints using a custom format (use --help for details).          The following placeholders are supported:            %p  The file path            %l  The unique label identifying the content type            %d  The description of the content type            %g  The group of the content type            %m  The MIME type of the content type            %e  Possible file extensions for the content type            %s  The score of the content type for the file            %S  The score of the content type for the file in percent            %b  The model output if overruled (empty otherwise)            %%  A literal %  -h, --help          Print help (see a summary with '-h')  -V, --version          Print version

Python module and other bindings

While the command line client is handy for many use cases, it may not be the most suitable for automated workflows. Thus, Magika comes with bindings for Python and other languages (see theBindings section below for more details).

Here is a few examples on how to use theMagika Python module:

>>>frommagikaimportMagika>>>m=Magika()>>>res=m.identify_bytes(b'function log(msg) {console.log(msg);}')>>>print(res.output.label)javascript
>>>frommagikaimportMagika>>>m=Magika()>>>res=m.identify_path('./tests_data/basic/ini/doc.ini')>>>print(res.output.label)ini
>>>frommagikaimportMagika>>>m=Magika()>>>withopen('./tests_data/basic/ini/doc.ini','rb')asf:>>>res=m.identify_stream(f)>>>print(res.output.label)ini

Please consult thepython documentation for details on the PythonMagika API, and theadditional documentation listed below for more information about the output format and other aspects.

Documentation

Bindings

ArtifactStatusDefault model
PythonMagika moduleStable enough for prod use casesstandard_v3_2
Rustmagika CLIStable enough for prod use casesstandard_v3_2
Rustmagika libraryStable enough for prod use casesstandard_v3_2
JavaScript / NPM package (README &docs)Experimentalstandard_v1
GoLangIn development-

Development Setup

We have Magika bindings in multiple languages; each of them has its own development setup. Consult the documentation associated to each binding for more information. For example, for the pythonmagika package and module, consultpython/README.md.

Known Limitations & Contributing

Magika significantly improves over the state of the art, but there's always room for improvement! More work can be done to increase detection accuracy, support for additional content types, bindings for more languages, etc.

This initial release is not targeting polyglot detection, and we're looking forward to seeing adversarial examples from the community.We would also love to hear from the community about encountered problems, misdetections, features requests, need for support for additional content types, etc.

Check our open GitHub issues to see what is on our roadmap and please report misdetections or feature requests by either opening GitHub issues (preferred) or by emailing us atmagika-dev@google.com.

NOTE: Do NOT send reports about files that may contain PII!

SeeCONTRIBUTING.md for details.

Additional Resources

Research Paper and Citation

We describe how we developed Magika and the choices we made in our research paper, which was accepted at the International Conference on Software Engineering (ICSE) 2025. A pre-print of our paper is available on arxiv:https://arxiv.org/abs/2409.13768.

If you use this software for your research, please cite it as:

@InProceedings{fratantonio25:magika,author ={Yanick Fratantonio and Luca Invernizzi and Loua Farah and Kurt Thomas and Marina Zhang and Ange Albertini and Francois Galilee and Giancarlo Metitieri and Julien Cretin and Alexandre Petit-Bianco and David Tao and Elie Bursztein},title ={{Magika: AI-Powered Content-Type Detection}},booktitle ={Proceedings of the International Conference on Software Engineering (ICSE)},month ={April},year ={2025}}

Security vulnerabilities

Please contact us directly atmagika-dev@google.com

License

Apache 2.0; seeLICENSE for details.

Disclaimer

This project is not an official Google project. It is not supported byGoogle and Google specifically disclaims all warranties as to its quality,merchantability, or fitness for a particular purpose.


[8]ページ先頭

©2009-2025 Movatter.jp