Completed CyLab Security Academy's AI Foundations I: The Lost Book of Perceptrons. 16 challenges spanning black-box experimentation, mathematical expression, manual design, learning algorithms, and ethical reasoning.
https://t.co/P2IRM3hZmm
Solved picoCTF — Some Assembly Required 1
Flag validation is in a WebAssembly module loaded client-side. The obfuscated JS leaks the .wasm path. Fetch it, run strings, flag is a plaintext literal in the data segment.
Writeup: https://t.co/UwKSxTcJBj
#picoCTF#CTF#WebAssembly
picoCTF MatchTheRegex — 100pts.
The server validated input against a regex before returning the flag. The pattern was sitting in a JS comment: ^p.....F!?
Payload: picoCTF
Lesson: client-side source code is readable by anyone. Code comments are not private.