File tree 2 files changed +23
-7
lines changed
content/blog/sasctf2024-stuhnet
2 files changed +23
-7
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
params :
3
- author : " falamous"
4
- social : https://t.me/falamous
3
+ authors :
4
+ - name : " falamous"
5
+ social : https://t.me/falamous
6
+ links :
7
+ - name : channel
8
+ link : https://t.me/theinkyvoid
9
+
5
10
title : " SAS CTF 2024 - CK0P0 CTYXHET writeup"
6
11
tldr : " challenge we solved by running angr on a binary generated from pseudocode of the wasm file"
7
12
date : " 2024-05-21T22:24:53+02:00"
Original file line number Diff line number Diff line change @@ -4,10 +4,21 @@ <h1>{{ .Title }}</h1>
4
4
< span class ="text-faded "
5
5
> Posted on < time datetime ="{{ .Date.Format "2006-01-02 " }}"> {{ dateFormat ":date_long" .Date }}</ time > by
6
6
</ span >
7
- {{- if isset .Params "social" -}}
8
- < a href ="{{ .Params.social }} "> {{ .Params.author }}</ a >
9
- {{- else -}}
10
- < span > {{ .Params.author }}</ span >
7
+ {{ range .Params.authors }}
8
+ {{- if isset . "social" -}}
9
+ < a href ="{{ .social }} "> {{ .name }}</ a >
10
+ {{- else -}}
11
+ < span > {{ .name }}</ span >
12
+ {{- end -}}
13
+ {{ if and (.links) (gt (len .links) 0) }}
14
+ (
15
+ {{- range $index, $link := .links -}}
16
+ {{ if ne $index 0 -}}
17
+ ,
18
+ {{ end -}}< a href ="{{ $link.link }} "> {{ $link.name }}</ a >
19
+ {{- end -}}
20
+ )
21
+ {{ end }}
11
22
{{- end -}}
12
23
13
24
{{- if .Draft -}}
@@ -31,7 +42,7 @@ <h1>{{ .Title }}</h1>
31
42
< nav class ="tags ">
32
43
< ul class ="flex flex-wrap ">
33
44
{{ range .Params.tags }}
34
- < li class ="mr-2 " > < span class =" mr-[2px] text-tag" > # </ span > < span > {{ . }}</ span > </ li >
45
+ < li class ="mr-2 before: text-tag before:content-['#'] " > {{ . }}</ li >
35
46
{{ end }}
36
47
</ ul >
37
48
</ nav >
You can’t perform that action at this time.
0 commit comments