From 689418777732d1b0d363433ed8870af1fb4863c4 Mon Sep 17 00:00:00 2001 From: Camille Barneaud Date: Wed, 21 Nov 2012 22:16:45 +0100 Subject: [PATCH] Add 3 apps Improve a bit json #184 Add AsciiDoc #185 Add phpwind #186 Add Lockerz Share --- README.md | 278 +++++++++--------- drivers/bookmarklet/images/icons/AsciiDoc.png | Bin 0 -> 260 bytes .../images/icons/Lockerz Share.png | Bin 0 -> 270 bytes drivers/bookmarklet/images/icons/phpwind.png | Bin 0 -> 496 bytes drivers/bookmarklet/json | 138 +++++---- drivers/chrome/apps.json | 138 +++++---- drivers/chrome/images/icons/AsciiDoc.png | Bin 0 -> 260 bytes drivers/chrome/images/icons/Lockerz Share.png | Bin 0 -> 270 bytes drivers/chrome/images/icons/phpwind.png | Bin 0 -> 496 bytes drivers/firefox-jetpack/data/apps.json | 138 +++++---- .../firefox-jetpack/images/icons/AsciiDoc.png | Bin 0 -> 260 bytes .../images/icons/Lockerz Share.png | Bin 0 -> 270 bytes .../firefox-jetpack/images/icons/phpwind.png | Bin 0 -> 496 bytes drivers/firefox/content/apps.json | 138 +++++---- .../firefox/skin/images/icons/AsciiDoc.png | Bin 0 -> 260 bytes .../skin/images/icons/Lockerz Share.png | Bin 0 -> 270 bytes drivers/firefox/skin/images/icons/phpwind.png | Bin 0 -> 496 bytes drivers/html/apps.json | 138 +++++---- drivers/html/images/icons/AsciiDoc.png | Bin 0 -> 260 bytes drivers/html/images/icons/Lockerz Share.png | Bin 0 -> 270 bytes drivers/html/images/icons/phpwind.png | Bin 0 -> 496 bytes drivers/php/apps.json | 138 +++++---- share/apps.json | 138 +++++---- share/images/icons/AsciiDoc.png | Bin 0 -> 260 bytes share/images/icons/Lockerz Share.png | Bin 0 -> 270 bytes share/images/icons/phpwind.png | Bin 0 -> 496 bytes 26 files changed, 678 insertions(+), 566 deletions(-) create mode 100644 drivers/bookmarklet/images/icons/AsciiDoc.png create mode 100644 drivers/bookmarklet/images/icons/Lockerz Share.png create mode 100644 drivers/bookmarklet/images/icons/phpwind.png create mode 100644 drivers/chrome/images/icons/AsciiDoc.png create mode 100644 drivers/chrome/images/icons/Lockerz Share.png create mode 100644 drivers/chrome/images/icons/phpwind.png create mode 100644 drivers/firefox-jetpack/images/icons/AsciiDoc.png create mode 100644 drivers/firefox-jetpack/images/icons/Lockerz Share.png create mode 100644 drivers/firefox-jetpack/images/icons/phpwind.png create mode 100644 drivers/firefox/skin/images/icons/AsciiDoc.png create mode 100644 drivers/firefox/skin/images/icons/Lockerz Share.png create mode 100644 drivers/firefox/skin/images/icons/phpwind.png create mode 100644 drivers/html/images/icons/AsciiDoc.png create mode 100644 drivers/html/images/icons/Lockerz Share.png create mode 100644 drivers/html/images/icons/phpwind.png create mode 100644 share/images/icons/AsciiDoc.png create mode 100644 share/images/icons/Lockerz Share.png create mode 100644 share/images/icons/phpwind.png diff --git a/README.md b/README.md index 58b1c080d..999048349 100644 --- a/README.md +++ b/README.md @@ -1,139 +1,139 @@ -Wappalyzer -========== - -[Wappalyzer](http://wappalyzer.com/) is a -[browser extension](http://wappalyzer.com/download) that uncovers the -technologies used on websites. It detects -[content management systems](http://wappalyzer.com/categories/cms), -[web shops](http://wappalyzer.com/categories/web-shops), -[web servers](http://wappalyzer.com/categories/web-servers), -[JavaScript frameworks](http://wappalyzer.com/categories/javascript-frameworks), -[analytics tools](http://wappalyzer.com/categories/analytics) and -[many more](http://wappalyzer.com/applications). - - -Contributing ------------- - -**Adding a new application** - -* Edit `share/apps.json` -* Add a 16x16 PNG image to `share/images/icons` matching the application name. -* Provide the URL to the application's website when submitting a pull request. - -Example: - -```javascript -"Application Name": { - cats: [ "1" ], - headers: { "X-Powered-By": "Application Name" }, - url: ".+\\.application-name\\.com", - html: "]application-name\\.css", - meta: { "generator": "Application Name" }, - script: "application-name\\.js", - env: "ApplicationName", - implies: [ "PHP" ] - } -``` - - -Drivers -------- - -Wappalyzer is multi-platform. The main code lives in the `share/` directory and -platform specific code in `drivers/`. The sections below describe how to set up -a development environment for the various existing drivers. - -To keep files synchronised between drivers, run the `links.sh` script (UNIX-like -systems only, Windows users can use `links.cmd`.) - - -**Mozilla Firefox** - -* Place a file called `wappalyzer@crunchlabz.com` in the extensions directory in - your [profile folder](http://kb.mozillazine.org/Profile_folder_-_Firefox) - (`~/.mozilla/firefox/xxxxx.default/extensions/` on Linux) containing the full - path to `drivers/firefox`. -* Restart Firefox -* Navigate to `about:config` and set `extensions.wappalyzer.debug` to `true`. -* Ctrl+Shift+J brings up a console for debugging. - - -**Google Chrome** - -The Chrome version needs some love, if anyone wants to pick it up. It's -currently not as feature-rich as the Firefox add-on (although partially due to -API limitations.) - -* Navigate to `about:extensions` -* Check "Developer mode" -* Click "Load unpacked extension..." -* Select `drivers/chrome/` - - -**Bookmarklet** - -Beta version available for testing at [wappalyzer.com/bookmarklet](http://wappalyzer.com/bookmarklet). - - -**HTML** - -The HTML driver serves purely as an example. It's a good starting point if you -want to port Wappalyzer to a new platform. - -* Navigate to `drivers/html/` - - -**PHP** - -The PHP driver requires the [V8js](http://php.net/manual/en/book.v8js.php) class. Installing V8js -using [PECL](http://pecl.php.net/) on Debian Linux or Ubuntu should be very straight forward: - -* `# aptitude install php5-dev php-pear libv8-dev` -* `# pecl install channel://pecl.php.net/v8js-0.1.3` -* `# echo "extension=v8js.so" > /etc/php5/conf.d/v8js.ini` - -Runnning Wappalyzer from the command line: - -`$ php drivers/php/index.php wappalyzer.com` - -Running Wappalyzer inside a PHP script: - -```php -require('WappalyzerException.php'); -require('Wappalyzer.php'); - -$wappalyzer = new Wappalyzer($url); - -$detectedApps = $wappalyzer->analyze(); -``` - - -**Mozilla Jetpack** - -Work in progress, experimental. See https://wiki.mozilla.org/Jetpack. - - -Unofficial drivers and ports ----------------------------- - -**Python** - -A Python driver by [@ebradbury](https://github.com/ebradbury). - -https://github.com/ebradbury/Wappalyzer/tree/master/drivers/python - - -**Ruby** - -A Ruby port by [@skroutz](https://github.com/skroutz). - -https://github.com/skroutz/wappalyzer-ruby - - -Screenshot ----------- - -Wappalyzer on Firefox: - -![Screenshot](http://wappalyzer.com/sites/default/themes/wappalyzer/images/installed.png) +Wappalyzer +========== + +[Wappalyzer](http://wappalyzer.com/) is a +[browser extension](http://wappalyzer.com/download) that uncovers the +technologies used on websites. It detects +[content management systems](http://wappalyzer.com/categories/cms), +[web shops](http://wappalyzer.com/categories/web-shops), +[web servers](http://wappalyzer.com/categories/web-servers), +[JavaScript frameworks](http://wappalyzer.com/categories/javascript-frameworks), +[analytics tools](http://wappalyzer.com/categories/analytics) and +[many more](http://wappalyzer.com/applications). + + +Contributing +------------ + +**Adding a new application** + +* Edit `share/apps.json` and use a validator like http://jsonformatter.curiousconcept.com/ to verify your modification. +* Add a 16x16 PNG image to `share/images/icons` matching the application name and compressed with a loss-less tools like http://www.smushit.com/ or optipng http://optipng.sourceforge.net/. +* Provide the URL to the application's website when submitting a pull request. + +Example: + +```javascript +"Application Name": { + cats: [ "1" ], + headers: { "X-Powered-By": "Application Name" }, + url: ".+\\.application-name\\.com", + html: "]application-name\\.css", + meta: { "generator": "Application Name" }, + script: "application-name\\.js", + env: "ApplicationName", + implies: [ "PHP" ] + } +``` + + +Drivers +------- + +Wappalyzer is multi-platform. The main code lives in the `share/` directory and +platform specific code in `drivers/`. The sections below describe how to set up +a development environment for the various existing drivers. + +To keep files synchronised between drivers, run the `links.sh` script (UNIX-like +systems only, Windows users can use `links.cmd`.) + + +**Mozilla Firefox** + +* Place a file called `wappalyzer@crunchlabz.com` in the extensions directory in + your [profile folder](http://kb.mozillazine.org/Profile_folder_-_Firefox) + (`~/.mozilla/firefox/xxxxx.default/extensions/` on Linux) containing the full + path to `drivers/firefox`. +* Restart Firefox +* Navigate to `about:config` and set `extensions.wappalyzer.debug` to `true`. +* Ctrl+Shift+J brings up a console for debugging. + + +**Google Chrome** + +The Chrome version needs some love, if anyone wants to pick it up. It's +currently not as feature-rich as the Firefox add-on (although partially due to +API limitations.) + +* Navigate to `about:extensions` +* Check "Developer mode" +* Click "Load unpacked extension..." +* Select `drivers/chrome/` + + +**Bookmarklet** + +Beta version available for testing at [wappalyzer.com/bookmarklet](http://wappalyzer.com/bookmarklet). + + +**HTML** + +The HTML driver serves purely as an example. It's a good starting point if you +want to port Wappalyzer to a new platform. + +* Navigate to `drivers/html/` + + +**PHP** + +The PHP driver requires the [V8js](http://php.net/manual/en/book.v8js.php) class. Installing V8js +using [PECL](http://pecl.php.net/) on Debian Linux or Ubuntu should be very straight forward: + +* `# aptitude install php5-dev php-pear libv8-dev` +* `# pecl install channel://pecl.php.net/v8js-0.1.3` +* `# echo "extension=v8js.so" > /etc/php5/conf.d/v8js.ini` + +Runnning Wappalyzer from the command line: + +`$ php drivers/php/index.php wappalyzer.com` + +Running Wappalyzer inside a PHP script: + +```php +require('WappalyzerException.php'); +require('Wappalyzer.php'); + +$wappalyzer = new Wappalyzer($url); + +$detectedApps = $wappalyzer->analyze(); +``` + + +**Mozilla Jetpack** + +Work in progress, experimental. See https://wiki.mozilla.org/Jetpack. + + +Unofficial drivers and ports +---------------------------- + +**Python** + +A Python driver by [@ebradbury](https://github.com/ebradbury). + +https://github.com/ebradbury/Wappalyzer/tree/master/drivers/python + + +**Ruby** + +A Ruby port by [@skroutz](https://github.com/skroutz). + +https://github.com/skroutz/wappalyzer-ruby + + +Screenshot +---------- + +Wappalyzer on Firefox: + +![Screenshot](http://wappalyzer.com/sites/default/themes/wappalyzer/images/installed.png) \ No newline at end of file diff --git a/drivers/bookmarklet/images/icons/AsciiDoc.png b/drivers/bookmarklet/images/icons/AsciiDoc.png new file mode 100644 index 0000000000000000000000000000000000000000..8b04896aa018e280288bc173308ce2da7039e62f GIT binary patch literal 260 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px`!7 z7sn8b(@Q5i3LRG9aGgK%PIvw07iYhulwDLzo@#P=O7G$akDF%{ottZ)!*0>{_~O%` zQ_>6*f|wMZ_o!s8eQvku-u*+{Z$6x^s`ygqL!i@?o7X@3Tw=Q6c0fjj)7V<{YLvL^ zZ=Wv-491J66sbwnb~i~TrER(9bTeM`jDo(a(BAT>?C)Gk6AtUmelfF7c9pB67pG_U z6~mLc{Cn-TWJFyH&jWQ$pqzmz=9WA24{j`njxg HN@xNA>}zU0 literal 0 HcmV?d00001 diff --git a/drivers/bookmarklet/images/icons/Lockerz Share.png b/drivers/bookmarklet/images/icons/Lockerz Share.png new file mode 100644 index 0000000000000000000000000000000000000000..8ea656e3672c1294aed6299e941de301baf8f7c9 GIT binary patch literal 270 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`>x4c3dw2gAEB-H6@t-g6 zzk2O|m74#ong6+R{`2Ji7cBVClJTE2`#*cuf98z;OzHm_)BghjLmG&bd$?W~XpTrp zkY6x}j|Le0{htd0<#Rn<977~7=k`Z(9WdZ<@!kCX>Ye}Vt_ElvIoE&YaB54cjo@7! zy?Z(hx$4=<45#bP1-?#jNpbwsv3ILnyMVy`V7D_XxdjC#Yj+%7s^K72v{PXHq@}Hn vxj$B2tuN?VvGms)Ngvnn^SZ+OzBfnmJFMbezKj1L$YBhgu6{1-oD!M<;YxWW literal 0 HcmV?d00001 diff --git a/drivers/bookmarklet/images/icons/phpwind.png b/drivers/bookmarklet/images/icons/phpwind.png new file mode 100644 index 0000000000000000000000000000000000000000..510dc2b891444d7fb6b7c3dbb712502237c1087f GIT binary patch literal 496 zcmV4qh>tvXojvvjl4p} zV@4B(2zjJQ7W3!(a&Ol)k*|K8bHDHW|KI7HdxZE5yRRHmr+NQ^G(r|zPm4IAW-U;U z+t+RQ9xXp=vW5`PZ&z>yS~0SlkLi;Nh2Z-GLZJ{tb#+Z<{4fIoU*UgRU=#CEF{3r0 zoXuMa_jMP%kF&T7?t_{u1{6O9&T&MCzc!*4>``pLr*EXP$4z3wCoZRKKktAIPNT^ev7^!^a}U)AeBG%qKj&6$dJXC`dEQZ}GN zrP^PJy16K*S@Dgs0gc*PI7E##5^Ch@G;Zjit%XB0&ZmD%(BDU)cNG39CN00nI(r&) m<_JdKeyt^5$%TV7r2PQT4B3W}m5eU{0000]+Cargo feed", "implies": [ "PHP" ] @@ -250,7 +254,8 @@ }, "Chamilo": { "cats": [ 21 ], - "meta": { "generator": "Chamilo" }, "headers": { "X-Powered-By": "Chamilo" }, + "meta": { "generator": "Chamilo" }, + "headers": { "X-Powered-By": "Chamilo" }, "implies": [ "PHP" ] }, "Chartbeat": { @@ -259,7 +264,8 @@ }, "Cherokee": { "cats": [ 22 ], - "headers": { "Server": "Cherokee" } }, + "headers": { "Server": "Cherokee" } + }, "CKEditor": { "cats": [ 24 ], "env": "^CKEDITOR$", @@ -314,7 +320,7 @@ "cats": [ 1 ], "script": "concrete/js/", "meta": { "generator": "concrete5" }, - "env": "CCM_IMAGE_PATH", + "env": "^CCM_IMAGE_PATH$", "implies": [ "PHP" ] }, "Connect": { @@ -324,7 +330,7 @@ }, "Contao": { "cats": [ 1, 6 ], - "html": "(|]+(typolight|contao).css)", + "html": "(|]+(typolight|contao)\\.css)", "implies": [ "PHP" ] }, "Contenido": { @@ -372,7 +378,7 @@ }, "Crazy Egg": { "cats": [ 10 ], - "env": "CE2", + "env": "^CE2$", "script": "cetrk\\.com/pages/scripts/\\d+/\\d+\\.js" }, "Cross Pixel": { @@ -382,7 +388,7 @@ }, "CS Cart": { "cats": [ 6 ], - "env": "fn_compare_strings", + "env": "^fn_compare_strings$", "html": " Powered by (]+demandware.edgesuite", - "env": "^dwAnalytics" + "env": "^dwAnalytics$" }, "DHTMLX": { "cats": [ 12 ], @@ -455,7 +461,7 @@ "cats": [ 15 ], "script": "disqus_url", "html": "]+id=\\\"disqus_thread\\\"", - "env": "^DISQUS" + "env": "^DISQUS$" }, "Django": { "cats": [ 18 ], @@ -490,7 +496,7 @@ "meta": { "generator": "DotNetNuke" }, "headers": { "X-Compressed-By": "DotNetNuke", "Set-Cookie": "DotNetNukeAnonymous=.+" }, "html": "|]+(typolight|contao).css)", + "html": "(|]+(typolight|contao)\\.css)", "implies": [ "PHP" ] }, "Contenido": { @@ -372,7 +378,7 @@ }, "Crazy Egg": { "cats": [ 10 ], - "env": "CE2", + "env": "^CE2$", "script": "cetrk\\.com/pages/scripts/\\d+/\\d+\\.js" }, "Cross Pixel": { @@ -382,7 +388,7 @@ }, "CS Cart": { "cats": [ 6 ], - "env": "fn_compare_strings", + "env": "^fn_compare_strings$", "html": " Powered by (]+demandware.edgesuite", - "env": "^dwAnalytics" + "env": "^dwAnalytics$" }, "DHTMLX": { "cats": [ 12 ], @@ -455,7 +461,7 @@ "cats": [ 15 ], "script": "disqus_url", "html": "]+id=\\\"disqus_thread\\\"", - "env": "^DISQUS" + "env": "^DISQUS$" }, "Django": { "cats": [ 18 ], @@ -490,7 +496,7 @@ "meta": { "generator": "DotNetNuke" }, "headers": { "X-Compressed-By": "DotNetNuke", "Set-Cookie": "DotNetNukeAnonymous=.+" }, "html": "|]+(typolight|contao).css)", + "html": "(|]+(typolight|contao)\\.css)", "implies": [ "PHP" ] }, "Contenido": { @@ -372,7 +378,7 @@ }, "Crazy Egg": { "cats": [ 10 ], - "env": "CE2", + "env": "^CE2$", "script": "cetrk\\.com/pages/scripts/\\d+/\\d+\\.js" }, "Cross Pixel": { @@ -382,7 +388,7 @@ }, "CS Cart": { "cats": [ 6 ], - "env": "fn_compare_strings", + "env": "^fn_compare_strings$", "html": " Powered by (]+demandware.edgesuite", - "env": "^dwAnalytics" + "env": "^dwAnalytics$" }, "DHTMLX": { "cats": [ 12 ], @@ -455,7 +461,7 @@ "cats": [ 15 ], "script": "disqus_url", "html": "]+id=\\\"disqus_thread\\\"", - "env": "^DISQUS" + "env": "^DISQUS$" }, "Django": { "cats": [ 18 ], @@ -490,7 +496,7 @@ "meta": { "generator": "DotNetNuke" }, "headers": { "X-Compressed-By": "DotNetNuke", "Set-Cookie": "DotNetNukeAnonymous=.+" }, "html": "|]+(typolight|contao).css)", + "html": "(|]+(typolight|contao)\\.css)", "implies": [ "PHP" ] }, "Contenido": { @@ -372,7 +378,7 @@ }, "Crazy Egg": { "cats": [ 10 ], - "env": "CE2", + "env": "^CE2$", "script": "cetrk\\.com/pages/scripts/\\d+/\\d+\\.js" }, "Cross Pixel": { @@ -382,7 +388,7 @@ }, "CS Cart": { "cats": [ 6 ], - "env": "fn_compare_strings", + "env": "^fn_compare_strings$", "html": " Powered by (]+demandware.edgesuite", - "env": "^dwAnalytics" + "env": "^dwAnalytics$" }, "DHTMLX": { "cats": [ 12 ], @@ -455,7 +461,7 @@ "cats": [ 15 ], "script": "disqus_url", "html": "]+id=\\\"disqus_thread\\\"", - "env": "^DISQUS" + "env": "^DISQUS$" }, "Django": { "cats": [ 18 ], @@ -490,7 +496,7 @@ "meta": { "generator": "DotNetNuke" }, "headers": { "X-Compressed-By": "DotNetNuke", "Set-Cookie": "DotNetNukeAnonymous=.+" }, "html": "|]+(typolight|contao).css)", + "html": "(|]+(typolight|contao)\\.css)", "implies": [ "PHP" ] }, "Contenido": { @@ -372,7 +378,7 @@ }, "Crazy Egg": { "cats": [ 10 ], - "env": "CE2", + "env": "^CE2$", "script": "cetrk\\.com/pages/scripts/\\d+/\\d+\\.js" }, "Cross Pixel": { @@ -382,7 +388,7 @@ }, "CS Cart": { "cats": [ 6 ], - "env": "fn_compare_strings", + "env": "^fn_compare_strings$", "html": " Powered by (]+demandware.edgesuite", - "env": "^dwAnalytics" + "env": "^dwAnalytics$" }, "DHTMLX": { "cats": [ 12 ], @@ -455,7 +461,7 @@ "cats": [ 15 ], "script": "disqus_url", "html": "]+id=\\\"disqus_thread\\\"", - "env": "^DISQUS" + "env": "^DISQUS$" }, "Django": { "cats": [ 18 ], @@ -490,7 +496,7 @@ "meta": { "generator": "DotNetNuke" }, "headers": { "X-Compressed-By": "DotNetNuke", "Set-Cookie": "DotNetNukeAnonymous=.+" }, "html": "|]+(typolight|contao).css)", + "html": "(|]+(typolight|contao)\\.css)", "implies": [ "PHP" ] }, "Contenido": { @@ -372,7 +378,7 @@ }, "Crazy Egg": { "cats": [ 10 ], - "env": "CE2", + "env": "^CE2$", "script": "cetrk\\.com/pages/scripts/\\d+/\\d+\\.js" }, "Cross Pixel": { @@ -382,7 +388,7 @@ }, "CS Cart": { "cats": [ 6 ], - "env": "fn_compare_strings", + "env": "^fn_compare_strings$", "html": " Powered by (]+demandware.edgesuite", - "env": "^dwAnalytics" + "env": "^dwAnalytics$" }, "DHTMLX": { "cats": [ 12 ], @@ -455,7 +461,7 @@ "cats": [ 15 ], "script": "disqus_url", "html": "]+id=\\\"disqus_thread\\\"", - "env": "^DISQUS" + "env": "^DISQUS$" }, "Django": { "cats": [ 18 ], @@ -490,7 +496,7 @@ "meta": { "generator": "DotNetNuke" }, "headers": { "X-Compressed-By": "DotNetNuke", "Set-Cookie": "DotNetNukeAnonymous=.+" }, "html": "|]+(typolight|contao).css)", + "html": "(|]+(typolight|contao)\\.css)", "implies": [ "PHP" ] }, "Contenido": { @@ -372,7 +378,7 @@ }, "Crazy Egg": { "cats": [ 10 ], - "env": "CE2", + "env": "^CE2$", "script": "cetrk\\.com/pages/scripts/\\d+/\\d+\\.js" }, "Cross Pixel": { @@ -382,7 +388,7 @@ }, "CS Cart": { "cats": [ 6 ], - "env": "fn_compare_strings", + "env": "^fn_compare_strings$", "html": " Powered by (]+demandware.edgesuite", - "env": "^dwAnalytics" + "env": "^dwAnalytics$" }, "DHTMLX": { "cats": [ 12 ], @@ -455,7 +461,7 @@ "cats": [ 15 ], "script": "disqus_url", "html": "]+id=\\\"disqus_thread\\\"", - "env": "^DISQUS" + "env": "^DISQUS$" }, "Django": { "cats": [ 18 ], @@ -490,7 +496,7 @@ "meta": { "generator": "DotNetNuke" }, "headers": { "X-Compressed-By": "DotNetNuke", "Set-Cookie": "DotNetNukeAnonymous=.+" }, "html": "