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

Loading…
Cancel
Save