Vastly improve rainloop detection (#2541)

- Remove two super-slow regexps
- Tighten some regexps
- Add more patterns

I tested this PR on Wappalyzer's [top10](https://www.wappalyzer.com/technologies/rainloop),
and on the [official demo](https://mail.rainloop.net/).
main
jvoisin 6 years ago committed by Elbert Alias
parent 5b420b67f1
commit ace60ab1d2

@ -8044,19 +8044,22 @@
30
],
"headers": {
"Server": "RainLoop"
"Server": "^RainLoop"
},
"html": [
"<meta [^>]*(?:content=\"([^\"]+)[^>]+ id=\"rlAppVersion\"|id=\"rlAppVersion\"[^>]+ content=\"([^\"]+))\\;version:\\1?\\1:\\2",
"<link[^>]* href=\"[^\"]*rainloop/v/([^/]+)\\;version:\\1"
"<link[^>]href=\"rainloop/v/([0-9.]+)/static/apple-touch-icon\\.png/>\\;version:\\1"
],
"meta": {
"rlAppVersion": "^([0-9.]+)$\\;version:\\1"
},
"icon": "RainLoop.png",
"implies": "PHP",
"js": {
"rainloopI18N": "",
"rainloop": ""
},
"script": "rainloop/v/([^/]+)\\;version:\\1",
"website": "http://rainloop.net"
"script": "^rainloop/v/([0-9.]+)/\\;version:\\1",
"website": "https://www.rainloop.net/"
},
"Rakuten DBCore": {
"cats": [

Loading…
Cancel
Save