Skip to content

Instantly share code, notes, and snippets.

View husniadil's full-sized avatar
😄

Husni Adil Makmur husniadil

😄
View GitHub Profile
@husniadil
husniadil / extract-6969.sh
Created January 24, 2021 15:09
Hack The Box: Eternal Loop
#!/bin/bash
set -e
# Solve https://app.hackthebox.eu/challenges/56
# Eternal Loop
# Can you find a way out of this loop?
# Usage: ./solve.sh
# crack last zip file
@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"