CTF Writeup Amendments
This commit is contained in:
parent
ab645156f2
commit
c939d1dc8d
|
@ -42,7 +42,7 @@ if strings.ContainsAny(ip, "!\"#%&'+,-/:;<=>?@[\\]^_`|~ ") {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
The first `if` block limits the input to **14 characters long**. The second block **prevents some special characters in the input**. This proved to be challenging.
|
The first `if` block limits the input to **15 characters long**. The second block **prevents some special characters in the input**. This proved to be challenging.
|
||||||
|
|
||||||
```golang
|
```golang
|
||||||
if runtime.GOOS == "windows" {
|
if runtime.GOOS == "windows" {
|
Loading…
Reference in New Issue