Ich bin neu in ncat
und habe Probleme mit wenigen Optionen:-g -G -s --sctp
-g
Möglichkeit
ncat -g proxy-source-IP -v remote-IP 31337
Von dem source-IP
zu dem remote-IP
kehrt es zurück source-IP
und nicht so, proxy-source-IP
wie es sein soll.
Führen Sie den Befehl beispielsweise von einem Computer mit der IP 1.0.0.0 aus
ncat -g 1.0.1.0 -v 1.1.0.0 31337
soll 1.0.1.0 zurückgeben, nicht 1.0.0.0
-G
Möglichkeit
ncat -G 4 -v remote-IP 31337
was -G 4
heißt hier genau
-s
Möglichkeit
ncat -s proxy-source-IP -v remote-IP 31337 #
from source-IP
to remote-IP
gibt das zurück source-IP
, nicht das, proxy-source-IP
was es soll. Zum Beispiel von einem Computer mit einer IP von 1.0.0.0:
ncat -s 1.0.1.0 -v 1.1.0.0 31337
soll 1.0.1.0 zurückgeben, nicht 1.0.0.0
--sctp
Möglichkeit
ncat -v remote-IP --sctp 31338
Die Eingabe wird an die Shell gesendet, nicht ncat
als STDERR
Antwort (siehe unten).
Ncat: Version 6.00 ( http://nmap.org/ncat )
foo
No command 'foo' found, did you mean:
Command 'fio' from package 'fio' (main)
Command 'xoo' from package 'xoo' (main)
Command 'fop' from package 'fop' (main)
Command 'fox' from package 'objcryst-fox' (main)
Command 'zoo' from package 'zoo' (main)
Command 'goo' from package 'goo' (main)
foo: command not found
Kann jemand diese seltsamen Verhaltensweisen erklären?
linux
networking
netcat
user2901196
quelle
quelle