From 1dddf74bfbe9c6b1008ac01aa48a1eb2b33c29a4 Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 29 Jan 2026 12:53:05 +0100 Subject: [PATCH] docs(lvl03): adding the english readme --- rparodi/level03/README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/rparodi/level03/README.md b/rparodi/level03/README.md index 407bb84..cc3ce8a 100644 --- a/rparodi/level03/README.md +++ b/rparodi/level03/README.md @@ -1,6 +1,7 @@ -Le flag 03 est enfin reelement de l'exploitation de binaire +The flag 03 is finally really binary exploitation. + +First thing that I do is run a strings on the binary in order to see what comes out of it and towards where to search. -Premiere chose que je lance un strings sur le binaire afin de voir si qui en ressort et vers ou chercher ```bash /lib/ld-linux.so.2 KT{K @@ -21,13 +22,13 @@ UWVS ... ``` -Je vois que `/usr/bin/env echo` est appeler (env ce base sur le l'environnement de mon user actuel) +I see that `/usr/bin/env echo` is called (env is based on the environment of my current user). -Je tente de faire un fichier dans mon home, mais ca ne met pas permis +I try to make a file in my home, but it is not permitted. -Je tente donc dans le /tmp +I therefore try in /tmp. -ce qui fonctionne et decide donc d'ouvrir un shell +Which works and I therefore decide to open a shell. ```bash cat /tmp/echo @@ -41,9 +42,9 @@ chmod 777 /tmp/echo ./level03 ``` -Je me retrouve donc directement sur le shell de level03 +I therefore find myself directly on the shell of level03. ```bash -flag03@SnowCrash:~$ getflag +getflag Check flag.Here is your token : qi0maab88jeaj46qoumi7maus ```