Categorygithub.com/Tnze/pwn/v2
package
2.0.0-20191002100150-ea86f723ac51
Repository: https://github.com/tnze/pwn.git
Documentation: pkg.go.dev

# README

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.