You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
Following code work with python3.9 but correctly warns about a bad regex in python3.11:
Trying to run this with python3.11 on " http://yahoo.com" I get:
.../python3.11/site-packages/Wappalyzer/Wappalyzer.py:226: UserWarning: Caught 'unbalanced parenthesis at position 119' compiling regex:
The 'position 119' seems to a delayed reaction to the core issue.
Indeed it looks like the sub-regex: [^]+ just before is invalid since ^ is a negation/complement for the char-class which is empty here.
The problem is in the data-file:
Wappalyzer/data/technologies.json (towards the end, technologies are alphabetically sorted)
The rule for "Symfony": "html": should be (one char change):
Fixed in this PR:
#80
The text was updated successfully, but these errors were encountered: