Tnze / pwn

Simple Go lib like pwntools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pwn

GoDoc
Play CTF with golang!

Getting started

package main

import "github.com/Tnze/pwn/v2"

func main() {
    p := pwn.Remote("example.com:1314")
    p.Write([]byte{0x00, 0x01, 0x02})   // payload
    p.Interactive()
}

There is no if err != nil. If an error is present, log.Fatal will be called.

About

Simple Go lib like pwntools

License:MIT License


Languages

Language:Go 100.0%