0% found this document useful (0 votes)
51 views3 pages

Resources - Points: 50 - (Solves: 49877) : Picoctf (Xiexie - Ni - Lai - Zheli)

This document provides instructions for solving four PicoCTF challenges: 1) Finding resources on the PicoCTF website that may contain a flag. 2) Using grep to search a file for a flag. 3) Connecting to a server using netcat to obtain a flag. 4) Using strings to search a file without running it in order to find a flag. Solutions to each challenge are provided.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
51 views3 pages

Resources - Points: 50 - (Solves: 49877) : Picoctf (Xiexie - Ni - Lai - Zheli)

This document provides instructions for solving four PicoCTF challenges: 1) Finding resources on the PicoCTF website that may contain a flag. 2) Using grep to search a file for a flag. 3) Connecting to a server using netcat to obtain a flag. 4) Using strings to search a file without running it in order to find a flag. Solutions to each challenge are provided.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

 Resources - Points: 50 - (Solves: 49877)

We put together a bunch of resources to help you out on our website! If you go over there,
you might even find a flag! 

Link: https://picoctf.com/resources

Solución: picoCTF{xiexie_ni_lai_zheli}

 grep 1 - Points: 75 - (Solves: 37741)

Can you find the flag in file? This would be really obnoxious to look through by hand, see
if you can find a faster way. You can also find the file in /problems/grep-
1_2_ee2b29d2f2b29c65db957609a3543418 on the shell server.
 Instrucciones en la terminal de ubuntu(Linux):
cd Descargas/
grep ‘picoCTF{‘ file
Solución: picoCTF {grep_and_you_will_find_42783683}

 net cat - Points: 75 - (Solves: 33323)

Using netcat (nc) will be a necessity throughout your adventure. Can you connect
to 2018shell.picoctf.com at port 22847 to get the flag?

 Instrucciones en la terminal de ubuntu(Linux):


cd Descargas/
nc 2018shell.picoctf.com 22847

Solución: picoCTF{NEtcat_is_a_NEcESSiTy_69222dcc}

 strings - Points: 100 - (Solves: 24340)

Can you find the flag in this file without actually running it? You can also find the file in
/problems/strings_3_1dbaafa1f8f0556872cad33e16bc8dc7 on the shell server.
 Instrucciones en la terminal de ubuntu(Linux):
cd Descargas/
ls
file strings
mv strings program
strings program | less
/pico
Solución: picoCTF{sTrIngS_sAVeS_Time_2fbe2166}

You might also like