Elbert Alias
|
523a605033
|
Merge pull request #2965 from burkybang/master
Corrected casing of "NetSuite"
|
5 years ago |
Elbert Alias
|
0abed130ee
|
Merge pull request #2963 from pdk2580/master
Added Fastspring ECP
|
5 years ago |
Elbert Alias
|
6d03a7afc7
|
Merge pull request #2961 from ohyongkyu/master
Added "Cafe24" e-commerce platform.
|
5 years ago |
Elbert Alias
|
0a44854144
|
Merge branch 'master' into master
|
5 years ago |
Elbert Alias
|
5df7958c6b
|
Merge pull request #2960 from duda-co/master
Add a stable HTML identifier for Duda
|
5 years ago |
Elbert Alias
|
47c2156734
|
Merge pull request #2955 from cberry216/master
Added support for ECP Loja Integrada (https://lojaintegrada.com.br/)
|
5 years ago |
Elbert Alias
|
ef779cb34a
|
Merge pull request #2953 from acavestro/livestory
Livestory
|
5 years ago |
Elbert Alias
|
cf782ceee7
|
Merge pull request #2951 from dmartinjs/patch-1
Remove Implies Angular for Ionic
|
5 years ago |
Elbert Alias
|
bba9122c97
|
Merge pull request #2948 from dougaitken/fix-woocommerce
Correct the WooCommerce entry
|
5 years ago |
Anthony PELLETIER
|
2f3e58887d
|
Fix Hotjar script regex
Remove the ^ token because somes site use full scheme
|
5 years ago |
Alexander Gängel
|
b07fdb9a13
|
Ecwid application is added
|
5 years ago |
Denis Wernert
|
33e75d90df
|
update Proximis product names
|
5 years ago |
Denis Wernert
|
22fb2c0d18
|
update generator meta for Proximis
|
5 years ago |
Denis Rechkunov
|
8e7ff332e2
|
Fix homepage link for `Catberry.js`
|
5 years ago |
CJ Patoilo
|
15a925262c
|
Update the regex of the Airform.io
|
5 years ago |
Lay
|
d3644cdb56
|
Fix tabspace
|
5 years ago |
Lay
|
6580f5271f
|
Update zh_TW translation
|
5 years ago |
Mahdi Abasi
|
72790f8f3d
|
Update apps.json
|
5 years ago |
Mahdi Abasi
|
0584121312
|
Update apps.json
|
5 years ago |
Sai Harika Punyamurthula
|
fb2d7a3c9a
|
corrected typo in headers for miva
|
5 years ago |
Sai Harika Punyamurthula
|
b87126f8e2
|
few more checks added to apps.json
|
5 years ago |
Mahdi Abasi
|
210e2515bf
|
nivsoft logo
|
5 years ago |
Sai Harika Punyamurthula
|
faee9d8e52
|
added miva icon
|
5 years ago |
Sai Harika Punyamurthula
|
06f5bf8b41
|
added miva detection. 1. Miva icon. 2. miva in apps.json
|
5 years ago |
Arash Khajelou
|
687f210887
|
Update Hinza Advanced CMS logo.
According to the updates done on the website
[hinzaco.com](https://hinzaco.com), the logo has been changed.
|
5 years ago |
Luca
|
79bbba9c01
|
Add also category 27 ("Programming languages") to the existing 12 ("JavaScript frameworks")
|
5 years ago |
unknown
|
deca435dce
|
commit on branch
|
5 years ago |
Luca
|
c1e831abb7
|
The compiler generate a variable "Elm" in the global space.
This variable usually has the methods "Elm.Main.init" (for Elm version 0.19) or "Elm.Main.embed" (for Elm verison 0.18 or erlier).
It can also be initialized with other methods, such as "Elm.SpecificMethod.init" but usually "Main" is the default.
"Elm" only as detection method can create false positive, being very short. So I gave it a confidence of 50%.
This detection misses all cases where Elm is wrapped in a "Self-Executing Anonymous Function". This is probably a common case, as it happens, for example, using Webpack, Parcel or other binders.
In this case I don't know any way to detect Elm, unless analysing the code itself.
I also added the detection of an Elm library, elm-ui, that is very popular and leave a signature in the rendered html. I used the regular expression
"<style>[\\s\\S]*\\.explain > \\.s[\\s\\S]*\\.explain > \\.ctr > \\.s"
I had to run the regex on multiple lines because the text is not on the same line of the opening <style> element. I think the metching string is quite unique and should not create false positives.
* Elm has 5.9k starts in Github https://github.com/elm/compiler
These are few examples of sites build in Elm
https://support.xapo.com/
https://unli.xyz/flights/
https://elmjapan.org/
https://odyssey.neophilus.net/
https://www.verwonderpaspoort.nl/verwonderwereld
https://cie.nl/?lang=en
http://weightybirds.com/
http://ivanschuetz.com/
https://justinmimbs.github.io/asteroids/
https://elm-lang.org/
https://login.account.rakuten.com/sso/authorize?client_id=rakuten_tw01&redirect_uri=https%3A%2F%2Fwww.rakuten.com.tw%2Fmember%2Fdelegate&response_type=code&scope=openid+profile+email#/sign_in
http://builtwithelm.co/
https://68kheart.work/efa/projects/
https://game.faithloewe.com/
https://fakeorbabe.com/
http://fap.work/
https://app.featureaudit.com/
https://www.reju.jp/
http://concourse.particle.io/
https://github.com/AliasIO/wappalyzer/pull/1782
https://github.com/AliasIO/wappalyzer/pull/1442
https://github.com/AliasIO/wappalyzer/pull/778
"Elm": {
"cats": [
12
],
"icon": "elm.svg",
"js": {
"Elm.Main.init": "\\;version:0.19",
"Elm.Main.embed": "\\;version:0.18",
"Elm": "\\;confidence:50",
},
"website": "https://elm-lang.org/"
},
"elm-ui": {
"cats": [
66
],
"icon": "elm.svg",
"implies": "Elm",
"html": "<style>[\\s\\S]*\\.explain > \\.s[\\s\\S]*\\.explain > \\.ctr > \\.s"
"website": "https://github.com/mdgriffith/elm-ui"
},
|
5 years ago |
Guillaume Douceron
|
0255630832
|
Update zone.js website
The zone.js repo has been moved to angular mono repo.
|
5 years ago |
Elbert Alias
|
a805ebce80
|
Fix error handling in NPM/Puppeteer
|
5 years ago |
Patryk Porabik
|
e19299b91b
|
Add GrandNode logo
|
5 years ago |
Patryk Porabik
|
f806b8a829
|
Add GrandNode
|
5 years ago |
Sam Verdyck
|
4a4c58943d
|
add CCV Shop
|
5 years ago |
mhdifirouzi
|
a5e968d457
|
Update messages.json
|
5 years ago |
mhdifirouzi
|
f1a906281a
|
Update messages.json
|
5 years ago |
Shoopalapa
|
2f50cd7b28
|
Add Tamago icon
|
5 years ago |
Shoopalapa
|
4bd4ee18d6
|
Add Tamago fingerprinting
|
5 years ago |
Shoopalapa
|
b3a06296ea
|
Added EKM icon
|
5 years ago |
Shoopalapa
|
37e5a9a7d0
|
Added EKM fingerprinting
|
5 years ago |
Elbert Alias
|
6ac9025bbc
|
Rename Hybris to SAP Commerce Cloud, remove content type check in NPM driver
|
5 years ago |
Elaine Anderson
|
269b15c301
|
added Irroba
|
5 years ago |
Elbert Alias
|
0d7f38ce51
|
Prevent in-page navigation in NPM/Puppeteer driver
|
5 years ago |
jonathangarelick
|
b43b2f02ff
|
Fix typo in bookmarklet
|
5 years ago |
q--
|
2cba43dd37
|
Add amCharts version detection
|
5 years ago |
Alexander Gängel
|
794528b68e
|
correct phpCMS
|
5 years ago |
Dae Kyung Park
|
c51499af3a
|
remove cafe24
|
5 years ago |
Elbert Alias
|
93acdd7d6f
|
Remove response code validation
|
5 years ago |
Dae Kyung Park
|
4b53d50cb2
|
added Fastspring
|
5 years ago |
Adam Smith
|
bf3ff34414
|
Corrected casing of "NetSuite"
|
5 years ago |
Dae Kyung Park
|
5974219ca2
|
added cafe24
|
5 years ago |