Corrupt a DLL File Online
Corrupt a Windows .dll file online for free. Destroys the PE header and export table so no application can load the library.
- Aucun envoi
- Aucune limite de taille
- Aucune inscription
Corrompez votre fichier DLL
Réglé pour .dll, .ocx, .sys, et fonctionne tout aussi bien avec n'importe quel autre format.
Pourquoi les fichiers DLL sont difficiles à corrompre correctement
A DLL is a PE binary like an EXE, but it fails differently and more interestingly. Applications load libraries at runtime, so a corrupted DLL does not stop a program starting. It makes it fail at the moment it reaches for a function, which is exactly the class of error that is hardest to diagnose in production.
Ce que cet outil détruit
- The PE header. The MZ stub,
PE\0\0signature and optional header are destroyed, so the loader rejects the image. - The export table. The directory listing every exported function name and ordinal is overwritten.
- The import table. The libraries this DLL itself depends on can no longer be resolved.
- Section data. Entropy is scattered through the code and resource sections.
Ce que vous verrez ensuite
| Application | Comportement |
|---|---|
| Application startup | "The application was unable to start correctly (0xc000007b)." |
LoadLibrary | Returns NULL with ERROR_BAD_EXE_FORMAT. |
| regsvr32 | "The module failed to load" when registering. |
| Dependency tools | Report an invalid or unreadable PE image. |
Raisons courantes de le faire
- Testing that an application reports a missing or invalid dependency clearly.
- Verifying a plugin host isolates a bad library instead of crashing entirely.
- Reproducing the classic "0xc000007b" support scenario for a runbook.
- Checking that an updater validates library files after download.
Comment corrompre un fichier DLL
- Déposez votre fichier .dll dans la zone ci-dessus, ou cliquez pour parcourir.
- Laissez le niveau sur Standard, sauf si vous voulez des dommages partiels (Light) ou devez mettre en échec un logiciel de récupération (Heavy).
- Cliquez sur Corrompre le fichier. Le traitement a lieu sur votre appareil, il se termine donc presque instantanément.
- Téléchargez le résultat. Par défaut, il conserve le nom de fichier et la longueur en octets d'origine.
Questions fréquentes sur DLL
Why corrupt a DLL rather than an EXE?
Because the failure mode is different and much harder to diagnose. The application starts normally and fails later, at the moment it tries to use the library, which is exactly the scenario support teams need to practise.
Will it break the whole system?
Only for applications that load that specific library. Never corrupt system DLLs in a Windows directory, work on copies.
Does it work on .sys drivers?
Yes. Kernel drivers are PE binaries too and use the same profile.
Is the original library modified?
No. A corrupted copy is generated in memory and downloaded separately; the file you selected is only read.