Re: Rule to identify quoted-printable text

2024-01-16 Thread Jimmy
Hello Laurent, I wanted to express my gratitude for sharing the tip on rawbody matching. Your assistance is greatly appreciated. Thank you, Jimmy On Tue, Jan 16, 2024 at 4:01 PM Laurent S. < 110ef9e3086d8405c2929e34be5b4...@protonmail.ch> wrote: > Hi Jimmy, > > If you want to get that exact ve

Re: Rule to identify quoted-printable text

2024-01-15 Thread Laurent S.
Hi Jimmy, If you want to get that exact version using rawbody, here's how it would need to look like: rawbody __PASSWORD_IN_QP /\bp\x{D0}\x{B0}ssword/i As a trick to know what to use in such a case, I added this rule on my debug/rule testing machine: rawbody __ALLRAWBODY /.+/ tflags__

Rule to identify quoted-printable text

2024-01-15 Thread Jimmy
-- Content-Transfer-Encoding: quoted-printable Login p=D0=B0ssword is s=D0=B5t to =D0=B5xpir=D0=B5 -- In the provided email snippet, I aim to match the text "p=D0=B0ssword" using the following rule: rawbody __PASSWORD_IN_QP /\bp=D0=B0ssword/i Despite my effor