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
Some email providers accept emails with '+' eg. [email protected] . In such situation, email is sent to [email protected] and allocated to a specific folder, automated reply etc..
The current regex would only match [email protected] which is not the actual email of the recipient.
It is a rare occurrence but I thought I would throw it in for the good measure.
Alternative regex could be
\b\w[-+.\w]*@[-\w]+(?:\.[-\w]+)*\.[A-Z]{2,4}\b
The text was updated successfully, but these errors were encountered:
CyberChef/src/core/operations/ExtractEmailAddresses.mjs
Line 42 in ec9dfd2
Some email providers accept emails with '+' eg. [email protected] . In such situation, email is sent to [email protected] and allocated to a specific folder, automated reply etc..
The current regex would only match [email protected] which is not the actual email of the recipient.
It is a rare occurrence but I thought I would throw it in for the good measure.
Alternative regex could be
The text was updated successfully, but these errors were encountered: