CTF Writeup Amendments

This commit is contained in:
Devoalda 2023-12-09 12:07:51 +08:00
parent ab645156f2
commit c939d1dc8d
1 changed files with 1 additions and 1 deletions

View File

@ -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" {