Files
osmedeus/libs/version.go
T

27 lines
726 B
Go

package libs
import "fmt"
const (
// VERSION of this project
VERSION = "v4.7.0"
// DESC description of the tool
DESC = "A Workflow Engine for Offensive Security"
// BINARY name of osmedeus
BINARY = "osmedeus"
// SNAPSHOT binary name of osmedeus
SNAPSHOT = "osm"
// AUTHOR of this
AUTHOR = "@j3ssiejjj"
// DOCS private document
DOCS = "https://docs.osmedeus.org"
// METADATA domain for checking update
METADATA = "https://metadata.osmedeus.org"
// INSTALL default install script
INSTALL = "https://raw.githubusercontent.com/osmedeus/osmedeus-base/master/install.sh"
)
// TEMP default folder to store inputs
var TEMP = fmt.Sprintf("/tmp/%s-inputs/", SNAPSHOT)
var LDIR = fmt.Sprintf("/tmp/%s-log/", SNAPSHOT)