Created
January 9, 2025 08:32
-
-
Save shankaraman/f1b5e28d69d671d58a376dd29c8478d5 to your computer and use it in GitHub Desktop.
IrisCTF 2025 - DelDelDel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Reference: https://abawazeeer.medium.com/kaizen-ctf-2018-reverse-engineer-usb-keystrok-from-pcap-file-2412351679f4 | |
newmap = { | |
2: "Post Fail", | |
4: "a", | |
5: "b", | |
6: "c", | |
7: "d", | |
8: "e", | |
9: "f", | |
10: "g", | |
11: "h", | |
12: "i", | |
13: "j", | |
14: "k", | |
15: "l", | |
16: "m", | |
17: "n", | |
18: "o", | |
19: "p", | |
20: "q", | |
21: "r", | |
22: "s", | |
23: "t", | |
24: "u", | |
25: "v", | |
26: "w", | |
27: "x", | |
28: "y", | |
29: "z", | |
30: "1", | |
31: "2", | |
32: "3", | |
33: "4", | |
34: "5", | |
35: "6", | |
36: "7", | |
37: "8", | |
38: "9", | |
39: "0", | |
40: "Enter", | |
41: "esc", | |
42: "del", | |
43: "tab", | |
44: "space", | |
45: "-", | |
47: "[", | |
48: "]", | |
56: "/", | |
57: "CapsLock", | |
79: "RightArrow", | |
80: "LetfArrow" | |
} | |
flag = '' | |
with open('/home/h1dd3ntru7h/Desktop/CTF/IRISCTF-2025/Forensics/deldeldel/hexout.hex', 'r') as f: | |
myKeys = f.readlines() | |
i = 1 | |
for line in myKeys: | |
bytesArray = bytearray.fromhex(line.strip()) | |
for byte in bytesArray: | |
if byte != 0: | |
keyVal = int(byte) | |
if keyVal in newmap: | |
flag += newmap[keyVal] | |
print(flag) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment