Skip to content

Commit b2c564c

Browse files
authored
Update solution.md
1 parent 80b1cb3 commit b2c564c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

tamuctf2018/nginx/solution.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
11
### nginx
22
> My friend set up a web server using nginx but he keeps complaining that people are finding files that they are not supposed to be able to get to. Can you fix his configuration file for him?
3+
4+
The web root path is incorrect allow access to everything in /
5+
6+
Changes:
7+
8+
```
9+
36 - root /;
10+
36 + root /usr/share/nginx/html/;
11+
12+
45 - index /usr/share/nginx/html/index.html;
13+
45 + index index.html;
14+
```

0 commit comments

Comments
 (0)