Corrupt a TAR Archive Online
Corrupt a .tar, .tar.gz or .tgz archive online for free. Destroys the ustar block headers so extraction fails instead of yielding partial files.
- Kein Upload
- Keine Größenbegrenzung
- Keine Anmeldung
Beschädigen Sie Ihre TAR-Datei
Abgestimmt auf .tar, .tar.gz, .tgz, .gz, funktioniert aber ebenso mit jedem anderen Format.
Warum sich TAR-Dateien nur schwer richtig beschädigen lassen
TAR is the most recoverable archive format in existence. It has no central index at all. Every file is preceded by its own 512-byte header, so tar can simply scan forward and extract whatever it finds. Breaking a TAR means destroying those headers wherever they appear.
Was dieses Werkzeug zerstört
- ustar block headers. The
ustarmagic in each 512-byte file header is destroyed, so no entry can be identified. - Header checksums. The checksum field that
tarvalidates before trusting a header is overwritten. - The end-of-archive marker. The two zero blocks that terminate a valid archive are destroyed, so it also reads as truncated.
- Gzip wrapper. For
.tar.gzthe gzip member header and the trailing CRC32/ISIZE are destroyed as well.
Was Sie danach sehen
| Anwendung | Verhalten |
|---|---|
tar -xf | "This does not look like a tar archive" followed by "Exiting with failure status." |
gzip -d | "not in gzip format" or "invalid compressed data, crc error." |
| 7-Zip / The Unarchiver | Reports an unsupported or damaged archive. |
| Docker image loads | Layer extraction fails and the import is aborted. |
Häufige Gründe dafür
- Testing that a deployment pipeline validates artifacts before extracting them.
- Verifying a container image load fails cleanly on a damaged layer.
- Simulating an interrupted backup transfer for a restore rehearsal.
- Checking that extraction errors are surfaced rather than swallowed.
So beschädigen Sie eine TAR-Datei
- Ziehen Sie Ihre .tar-Datei in das Feld oben, oder klicken Sie zum Auswählen.
- Belassen Sie die Stufe auf Standard, sofern Sie nicht nur teilweisen Schaden wollen (Light) oder Wiederherstellungssoftware überwinden müssen (Heavy).
- Klicken Sie auf Datei beschädigen. Die Verarbeitung läuft auf Ihrem Gerät und ist daher fast sofort fertig.
- Laden Sie das Ergebnis herunter. Standardmäßig behält es den ursprünglichen Dateinamen und die Byte-Länge.
Häufige Fragen zu TAR
Why is TAR usually so recoverable?
Because it has no index. Each file carries its own header, so tar can scan forward and extract whatever it can identify. Destroying every ustar header is what removes that fallback.
Does it work on .tar.gz and .tgz?
Yes. The gzip wrapper is broken first, which alone prevents extraction, and the tar headers underneath are damaged too.
Can any files be extracted partially?
No. Without a valid header and checksum, tar cannot determine where any file starts or how long it is.
What about .tar.bz2 or .tar.xz?
Those fall back to the generic binary profile, which still breaks the compression wrapper reliably.