Date: 2024-15-08
Time: 6pm-8pm
Location: GH224
Host: Meagan Miller
Thanks!
https://play.picoctf.org/practice?difficulty=1&originalEvent=69&page=1
https://play.picoctf.org/practice?difficulty=1&originalEvent=73&page=2
https://tryhackme.com/r/room/pythonbasics
https://tryhackme.com/r/room/howwebsiteswork
from pwn import *
def to_little_endian(word: str) -> str:
= ""
little_endian
for c in word[::-1]:
+= str("%02x" % ord(c))
little_endian
return little_endian[2:];
def to_big_endian(word: str) -> str:
= ""
big_endian
for c in word:
+= str("%02x" % ord(c))
big_endian
return big_endian[:-2]
# with process("./flag") as p:
with remote("titan.picoctf.net", 51156) as p:
print(p.readline())
print(p.readline())
print(p.readline())
= p.readline().decode('utf-8')
wordline = wordline.split(": ")
_, word print(f"The word is: {word.strip()}")
print(f"The type is: {type(word)}")
print('little =', to_little_endian(word))
print('big =', to_big_endian(word))
p.sendline(to_little_endian(word))
p.recvline()
p.sendline(to_big_endian(word))
p.recvline() p.interactive()