How to Defer Parsing of JavaScript Properly + WordPress Fix [Updated Guide]

Learn how to Defer Parsing of JavaScript to improve pagespeed score. And how you can fix ‘Eliminate render-blocking of JavaScript’ warning in Google PageSpeed Insights by deferring non-critical JavaScript(s). The newer version of Google PageSpeed Insight refers to this issue as ‘Eliminate render-blocking resources’; these render-blocking resources may include JavaScripts and CSS.

In this article, I will cover what is defer parsing of JavaScript, how to defer parsing of JavaScript properly, why you should defer parsing JavaScript, how to find render-blocking JavaScript(s) which are to be deferred, how to defer multiple JavaScripts in one go, how you can defer parsing of JavaScript in WordPress with or without plugin and how does deferred loading of JavaScript help to speed up your website?

Get WP Rocket WordPress Cache Plugin.
how to defer parsing of javascript in wordpress - how to defer parsing javascript
How to Defer Parsing of JavaScript

In a nutshell, we’ll eliminate render-blocking JavaScript(s) not by actually removing (deleting) them from the website code but by defer loading them. So that they stop blocking the loading (rendering) of meaningful content (the first paint) of the website.

These terms (the above terminology) might be overwhelming for you at first, especially if you’re not a tech guy.

But, don’t worry about that!

I am going to explain everything step by step in simple words. So that you can proceed at your pace and implement the methods to fix ‘Eliminate render-blocking resources’ on your website/blog.

Table of Contents [hide]

What is Defer Parsing JavaScript

A web page is made of up several components which include HTML, CSS/Stylesheets, JavaScript, and graphical (images & icons) components etc. These components are stacked one over another in the code structure of the web page.

When a user types your website URL in the web browser’s address bar and hit enter. The browser first establishes the connection with the server on which your website is hosted.

Once the connection is established, the browser starts rendering the components of the webpage to display the web page.

A2 Hosting - 72% OFF on Turbo (Up To 20X Faster) Hosting

The browser renders the components serially from the top towards the bottom of the webpage. That means what comes first rendered first and so on.

When the browser encounters JavaScript on a web page, it downloads the JavaScript, executes it, and then proceeds to render the next component. So during this time browser stop rendering the rest of the web page.

Every time the browser encounters JavaScript, it stops rendering the rest of the webpage until it renders and executes the encountered JavaScript.

That’s how JavaScript blocks the critical rendering path.

To avoid this situation, Google Engineers recommend deferring non-critical JavaScript.

The question still remains the same, What is Defer Parsing of JavaScript?

Defer Parsing of JavaScript can be defined as the process of using defer or async attribute with JavaScript to avoid render blocking of the first paint of a web page. These attributes tell the web browser to parse and execute the JavaScript in parallel (asynchronously) or after (defer) the parsing of HTML of a web page. Thus, the visitors need not wait longer to see the meaningful content of the web page.

Difference between defer or async

Now you know that there are two attributes – defer or async; that can be used to defer javascript loading.

Before we talk about the difference between defer and async, let’s see how does <script> tag works.

Legend

Legend - async vs defer attribute
legend async vs defer attribute

<script>

script tag
script tag

When we use <script> tag to add script in our code, the HTML is keep parsing till the script file is reached, then onwards parsing will be paused until the script file is downloaded and executed.

Suitability: Not recommended in most cases.

<script defer>

script defer attribute
script defer attribute

When defer attribute is appended with script tag, the script file is downloaded alongside the HTML parsing but the downloaded script executes only after the completion of HTML parsing.

Suitability: For non-critical script files.

<script async>

script async attribute
script async attribute

When async attributed is used with script tag, the script file downloads during HTML parsing, then HTML parsing pauses just to execute the downloaded-script file.

Suitability: For critical script files that cannot be inline.  

Defer loading of JS & PageSpeed Insights recommendation

Let’s try to put this in a perspective with Google PageSpeed Insights warning and recommendation.

When you test, a website using Google Pagespeed Insights Tool, you get some warnings and recommendations to fix those warnings/errors.

Google PSI - Render blocking resources - JavaScripts to be deferred
Google PSI – Render blocking resources – JavaScripts to be deferred

The PageSpeed Insights (PSI) text for render-blocking resources says,

Eliminate render-blocking resources.

Resources are blocking the first paint of your page. Consider delivering critical JS/CSS inline and deferring all non-critical JS/styles.

This warning triggers for two different elements i.e. JavaScript (JS) and CSS when any of them block the critical rendering path 1 during the website loading. Here in this article, we are discussing the JavaScript part.

(In the previous version of PageSpeed Insights Tool, the same warning (for the JavaScript) used to be called ‘Eliminate render-blocking of JavaScript’.)

In simple words, this warning triggers when there are some JavaScript(s) loading on your website which blocks the loading of the content that matters most to your visitors.

This means your visitors have to wait longer to see the meaningful content of your website because JavaScript(s) are blocking the rendering of content.

Clearly, Pagespeed Insights or other site speed testing tools (GTMetrix, etc.) show this warning/error, if your site loads some JavaScript(s) that block the loading of meaningful content (the first paint) of your site.

And this needs to be fixed.

Critical vs Non-critical JavaScript: Explained

As Google PageSpeed Insights (PSI) recommendation says you should deliver critical JS inline and defer all non-critical JS.

What does this mean?

Let’s break that down by terminology.

Critical JavaScripts: JavaScripts that are necessary to load during optimized critical rendering.

Non-critical JavaScripts: Those JS that can wait to load until the first meaningful content (the first paint) of the webpage has loaded.

Inline Delivery: Inline delivery refers to loading a resource (in this case JS) within the HTML code instead of calling/importing that separately.

Curious? Why does JavaScript block the critical rendering path in the first place?

We’ll discuss that in the next section with other reasons why you should Defer JavaScript Parsing.

Do you know? how to

Why You Should Defer Parsing of JavaScript

JavaScript Execution: is a Heavier Task

How does JS Affect SiteSpeed?

First of all, JavaScript(s) is one of the major culprits to make your website slow.

Wondering, why is that?

Because when the web browser comes across a script, it executes the script first before continuing to load HTML that includes the content users are looking for.

For a browser, executing JavaScript is a heavier task (depending on the size of the script) and takes more time as compared to rendering the meaningful content (the first paint) of the webpage.

Hence JavaScript affects the critical rendering path and slows down pagespeed of your website.

Why not defer this heavier task of JS execution so that the critical rendering path remains uninterrupted, right?

Pagespeed: is now a Ranking Factor

Site speed has already become a ranking signal.

About a decade ago Google announced 2 in an official blog post on Google Webmaster Central Blog that site speed has become a ranking signal.

In another blog post published on the Official Webmaster Central Blog in 2018, they revealed 3 that Google started using page speed as a ranking factor in mobile search ranking.

Since Google had declared pagespeed a factor in search result rankings for desktop and mobile. Therefore, site speed optimization has become a significant aspect of technical SEO.

For the same reason, Google PageSpeed Insights Tool recommends deferred parsing of JavaScript as one of the solutions 4 to remove render-blocking JavaScript in above-the-fold content.

User Experience: decides Your Site’s Success

How does JavaScript affect user experience (UX)?

We have already discussed that JavaScript(s) slow down the pagespeed by blocking the rendering of first paint (the meaningful content). That led to more loading time and a longer wait for users to see the content; bad user experience, right.

Speed matters a lot, the truth is users do not like slow-loading websites. In fact, studies show that the users leave a slow loading site early and move on.

On the contrary, you want your website audience to engage with your site and eventually turn into a customer, subscriber, or ad-viewer. In order to make that happen, you need to improve your pagespeed by deferring non-critical JavaScript(s).

Reasons to Defer Loading of JavaScript: Summing it up

As I mentioned above, however, the parser (browser) starts downloading and executing the script over parsing the rest of HTML, whenever it encounters the script.

But the fact is, most of the JavaScript(s) come into use when the complete web page is loaded. For example, in some animation, effect, or functionality, etc.

Therefore, it is a good idea to load JavaScript(s) only after the content has loaded.

This way deferred loading of JavaScript does not affect the critical render path and consequently helps to speed up your website. And hence, a better user experience for your readers.

And by making your site load faster, you also improve your search ranking on desktop as well as mobile.

Do you know, good web hosting is a must for better pagespeed?
If you are already using good web hosting?
Awesome, let’s skip to defer parsing of JavaScript.
Not sure? whether your hosting is as good as your website deserves, don’t worry. We recommend Cloudways and Kinsta Hosting for better sitespeed.
Read our Kinsta Review.

Now, since you have an understanding of what is defer parsing of JavaScript and why you should defer loading of JavaScript(s).

It is a good time to figure out which JavaScript(s) (on your website) are the culprits and need to be deferred.

If you already know which JavaScript(s) on your website are blocking the critical rendering path, you may skip the following section and jump to the implementation part. Otherwise, keep on reading…

How to Find Render-blocking JavaScript(s)

JavaScript(s) which block the rendering of meaningful content are called ‘Render Blocking JavaScript(s)’ and need to be deferred.

You can find render-blocking JavaScript(s) by analyzing your website using site speed testing tools.

There are several pagespeed testing tools available to analyze a website for site speed and loading time. I am sharing with you the most reliable and trusted tools for pagespeed testing.

Test your site using these tools and note the results of these tools so that you can compare the results before and after implementing defer parsing of JavaScript(s).

1. PageSpeed Insights by Google

PageSpeed Insights by Google
PageSpeed Insights by Google

Google PageSpeed Insights (PSI) is an exclusive pagespeed testing tool by Google. Test your website using Google PSI Tool to find out render-blocking JavaScript(s). PageSpeed Insights Tool results give information about warnings and their solutions/fixes.

2. GTmetrix

GTmetrix - Speed and Performance Test Tool
GTmetrix – Speed and Performance Test Tool

This one (GTmetrix) is another good free tool to test site speed. You can test your site with GTmetrix to know which JavaScripts need to be deferred.

3. Pingdom Tools

Pingdom Tools for Website Speed Test
Pingdom Tools for Website Speed Test

Solarwinds’ Pingdom Tools are also very popular when it comes to site speed testing tools. You can test your site using Pingdom Tools to check the number of JS requests on your site and how much they contribute to the total number of requests.

Now you know which JavaScript(s) are making your site slow and need to be deferred. So, let’s see how to fix this issue by deferring non-critical JavaScript(JS).

Test Results: Before Defer Parsing of JavaScript

I have tested a website before implementing defer parsing of JavaScript. Consider these a baseline and compare these results after deferred loading of JavaScripts.

Pagespeed Insights Result before Defer Parsing of JS
Pagespeed Insights Result before Defer Parsing of JS
GTmetrix Result before Defer Parsing of JS
GTmetrix Result before Defer Parsing of JS

How to Defer Parsing of JavaScript [Step by step]

You need to use the following code to defer parsing JavaScript. Insert this code in HTML file just before the </body> tag. Read the instructions given below to use this script.

< script type="text/javascript">
function parseJSAtOnload() {
var element = document.createElement("script");
element.src = "script_to_be_deferred.js";
document.body.appendChild(element);
}
if (window.addEventListener)
window.addEventListener("load", parseJSAtOnload, false);
else if (window.attachEvent)
window.attachEvent("onload", parseJSAtOnload);
else window.onload = parseJSAtOnload;
</script >

Instructions for Defer Parsing JavaScript using the script

Don’t forget to take a complete backup before making any changes in the code. If something went wrong, you can use that backup to go back.

  1. Copy the code and paste it in HTML file just before the </body> tag (near the bottom of HTML file).
  2. Replace script_to_be_deferred.js with the link of the JavaScript which is to be deferred. You can copy the link of JavaScript(s) (which Google PageSpeed tool suggests to defer) from Google PageSpeed Insights tool results for your website.
  3. Save changes. And you are done.
  4. Finally, test your website again to see the effect.

Code to Defer Multiple JavaScripts in One-go

If you want to defer multiple scripts in one go. You can use the same script with little modification. In the following code replace defer1.js, defer3.js, and defer3.js, etc. with the link of scripts that you want to defer.

 < script type="text/javascript">
function parseJSAtOnload() {
var links = ["defer1.js", "defer2.js", "defer3.js"],
headElement = document.getElementsByTagName("head")[0],
linkElement, i;
for (i = 0; i < links.length; i++) {
linkElement = document.createElement("script");
linkElement.src = links[i];
headElement.appendChild(linkElement);
}
}
if (window.addEventListener)
window.addEventListener("load", parseJSAtOnload, false);
else if (window.attachEvent)
window.attachEvent("onload", parseJSAtOnload);
else window.onload = parseJSAtOnload;
</script >  

How to Defer Parsing of JavaScript in WordPress

You can defer parsing of JavaScript in WordPress by following methods:

  1. Using WordPress Plugins (with a plugin) – suitable for all plugin lovers.
  2. Adding a Code Snippet to function.php file – suitable for those who are used to playing with code and editing files in WordPress. – without plugin method #1
  3. Using the Script mentioned above  – suitable for geeks who don’t want to use a plugin. – without plugin method #2

1. Defer Parsing of JavaScript using WordPress Plugin

There are several WordPress plugins available to defer parsing of JavaScript in WordPress, I am listing the best plugins that stand out in the crowd because of their performance and reliability.

Obviously, the process of installing and activating any of the following plugins remains the same.

If you’re not sure about the process of installing a WordPress plugin, you can refer this beginner’s guide to learn different methods of installing a plugin in WordPress.

#1.1 Async JavaScript Plugin

If you want a standalone plugin to defer parsing of JavaScript, Async JavaScript should be your pick.

This tiny plugin offers all necessary settings to tweak deferred loading of JS in WordPress.

HOW TO USE ASYNC JAVASCRIPT PLUGIN: SETTINGS & USAGE GUIDE

Steps to defer parsing of javascript in WordPress using a plugin:

  1. Navigate to WordPress Dashboard > Plugins > Add New.
  2. Search Async JavaScript Plugin in the plugin repository.
  3. Install and activate Async JavaScript Plugin.
  4. Head-over to WordPress Dashboard > Settings > Async JavaScript.
  5. Go to Settings tab of Async JavaScript Plugin.
  6. Check the box against ‘Enable Async JavaScript’ option and save changes to start deferring Javascript in WordPress.
  7. There are other options as mentioned below; You can tweak the relevant option as per your need.
  • enable asyns js for logged-in user
  • on cart/check out pages
  • quick settings
  • async javascript method
  • jQuery
  • scripts to Async
  • scripts to Defer
  • script Exclusion
  • plugin exclusions
  • theme exclusion
Async Javascript Plugin - Defer JS WordPress
Async Javascript Plugin – Defer JS WordPress

#1.2 Defer Parsing of JavaScript Setting in WP Rocket Plugin

WP Rocket is a power-pack of features when it comes to WordPress speed optimization.

You can easily defer loading of javascript using WP Rocket to speed up your site.

Steps involved to enable defer loading of JS using WP Rocket plugin:

  1. Install and active WP Rocket plugin.
  2. Go to WP Dashboard > Settings > WP Rocket.
  3. Under File Optimization enable Load JavaScript deferred option and save changes.
  4. Now test your site to check results.
Load JavaScript deferred - WP Rocket
Load JavaScript deferred – WP Rocket

DO WE USE WP-ROCKET?

Hell, YES!

You can read, how we got load time under 1s using WP Rocket.

#1.3 Defer Parsing of JavaScript: W3 Total Cache

You can defer JavaScript loading in WordPress using W3 Total Cache plugin.

Steps to defer parsing of JavaScript using W3 Total Cache WordPress plugin:

  • Head-over to WordPress Dashboard > Plugins > Add New.
  • Search W3 Total Cache in the plugin repository.
  • Install and activate W3 Total Cache plugin.
  • Go over WP Dashboard > Performance (W3 Total Cache Settings) > Minify.
  • Scroll down to JS minify settings. You will see settings like shown in the image below.
  • Check/select options as shown in the image below. Click Save all settings and you are done.
  • Test your site using pagespeed test to see the results.
Defer JavaScript - W3 Total Cache
Defer JavaScript – W3 Total Cache

#1.4 Defer Loading of JavaScript in LiteSpeed Cache Plugin

LiteSpeed Cache is an amazing optimization plugin for LiteSpeed server hosting. But the general features of this plugin can be utilized on any server like LiteSpeed, Apache, NGINX, etc.

Steps to defer parsing of javascript in LiteSpeed Cache plugin:

  • Go to WP Dashboard > Plugins > Add New.
  • Search Litespeed Cache in the plugin repository.
  • Install and activate LiteSpeed Cache plugin.
  • Navigate to WP Dashboard > LiteSpeed Cache > Page Optimization > JS Settings.
  • Scroll down to Load JS Deferred And turn it ON and save changes.
  • Now test your website using pagespeed tool to check the result.
Load JS Deferred - LiteSpeed Cache Plugin
Load JS Deferred – LiteSpeed Cache Plugin

#1.5 Defer Parsing of JavaScript using Swift Performance Plugin

Swift Performance plugin has become a well known name in the speed optimization category. Their free version is called ‘Swift Performance Lite’.

The process to delay loading of JS in WordPress using Swift Performance:

  • Head-over to WP Dashboard > Plugins > Add New.
  • Search Swift Performance Lite in the plugin repository.
  • Install and activate Swift Performance Lite
  • Navigate to WP Dashboard > Tools > Swift Performance > Settings > Optimization > Scripts.
  • Enable the option called Merge Scripts. Once you enable it, other related options will appear.
  • Now add the scripts to be deferred under the option called Deferred Scripts and Save changes.
  • Finally, test your website using speed test tool to see the result.
Deferred Scripts setting - Swift Performance Plugin
Deferred Scripts setting – Swift Performance Plugin

#1.6 Defer Parsing of JavaScript in WordPress using Speed Booster Pack 

Speed Booster Pack also offers deferred loading of javascript out of the box. 

Step by step procedure to enable defer loading of js in Speed Booster Pack plugin:

  • Go to WordPress Dashboard > Plugins > Add New.
  • Search Speed Booster Pack in the plugin repository.
  • Install and activate Speed Booster Pack plugin.
  • Navigate to WP Dashboard > Speed Booster > Assets.
  • Scroll down to the option called Optimize JavaScript. Under this option choose Defer for deferred loading of JS.
  • Save changes and you’re done.
  • Now, test your site using pagespeed test tool to check the result.
Defer Javascript - Speed Booster Pack Plugin
Defer Javascript – Speed Booster Pack Plugin

#1.7 Defer Parsing of JavaScript: Autoptimize

Autoptimize another good plugin to optimize WordPress speed. This plugin also offers the option to defer load JS in WordPress.

Step by step process to defer parsing javascript using Autoptimize:

  • Navigate to WordPress Dashboard > Plugins > Add New.
  • Search Autoptimize in WordPress plugin repository.
  • Install and activate Autoptimize plugin.
  • Go to Dashboard > Settings > Autoptimize > JS, CSS & HTML.
  • Under JavaScript Options enable Optimize JavaScript Code and,
  • Then enable Do not aggregate but defer option and save changes.
  • Now Empty Cache and test your site using speed test tool to see the result.
Defer Javascript Loading - Autoptimize
Defer Javascript Loading – Autoptimize

#1.8 WP Fastest Cache to Defer Parsing of JavaScript

You can eliminate render-blocking JavaScript resources using WP Fastest Cache plugin. But this feature is available with the premium version only.

2. Defer JavaScript Parsing in WordPress via functions.php file

Yes, you can defer parsing of JavaScript in WordPress by adding a code snippet to function.php file.

This is one of the methods that you can use to Defer Parsing of JavaScript in WordPress without using a plugin.

As I have mentioned above this method is suitable for people who are comfortable with code editing in WordPress.

You might be thinking, but why?

First of all, functions.php is an important theme file. That means you might end up breaking your site easily if anything went wrong with the editing of functions.php file.

Also, there are different versions of the code snippet on the web to fix defer parsing of JavaScript in WordPress via functions file. Unfortunately, not all the code snippets work fine.

So you should be careful while using a code snippet to defer loading of JavaScript.

How to Edit functions.php File Safely

I always recommend using a child theme in WordPress in order to avoid code editing mess.

Because while editing the code, even if you miss a single comma (,) semicolon (;) or any other symbol/syntax, your website will break completely or partially. And you have to make extra efforts to recover the site.

If you’re not using a child theme, learn how to use a child theme in WordPress and its benefits.

For any reason, if you don’t want to implement a child theme now, you can use this plugin to add code to functions.php file of your theme without editing the original file.

Step by step process to Defer Parsing JavaScript in WordPress via functions.php

Take a complete backup before making any changes to the code.

I assume that you’re using a child theme. If you’re not, first create and activate a child theme to any trouble because of theme file editing.

  1. Go to your WordPress Dashboard > Appearance > Theme Editor
  2. Select/open functions.php file (of child theme) from theme files.
  3. Paste the code snippet given below at the end of functions.php file.
  4. You can specify JS files to exclude from defer in the array (‘jquery.js’).
  5. Finally, click Update File to save changes. That’s all.

The code snippet is to be pasted in functions.php file.

// Defer Parsing of JavaScript in WordPress via functions.php file
// Learn more at https://technumero.com/defer-parsing-of-javascript/ 

function defer_parsing_js($url) {
//Add the files to exclude from defer. Add jquery.js by default
    $exclude_files = array('jquery.js');
//Bypass JS defer for logged in users
    if (!is_user_logged_in()) {
        if (false === strpos($url, '.js')) {
            return $url;
        }

        foreach ($exclude_files as $file) {
            if (strpos($url, $file)) {
                return $url;
            }
        }
    } else {
        return $url;
    }
    return "$url' defer='defer";

}
add_filter('clean_url', 'defer_parsing_js', 11, 1);

The above code snippet is using defer attribute to defer parsing of JavaScripts. You can replace the defer attribute with async attribute to parse JavaScript asynchronously. You can read more about async attribute and other methods to fix render-blocking JavaScript.

3. Defer Parsing of JavaScript without WordPress Plugin – Script Method

The script method explained above can be used in WordPress to defer loading of javascript. In WordPress, the above-mentioned code can be placed in HTML file just before the </body> tag using hook content option.

Most of the popular WordPress themes come with hook content provision. If you are not using the hook content option or it is not available in your theme. Then, either you can use a WordPress plugin to add the script to WordPress footer before </body> tag or you can place the script in the footer file just before the </body> tag manually.

Facing any difficulty adding the script in WordPress footer? Check out our detailed guide, to learn how to add code in WordPress header and footer easily.

Steps to defer load javascript in WordPress without using a plugin:

  1. Copy the code and paste that before the </body> tag (using a plugin or built-in theme hook) .
  2. Now replace script_to_be_deferred.js with the JavaScript to be deferred.
  3. Save changes and you’re done.
  4. Clear the cache, if there is any.
  5. Test your website again to see the result.

Test Results: After Defer Parsing of JavaScript

The following are the test results after defer loading of JavaScript.

PageSpeed Insights Result after fixing Defer Parsing of JavaScript
PageSpeed Insights Result after fixing Defer Parsing of JavaScript
GTmetrix result after implementing Defer Parsing of JavaScript
GTmetrix result after implementing Defer Parsing of JavaScript

Wrapping it up

Other than defer parsing of JavaScript, you can also use async attribute or inline JavaScript to remove render-blocking JavaScript. I have covered async attribute or inline JavaScript in another blog post, read that article here. In that article, I have also mentioned a few useful WordPress plugins to defer parsing JavaScript.

Although WordPress plugins are available to defer parsing of JavaScript. The above-explained script method is considered more appropriate by several experts and webmasters. But the people who use WordPress know that using a WordPress plugin is like bliss.

I hope this guide will help you to defer parsing of JavaScript. Let me know, which technique you use to defer parsing of JavaScript. If you are facing any problem implementing the above methods or have a question. Let me know via the comment section. I will be happy to answer.

Cheers!

Source :
https://technumero.com/defer-parsing-of-javascript/

NSv Virtual Firewall: Tested and Certified in AWS Public Cloud

Looking for the best way to extend your firewall protection to the cloud? Independent testing recently found that SonicWall NSv series is more than up to the challenge.

More than 90% of enterprises use the cloud in some way, with 69% of those considered hybrid cloud users (utilizing both private and public clouds). Along with widespread remote work adoption, this shift is driving the need for scaled-out, distributed infrastructure.

Within this new cloud landscape, security has become more complex as the number of perimeters and integrations grow, and cybercriminals increasingly focus on security gaps and vulnerabilities in cloud implementations. It’s often easier for threat actors to exploit these vulnerabilities than it is to breach hardened components of the cloud deployment.

A next-generation firewall deployed in the cloud can protect critical data stored in the cloud. But it’s important to make sure this firewall provides the same level of security and performance as an on-premises firewall.

Recently, Tolly Group used Keysight Technologies’ brand-new native cloud testing solution — CyPerf — to measure the performance of SonicWall NSv 470 virtual firewall in Amazon Web Services (AWS). AWS is the major public cloud vendor, with a projected 49% market share in enterprise cloud adoption for 2022. AWS recommends a shared responsibility model, meaning AWS is responsible for the security of the cloud, and the customer is responsible for security in the cloud.

What is SonicWall NSv virtual firewall?

SonicWall’s NSv Series virtual firewalls provide all the security advantages of a physical firewall, plus all the operational and economic benefits of the cloud — including system scalability and agility, speed of system provisioning, simple management and cost reduction. NSv delivers full-featured security tools including VPN, IPS, application control and URL filtering. These capabilities shield all critical components of the private/public cloud environments from resource misuse attacks, cross-virtual-machine attacks, side-channel attacks, and common network-based exploits and threats.

What is Keysight Technologies CyPerf?

Keysight CyPerf is the industry’s first cloud-native software solution that recreates every aspect of a realistic workload across a variety of physical and cloud environments. CyPerf deployed across a variety of heterogeneous cloud environments realistically models dynamic application traffic, user behavior and threat vectors at scale. It validates hybrid cloud networks, security devices and services for more confident rollouts.

Putting SonicWall NSv to the Test

Keysight Technologies and Tolly Group engineers tested a SonicWall NSv 470 virtual firewall running SonicOSX version 7. The AWS instance for the NSv 470 under test was AWS C5.2xlarge. The engineers deployed CyPerf agents on AWS C5.n2xlarge instances to be certain that the agents would have sufficient resources to stress the firewall under test. Each of two agent instances was provisioned with 8 vCPUs, 21GB memory and 25GbE network interfaces.

Product Image

Test methodology and results

The engineers used three different traffic profiles to collect results — unencrypted HTTP traffic, encrypted (HTTPS/TLS) traffic, and Tolly’s productivity traffic mix, which includes five applications: JIRA, Office 365, Skype, AWS S3 and Salesforce. Engineers used CyPerf application mix tests to create the Tolly productivity mix and generate stateful, simulated application traffic.

The tests were run against three different security profiles:

1) Firewall: Basic firewall functions with no policy set

2) IPS: Firewall with the intrusion prevention system feature enabled

3) Threat Prevention: Firewall with IPS, antivirus, anti-spyware and application control features enabled

The results observed in the AWS public cloud environment are similar to the results observed in virtual environment.

TestUnencrypted HTTP TrafficEncrypted HTTPS/TLS Traffic 
Firewall Throughput7.70 Gbps3.10 Gbps
IPS Throughput7.60 Gbps3.05 Gbps
Threat Prevention7.40 Gbps3.04 Gbps

Table 1: Test measurements for NSv 470 in AWS Cloud

Note: The table above highlights just a few of the test results. For complete results and test parameters, please download the report.

Conclusion

Most enterprises are moving their datacenters away from traditional on-premises deployments and to the cloud. It is imperative that security teams provide the same level of security for cloud server instances as they have been doing for on-premises physical servers. A next-generation firewall with advanced security services like IPS and application control is the first step to securing cloud instances against cyber threats.

In addition to security features, it also important to choose a firewall that provides the right level of performance needed for a given cloud workload. SonicWall NSv series offers a variety of models with performance levels suited to any size of cloud deployment, with all the necessary security features enabled. To learn more about how SonicWall NSv Series excels in AWS environments, click here.

Source :
https://blog.sonicwall.com/en-us/2022/04/nsv-virtual-firewall-tested-and-certified-in-aws-public-cloud/

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/

WP Shield Security PRO – Release 14.1

Our lastest ShieldPRO 14.1 security plugin for WordPress brings a huge WordPress REST API integration along with some much-needed tweaks and enhancements.

Read on to discover everything we’ve included in your newest and favourite WordPress Securty Plugin.

#1 Full Integration With WordPress REST API

Management of WordPress websites at scale is a huge challenge for all of us.

Consider the work that’s involved with managing just 1 WordPress site and all its plugins, themes, updates, backups and, of course, security.

Now multiply that by the number of WordPress sites you run.

It’s a huge amount of work.

This is why we built iControlWP many years back and why we also integrated Shield Security into it to allow WordPress admins to manage their WordPress sites at scale, and also their WordPress security.

But not everyone wants to use iControlWP and that’s totally cool! But we still want to open up management of Shield to folk that need to scale their WordPress security.

This is where our new WordPress REST API integration comes in. It leverages the very thorough platform that the WordPress Core provides, letting us build a REST API that is powerful, secure and easy to maintain.

Many clients won’t have a need for our REST API directly, but you may use tools and services that could take advantage of if you asked them to.

#2 Hugely Improved Audit & Traffic Logs

This is a big one.

short time ago we completely overhauled the Audit Trail and Traffic Logging features.

This involved a major revamp of the UI and the tables that display the logs.

As you can imagine, these tables and data set can grow very large, particularly for busy websites.

Since we were loading a large dataset all at once, browsing these log tables became tedious and slow. For high traffic sites, it would unusable in some cases resulting in loading errors!

So we went back to our core implementation (again) and made the entire thing dynamic. Instead of loading all the records, we only load precisely what we need. This makes the initial loading near-instant.

The pagination will be a bit slower than what you’re used to – but this is because we’re loading just the log records you need, when you need them.

We’ve also adjusted the traffic log database table structure to help us speed all this along and provide more useful information right where you need it.

This is a major reworking and we hope you’ll love it!

#3 Run Shield As A “Must-Use” (MU) Plugin

If you’ve never heard of a must-use WordPress plugin, don’t worry, you’re not alone.

Simply put, a must-use WordPress plugin is one that is automatically enabled and always loads when WordPress loads. These special plugins can’t be (easily) disabled and execute before all other plugins.

They’re installed in a different directory (/wp-content/mu-plugins/) instead of the default (/wp-content/plugins/).

So why would you want to switch Shield to be an MU plugin?

In much the same way as Shield offers the Security Admin module to protect against tampering, you could set Shield to be an MU plugin to prevent the plugin from being disabled accidentally, maliciously.

It’ll also ensure Shield executes before other plugins. While this won’t offer an advantage currently, we’ll soon adjust some Shield’s code to block malicious requests much earlier in the WordPress load.

What actually happens when you enable MU Mode?

The core of the Shield plugin will remain in the normal installation directory- /wp-content/plugins/.

Shield will then create a new file in the MU directory that loads the normal Shield plugin. When this happens you’ll see 2x Shield plugins installed on your site as shown below:

How can you disable Shield after enabling MU Mode?

Once MU mode is enabled, you can’t disable the normal Shield plugin from the WordPress dashboard. This is normal WordPress behviour.

However, you can simple revert the option within Shield’s settings to disable MU Mode, and then return the plugins screen and disable Shield like any other plugin.

The setting for MU Mode is found within the Security Admin module and doesn’t require a Security Admin PIN to be set.

Shield’s MU Mode plugin option

#4 Better Detection Of Incorrect Application Passwords

Following a suggestion from a client and also off the back of our REST API work we’ve improved how Shield captures and logs authentication failures when Application Passwords are used.

Until now Shield wasn’t correctly spotting when these application password login attempts were failing. We’ve added some new events and logging and we’ll even increase the offense counter for an IP address when the event is triggered.

We spotted these new events being triggered almost immediately after we put them live for testing.

#5 More Quick Access Data In Admin Bar

Some time ago we add a top menu to the WordPress admin bar to help indicate when Shield found some scan items that warrant further investigation.

The original WP Admin Bar addition by Shield Security
The original WP Admin Bar addition by Shield Security

After prompting for some extra information by a client, we’ve made some new helpful additions to the menu (see image below).

Shield’s Additional WP Admin Bar Items

Each of these additions provide helpful links to the item in question, for example:

  • Recently Blocked IPs and Offenses link to the IP Analyse Tool for the specific IP in-question.
  • Recent Sessions links to the Shield Sessions table and the individual session item in the menu links to the profile of the given user.

    Source :
    https://getshieldsecurity.com/blog/wp-shield-security-pro-release-14-1/

Critical Authentication Bypass Vulnerability Patched in SiteGround Security Plugin

On March 10, 2022 the Wordfence Threat Intelligence team initiated the responsible disclosure process for a vulnerability we discovered in “SiteGround Security”, a WordPress plugin that is installed on over 400,000 sites. This flaw makes it possible for attackers to gain administrative user access on vulnerable sites when two-factor authentication (2FA) is enabled but not yet configured for an administrator.

Wordfence PremiumWordfence Care, and Wordfence Response received a set of firewall rules on March 10, 2022 to provide protection against any attackers trying to exploit this vulnerability. Wordfence Free users will receive this same protection 30 days later on April 9, 2022

After sending the full disclosure details to the SiteGround security team on March 10, 2022 a patch was released the next day on March 11, 2022. While the plugin was partially patched immediately, it wasn’t optimally patched until April 7, 2022.

Sites hosted on the SiteGround platform have automatically been updated to the patched version while those hosted elsewhere will require a manual update, if auto-updates are not enabled for the plugin. We strongly recommend ensuring that your site has been updated to the latest patched version of “SiteGround Security”, which is version 1.2.6 at the time of this publication.


Description: Authentication Bypass via 2-Factor Authentication Setup
Affected Plugin:SiteGround Security
Plugin Slug: sg-security
Plugin Developer: SiteGround
Affected Versions: <= 1.2.5
CVE ID:CVE-2022-0992
CVSS Score: 9.8 (Critical)
CVSS Vector:CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Researcher/s: Chloe Chamberland
Fully Patched Version: ​1.2.6

SiteGround Security is a plugin designed to enhance the security of WordPress installations via several features like login security including 2FA, general WordPress hardening, activity monitoring, and more. It’s also worth noting that it comes pre-installed on all SiteGround hosted WordPress sites. Unfortunately, the 2FA functionality of the plugin was insecurely implemented making it possible for unauthenticated attackers to gain access to privileged accounts.

When two-factor authentication is enabled, it requires all administrative and editor users to set-up two factor authentication. This requirement is triggered when the site’s administrative and editor users log into the site for the first time after 2FA has been enabled at which time they are prompted to configure 2FA for their account. This means that there will be a period of time between 2FA being enabled on a site and each user configuring it for the account.

During this interim period, attackers could hijack the 2FA set-up process. The plugin had a flaw that made it so that attackers could completely bypass the first step of authentication, which requires a username and password, and access the 2FA set-up page for users that had not configured 2FA yet.

It was as simple as supplying the user ID they would like to compromise via the sg-user-id parameter, along with a few other parameters to indicate that they would like to trigger the initial 2FA configuration process.

The following validate_2fa_login() function shows the process by which a user-supplied ID is validated. If the results from the check_authentication_code() function and the sg_security_2fa_configured user meta retuned false, which indicated that 2FA hasn’t yet been configured for that user, then the plugin would load the 2fa-initial-setup-form.php template which displays the QR code and 2FA secret needed to configure the authenticator app for the user supplied ID.

684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718</pre><pre>public function validate_2fa_login( $user ) {   // Bail if there is no valid user authentication.   if ( ! isset( $_POST['sg-user-id'] ) ) { // phpcs:ignore      return;   }    $result = $this->check_authentication_code( wp_unslash( $_POST['sgc2facode'] ), wp_unslash( $_POST['sg-user-id'] ) ); // phpcs:ignore    // Check the result of the authtication.   if ( false === $result ) {      if ( 0 == get_user_meta( $_POST['sg-user-id'], 'sg_security_2fa_configured', true ) ) { // phpcs:ignore         // Arguments for initial 2fa setup.         $args = array(            'template' => '2fa-initial-setup-form.php',            'qr'       => get_user_meta( $_POST['sg-user-id'], 'sg_security_2fa_qr', true ), // phpcs:ignore            'secret'   => get_user_meta( $_POST['sg-user-id'], 'sg_security_2fa_secret', true ), // phpcs:ignore            'error'    => esc_html__( 'Invalid verification code!', 'sg-security' ),            'action'   => esc_url( add_query_arg( 'action', 'sgs2fa', wp_login_url() ) ),         );      } else {         // Arguments for 2fa login.         $args = array(            'template' => '2fa-login.php',            'error'    => esc_html__( 'Invalid verification code!', 'sg-security' ),            'action'   => esc_url( add_query_arg( 'action', 'sgs2fa', wp_login_url() ) ),         );      }       $this->load_form( wp_unslash( $_POST['sg-user-id'] ), $args ); // phpcs:ignore   }    // Set the auth cookie.   wp_set_auth_cookie( wp_unslash( $_POST['sg-user-id'] ), intval( wp_unslash( $_POST['rememberme'] ) ) ); // phpcs:ignore</pre><pre>

The authentication QR code and secret key displayed that would be displayed to potentially unauthorized users.

The returned QR code and secret key are the only things needed to connect the user account with an authentication mechanism, such as Google Authenticator. Attackers were able to use this to connect their authentication app with the account and successfully use a code to pass the “second factor of authentication.” This function would then set the user authentication cookies via the wp_set_auth_cookie() function using the user supplied ID from the sg-user-id parameter which effectively logs the attacker in as that user. Due to the default configuration of the plugin, this account would most likely be a privileged user like an administrator or editor. It’s also worth noting that the function returns the back-up codes which could be used via the weakness outlined in the next section.

To sum it up, there was no validation on the validate_2fa_login() function that the identity a user was claiming was in fact legitimate. As such attackers could bypass the first authentication mechanism, a username/password pair, which is meant to prove identity and successfully log in, due to a weakness in the second authentication mechanism, the 2FA process. When successful, an attacker could completely infect a site by exploiting this vulnerability.


Description: Authorization Weakness to Authentication Bypass via 2-Factor Authentication Back-up Codes
Affected Plugin: SiteGround Security
Plugin Slug: sg-security
Plugin Developer: SiteGround
Affected Versions: <= 1.2.4
CVE ID:CVE-2022-0993
CVSS Score: 8.1 (High)
CVSS Vector:CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
Researcher/s: Chloe Chamberland
Fully Patched Version: ​1.2.6

In addition to the above outlined vulnerability, the method in which 2FA back-up code authentication was handled made it possible for attackers to log in if they were able to brute force a back-up code for a user or compromise it via other means such as SQL Injection.

Diving deeper, the plugin registered the validate_2fabc_login() function which validated the supplied backup code through the validate_backup_login() function using the user supplied user ID from the sg-user-id parameter along with the back-up code supplied via the sgc2fabackupcode parameter. If the back-up code was found in the array of stored back-up codes for that user, then the function would use the wp_set_auth_cookie() function to set the authentication cookies for the supplied user ID. If that user ID belonged to an administrator, the attacker would effectively be logged in as an administrator.

640641642643644645646647648649650651652653654655656657658</pre><pre>public function validate_2fabc_login() {    $result = $this->validate_backup_login( wp_unslash( $_POST['sgc2fabackupcode'] ), wp_unslash( $_POST['sg-user-id'] ) ); // phpcs:ignore    // Check the result of the authtication.   if ( false === $result ) {      $this->load_form(         wp_unslash( $_POST['sg-user-id'] ), // phpcs:ignore         array(            'template' => '2fa-login-backup-code.php',            'action'   => esc_url( add_query_arg( 'action', 'sgs2fabc', wp_login_url() ) ),            'error'    => esc_html__( 'Invalid backup code!', 'sg-security' ),         )      );   }    // Set the auth cookie.   wp_set_auth_cookie( wp_unslash( $_POST['sg-user-id'] ), intval( wp_unslash( $_POST['rememberme'] ) ) ); // phpcs:ignore

Similarly to the previous vulnerability, the issue here is that there was no true identity validation for the authentication, which indicates an authorization weakness. The function performed no checks to verify that a user had previously authenticated prior to entering the 2FA back-up code, and as such they did not need to legitimately log in prior to being logged in while using a back-up code. This meant that there were no checks to validate that a user was authorized to use a back-up code to perform the second factor of authentication that would log them in.

Though the risk in this case is lower, the backup codes were 8 digits long and entirely numeric, so an attacker could potentially brute force one of the 8 back-up codes and automatically be logged in without knowing a username and password combination for an administrative user.

While this might not be practical to attempt on most servers, a patient adversary attacking a well-provisioned server capable of processing a large number of requests at once would have a high chance of eventually gaining access unless the brute force attempts were stopped by another mechanism, such as the Wordfence plugin’s built-in brute force protection or rate limiting rules.

Further, this vulnerability could be used in conjunction with another vulnerability, such as SQL injection, where an attacker would be able to compromise the 2FA back-up codes that are stored in the database and then subsequently use them to log in without needing to crack the password of an administrative user which would likely be significantly stronger. In both cases, the impact would be significant as an attacker could gain administrative access to the compromised WordPress site which could be used for complete site infection.

An Important Security Reminder: Audit Your WordPress Site’s User Accounts

This vulnerability serves as an important reminder to audit your WordPress site’s user accounts. This means identifying any old and unused user accounts that have been inactive for an extended period of time and/or are likely to never be used again and removing them or completely stripping the user’s capabilities. This vulnerability could easily be exploited on sites where the site owner enabled 2FA, which is required for all administrative and editor users, and had old inactive administrative/editor user accounts on the site that an attacker could target. Considering accounts that are no longer active are unlikely to log in after the 2FA setting has been enabled, the 2FA for those accounts would not be configured leaving the site ripe for exploitation by any attackers exploiting the vulnerability.

A situation involving a similar security issue involving insecure 2FA was reported by the CISA in conjunction with the FBI a few weeks ago, around the same time we discovered this vulnerability. In the Cybersecurity Advisory (CSA) by the CISA, it was disclosed that a threat actor was able to successfully brute force a dormant user’s account credentials, and due to a default 2FA setting that would allow dormant users to re-enroll a new device for 2FA during the next active log in, the threat actor was able to connect the 2FA secret to their own account and retrieve the code needed to pass the second factor of authentication. Once the threat actor gained initial access to the system they were able to escalate their privileges by exploiting the “PrintNightmare” vulnerability, which you can read more about here, and steal sensitive information from across the organization’s network. This goes to show that attackers are definitely looking for flaws like the one disclosed today to exploit and any site can be a target. As such, it’s important to actively maintain and validate the security of your site through regularly performed professional or self-conducted security audits and penetration tests, which is a service Wordfence provides. Security is an active and continuous process.

Timeline

March 10, 2022 – Conclusion of the plugin analysis that led to the discovery of two Authentication Bypass Vulnerabilities in the “SiteGround Security” WordPress plugin. We deploy firewall rules to protect Wordfence PremiumWordfence Care, and Wordfence Response users. We send the full disclosure details to SiteGround in accordance with their responsible disclosure policy.
March 11, 2022 – The CTO of SiteGround responds indicating that a patch has been released. We review the patch and inform them that it is insufficient. They release an additional patch.
March 11, 2022 – A patched version of the plugin is released as version 1.2.3. We suggest further security enhancements to the functionality.
March 16, 2022 – An update is made that reduces the security of the 2FA functionality, we follow-up again to suggest better security enhancements to the functionality. The CTO assures us that they are working on it.
April 6, 2022 – A fully and optimally patched version of the plugin is released as version 1.2.6.
April 9, 2022 – Wordfence Free users receive the firewall rules.

Conclusion

In today’s post, we detailed a flaw in the “SiteGround Security” plugin that made it possible for unauthenticated attackers to gain access to administrative user accounts in instances where 2-Factor Authentication was enabled, though not yet fully set up, and in cases where an attacker could successfully brute force a back-up code. This could easily be used by an attacker to completely compromise a site. This flaw has been fully patched in version 1.2.6.

We strongly recommend ensuring that your site has been updated to the latest patched version of “SiteGround Security”, which is version 1.2.6 at the time of this publication.

Wordfence PremiumWordfence Care, and Wordfence Response received a set of firewall rules on March 10, 2022 to provide protection against attempts by attackers to exploit this vulnerability. Wordfence Free users will receive this same protection 30 days later on April 9, 2022

If you believe your site has been compromised as a result of this vulnerability or any other vulnerability, we offer Incident Response services via Wordfence Care. If you need your site cleaned immediately, Wordfence Response offers the same service with 24/7/365 availability and a 1-hour response time. Both Wordfence Care and Wordfence Response include hands-on security support that provide you with ongoing assistance from our incident response team, should you need it.

Special thanks to the team at SiteGround, for responding swiftly and working quickly to get a patch out to protect their customers and working to further secure the 2FA component. 

Source :
https://www.wordfence.com/blog/2022/04/critical-authentication-bypass-vulnerability-patched-in-siteground-security-plugin/

PHP Object Injection Vulnerability in Booking Calendar Plugin

On April 18, 2022, the Wordfence Threat Intelligence team initiated the responsible disclosure process for an Object Injection vulnerability in the Booking Calendar plugin for WordPress, which has over 60,000 installations.

We received a response the same day and sent over our full disclosure early the next day, on April 19, 2022. A patched version of the plugin, 9.1.1, was released on April 21, 2022.

We released a firewall rule to protect Wordfence PremiumWordfence Care, and Wordfence Response customers on April 18, 2022. Sites still running the free version of Wordfence will receive the same protection on May 18, 2022. We recommend that all Wordfence users update to the patched version, 9.1.1, as soon as possible as this will entirely eliminate the vulnerability.


Description: Insecure Deserialization/PHP Object Injection
Affected Plugin: Booking Calendar
Plugin Slug: booking
Plugin Developer: wpdevelop, oplugins
Affected Versions: <= 9.1
CVE ID:CVE-2022-1463
CVSS Score: 8.1(High)
CVSS Vector:CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
Researcher/s: Ramuel Gall
Fully Patched Version: 9.1.1

The Booking Calendar plugin allows site owners to add a booking system to their site, which includes the ability to publish a flexible timeline showing existing bookings and openings using a shortcode, [bookingflextimeline].

The flexible timeline includes the ability to configure viewing preferences and options when viewing the published timeline. Some of these options were passed in PHP’s serialized data format, and unserialized by the define_request_view_params_from_params function in core/timeline/v2/wpbc-class-timeline_v2.php.

An attacker could control the serialized data via several methods:

  1. If a timeline was published, an unauthenticated attacker could obtain the nonce required to send an AJAX request with the action set to WPBC_FLEXTIMELINE_NAV and a timeline_obj[options] parameter set to a serialized PHP object.
  2. Any authenticated attacker could use the built-in parse-media-shortcode AJAX action to execute the [bookingflextimeline] shortcode, adding an options attribute in the shortcode set to a serialized PHP object. This would work even on sites without a published timeline.
  3. An attacker with contributor-level privileges or above could also embed the [bookingflextimeline] shortcode containing a malicious options attribute into a post and execute it by previewing it, or obtain the WPBC_FLEXTIMELINE_NAV nonce by previewing the [bookingflextimeline] shortcode and then using method #1.

Any time an attacker can control data that is unserialized by PHP, they can inject a PHP object with properties of their choice. If a “POP Chain” is also present, it can allow an attacker to execute arbitrary code, delete files, or otherwise destroy or gain control of a vulnerable website. Fortunately, no POP chain was present in the Booking plugin, so an attacker would require some luck as well as additional research in order to exploit this vulnerability. Nonetheless, POP chains appear in a number of popular software libraries, so many sites could still be exploited if another plugin using one of these libraries is installed.

Despite the lack of a POP chain and the complexity involved in exploitation, the potential consequences of a successful attack are so severe that object injection vulnerabilities still warrant a “High” CVSS score. We’ve written about Object Injection vulnerabilities in the past if you’d like to find out more about how they work.

Timeline

April 18, 2022 – We release a firewall rule to protect Wordfence Premium, Care, and Response customers. We initiate the disclosure process. The plugin developer verifies the contact method.
April 19, 2022 – We send the full disclosure to the plugin developer.
April 21, 2022 – A patched version of the Booking Calendar plugin, 9.1.1, is released.
May 18, 2022 – The firewall rule becomes available to free Wordfence users.

Conclusion

In today’s post, we covered an Object Injection vulnerability in the Booking Calendar plugin. Wordfence PremiumWordfence Care, and Wordfence Response customers are fully protected from this vulnerability. Sites running the free version of Wordfence will receive the same protection on May 18, 2022, but have the option of updating the Booking calendar plugin to the patched version 9.1.1 to eliminate the risk immediately.

If you believe your site has been compromised as a result of this vulnerability or any other vulnerability, we offer Incident Response services via Wordfence Care. If you need your site cleaned immediately, Wordfence Response offers the same service with 24/7/365 availability and a 1-hour response time. Both these products include hands-on support in case you need further assistance.

Source :
https://www.wordfence.com/blog/2022/04/php-object-injection-in-booking-calendar-plugin/

10 essential Linux tools for network and security pros

Picking just 10 Linux open source security tools isn’t easy, especially when network professionals and security experts have dozens if not several hundred tools available to them.

There are different sets of tools for just about every task—network tunneling, sniffing, scanning, mapping. And for every environment—Wi-Fi networks, Web applications, database servers.

We consulted a group of experts (Vincent Danen, vice president of product security, RedHat; Casey Bisson, head of product growth, BluBracket; Andrew Schmitt, a member of the BluBracket Security Advisory Panel; and John Hammond, senior security researcher, Huntress) to develop this list of must-have Linux security tools.Linux security: Cmd provides visibility, control over user activity

Most of them listed here are free and open source. The two that cost money are Burp Suite Pro and Metasploit Pro. Both are considered indispensible in any enterprise program of vulnerability assessment and penetration testing.

1. Aircrack-ng for Wi-Fi network security

Aircrack-ng is a suite of tools for security testing wireless networks and Wi-Fi protocols. Security pros use this wireless scanner for network administration, hacking, and penetration testing. It focuses on:

  • Monitoring: Packet capture and export of data to text files for further processing by third-party tools.
  • Attacking: Replay attacks, deauthentication, fake access points via packet injection.
  • Testing: Checking Wi-Fi cards and driver capabilities.
  • Cracking: WEP and WPA PSK (WPA 1 and 2).

According to the Aircrack-ng website, all tools are command line, which allows for heavy scripting. The tool works primarily on Linux, but also Windows, macOS, FreeBSD, OpenBSD, NetBSD, as well as Solaris and even eComStation 2.

Cost: Free open-source software.Learn how IT can harness the power and promise of 5G in this FREE CIO Roadmap Report. Download now! ]

2. Burp Suite Pro targets web-app security

Burp Suite Professional is a web application testing suite used for assessing online website security. Burp Suite operates as a local proxy solution that lets security pros decrypt, observe, manipulate, and repeat web requests (HTTP/websockets) and responses between a web server and a browser.

The tool comes with a passive scanner that lets security pros map out the site and check for potential vulnerabilities as they manually crawl the site. The Pro version also offers a very useful active web vulnerability scanner that allows for further vulnerability detection. Burp Suite is extensible via plugins, so security pros can develop their own enhancements. The Pro version has the most robust plugins, making Burp a multi-tool suite of very useful web attack tools. 

Cost: The professional version costs $399. There’s also an enterprise version that enables multiple concurrent scans that can be used by application development teams.

3. Impacket for pen testing network protocols

This collection of tools is essential for pen testing network protocols and services. Developed by SecureAuth, Impacket operates as a collection of Python classes for working with network protocols. Impacket focuses on providing low-level access to packets, and for some protocols such as SMB1-3 and MSRPC, the protocol implementation itself. Security pros can construct packets from scratch, as well as parsed from raw data. The object-oriented API makes it fairly easy to work with deep hierarchies of protocols. Impacket supports the following protocols:

  • ethernet, Linux;
  • IP, TCP, UDP, ICMP, IGMP, ARP;
  • IPv4 and IPv6;
  • NMB and SMB1, SMB2 and SMB3;
  • MSRPC Version 5, over different transports: TCP, SMB/TCP, SMB/NetBIOS and HTTP;
  • Plain, NTLM and Kerberos authentications, using password/hashes/tickets/keys;
  • Portions of TDS (MSSQL) and LDAP protocol implementation

Cost: Free as long as the user gives SecureAuth credit. Impacket is provided under a slightly modified version of the Apache Software License. Security pros can review it here and compare it to the official Apache Software License.

4. Metasploit: A super-tool for detecting exploits

An exploitation framework from Rapid7 that is used for general penetration testing and vulnerability assessments, security pros consider it a “super tool” that contains working versions of nearly every known exploit in existence.

Metasploit enables security pros to scan networks and endpoints (or import NMAP scan results) for vulnerabilities and then perform any possible exploitation automatically to takeover systems. 

According to a recent Rapid7 blog post, capturing credentials has been a critical and early phase in the playbook of many security testers. Metasploit has facilitated this for years with protocol-specific modules, all under the auxiliary/server/capture function. Security pros can start and configure each of these modules individually, but now there’s a capture plug-in that streamlines the process.

Cost: Metasploit Pro, which comes with commercial support from Rapid7, starts at $12,000 per year, but there is also a free version.

5. NCAT probes network connectivity

From the makers of NMAP, NCAT is a successor to the popular NETCAT. It facilitates reading and writing data over a network from the command line, but adds features such as SSL encryption. Security experts say NCAT has become crucial for hosting TCP/UDP clients and servers to send/receive arbitrary data from victim and attacking systems. It’s also a popular tool for establishing a reverse shell or exfiltrating data. NCAT was written for the NMAP Project and stands as the culmination of the currently splintered family of NETCAT incarnations. It’s designed as a reliable back-end tool to execute network connectivity to other apps and users. NCAT works with IPv4 and IPv6 and offers the ability to chain NCATs together, redirect TCP, UDP, and SCTP ports to other sites, as well as SSL support.

Cost: Free open source tool.

6. NMAP scans and maps networks

NMAP is a command-line network scanning tool that uncovers accessible ports on remote devices. Many security pros consider NMAP the most important and effective tool on our list— the tool is so powerful it’s become obligatory for pen testers. NMAP’s flagship feature is scanning network ranges for active servers, and then all of its ports for operating system, service and version discovery. Via NMAP’s scripting engine, it then performs further automated vulnerability detection and exploitation against any service it finds. NMAP supports dozens of advanced techniques for mapping out networks filled with IP filters, firewalls, routers, and other obstacles. This includes many TCP and UDP port scanning mechanism, OS detection, version detection, and ping sweeps. Security pros have used NMAP to scan large networks of hundreds of thousands of machines.

Cost: Free open source tool.

7. ProxyChains for network tunneling

The de facto standard for network tunneling, ProxyChains lets security pros issue proxy commands from their attacking Linux machine through various compromised machines to traverse network boundaries and firewalls, while evading detection. They use it when they want to use the Linux operating system to hide their identity on a network. ProxyChains routes the TCP traffic of pen testers through the following proxies: TOR, SOCKS, and HTTP. TCP reconnaissance tools such as NMAP are compatible – and the TOR network is used by default. Security pros also use ProxyChains to evade firewalls and in IDS/IPS detecting.

Cost: Free open source tool. 

8. Responder simulates attacks on DNS systems

Responder is an NBT-NS (NetBIOS Name Service), LLMNR (Link-Local Multicast Name Resolution) and mDNS (multicast DNS) poisoner that is used by penetration testers to simulate an attack aimed at stealing credentials and other data during the name resolution process when no record is found by the DNS server.

The latest version of Responder (v. 3.1.1.0) comes with full IPv6 support by default, which lets security pros perform more attacks on IPv4 and IPv6 networks. This is important because Responder had lacked IPv6 support and therefore missed several attack paths. This was especially true on IPv6-only networks or even mixed IPv4/IPv6 networks, particularly when you take into consideration that IPv6 has become the preferred network stack on Windows.

Cost: Free open source software.

9. sqlmap looks for SQL injection flaws in database servers

sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws that could be used to take over database servers. The tool comes with a powerful detection engine, and boasts many features for penetration testing including database fingerprinting, accessing the underlying file system and executing commands on the operating system via out-of-band connections.

Security pros say it helps them automate SQL discovery and injection attacks against all major SQL back-ends. It supports a wide range of database servers, including MySQL, Oracle, PostgreSQL, Microsoft SQL Server, Microsoft Access, IBM DB2, SQLite, Firebird, Sybase, SAP MaxDB and HSQLDB. It also supports various kinds of SQL injection attacks, including boolean-based blind, time-based blind, error-based, stacked queries, and out-of-band.

Cost: Free open source software.

10. Wireshark: Popular network protocol analyzer

Wireshark, which has been around since 1998, is a network protocol analyzer, commonly called a network interface sniffer. The latest update is Version 3.6.3.

Wireshark lets security pros observe a device’s network behavior to see which other devices it is communicating with (IP addresses) and why. In some older network topologies, network requests from other devices pass through the network interface of a security pro’s device, allowing them to observe the entire network’s traffic, not just their own. Security experts say it’s a great tool to figure out where the DNS servers and other services are for further exploitation of the network. Wireshark runs on most computing platforms, including Windows, MacOs, Linux, and Unix.

Cost: Free open source software.Join the Network World communities on Facebook and LinkedIn to comment on topics that are top of mind.

Source :
https://www.networkworld.com/article/3656629/10-essential-linux-security-tools-for-network-professionals-and-security-practitioners.html