diff --git a/plupload.install b/plupload.install
old mode 100644
new mode 100755
index 68c2bfa..349c56a
--- a/plupload.install
+++ b/plupload.install
@@ -44,6 +44,18 @@ function plupload_requirements($phase) {
     }
 
     $requirements['plupload']['value'] = empty($installed_version) ? $t('Not found') : $installed_version;
+
+    if (file_exists(_plupload_library_path() . '/examples/upload.php')) {
+      $requirements['plupload_examples'] = array(
+        'title' => $t('Plupload example folder'),
+        'value' => $t('Example folder found'),
+        'description' => $t('Plupload library contains example files, these could constitute a security risk to your site as per <a href="!url">PSA-2011-02</a>. Please remove the !path folder immediately.', array(
+          '!url' => 'http://drupal.org/node/1189632',
+          '!path' => _plupload_library_path() . '/examples'
+        )),
+        'severity' => REQUIREMENT_ERROR
+      );
+    }
   }
 
   return $requirements;
