Skip to content

mullsox is an overengineered toolkit to work with the mullvad API. It's designed for use when already connected to a mullvad VPN endpoint.

License

Notifications You must be signed in to change notification settings

yunginnanet/mullsox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mullsox

GoDoc Go Report Card IRC

mullsox is an overengineered toolkit to work with the mullvad API. It's designed for use when already connected to a mullvad VPN endpoint.

More specifically, it was built to help the user make use of all of the SOCKS proxies that are available via the internal 10.0.0.0/8 subnet while connected to mullvad servers. this allows you to utilize somewhere around 75-100 different outgoing IP addresses via SOCKS proxies all while only connected to one mullvad VPN server.

usage

package main

import (
	"time"

	"git.tcp.direct/kayos/mullsox"
	"git.tcp.direct/kayos/mullsox/mullvad"
)

func main() {
	fetcher := mullvad.NewChecker()
	socksCh, errCh := mullsox.GetAndVerifySOCKS(fetcher) 
	
	// or, with options:
	
	/* 
	socksCh, errCh := mullsox.GetAndVerifySOCKS(fetcher,
	    mullsox.CheckerWorkerLimit(25), 
	    mullsox.CheckerTimeout(3*time.Second),
	)
	*/
	
	go func() {
		for err := range errCh {
			println(err.Error())
		}
	}()
	for sock := range socksCh {
		println(sock.String())
	}
	fmt.Printf("loaded %d p")
}
5 5 5 5 5

mullsox works great with prox5.

About

mullsox is an overengineered toolkit to work with the mullvad API. It's designed for use when already connected to a mullvad VPN endpoint.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages