Shockwave (Director)
From Just Solve the File Format Problem
(Difference between revisions)
(Moving info from Ext:dir) |
Zensaiyuki (Talk | contribs) |
||
Line 11: | Line 11: | ||
The format is based on the [[RIFF]] metaformat, but with data stored as big endian, (so the magic bytes are RIFX instead of RIFF) | The format is based on the [[RIFF]] metaformat, but with data stored as big endian, (so the magic bytes are RIFX instead of RIFF) | ||
+ | |||
+ | Shockwave also has a plugin system called "xtras" which may complicate the correct interpretation of some files in the future. | ||
+ | |||
== Identifiers == | == Identifiers == | ||
Line 19: | Line 22: | ||
* [[Wikipedia:Adobe Director]] | * [[Wikipedia:Adobe Director]] | ||
* [[Wikipedia:Adobe Shockwave Player]] | * [[Wikipedia:Adobe Shockwave Player]] | ||
+ | * [https://helpx.adobe.com/shockwave/kb/xtras-installed-shockwave-player.html Xtras installed with Adobe Shockwave Player] - Adobe's list of default extras installed with shockwave | ||
* [https://github.com/eriksoe/Schockabsorber Schockabsorber] - Has some very rudimentary reverse engineering of the Director format. | * [https://github.com/eriksoe/Schockabsorber Schockabsorber] - Has some very rudimentary reverse engineering of the Director format. | ||
* [https://gist.github.com/TheCjw/b21d82dfe43107c58a6f Adobe Shockwave - A case study on memory disclosure] - This contains some useful specifics on the format, specifically for the purposes of building a security exploit. | * [https://gist.github.com/TheCjw/b21d82dfe43107c58a6f Adobe Shockwave - A case study on memory disclosure] - This contains some useful specifics on the format, specifically for the purposes of building a security exploit. |
Revision as of 10:29, 13 January 2016
- For Shockwave Flash, see SWF.
Shockwave is a platform and format for multimedia applications, video games, etc. It was owned by Macromedia during most of its formative years, and is now owned by Adobe. It has many names, most of which involve permutations of the words "Macromedia", "Adobe", "Shockwave", and "Director". Director is the application usually used to develop it. It is distinct from SWF (Flash).
The format is based on the RIFF metaformat, but with data stored as big endian, (so the magic bytes are RIFX instead of RIFF)
Shockwave also has a plugin system called "xtras" which may complicate the correct interpretation of some files in the future.
Identifiers
This format has three related extensions: DIR is uncompressed, DCR is compressed, and DXR is encrypted.
Links
- Wikipedia:Adobe Shockwave
- Wikipedia:Adobe Director
- Wikipedia:Adobe Shockwave Player
- Xtras installed with Adobe Shockwave Player - Adobe's list of default extras installed with shockwave
- Schockabsorber - Has some very rudimentary reverse engineering of the Director format.
- Adobe Shockwave - A case study on memory disclosure - This contains some useful specifics on the format, specifically for the purposes of building a security exploit.