cant find two match in a packet

asked 2020-10-15 02:44:51 +0000

aaadddzxc gravatar image

for example: 60 61 63 64 11 22 33 44 55 66 77 60 61 63 64 aa bb cc dd

i find hex 60 61 63 64 . But you can only find the first one and jump to the next

edit retag flag offensive close merge delete

Comments

You want to navigate within the packet bytes and move between matches?
Or look for a packet that has multiple matches?
For example - a case-sensitive regular express search:

(\x0d\x0a.*\x0d\x0a)

0060   30 30 20 4f 4b **0d 0a** 53 65 72 76 65 72 3a 20 41   00 OK..Server: A
0070   54 53 2f 38 2e 30 2e 37 **0d 0a** 44 61 74 65 3a 20   TS/8.0.7..Date:
Chuckc gravatar imageChuckc ( 2020-10-15 03:46:00 +0000 )edit