Paessler PRTG Monitoring System database file (.db)
.db file signature | application/octet-stream
The .db format is a database file used by Paessler PRTG Monitoring System, maintained by Paessler AG. It stores monitoring data, configuration records, and historical sensor information for PRTG installations, supporting network supervision and reporting tasks. These files are generally safe and intended for internal application use; however, they should be opened or modified only with compatible Paessler software to avoid data corruption.
Magic Bytes
Offset 0
53 51 4C 69 74 65 20 66
Sources: Wikipedia
All Known Signatures
10 signature variants are documented for .db files across multiple sources.
| Hex Signature | Offset | Sources |
|---|---|---|
| 53 51 4C 69 74 65 20 66 | 0 | Wikipedia |
| 6F 72 6D 61 74 20 33 00 | 0 | Wikipedia |
| 00 06 15 61 00 00 00 02 00 00 04 D2 00 00 10 00 | 0 | Gary Kessler |
| 00 3B 05 00 01 00 00 00 | 0 | Gary Kessler |
| 43 4D 4D 4D 15 00 00 00 | 0 | Gary Kessler |
| 44 42 46 48 | 0 | Gary Kessler |
| 49 4D 4D 4D 15 00 00 00 | 0 | Gary Kessler |
| 53 51 4C 69 74 65 20 66 6F 72 6D 61 74 20 33 00 | 0 | Gary Kessler |
| D0 CF 11 E0 A1 B1 1A E1 | 0 | Gary Kessler |
| FD FF FF FF 04 00 00 00 | 512 | Gary Kessler |
Extension
.db
MIME Type
application/octet-stream
Byte Offset
0
Risk Level
Safe
Validation Code
How to validate .db files in Python
def is_db(file_path: str) -> bool:
"""Check if file is a valid DB by magic bytes."""
signature = bytes([0x53, 0x51, 0x4C, 0x69, 0x74, 0x65, 0x20, 0x66])
with open(file_path, "rb") as f:
return f.read(8) == signature
How to validate .db files in Node.js
function isDB(buffer: Buffer): boolean {
const signature = Buffer.from([0x53, 0x51, 0x4C, 0x69, 0x74, 0x65, 0x20, 0x66]);
return buffer.subarray(0, 8).equals(signature);
}
How to validate .db files in Go
func IsDB(data []byte) bool {
signature := []byte{0x53, 0x51, 0x4C, 0x69, 0x74, 0x65, 0x20, 0x66}
if len(data) < 8 {
return false
}
return bytes.Equal(data[:8], signature)
}
API Endpoint
/api/v1/db
curl https://filesignature.org/api/v1/db
See the full API documentation for all endpoints and parameters.
Related Formats
Frequently Asked Questions
What is a .db file?
A .db file is a Paessler PRTG Monitoring System database file file. The .db format is a database file used by Paessler PRTG Monitoring System, maintained by Paessler AG. It stores monitoring data, configuration records, and historical sensor information for PRTG installations, supporting network supervision and reporting tasks. These files are generally safe and intended for internal application use; however, they should be opened or modified only with compatible Paessler software to avoid data corruption.
What are the magic bytes for .db files?
The magic bytes for Paessler PRTG Monitoring System database file files are 53 51 4C 69 74 65 20 66 at byte offset 0. These bytes uniquely identify the file format regardless of the file extension.
How do I validate a .db file?
To validate a .db file, read the first bytes of the file and compare them against the known magic bytes (53 51 4C 69 74 65 20 66) at offset 0. This is more reliable than checking the file extension alone, as extensions can be renamed.
What is the MIME type for .db files?
There is no officially registered MIME type for .db files. Systems typically use application/octet-stream as a generic fallback when handling this format.
Is it safe to open .db files?
Paessler PRTG Monitoring System database file (.db) 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.