mirror of
https://github.com/wikiZ/RedGuard
synced 2026-06-08 18:18:32 +00:00
32 lines
1.6 KiB
Go
32 lines
1.6 KiB
Go
/**
|
|
* @Author 风起
|
|
* @contact: onlyzaliks@gmail.com
|
|
* @File: version.go
|
|
* @Time: 2022/5/5 9:25
|
|
**/
|
|
|
|
package config
|
|
|
|
const (
|
|
BANNER = `
|
|
|
|
██████╗ ███████╗██████╗ ██████╗ ██╗ ██╗ █████╗ ██████╗ ██████╗
|
|
██╔══██╗██╔════╝██╔══██╗ ██╔════╝ ██║ ██║██╔══██╗██╔══██╗██╔══██╗
|
|
██████╔╝█████╗ ██║ ██║ ██║ ███╗██║ ██║███████║██████╔╝██║ ██║
|
|
██╔══██╗██╔══╝ ██║ ██║ ██║ ██║██║ ██║██╔══██║██╔══██╗██║ ██║
|
|
██║ ██║███████╗██████╔╝ ╚██████╔╝╚██████╔╝██║ ██║██║ ██║██████╔╝ -V %s
|
|
╚═╝ ╚═╝╚══════╝╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝
|
|
|
|
Github:%s
|
|
|
|
RedGuard is a C2 front flow control tool,Can avoid Blue Teams,AVs,EDRs check.
|
|
`
|
|
VERSION = "23.08.21 Alpha"
|
|
TITLE = "RedGuard"
|
|
LICENSE = "GPL-2.0"
|
|
URL = "https://github.com/wikiZ/RedGuard"
|
|
AUTHOR = "风起"
|
|
TEAM = "Independent Security Researcher"
|
|
COPYRIGHT = "Copyright (C) 2022 风起. All Rights Reserved"
|
|
)
|