This commit is contained in:
Tylous
2022-01-20 13:19:15 -05:00
parent e76a467e61
commit 5ea23e39ae
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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 {
+1 -1
View File
@@ -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)