Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix: wappalizer perform lowercases match #49

Merged
merged 1 commit into from May 25, 2021
Merged

bugfix: wappalizer perform lowercases match #49

merged 1 commit into from May 25, 2021

Conversation

ghost
Copy link

@ghost ghost commented May 22, 2021

I'm pretty sure that wapplyzer perform lowercases matchs.
Note these web links:

"<link [^>]?href="?[a-z]?:?//cdn\.statically\.io/"
"SquirrelMail version ([.\d]+)[^<]*<br \;version:\1"
"<input type="hidden" name="shopid""

HTML specify tags are case insensitive.

Another example for detecting PHP:

"X-Powered-By": "^php/?([\d.]+)?\;version:\1"

In facts, php retruns this header:

x-powered-by: PHP/7.3.27

So the regex match only in case insensitive.

Note this line in the wappalyzer sources:
https://github.com/AliasIO/wappalyzer/blob/557bed87113c8f7073a733d85bb9c7cdb67132c3/src/drivers/webextension/js/driver.js#L49

It seems this bloc of code compiles regex, it uses the flag 'i'. (if someone understand javascript, it could be validate this ?)

I'm pretty sure that wapplyzer perform lowercases matchs.
Note these web links:

   "<link [^>]*?href=\"?[a-z]*?:?//cdn\\.statically\\.io/"
   "<small>SquirrelMail version ([.\\d]+)[^<]*<br \\;version:\\1"
   "<input type=\"hidden\" name=\"shopid\""

HTML specify tags are case insensitive.

Another example for detecting PHP:

   "X-Powered-By": "^php/?([\\d.]+)?\\;version:\\1"

In facts, php retruns this header:

    x-powered-by: PHP/7.3.27

So the regex match only in case insensitive.

Note this line in the wappalyzer sources:

   https://github.com/AliasIO/wappalyzer/blob/557bed87113c8f7073a733d85bb9c7cdb67132c3/src/drivers/webextension/js/driver.js#L49

It seems this bloc of code compiles regex, it uses the flag 'i'.
@rverton rverton merged commit 12f8227 into rverton:master May 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants