Skip to content

Commit

Permalink
vault backup: 2024-06-24 23:06:02
Browse files Browse the repository at this point in the history
  • Loading branch information
atch2203 committed Jun 25, 2024
1 parent 4e46015 commit 214fd31
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/content/blog/jellyCTF writeups.md
Original file line number Diff line number Diff line change
Expand Up @@ -625,3 +625,16 @@ print(letters)
print(diffs)
```
However I didn't get anywhere after that.

Reading up some writeups you have to manipulate + guess how the bytes map to ascii
```python
a = ""
with open("hex.txt", "r") as f:
    a = f.read()
a = a.split()
a = a[4:-5]
a = [a[i:i+7] for i in range(0, len(a), 7)]
a = [int("".join(i), 16) for i in a]
a = [(i+81)%192 for i in a]
print(''.join([chr(i) for i in a]))
```

0 comments on commit 214fd31

Please sign in to comment.