Files
Russel Van Tuyl c4571f4dda Upgraded quic-go
2025-04-16 10:01:16 -04:00

76 lines
2.3 KiB
Go

/*
Merlin is a post-exploitation command and control framework.
This file is part of Merlin.
Copyright (C) 2024 Russel Van Tuyl
Merlin is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
any later version.
Merlin is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Merlin. If not, see <http://www.gnu.org/licenses/>.
*/
// Package core contains pieces of information or functions needed across the entire application
package core
import (
// Standard
"math/rand"
"sync"
"time"
)
// Global Variables
// Verbose indicates if the agent should write messages to STDOUT
var Verbose = false
// Debug is used to troubleshoot problems and results in very detailed information being displayed on STDOUT
var Debug = false
// Version is the Merlin Agent's version number
var Version = "2.4.3"
// Build is the build number of the Merlin Agent program set at compile time
var Build = "nonRelease"
// Mutex is used to ensure exclusive access to STDOUT & STDERR
var Mutex = &sync.Mutex{}
var src = rand.NewSource(time.Now().UnixNano())
// Constants
const (
letterIdxBits = 6 // 6 bits to represent a letter index
letterIdxMask = 1<<letterIdxBits - 1 // All 1-bits, as many as letterIdxBits
letterIdxMax = 63 / letterIdxBits // # of letter indices fitting in 63 bits
letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
)
// RandStringBytesMaskImprSrc generates and returns a random string of n characters long
func RandStringBytesMaskImprSrc(n int) string {
// http://stackoverflow.com/questions/22892120/how-to-generate-a-random-string-of-a-fixed-length-in-golang
b := make([]byte, n)
// A src.Int63() generates 63 random bits, enough for letterIdxMax characters!
for i, cache, remain := n-1, src.Int63(), letterIdxMax; i >= 0; {
if remain == 0 {
cache, remain = src.Int63(), letterIdxMax
}
if idx := int(cache & letterIdxMask); idx < len(letterBytes) {
b[i] = letterBytes[idx]
i--
}
cache >>= letterIdxBits
remain--
}
return string(b)
}