What is the ISO file format?
Files with the .iso extension contain optical disc images stored as an uncompressed, sector-by-sector copy of the original disc - including its complete file system and directory structure - in a single file.
Data from any type of optical disc (CD, DVD, or Blu-ray) can be archived as a digital .iso disc image. Disc images are created to simplify data transfer compared with moving physical media: a .iso file can be sent across a network, or carried using any type of removable storage device.
The extension name comes from the ISO 9660 standardising document, which defines the data-storage format used on CDs. Modern DVD and Blu-ray images often rely on the UDF (Universal Disc Format) file system, and many .iso files are hybrid images carrying both ISO 9660 and UDF descriptors for cross-platform compatibility. .iso files are widely used to distribute bootable disc images with operating-system installers over the internet, and to emulate optical drives - which helps reduce physical wear on both drives and discs.
.iso files can be mounted in so-called virtual optical drives, where they behave exactly like a physical disc inserted in a real drive. All Unix-based operating systems support mounting .iso files natively - for example using mount -o loop image.iso /mnt/cdrom. Windows has offered native mounting directly in File Explorer since Windows 8; earlier versions required specific third-party software. On macOS, DiskImageMounter opens a .iso automatically on double-click.
Structure of .iso files
Each .iso is an exact binary duplicate of a specific disc, so the content naturally varies. The internal layout, however, is well-defined by ISO 9660: the first 32,768 bytes form a reserved system area, followed by volume descriptor sectors bearing the signature CD001 at byte offset 32,769 (sector 16). Each logical sector is 2,048 bytes. Bootable images embed an El Torito boot record. Related disc-image formats include .img, .nrg (Nero), .bin/.cue pairs, and the macOS-native .dmg.
Security & safety
RISK: MEDIUMThe ISO format itself is passive data, but ISOs are a common malware-delivery method: an ISO mounts as a drive and can hide an executable that bypasses some 'mark of the web' download warnings, a technique used in real phishing campaigns. Risks: pirated OS or software ISOs may contain trojans or tampered installers; download OS ISOs only from the official vendor (microsoft.com, the distro's site) and verify the SHA-256 checksum where provided. Separately, the DAEMON Tools website was hit by a supply-chain attack in 2025 - avoid that installer and use native mounting plus Rufus/Ventoy/7-Zip instead.
Format details
in a nutshellPrograms that open ISO files
Technical details
deep spec| Format type | Sector-by-sector binary disc image, stored uncompressed |
| MIME type | application/x-iso9660-image |
| ISO 9660 magic bytes | CD001 at byte offset 32,769 (sector 16, byte 1) - primary volume descriptor identifier |
| System area | First 32,768 bytes (16 sectors) reserved; typically zero-filled, may hold bootloader code |
| Logical sector size | 2,048 bytes per sector (matches physical CD/DVD sector size) |
| Primary file system | ISO 9660 - standardised structure for CDs and legacy DVD images |
| Extended file system | UDF (Universal Disc Format) - used for DVD, Blu-ray, and files larger than 4 GB |
| Hybrid image support | A single .iso can carry both ISO 9660 and UDF descriptors for cross-platform compatibility |
| Boot record format | El Torito specification - embedded boot catalogue enables bootable CD/DVD images |
| ISO 9660 file-name limit | Level 1: 8+3 uppercase ASCII; Joliet extension adds Unicode long names; Rock Ridge adds POSIX permissions |
| Max single-file size | 4 GB under ISO 9660 (32-bit size field); UDF removes this restriction |
| Compression | None - raw binary copy of disc sectors; image size equals the disc capacity used |
| Native OS mounting | Windows 8+ (File Explorer), macOS (DiskImageMounter), Linux (mount -o loop) |
| Typical applications | OS installer distribution, software archiving, virtual drive emulation, bootable USB creation |
| Released | ISO 9660 published 1988; UDF widely used for larger images |
| Open standard | Yes · royalty-free |
| Specification | www.iso.org |
ISO conversions
Community Q&A
asked by usersNo questions yet - be the first to ask about ISO files.