我是新手ncat
,在几个选项上遇到了问题:-g -G -s --sctp
-g
选项
ncat -g proxy-source-IP -v remote-IP 31337
从到source-IP
它remote-IP
返回source-IP
,并且不是 proxy-source-IP
正如它应该的那样。
例如,从 IP 为 1.0.0.0 的机器运行该命令
ncat -g 1.0.1.0 -v 1.1.0.0 31337
应该返回 1.0.1.0,不是1.0.0.0
-G
选项
ncat -G 4 -v remote-IP 31337
这里到底是什么-G 4
意思?
-s
选项
ncat -s proxy-source-IP -v remote-IP 31337 #
从source-IP
到remote-IP
返回source-IP
,不是就像它应该的那样proxy-source-IP
。例如,从 IP 为 1.0.0.0 的机器:
ncat -s 1.0.1.0 -v 1.1.0.0 31337
应该返回 1.0.1.0,不是1.0.0.0
--sctp
选项
ncat -v remote-IP --sctp 31338
输入进入 shell,不是 ncat
作为STDERR
回复输入(见下文)
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
谁能解释这些奇怪的行为?