flagPascal CTF

very easy ctf for beginners

2/570
1

Base N' Hex

I encrypted the flag but I don't remember in what order. Can you help me?

starting off the challenge we were given this source code

so its a funny encryption where it will do a random b64 encode or change a string to a hex we can decode this easily by seeing the patterns on the text then getting it back to normal in cyber chef

2

Romagnol Prometheus

Mattia said he was feeling a little mischevious today and sent me these photos, can you help me understand what he's up to?

we were given 3 pictures and were asked what was the meaning behind the picture

this is a bit guessy but when we do the exiftool there was a gps place so i just went ahead and asked my ai

pascalCTF{gubbio}

3

Static Fl@g

A friend of mine created a nice frontend, he said we didn't need a backend to check the flag...

a simple guess the flag chall when inspecting

we can just use the atob given to get the value

4

Biscotto

Elia accidentally locked himself out of his admin panel can you help him to get his access back?

i immediately logged in

so after logging in we were given a cookie that we could change the value of to admin then we will get the flag

5

Romañs Empyre

My friend Elia forgot how to write, can you help him recover his flag??

this cipher uses the wordlist that consists of `abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789{}_-.,/%?$!@#`

the romanize function uses a random key

so it will just do

(indexAtAlphabet(c) + random int) % len(alphabet)

we can just reverse the process to test all the possible keys

6

MindBlowing

My friend Marco recently dived into studying bitwise operators, and now he's convinced he's invented pseudorandom numbers! Could you help me figure out his secrets?

the chall starts of a function to generate numbers

so we need to target the SENTENCES[2] to find the flag

so the chall is basiclly just doing & to the seed we give so by doing this we could actually get the flag one by one until we get the full flag

pascalCTF{m4by3_1_sh0uld_ch3ck_th3_t0t4l_numb3r_0f_ONES}

7

KONtAct MI

I've beaten this stupid game many times, but I never got to the real final. I've also asked the admin about it, but he keeps saying I have something called 'Skill issue'.

this is a very easy re challenge

there was nothing interesting in the source code other than the part where it will do a curl to an api

the api will take json data it seems

when curling seems like that response is the goal of the chall

curl -X POST https://kontactmi.challs.pascalctf.it/adminSupport -H "Content-Type: application/json" -d '{"code":"up-up-down-down-left-right-left-right-B-A"}'

Last updated