Expand Useable Ports...these apply to hosted servers too..
continuous-integration/drone/pr Build is pending Details

This commit is contained in:
Sarah Jamie Lewis 2023-08-16 10:56:43 -07:00
parent bbacb5539d
commit 932f99fac8
1 changed files with 2 additions and 2 deletions

View File

@ -273,10 +273,10 @@ func (tp *torProvider) Listen(identity connectivity.PrivateKey, port int) (conne
if cwtchRestrictPorts := os.Getenv("CWTCH_RESTRICT_PORTS"); strings.ToLower(cwtchRestrictPorts) == "true" {
// for whonix like systems we tightly restrict possible listen...
// pick a random port between 15300 and 15378
// pick a random port between 15000 and 15378
// cwtch = 63 *77 *74* 63* 68 = 1537844616
log.Infof("using restricted ports, CWTCH_RESTRICT_PORTS=true");
localport = 15300 + (localport % 78)
localport = 15000 + (localport % 378)
}
if bindExternal := os.Getenv("CWTCH_BIND_EXTERNAL_WHONIX"); strings.ToLower(bindExternal) == "true" {