Files
MrAle98-sliver/server/core/core.go
2021-09-10 16:25:31 -05:00

32 lines
947 B
Go

package core
/*
Sliver Implant Framework
Copyright (C) 2019 Bishop Fox
This program 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
(at your option) any later version.
This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
*/
import (
"crypto/rand"
"encoding/binary"
)
// EnvelopeID - Generate random ID of 8 bytes
func EnvelopeID() int64 {
randBuf := make([]byte, 8) // 64 bits of randomness
rand.Read(randBuf)
return int64(binary.LittleEndian.Uint64(randBuf))
}