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
Describe the bug
The "Extract email addresses" operation does not match email addresses like example@[127.0.0.1]. However, it incorrectly matches strings like example@[127.0.0.].
To Reproduce
Steps to reproduce the behaviour or a link to the recipe / input used to cause the bug:
Describe the bug
The "Extract email addresses" operation does not match email addresses like
example@[127.0.0.1]
. However, it incorrectly matches strings likeexample@[127.0.0.]
.To Reproduce
Steps to reproduce the behaviour or a link to the recipe / input used to cause the bug:
example@[127.0.0.]
Expected behaviour
The output in step 2 should be
example@[127.0.0.1]
Screenshots

Desktop (if relevant, please complete the following information):
Additional context
This regex is incorrect:
CyberChef/src/core/operations/ExtractEmailAddresses.mjs
Line 54 in 7c8be12
Currently the regex is
regex1
below, but I think the correct regex isregex2
below (not tested)::The text was updated successfully, but these errors were encountered: