Skip to content

MA (.ma)

.ma file signature | application/mathematica

Safe

Magic Bytes

Offset 0
28 2A 2A

Sources: Apache Tika

All Known Signatures

2 signature variants are documented for .ma files across multiple sources.

Hex Signature Offset Sources
28 2A 2A 0 Apache Tika
28 2A 20 0 Apache Tika

Extension

.ma

MIME Type

application/mathematica

Byte Offset

0

Risk Level

Safe

Validation Code

How to validate .ma files in Python

Python
def is_ma(file_path: str) -> bool:
    """Check if file is a valid MA by magic bytes."""
    signature = bytes([0x28, 0x2A, 0x2A])
    with open(file_path, "rb") as f:
        return f.read(3) == signature

How to validate .ma files in Node.js

Node.js
function isMA(buffer: Buffer): boolean {
  const signature = Buffer.from([0x28, 0x2A, 0x2A]);
  return buffer.subarray(0, 3).equals(signature);
}

How to validate .ma files in Go

Go
func IsMA(data []byte) bool {
    signature := []byte{0x28, 0x2A, 0x2A}
    if len(data) < 3 {
        return false
    }
    return bytes.Equal(data[:3], signature)
}

API Endpoint

GET /api/v1/ma
curl https://filesignature.org/api/v1/ma

See the full API documentation for all endpoints and parameters.

Frequently Asked Questions

What is a .ma file?

A .ma file is a MA file.

What are the magic bytes for .ma files?

The magic bytes for MA files are 28 2A 2A at byte offset 0. These bytes uniquely identify the file format regardless of the file extension.

How do I validate a .ma file?

To validate a .ma file, read the first bytes of the file and compare them against the known magic bytes (28 2A 2A) at offset 0. This is more reliable than checking the file extension alone, as extensions can be renamed.

What is the MIME type for .ma files?

The primary MIME type for .ma files is application/mathematica.

Is it safe to open .ma files?

MA (.ma) files are generally safe to open. They are classified as low risk because they primarily contain data rather than executable code. However, always ensure files come from a trusted source.