L3akCTF2025 Writeup & 复盘
拿到468分,取得493名的垫底成绩。
Flag L3ak 1 2 3 4 5 6 7 8 9 10 const matchingPosts = posts .filter(post => post.title.includes(query) || post.content.includes(query) || post.author.includes(query) ) .map(post => ({ ...post, content: post.content.replace(FLAG, '...
Flag L3ak 1 2 3 4 5 6 7 8 9 10 const matchingPosts = posts .filter(post => post.title.includes(query) || post.content.includes(query) || post.author.includes(query) ) .map(post => ({ ...post, content: post.content.replace(FLAG, '...