Skip to content

Latest commit

 

History

History
12 lines (6 loc) · 232 Bytes

solutions.md

File metadata and controls

12 lines (6 loc) · 232 Bytes

Regex for PAN

[3-6][0-9]{13,18}

Regex for track 2 data

[3-6][0-9]{13,18}=[0-9]{4,}

When hunting in a binary file use strings first:

strings haystack |egrep '[3-6][0-9]{13,18}'