xtrimi
š§ SITE UNDER CONSTRUCTION š§
2nd again. god damnit. the Curse has unfortunately not been lifted WarmUp Welcome Start your CTF Challenge! THJCC{w3lc0m3_70_7hjcc} self-explanatory beep boop beep boop obligatory cipher spam chall binary -> b64 -> THJCC{n0rm4l_3nc0d1n6} Discord Challenge hate ai injection challs and think they should never be in ctfs in the first place? fret not! someone already wrote a payload for u: flag: THJCC{j01n_d15c0rd_53rv3r_f1r57} Web Headless I think robots are headless, but you are a real human, right? ...
we got 12th! yay prob wouldve gotten higher but the remaining chals are literally just mind reading and i cba ill only be explaining chals i care about & all web Web Grandmaās Secret Recipe we can login as 'kitchen helper' but we need to access the pantry as 'grandma' checking our cookies we have cookies checksum and role throwing checksum into a hash checker we know its md5, so we can just throw a md5 hash of āgrandmaā and edit cookie to get through ...
ill wriet this in like 12 hours idk its now 1 month later masterful procrastination Prismatic Blogs overview weāre provided with two endpoints: /api/login/ and /api/posts/ the service uses prisma database and initialize 4 users with randomized password our flag is in one of the 4 usersā post, except it isnāt published we canāt really do much with /login/, so lets check /posts/: app.get( "/api/posts", async (req, res) => { try { let query = req.query; query.published = true; let posts = await prisma.post.findMany({where: query}); res.json({success: true, posts}) } catch (error) { res.json({ success: false, error }); } } ); notice that our query is directly passed into findMany without any sanitizations. can we exploit that? ...
dude i was doing ECTF prior to this and didnt see this ctf coming up literally hours after i was wondering why i dont see big names on ECTF leaderboard but after solving i realized the reason was chals were abysmally bad there i sacrificed a good(?) ctf for a garbage ctf ts pmo so anyways this became a āhow many chals can i solo solve in 4 hoursā challenge! (it was 9) just kidding i focused on web (some chals im too lazy to explain) ...
i hunted with Untitled CTF Game last weekend and ended up in 34th place, which was Kinda awesome i mained web but also sniped some easy challs, which i will be yapping abt in this post Forensics deldeldel [50] I managed to log more than just keys⦠perhaps it was too much data to capture? weāre given klogger.pcapng that consists of numerous USB packets given theyāre keypresses from desc, i used this repo to parse the keypresses: ...
didnāt expect to get 2nd LOL Welcome Welcome 0x2 [100] weāre told to score 10k on the main pageās snake game: no way im doing that! letās look for the source code f12, ctrl+u and right click is blocked, but we can use view-source:https://ctf.scint.org, then ctrl+f and thereās our flag! THJCC{Sn4ke_G4me_Mast3r} Discord 0x2 [100] run get_flag command using the bot⦠letās use slash commands! mfw you canāt right click on bot messages to copy text flag: THJCC{š© š® šø šØ ā š· š© š š š š„ š„ } ...
ik this is like 1 month ago but i was busy with working on udg2 april fools so here we are this was the most solved chall but i spent an embarrasingly long time solving it guess i have a massive skill issue challenge weāre presented with a textbox input here, which will display a message on the page when itās submitted, along with a button that shares our message with the admin bot the admin bot carries a flag cookie on its visit, so i figured i need to make the bot send the cookie to us somehow ...