· 5 years ago · Nov 19, 2019, 03:00 PM
13.1
2ls -lah
3cat .secret-key
4
53.2
6cat ./-secret-key
7
83.3
9cat data.txt | wc -l
10
113.4
12ls -la data* | awk '{print $5}'
13wc -l data*
14echo "13027 + 12133 - 2106" | bc
15
163.5
17file password
18strings password | grep -B 1 password
19
203.6
21cat data.txt | sort | uniq -c | grep -P "\s1" | awk '{print $2}'
22
23or
24
25cat data.txt | sort | uniq -u
26
273.7
28cat data.txt | grep -A 1 josuah
29
303.8
31cat data/**/**/**/*
32
33or
34
35cat $(find data/ -type f )
36
373.9
38cat $( find data/ -type f -user root)
39
403.10
41diff data1.txt data2.txt -y --suppress-common-lines
42
433.11
44lsof -c fileguard | grep "/home"
45cat /home/level10/data/4cd79e
46
473.12
48cat data.txt | tr 'a-z' 'n-za-m' | tr '0-9' '5-90-4'
49
503.13
51file data
52gunzip -c data > unzipped
53file unzipped
54uudecode unzipped > uudecodedfile
55file uudecodedfile
56bzip2 -d uudecodedfile
57cat uudecodedfile.out
58
593.14
60nc localhost 1234 <<< "password"
61
623.15
63netstat -an
64nc localhost 11590 <<< "password"
65
663.16
67level15@wargames:~$ cat GOAL
68Congratulations! You passed all 15 levels.