Skip to content

Commit 9b05c3c

Browse files
committed
Updating for correct links
1 parent 0852ef6 commit 9b05c3c

File tree

3 files changed

+14
-23
lines changed

3 files changed

+14
-23
lines changed

ep10-injection-fundamentals-2/readme.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ curl.stdout.on('data', function(data) {
100100
console.log(data);
101101
});
102102
// Run: "EX_NUM=1 docker-compose up"
103-
// File: "injection-fundamentals-2/src/1/app.js"
103+
// File: "ep10-injection-fundamentals-2/src/1/app.js"
104104
```
105105

106106
- Hints
@@ -122,7 +122,7 @@ curl.stdout.on('data', function(data) {
122122
console.log(data);
123123
});
124124
// Run: "EX_NUM=2 docker-compose up"
125-
// File: "injection-fundamentals-2/src/2/app.js"
125+
// File: "ep10-injection-fundamentals-2/src/2/app.js"
126126
```
127127

128128
- This is an example of Server Side Request Forgery (SSRF)
@@ -321,19 +321,19 @@ Knowledge Dependency Tree
321321
-------------------------
322322
323323
- [Injection Fundamentals: What Is
324-
Injection?](https://github.com/SecuringTheStack/tutorials/blob/master/injection-fundamentals-1/readme.md#injection-fundamentals-what-is-injectionv)
325-
- [Intro](https://github.com/SecuringTheStack/tutorials/blob/master/injection-fundamentals-1/readme.md#intro)
324+
Injection?](https://github.com/SecuringTheStack/tutorials/tree/master/ep9-injection-fundamentals-part-1/readme.md#injection-fundamentals-what-is-injectionv)
325+
- [Intro](https://github.com/SecuringTheStack/tutorials/tree/master/ep9-injection-fundamentals-part-1/readme.md#intro)
326326
- [What Is
327-
Injection?](https://github.com/SecuringTheStack/tutorials/blob/master/injection-fundamentals-1/readme.md#what-is-injection)
327+
Injection?](https://github.com/SecuringTheStack/tutorials/tree/master/ep9-injection-fundamentals-part-1/readme.md#what-is-injection)
328328
- [Inject The Shell Context
329-
(Assignment)](https://github.com/SecuringTheStack/tutorials/blob/master/injection-fundamentals-1/readme.md#inject-the-shell-context-assignment)
329+
(Assignment)](https://github.com/SecuringTheStack/tutorials/tree/master/ep9-injection-fundamentals-part-1/readme.md#inject-the-shell-context-assignment)
330330
- [Inject The Shell Context
331-
(Answer)](https://github.com/SecuringTheStack/tutorials/blob/master/injection-fundamentals-1/readme.md#inject-the-shell-context-answer)
331+
(Answer)](https://github.com/SecuringTheStack/tutorials/tree/master/ep9-injection-fundamentals-part-1/readme.md#inject-the-shell-context-answer)
332332
- [Inject The Shell Context
333-
(Takeaways)](https://github.com/SecuringTheStack/tutorials/blob/master/injection-fundamentals-1/readme.md#inject-the-shell-context-takeaways)
333+
(Takeaways)](https://github.com/SecuringTheStack/tutorials/tree/master/ep9-injection-fundamentals-part-1/readme.md#inject-the-shell-context-takeaways)
334334
- [Syntactic
335-
Injection](https://github.com/SecuringTheStack/tutorials/blob/master/injection-fundamentals-1/readme.md#syntactic-injection)
335+
Injection](https://github.com/SecuringTheStack/tutorials/tree/master/ep9-injection-fundamentals-part-1/readme.md#syntactic-injection)
336336
- [Evaluating Execution
337-
Contexts](https://github.com/SecuringTheStack/tutorials/blob/master/injection-fundamentals-1/readme.md#evaluating-execution-contexts)
337+
Contexts](https://github.com/SecuringTheStack/tutorials/tree/master/ep9-injection-fundamentals-part-1/readme.md#evaluating-execution-contexts)
338338
- [Next
339-
Steps](https://github.com/SecuringTheStack/tutorials/blob/master/injection-fundamentals-1/readme.md#next-steps)
339+
Steps](https://github.com/SecuringTheStack/tutorials/tree/master/ep9-injection-fundamentals-part-1/readme.md#next-steps)

ep11-injection-fundamentals-3/readme.org

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
:END:
1010
** Table Of Contents :toc:
1111
- [[#injection-fundamentals-what-is-redos][Injection Fundamentals: What Is ReDoS]]
12-
- [[#help-meimportant-sts-links][Help Me/Important StS Links]]
1312
- [[#intro][Intro]]
1413
- [[#injection-discovery][Injection Discovery]]
1514
- [[#injection-discovery-linear-approach][Injection Discovery (Linear Approach)]]
@@ -28,14 +27,6 @@
2827
- [[#java][Java]]
2928
- [[#knowledge-dependency-tree][Knowledge Dependency Tree]]
3029

31-
** Help Me/Important StS Links
32-
- [[https://securingthestack.com/p/injection-fundamentals-3][Video]]
33-
- [[#knowledge-dependency-tree][Prerequisites]]
34-
- [[https://sts.tools/setup][Env Setup]]
35-
- [[https://sts.tools/injection-question][Ask A Question In Forums]]
36-
- [[https://sts.tools/live-support][Chat Support]]
37-
- [[https://securingthestack.com/p/injection-playlist][Overarching Playlist]]
38-
3930
** Intro
4031
- Who is this for?
4132
- Developers who have novice injection/security knowledge
@@ -112,7 +103,7 @@
112103
// If isValid is false, halt execution of input
113104

114105
// Run: "EX_NUM=1 docker-compose up"
115-
// File: "injection-fundamentals-3/src/1/app.js"
106+
// File: "ep11-injection-fundamentals-3/src/1/app.js"
116107
#+END_SRC
117108
** ReDoS Ex. (Javascript Context Answers)
118109
- Assignment 1

ep9-injection-fundamentals-part-1/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ curl.stdout.on('data', function(data) {
9090
console.log(data);
9191
});
9292
// Run: "EX_NUM=1 docker-compose up"
93-
// File: "injection-fundamentals-1/src/1/app.js"
93+
// File: "ep9-injection-fundamentals-part-1/src/1/app.js"
9494
// Env Setup/Error Reporting: https://sts.tools/readme
9595
// Questions: https://sts.tools/injection-question
9696
```
@@ -116,7 +116,7 @@ curl.stdout.on('data', function(data) {
116116
console.log(data);
117117
});
118118
// Run: "EX_NUM=2 docker-compose up"
119-
// File: "injection-fundamentals-1/src/2/app.js"
119+
// File: "ep9-injection-fundamentals-part-1/src/2/app.js"
120120
// Env Setup/Error Reporting: https://sts.tools/readme
121121
// Questions: https://sts.tools/injection-question
122122
```

0 commit comments

Comments
 (0)