Skip to content

Mujahideen Secrets 2 encrypted file (.enc)

.enc file signature | application/octet-stream

Mujahideen Secrets 2 encrypted file

Safe

Magic Bytes

Offset 0
00 5C 41 B1 FF

Sources: Gary Kessler

Extension

.enc

MIME Type

application/octet-stream

Byte Offset

0

Risk Level

Safe

Validation Code

How to validate .enc files in Python

Python
def is_enc(file_path: str) -> bool:
    """Check if file is a valid ENC by magic bytes."""
    signature = bytes([0x00, 0x5C, 0x41, 0xB1, 0xFF])
    with open(file_path, "rb") as f:
        return f.read(5) == signature

How to validate .enc files in Node.js

Node.js
function isENC(buffer: Buffer): boolean {
  const signature = Buffer.from([0x00, 0x5C, 0x41, 0xB1, 0xFF]);
  return buffer.subarray(0, 5).equals(signature);
}

How to validate .enc files in Go

Go
func IsENC(data []byte) bool {
    signature := []byte{0x00, 0x5C, 0x41, 0xB1, 0xFF}
    if len(data) < 5 {
        return false
    }
    return bytes.Equal(data[:5], signature)
}

API Endpoint

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

See the full API documentation for all endpoints and parameters.

Frequently Asked Questions

What is a .enc file?

A .enc file is a Mujahideen Secrets 2 encrypted file file. Mujahideen Secrets 2 encrypted file

What are the magic bytes for .enc files?

The magic bytes for Mujahideen Secrets 2 encrypted file files are 00 5C 41 B1 FF at byte offset 0. These bytes uniquely identify the file format regardless of the file extension.

How do I validate a .enc file?

To validate a .enc file, read the first bytes of the file and compare them against the known magic bytes (00 5C 41 B1 FF) at offset 0. This is more reliable than checking the file extension alone, as extensions can be renamed.

What is the MIME type for .enc files?

There is no officially registered MIME type for .enc files. Systems typically use application/octet-stream as a generic fallback when handling this format.

Is it safe to open .enc files?

Mujahideen Secrets 2 encrypted file (.enc) 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.