Skip to content

Commit c77bddd

Browse files
committed
template remaining challenges
1 parent 71af511 commit c77bddd

File tree

11 files changed

+397
-1
lines changed

11 files changed

+397
-1
lines changed

mkdocs.yml

+9
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,12 @@ nav:
1212
- Shufflebox: ./shufflebox/index.md
1313
- Number mashing: ./number_mashing/index.md
1414
- Intercepted transmissions: ./transmissions/index.md
15+
# - Vector overflow: ./vector/index.md
16+
# - Decrypt then eval: ./decrypt_eval/index.md
17+
# - Yawa: ./yawa/index.md
18+
# - DNAdecay: ./dna/index.md
19+
# - Sign in: ./sign_in/index.md
20+
# - sssshhhh: ./sssshhhh/index.md
21+
# - Rusty vault: ./rusty/index.md
22+
# - Jmp flag: ./jmp_flag/index.md
23+
# - Pac shell: ./pac_shell/index.md

solve/decrypt_eval/index.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
id: index
3+
title: Decrypt then eval writeup
4+
description: Writeup for challenge "Decrypt then eval" of Down Under CTF 2024
5+
---
6+
7+
## Prologue
8+
9+
Difficulty: easy
10+
11+
Category: cryptography
12+
13+
Solved: 197
14+
15+
!!! quote "Description"
16+
17+
18+
Input files:
19+
20+
??? info "encoding.txt"
21+
22+
23+
NB:
24+
25+
26+
* Following indices bases system is used to avoid ambiguity. Whenever element of a collection is referenced by **number**, 0-based index implied.
27+
28+
Ie, element `0` of list `[1, 2, 4, 8, 16]` is `1`, Element `3` is `8`.
29+
30+
When element is reference in explanation with **word** (first, third...), 1-based system is implied.
31+
32+
Ie, first character of string `Hello World!` is `H`, fifth is `o`.
33+
34+
* Solution code was redacted for readability purposes. Due to time pressure during the competition I was using a lot of one-letter variables and questionable code structure.
35+
36+
## My struggle
37+
38+
39+
40+
## Epilogue
41+
42+
* Official website: [https://downunderctf.com/](https://downunderctf.com/)
43+
* Official writeups: https://github.com/DownUnderCTF/Challenges_2024_Public

solve/dna/index.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
id: index
3+
title: DNAdecay writeup
4+
description: Writeup for challenge "DNAdecay" of Down Under CTF 2024
5+
---
6+
7+
## Prologue
8+
9+
Difficulty: easy
10+
11+
Category: reverse engineering
12+
13+
Solved: 148
14+
15+
!!! quote "Description"
16+
17+
18+
Input files:
19+
20+
??? info "encoding.txt"
21+
22+
23+
NB:
24+
25+
26+
* Following indices bases system is used to avoid ambiguity. Whenever element of a collection is referenced by **number**, 0-based index implied.
27+
28+
Ie, element `0` of list `[1, 2, 4, 8, 16]` is `1`, Element `3` is `8`.
29+
30+
When element is reference in explanation with **word** (first, third...), 1-based system is implied.
31+
32+
Ie, first character of string `Hello World!` is `H`, fifth is `o`.
33+
34+
* Solution code was redacted for readability purposes. Due to time pressure during the competition I was using a lot of one-letter variables and questionable code structure.
35+
36+
## My struggle
37+
38+
39+
40+
## Epilogue
41+
42+
* Official website: [https://downunderctf.com/](https://downunderctf.com/)
43+
* Official writeups: https://github.com/DownUnderCTF/Challenges_2024_Public

solve/jmp_flag/index.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
id: index
3+
title: Jmp flag writeup
4+
description: Writeup for challenge "Jmp flag" of Down Under CTF 2024
5+
---
6+
7+
## Prologue
8+
9+
Difficulty: easy
10+
11+
Category: reverse engineering
12+
13+
Solved: 71
14+
15+
!!! quote "Description"
16+
17+
18+
Input files:
19+
20+
??? info "encoding.txt"
21+
22+
23+
NB:
24+
25+
26+
* Following indices bases system is used to avoid ambiguity. Whenever element of a collection is referenced by **number**, 0-based index implied.
27+
28+
Ie, element `0` of list `[1, 2, 4, 8, 16]` is `1`, Element `3` is `8`.
29+
30+
When element is reference in explanation with **word** (first, third...), 1-based system is implied.
31+
32+
Ie, first character of string `Hello World!` is `H`, fifth is `o`.
33+
34+
* Solution code was redacted for readability purposes. Due to time pressure during the competition I was using a lot of one-letter variables and questionable code structure.
35+
36+
## My struggle
37+
38+
39+
40+
## Epilogue
41+
42+
* Official website: [https://downunderctf.com/](https://downunderctf.com/)
43+
* Official writeups: https://github.com/DownUnderCTF/Challenges_2024_Public

solve/pac_shell/index.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
id: index
3+
title: Pac shell writeup
4+
description: Writeup for challenge "Pac shell" of Down Under CTF 2024
5+
---
6+
7+
## Prologue
8+
9+
Difficulty: easy
10+
11+
Category: binary exploitation
12+
13+
Solved: 55
14+
15+
!!! quote "Description"
16+
17+
18+
Input files:
19+
20+
??? info "encoding.txt"
21+
22+
23+
NB:
24+
25+
26+
* Following indices bases system is used to avoid ambiguity. Whenever element of a collection is referenced by **number**, 0-based index implied.
27+
28+
Ie, element `0` of list `[1, 2, 4, 8, 16]` is `1`, Element `3` is `8`.
29+
30+
When element is reference in explanation with **word** (first, third...), 1-based system is implied.
31+
32+
Ie, first character of string `Hello World!` is `H`, fifth is `o`.
33+
34+
* Solution code was redacted for readability purposes. Due to time pressure during the competition I was using a lot of one-letter variables and questionable code structure.
35+
36+
## My struggle
37+
38+
39+
40+
## Epilogue
41+
42+
* Official website: [https://downunderctf.com/](https://downunderctf.com/)
43+
* Official writeups: https://github.com/DownUnderCTF/Challenges_2024_Public

solve/rusty/index.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
id: index
3+
title: Rusty vault writeup
4+
description: Writeup for challenge "Rusty vault" of Down Under CTF 2024
5+
---
6+
7+
## Prologue
8+
9+
Difficulty: easy
10+
11+
Category: reverse engineering
12+
13+
Solved: 81
14+
15+
!!! quote "Description"
16+
17+
18+
Input files:
19+
20+
??? info "encoding.txt"
21+
22+
23+
NB:
24+
25+
26+
* Following indices bases system is used to avoid ambiguity. Whenever element of a collection is referenced by **number**, 0-based index implied.
27+
28+
Ie, element `0` of list `[1, 2, 4, 8, 16]` is `1`, Element `3` is `8`.
29+
30+
When element is reference in explanation with **word** (first, third...), 1-based system is implied.
31+
32+
Ie, first character of string `Hello World!` is `H`, fifth is `o`.
33+
34+
* Solution code was redacted for readability purposes. Due to time pressure during the competition I was using a lot of one-letter variables and questionable code structure.
35+
36+
## My struggle
37+
38+
39+
40+
## Epilogue
41+
42+
* Official website: [https://downunderctf.com/](https://downunderctf.com/)
43+
* Official writeups: https://github.com/DownUnderCTF/Challenges_2024_Public

solve/sign_in/index.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
id: index
3+
title: Sign in writeup
4+
description: Writeup for challenge "Sign in" of Down Under CTF 2024
5+
---
6+
7+
## Prologue
8+
9+
Difficulty: easy
10+
11+
Category: binary exploitation
12+
13+
Solved: 95
14+
15+
!!! quote "Description"
16+
17+
18+
Input files:
19+
20+
??? info "encoding.txt"
21+
22+
23+
NB:
24+
25+
26+
* Following indices bases system is used to avoid ambiguity. Whenever element of a collection is referenced by **number**, 0-based index implied.
27+
28+
Ie, element `0` of list `[1, 2, 4, 8, 16]` is `1`, Element `3` is `8`.
29+
30+
When element is reference in explanation with **word** (first, third...), 1-based system is implied.
31+
32+
Ie, first character of string `Hello World!` is `H`, fifth is `o`.
33+
34+
* Solution code was redacted for readability purposes. Due to time pressure during the competition I was using a lot of one-letter variables and questionable code structure.
35+
36+
## My struggle
37+
38+
39+
40+
## Epilogue
41+
42+
* Official website: [https://downunderctf.com/](https://downunderctf.com/)
43+
* Official writeups: https://github.com/DownUnderCTF/Challenges_2024_Public

solve/sssshhhh/index.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
id: index
3+
title: sssshhhh writeup
4+
description: Writeup for challenge "sssshhhh" of Down Under CTF 2024
5+
---
6+
7+
## Prologue
8+
9+
Difficulty: beginner
10+
11+
Category: reverse engineering
12+
13+
Solved: 81
14+
15+
!!! quote "Description"
16+
17+
18+
Input files:
19+
20+
??? info "encoding.txt"
21+
22+
23+
NB:
24+
25+
26+
* Following indices bases system is used to avoid ambiguity. Whenever element of a collection is referenced by **number**, 0-based index implied.
27+
28+
Ie, element `0` of list `[1, 2, 4, 8, 16]` is `1`, Element `3` is `8`.
29+
30+
When element is reference in explanation with **word** (first, third...), 1-based system is implied.
31+
32+
Ie, first character of string `Hello World!` is `H`, fifth is `o`.
33+
34+
* Solution code was redacted for readability purposes. Due to time pressure during the competition I was using a lot of one-letter variables and questionable code structure.
35+
36+
## My struggle
37+
38+
39+
40+
## Epilogue
41+
42+
* Official website: [https://downunderctf.com/](https://downunderctf.com/)
43+
* Official writeups: https://github.com/DownUnderCTF/Challenges_2024_Public

solve/transmissions/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Difficulty: beginner
1010

1111
Category: miscellaneous
1212

13-
Solved: 299
13+
Solved: 275
1414

1515
!!! quote "Description"
1616
Those monsters! They've kidnapped the Quokkas! Who in their right mind would capture those friendly little guys.. We've managed to intercept a CCIR476 transmission from the kidnappers, we think it contains the location of our friends! Can you help us decode it? We managed to decode the first two characters as '##'

solve/vector/index.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
id: index
3+
title: Vector overflow writeup
4+
description: Writeup for challenge "Vector overflow" of Down Under CTF 2024
5+
---
6+
7+
## Prologue
8+
9+
Difficulty: beginner
10+
11+
Category: binary exploitation
12+
13+
Solved: 239
14+
15+
!!! quote "Description"
16+
17+
18+
Input files:
19+
20+
??? info "encoding.txt"
21+
22+
23+
NB:
24+
25+
26+
* Following indices bases system is used to avoid ambiguity. Whenever element of a collection is referenced by **number**, 0-based index implied.
27+
28+
Ie, element `0` of list `[1, 2, 4, 8, 16]` is `1`, Element `3` is `8`.
29+
30+
When element is reference in explanation with **word** (first, third...), 1-based system is implied.
31+
32+
Ie, first character of string `Hello World!` is `H`, fifth is `o`.
33+
34+
* Solution code was redacted for readability purposes. Due to time pressure during the competition I was using a lot of one-letter variables and questionable code structure.
35+
36+
## My struggle
37+
38+
39+
40+
## Epilogue
41+
42+
* Official website: [https://downunderctf.com/](https://downunderctf.com/)
43+
* Official writeups: https://github.com/DownUnderCTF/Challenges_2024_Public

0 commit comments

Comments
 (0)