diff --git a/Loader/Loader.go b/Loader/Loader.go index 7deba56..33b2d6a 100644 --- a/Loader/Loader.go +++ b/Loader/Loader.go @@ -104,7 +104,7 @@ func GenerateComunication(stage, sleeptime, jitter, useragent, datajitter string Beacon_Com := &Beacon_Com{} Beacon_Com.Variables = make(map[string]string) var HostStageMessage string - if stage == "False" { + if stage == "False" || stage == "false" { Beacon_Com.Variables["stage"] = "false" HostStageMessage = "[!] Host Staging Is Disabled - Staged Payloads Are Not Available But Your Beacon Payload Is Not Available To Anyone That Connects" } else { diff --git a/Utils/Utils.go b/Utils/Utils.go index 0bf16c4..eb20daf 100644 --- a/Utils/Utils.go +++ b/Utils/Utils.go @@ -134,7 +134,7 @@ func GenerateURIValues(numb int, profile_type int, Post bool, customuri string) if profile_type == 1 { num = rand.Intn(30-14) + 14 } else { - num = rand.Intn(46-20) + 20 + num = rand.Intn(30-14) + 20 } n := num b := make([]byte, n)