mirror of
https://github.com/nmap/nmap.git
synced 2025-12-14 03:39:02 +00:00
NCAT_REMOTE_ADDR environment variables set in all --*-exec child processes. (this is a merge of ncat-env-conninfo as of r31516)
12 lines
271 B
Bash
Executable File
12 lines
271 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Print the contents of all environment variables set by Ncat.
|
|
|
|
echo "NCAT_REMOTE_ADDR=$NCAT_REMOTE_ADDR"
|
|
echo "NCAT_REMOTE_PORT=$NCAT_REMOTE_PORT"
|
|
|
|
echo "NCAT_LOCAL_ADDR=$NCAT_LOCAL_ADDR"
|
|
echo "NCAT_LOCAL_PORT=$NCAT_LOCAL_PORT"
|
|
|
|
echo "NCAT_PROTO=$NCAT_PROTO"
|