Skip to content

Latest commit

 

History

2 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ticketmaster epsfc PoW solver

wakatime

simple implementation of their PoW challenge that generates the epsfc cookie. (I don't know where it's used)


Installation

go get github.com/xkiian/ticketmaster-epsfc

Usage

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))
}

License

This project is licensed under the MIT License - see the LICENSE file for details.


Star History

Star History Chart

Disclaimer

This package is unofficial and not affiliated with Ticketmaster. Use it responsibly and in accordance with their terms of service.

About

ticketmaster PoW solver 🤷

Resources

Stars

25 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages