Tagged Questions
The netcat tag has no wiki summary.
15
votes
7answers
5k views
How can I tail a remote file?
I am trying to find a good way to tail a file on a remote host. This is on an internal network of Linux machines. The requirements are:
Must be well behaved (no extra process laying around, or ...
4
votes
2answers
366 views
emulating netcat -e
How would I emulate netcat -e with a version of netcat without the -e option ?
I need to trigger a command remotely. I can do it with netcat-without-e:
#!/bin/bash
netcat -l 8080 ; ...
4
votes
9answers
2k views
How to get the PID of a process that is piped to another process in Bash?
I am trying to implement a simple log server in Bash. It should take a file as a parameter and serve it on a port with netcat.
( tail -f $1 & ) | nc -l -p 9977
But the problem is that when the ...
3
votes
4answers
139 views
How can I access the STDIN of a subprocess?
I want to run the command:
nc localhost 9998
Then I want my script to monitor a file and echo the contents of the file to this sub process whenever the file changes.
I can't work out the ...
3
votes
1answer
150 views
How to purge connections left open by SSH ProxyCommand?
I have a webserver WWW1 and a front-facing proxy PRX. I use SSH ProxyCommand to connect to WWW1's internal IP (private IP) via PRX (private+public IP). For some connections (not all) I see a network ...
3
votes
5answers
578 views
“ssh example.com” hangs but “ssh example.com bash -i” does not
everyday I encounter a very strange phenomenon.
From my university internet connection, sshing to my machine ("ssh example.com") works without any problems.
From my home adsl, "ssh example.com" my ...
3
votes
2answers
2k views
Netcat implementation in Python
I found this and am using it as my base, but it wasn't working right out of the box. My goal is also to treat it as a package instead of a command line utility, so my code changes will reflect that.
...
3
votes
3answers
2k views
How can I close a netcat connection after a certain character is returned in the response?
We have a very simple tcp messaging script that cats some text to a server port which returns and displays a response.
The part of the script we care about looks something like this:
cat someFile | ...
3
votes
2answers
3k views
Problem scripting a HTML header request with netcat
I'm trying to play around with netcat to learn more about how HTTP works. I'd like to script some of it in bash or Perl, but I've hit upon a stumbling block early on in my testing.
If I run netcat ...
2
votes
1answer
80 views
bash netcat proxy combined with awk
In cygwin, I am trying to setup a netcat proxy, as follows:
The server: in one terminal I am running
nc -lp 6000
The proxy: in a second terminal I am running the proxy (listening on 2000 and ...
2
votes
1answer
48 views
How to make netcat send HTTP headers over multiple TCP segments?
I am trying to simulate "HTTP headers spanning multiple TCP segments" as mentioned here - http://wiki.wireshark.org/HTTP_Preferences.
How can this be done using netcat? Are there any examples you ...
2
votes
0answers
54 views
How to read Stata binary format from a compressed file
The Stata knowledge base includes a note on reading ASCII data from a pipe, which
would allow one to read a file without storing the decompressed version on disk. We
have never had success with the ...
2
votes
1answer
396 views
Using netcat/cat in a background shell script (How to avoid Stopped (tty input)? )
Abstract: How to run an interactive task in background?
Details: I am trying to run this simple script under ash shell (Busybox) as a background task.
myscript.sh&
However the script stops ...
2
votes
2answers
169 views
Shell magic wanted: format output of hexdump in a pipe
I'm debugging the output of a program that transmits data via TCP.
For debugging purposes i've replaced the receiving program with netcat and hexdump:
netcat -l -p 1234 | hexdump -C
That outputs ...
2
votes
3answers
2k views
Netcat reverse shell
I am trying to create a reverse shell for two computers on my network, I used netcat a few years ago, I remember I did something like to listen for incoming connections:
netcat -v -l -p <PORT>
...
2
votes
1answer
421 views
Can I use netcat to run PHP CLI w/ arguments?
I'm trying to create a debug listener that listens on a port for a data string and forwards it to a php script as an argument. How can I specify that the input to the port should be used as an ...
2
votes
2answers
358 views
Different behaviour of netcat from telnet when connecting to public route server
I have observed a different behaviour between netcat and telnet when connecting to the public route server bgp-view.tvnetwork.hu and issuing the command show ip bgp.
Using Telnet the output (which is ...
2
votes
2answers
2k views
Send POST request with netcat
I have found this little script in PHP that send a simple request to twitter for update your status, I have tried this: http://pratham.name/twitter-php-script-without-curl.html, and it work. Now, I ...
2
votes
1answer
395 views
Stream a continously growing file over tcp/ip
I have a project I'm working on, where a piece of Hardware is producing output that is continuously being written into a textfile.
What I need to do is to stream that file as it's being written over a ...
2
votes
2answers
858 views
How do I get netcat to accept connections from outside the LAN?
I'm using netcat as a backend to shovel data back and forth for a program I'm making. I tested my program on the local network, and once it worked I thought it would be a matter of simply forwarding a ...
2
votes
1answer
848 views
netcat “Connection refused” on localhost
I'm trying to get a value from a netcat connection started at a php file, but it dies with:
localhost [127.0.0.1] 2000 (?) : Connection refused
I don't know why but it works well if I ssh it as ...
2
votes
2answers
928 views
Java sockets and TCP tuning
I try to develop a file transfer application in Java, with an applet as client, and a standalone java app as server (on a dedicated machine hosted in a datacenter).
I use ...
1
vote
1answer
24 views
Invoke a server having sniffed a communication
I'm reverse engineering a server service, I sniffed the traffic between the client and the server, here the data packet in hex format:
00000016444f3939393930303030313030315c4a303039333331
It's a TCP ...
1
vote
1answer
62 views
Bash Script Statement
I'm trying to figure out what a line means in a bash script file:
mkfifo mypipe
nc -l 12345 < mypipe | /home/myprogram > mypipe
Here's what I understand: nc -l part creates a server-side like ...
1
vote
1answer
208 views
Netcat streaming using UDP
I can get netcat to stream a video using TCP
{server} cat [movie].avi | nc [client ip address] 65535
{client} nc -l -p 65535 | mplayer -
i have tried using the -u command to send via UDP but ...
1
vote
1answer
139 views
Strange behavoiur of netcat with UDP
I noticed a strange behaviour working with netcat and UDP. I start an instance (instance 1) of netcat that listens on a UDP port:
nc -lu -p 10000
So i launch another instance of netcat (instance 2) ...
1
vote
1answer
53 views
Result of netcat command illogically matching a string
I'm wanting to test wich distant port is open to know if I have to connect with telnet VNC Teamviewer or whatever.
I'll have about 10 ports to test, and I'm doing a script for it.
At this point I've ...
1
vote
0answers
137 views
how to remotely execute commands with a script with eg netcat
We have around 40 pc´s here. each pc runs for testpurpouse the same software. On those "clients" is an XP, also the server has an xp.
Everything has no internet connection, so please don't be ...
1
vote
2answers
85 views
Python bind cmd.exe to port
How do I bind cmd.exe onto a port in Python? I want to do the same thing as
Netcats "-e" argument. So the equivilent in Netcat would be:
netcat -l -p 8080 -e cmd.exe
But I want to code it myself in ...
1
vote
1answer
329 views
combine netcat with chat on bash for automatic udp responses
I want to combine "chat" and "nc" on linux, so I will create a tiny udp server that responds on a specific request and sends back an answer.
In fact I want to redirect the stdout of "nc" to the stdin ...
1
vote
4answers
247 views
What's the anatomy of a DNS session?
I'm working on a homework assignment that basically asks us to parse a DNS response to get the IP address and such. The problem is the professor has told us in great detail what the response looks ...
1
vote
3answers
1k views
how to escape hex values in netcat
i want to send the following via netcat:
99||0x00
(4 ascii characters and a zero)
how is this done? im under windows xp.
thank you
1
vote
2answers
495 views
Netcat anomaly in VMWare/Cygwin/Sockets environment
I'm happily running Ubuntu Linux in a VMWare box hosted on XP.
My Linux application opens up your basic server socket port, to which I connect netcat (nc) as a client to listen in on the traffic I'm ...
0
votes
3answers
35 views
How to modify input stream of netcat?
I'm creating a TCP/IP interface to a serial device on a redhat linux machine. netcat in a bash script was used to accomplish this with out to much trouble.
nc -l $PORT < $TTYDEVICE > ...
0
votes
2answers
36 views
netcat and videolan
I have:
one pc with videolan installed (windows 7) 192.168.1.2,
one pc with linux ubuntu 11.4 installed 192.168.1.12,
I've try to send a video via UDP (in videolan) from windows 7 to in linux-pc
...
0
votes
1answer
35 views
How to wire 2 remote processes together via netcat and fifo?
On HostA, I have a process, procA, that does I/O, like so:
#!/bin/bash
while sleep 1 ; do
# Consume input *if available*
if read -t 0.5 x; then # a timed-read
# If input is available, output ...
0
votes
1answer
41 views
Java Chat Server Connecting via NETCAT
I'm trying to implement a JAVA UDP-based Chat server.
I need to implement a server that allows me to connect via netcat.
The main problem is that I must connect like this: (the run-example is this ...
0
votes
1answer
47 views
How to check if string is available on https page via command line on windows?
I suppose this is a simple question ,but I'm not sure how to proceed.
I want to check if a given string is available on a certain https address via command line.
In fact I can use Internet Explorer ...
0
votes
0answers
64 views
Java UDP Chat. Client should use NETCAT to connect
I'm new here. I have been visiting this website for a couple of days and I think is awesome for people like me, who is studying Computer Science. :D
First of all, I'm really sorry, my English s*cks xD ...
0
votes
2answers
69 views
bash resolve service name
As part of a start script I need to check to see if a particular TCP service is actually up and running. By reading a config file I know what the target host and service name is. I intended to use nc ...
0
votes
1answer
30 views
How Can I Send an HTTP Request In a File?
I am learning about computer security and have a question about commands. I have a vulnerable web server that I can exploit a buffer overflow in by using the telnet command and and then sending a ...
0
votes
1answer
62 views
Netcat not Working
I'm just beginning to work with bash scripts and I've tried to get a simple pipe to work:
#!/bin/sh
mkfifo apipe
...
0
votes
1answer
69 views
Can netcat listen to a port of a remote computer?
I am relaying the output of my script to a local port in my system viz -
$python script.py | nc 127.0.0.1 8033
Let's assume that my computer has ip 10.0.0.3
Now, Is it possible that some other ...
0
votes
1answer
82 views
Netcat : Is there a way to send a continuous stream from a command output to a remote listener
I'm using the netcat for unix.
when I run python script.py &> logfile.txt , it gets captured continuously.
To replicate this remotely, I tried nc -l -p 8011 on the listener (client) and the ...
0
votes
1answer
115 views
Using netcat as a simple CGI server
I was trying to use the following script to create a simple CGI server (from http://www.jfranken.de/homepages/johannes/vortraege/netcat_inhalt.en.html). This more about the technical reason it's not ...
0
votes
1answer
60 views
possible C code implementation ideas for a given shell script(related to ffmpeg)
The shell script i'm trying to implement goes like this,
#!/bin/bash
while [ 1 ]
do
nc -l 1234 | ffmpeg -i pipe:0 -vcodec mpeg4 -s qcif -f m4v -y pipe:1 | nc localhost 1235
...
0
votes
0answers
217 views
Homework - Piping Python output to Netcat?
I'm currently working on an assignment for a class in which I am supposed to fix a few exploits and get them in working order. I'm having issues with one of them. The comments in the python file say ...
0
votes
3answers
273 views
std::string messed up when using it as storage within (boost.)async_read_some
I am using async_read_some to read data from a port that is saved in a char[] called _data. Its buffer size is big enough for every request:
void start() {
...
0
votes
1answer
226 views
twisted server, nc client
Ill demonstrate the problem I am facing with a small example.
class TestProtocol(basic.LineReceiver):
def lineReceived(self, line):
print line
Everything works fine as long as I use the ...
0
votes
2answers
559 views
Netcat HTTP posting
When using netcat in linux, I can do a get fine from the command line.
nc google.com 80
GET / HTTP/1.1
Host:google.com
Can someone please show me how to do a post. I tried with no luck. I also ...