simple implementation of their PoW challenge that generates the epsfc cookie. (I don't know where it's used)
go get github.com/xkiian/ticketmaster-epsfc
package main
import (
"fmt"
"time"
epsfc "github.com/xkiian/ticketmaster-epsfc"
)
func main() {
solver, err := epsfc.NewPowSolver(nil)
if err != nil {
fmt.Println(err)
return
}
start := time.Now()
cookie, err := solver.GetCookie()
if err != nil {
fmt.Println(err)
return
}
fmt.Printf("[+] Solved: %s | took %s\n", cookie[0:70], time.Since(start))
}This project is licensed under the MIT License - see the LICENSE file for details.
This package is unofficial and not affiliated with Ticketmaster. Use it responsibly and in accordance with their terms of service.