- Remove undeployed challenges: Phantom_Byte, Cr4cK_w1f1, Lain_Br34kC0r3 V1, Lain_VS_Knights, Lets_All_Love_UART, AETHER_NET, Last_Train_451, Web3/ - Sync 24 solve/ files from main CTF-Espilon repo - Update all READMEs with real CTFd final scores at freeze - Add git-header.png banner - Rewrite README: scoreboard top 10, edition stats (1410 users, 264 boards, 1344 solves), correct freeze date March 26 2026
601 B
601 B
Serial Experimental 00 -- Solution
Overview
The challenge provides a split UART interface:
- TX (read):
1111 - RX (write):
2222
Goal: recover token and run unlock <token>.
Steps
- Open both channels:
nc <host> 1111
nc <host> 2222
- Query diagnostics from RX:
diag.uart
diag.eeprom
diag.order
- Recover fragments:
frag_a_hex=4c41494e->LAINfrag_b_xor_hex=4056415a525fwithxor_key=0x13->SERIALfrag_c_hex=3030->00
- Build token:
LAIN-SERIAL-00
- Unlock:
unlock LAIN-SERIAL-00
- Flag is returned on TX.