From 4703cfd570bb18b59406c7a124489a044bc22105 Mon Sep 17 00:00:00 2001 From: zmweske <31971632+zmweske@users.noreply.github.com> Date: Sat, 24 Sep 2022 14:31:54 -0500 Subject: [PATCH] Added ncat.exe to listeners Allows for simple Windows ncat.exe calling from inside of WSL, meaning the listener runs on windows and binds to the windows port and not a NAT'ed WSL host. --- js/data.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/data.js b/js/data.js index baf0eee..00a3888 100644 --- a/js/data.js +++ b/js/data.js @@ -451,6 +451,7 @@ const rsgData = { listenerCommands: [ ['nc', 'nc -lvnp {port}'], ['ncat', 'ncat -lvnp {port}'], + ['ncat.exe', 'ncat.exe -lvnp {port}'], ['ncat (TLS)', 'ncat --ssl -lvnp {port}'], ['rlwrap + nc', 'rlwrap -cAr nc -lvnp {port}'], ['rustcat', 'rcat -lp {port}'],