Skip to content

Instantly share code, notes, and snippets.

@husniadil
husniadil / main.go
Created January 23, 2021 17:59
Hack The Box: Phonebook
package main
import (
"errors"
"fmt"
"net/http"
"net/url"
)
// Solve https://app.hackthebox.eu/challenges/153
@husniadil
husniadil / main.go
Last active January 23, 2021 18:00
Hack The Box: Emdee five for life
package main
import (
"crypto/md5"
"fmt"
"io/ioutil"
"net/http"
"net/http/cookiejar"
"net/url"
"strings"