Skip to content

Instantly share code, notes, and snippets.

View itxsoumya's full-sized avatar
🎯
Focusing

Soumyaranjan Pradhan itxsoumya

🎯
Focusing
View GitHub Profile
@itxsoumya
itxsoumya / md5HashCrack.go
Last active February 15, 2021 07:21
simple md5 hash cracker
package main
import (
"bufio"
"crypto/md5"
"flag"
"fmt"
"log"
"os"
)
@itxsoumya
itxsoumya / goSubFinder.go
Created February 5, 2021 11:34
find out subdomain using golang :)
package main
import (
"bufio"
"errors"
"flag"
"fmt"
"os"
"github.com/miekg/dns"
package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/hello", viewHandler)
err := http.ListenAndServe("localhost:8080", nil)