MB (.mb)
.mb file signature | application/mathematica
MB is a Mathematica-related file format associated with Wolfram Research, the developer and maintainer of Mathematica and the Wolfram Language. It is used for storing computational documents, symbolic expressions, and data intended for processing within Mathematica-compatible environments, including scientific analysis, notebook workflows, and programmatic computation. The format is generally considered safe, though files from untrusted sources may contain content that is only fully interpreted by compatible Wolfram software.
Magic Bytes
Offset 0
28 2A 2A
Sources: Apache Tika
All Known Signatures
2 signature variants are documented for .mb files across multiple sources.
| Hex Signature | Offset | Sources |
|---|---|---|
| 28 2A 2A | 0 | Apache Tika |
| 28 2A 20 | 0 | Apache Tika |
Extension
.mb
MIME Type
application/mathematica
Byte Offset
0
Risk Level
Safe
Validation Code
How to validate .mb files in Python
def is_mb(file_path: str) -> bool:
"""Check if file is a valid MB by magic bytes."""
signature = bytes([0x28, 0x2A, 0x2A])
with open(file_path, "rb") as f:
return f.read(3) == signature
How to validate .mb files in Node.js
function isMB(buffer: Buffer): boolean {
const signature = Buffer.from([0x28, 0x2A, 0x2A]);
return buffer.subarray(0, 3).equals(signature);
}
How to validate .mb files in Go
func IsMB(data []byte) bool {
signature := []byte{0x28, 0x2A, 0x2A}
if len(data) < 3 {
return false
}
return bytes.Equal(data[:3], signature)
}
API Endpoint
/api/v1/mb
curl https://filesignature.org/api/v1/mb
See the full API documentation for all endpoints and parameters.
Related Formats
Frequently Asked Questions
What is a .mb file?
A .mb file is identified by the magic bytes 28 2A 2A at byte offset 0. MB is a Mathematica-related file format associated with Wolfram Research, the developer and maintainer of Mathematica and the Wolfram Language. It is used for storing computational documents, symbolic expressions, and data intended for processing within Mathematica-compatible environments, including scientific analysis, notebook workflows, and programmatic computation. The format is generally considered safe, though files from untrusted sources may contain content that is only fully interpreted by compatible Wolfram software.
What are the magic bytes for .mb files?
The magic bytes for MB 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 .mb file?
To validate a .mb 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 .mb files?
The primary MIME type for .mb files is application/mathematica.
Is it safe to open .mb files?
MB (.mb) 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.