Fesch
|
7a80b02645
|
update melis platform
|
5 years ago |
Elbert Alias
|
80a25d81b9
|
Build v5.9.30
|
5 years ago |
Elbert Alias
|
f7d23b72b2
|
Merge pull request #2994 from agaengel/feature/ecwid
Ecwid application is added
|
5 years ago |
Elbert Alias
|
811ff2da5f
|
Merge pull request #2986 from mahdiabasi/mahdiabasi-patch-1
Add NivSoft Logo
|
5 years ago |
Elbert Alias
|
62a9c6604d
|
Merge pull request #2985 from pharika31/master
Added Miva detection
|
5 years ago |
Elbert Alias
|
9070c352b7
|
Merge pull request #2984 from a-khajelou/master
Update Hinza Advanced CMS logo.
|
5 years ago |
Elbert Alias
|
1167f38f4b
|
Merge pull request #2983 from hosina/master
add see5
|
5 years ago |
Elbert Alias
|
0d52b2221c
|
Merge pull request #2982 from lucamug/add-elm
Add Elm language detection
|
5 years ago |
Elbert Alias
|
f82649c7a3
|
Merge branch 'master' into add-grandnode
|
5 years ago |
Elbert Alias
|
e527359c61
|
Merge pull request #2978 from samverdyck/add-CCV-Shop
add CCV Shop
|
5 years ago |
Elbert Alias
|
1cb57e2aad
|
Merge pull request #2974 from Shoopalapa/Tamago-Support
Added Tamago detection
|
5 years ago |
Elbert Alias
|
bc515ddde9
|
Merge pull request #2973 from Shoopalapa/EKM-Support
Added Ekm detection
|
5 years ago |
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
|
0a44854144
|
Merge branch 'master' into master
|
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
|
bba9122c97
|
Merge pull request #2948 from dougaitken/fix-woocommerce
Correct the WooCommerce entry
|
5 years ago |
Alexander Gängel
|
b07fdb9a13
|
Ecwid application is added
|
5 years ago |
Mahdi Abasi
|
210e2515bf
|
nivsoft logo
|
5 years ago |
Sai Harika Punyamurthula
|
faee9d8e52
|
added miva icon
|
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 |
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 |
Elbert Alias
|
a805ebce80
|
Fix error handling in NPM/Puppeteer
|
5 years ago |
Patryk Porabik
|
e19299b91b
|
Add GrandNode logo
|
5 years ago |
Sam Verdyck
|
4a4c58943d
|
add CCV Shop
|
5 years ago |
Shoopalapa
|
2f50cd7b28
|
Add Tamago icon
|
5 years ago |
Shoopalapa
|
b3a06296ea
|
Added EKM icon
|
5 years ago |
Dae Kyung Park
|
c51499af3a
|
remove cafe24
|
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 |
ykoh
|
c4a55fd1f1
|
Added "Cafe24" e-commerce application.
|
5 years ago |
Christopher Berry
|
4c315f9f57
|
Added Loja Integrada 32x32 icon.
|
5 years ago |
Antonio Cavestro
|
73e4a0b9a1
|
Add Live Story icon
|
5 years ago |
Doug Aitken
|
b7f032b568
|
Upload WooCommerce W icon
|
5 years ago |
Doug Aitken
|
c880c9a709
|
deleting old woothemes era icon
|
5 years ago |
Elbert Alias
|
8a60e3bba2
|
Remove deprecated technologies
|
5 years ago |
Elbert Alias
|
62f881127c
|
Fix sourceMap error, fix apps.json issues
|
5 years ago |
Elbert Alias
|
42f6e5048a
|
Fix merge
|
5 years ago |
Elbert Alias
|
8ed47ea2ae
|
Merge pull request #2925 from emmamartins/master
pytonik
|
5 years ago |
Elbert Alias
|
c13d15dd7d
|
Merge pull request #2926 from supernuca/master
Changed Shopware icon
|
5 years ago |
Elbert Alias
|
fb4b9db61e
|
Merge pull request #2930 from rviscomi/patch-1
Add Automattic detection to PaaS category
|
5 years ago |
Elbert Alias
|
06a6704a3c
|
Merge pull request #2937 from Johannes-Andersen/master
added Riskified
|
5 years ago |
Elbert Alias
|
460def6c85
|
Merge pull request #2939 from Nooshu/add-govuk-frontend
Add the detection for the GOV.UK Design System
|
5 years ago |
Elbert Alias
|
bb41c8fbba
|
Merge pull request #2942 from vikaon/master
Added Turkish e-commerce platform
|
5 years ago |
Elbert Alias
|
ae4e957bfd
|
Merge pull request #2944 from thelabs-dev/master
GeneXus application is added
|
5 years ago |
fcrizul
|
00f1e011d5
|
GeneXus application is added
|
5 years ago |
vikaon
|
b15ccc9b78
|
Added Turkish e-commerce platform
|
5 years ago |