Skip to content

Instantly share code, notes, and snippets.

View BelodedAleksey's full-sized avatar
🤡

Alexey BelodedAleksey

🤡
  • Apatity
View GitHub Profile
if r.URL.String() == "/robots.txt" {
w.Write([]byte("User-agent: *\nDisallow: /"))
return
}
@BelodedAleksey
BelodedAleksey / golang
Created December 28, 2019 14:52
Minhook NtQuerySystemInformation
package main
import (
"fmt"
"log"
"syscall"
"unsafe"
"github.com/nanitefactory/gominhook"
)