netcat is a command for performing read/write operations on TCP or UDP network connections.
0
votes
0answers
45 views
Running Ping through exec function in Android
Im trying to get an ARM binary of netcat running on my droid. Its already contained in the data/local/tmp folder on the device. The netcat commands also work via adb shell.
However, im trying to ...
1
vote
1answer
31 views
Best way to interact with a service for exploitation purpose
Suppose I have a service to interact with. Using netcat it would be something like this:
> nc 127.0.0.1 8080
hello
hi how are you?
I want to automatize the interaction with this service in order ...
0
votes
0answers
51 views
VLC plays network stream from the past?
I have a working h264 video stream server solution where I pipe the video output to netcat.
The streaming server is a Raspberry Pi with a camera module
raspivid -t 999999 -w 300 -h 300 -hf -fps 20 -o ...
0
votes
1answer
31 views
capturing EOF sent from netcat
I am implementing a multi threaded chat server just to learn. I am connecting clients through netcat. I need to broadcast the message received by a client to other connected clients. That part is ...
2
votes
3answers
105 views
Minimal web server using netcat
I'm trying to set up a minimal web server using netcat (nc). When the browser calls up localhost:1500, for instance, it should show the result of a function (date in the example below, but eventually ...
1
vote
1answer
62 views
bash receive udp packets tcpdump
On one server, I am receiving udp packets on 192.168.0.51 from an application running on 192.168.0.21, and have to reply with a specific acknowledgement packet.
The solution I wrote works as ...
0
votes
0answers
36 views
Cannot establish TCP connection outside of LAN
I have been trying to create a TCP connection between a client program and a remote server. I am able to form a connection between the two when they are running on the same machine, and any machines ...
0
votes
1answer
61 views
Proxy built with netcat not allowing http basic authentication
I made a simple proxy server using nc, here's the one-liner:
mkfifo queueueue
nc -l 8080 <queueueue | nc http://$JENKINS_HOSTNAME 80 >queueueue
It listens on port 8080 and then forwards the ...
0
votes
1answer
35 views
Continuously send the content of a file through a server socket with netcat
I have a linux machine which is listening for connections on port 4450. Where there is an incomming connection, this is supposed to send continuously over the socket the content of a file. Did you do ...
2
votes
1answer
64 views
Whois query works with telnet but not netcat
I am trying to write an advanced whois client, so I have been experimenting with sending commands to whois servers using netcat (nc) in Arch Linux. For example, this works great:
$ echo domain ...
0
votes
0answers
153 views
How to read input from RTSP stream in C#?
I have a server running serving RTSP streaming video content on 127.0.0.1:8554/nurv
I am now trying to write a proxy that will read the stream from this location and pass it along via a socket ...
-1
votes
1answer
76 views
Using netcat with -p option [closed]
I used netcat in the following way
nc -l 3333 //for server
nc 127.0.0.1 3333 // for client
With this I am able to use it as a two way chatting system.
My question is, then why is there ...
0
votes
0answers
79 views
How do I grab std output from a netcat listener subprocess from my Java program that I executed using Runtime.getRuntime().exec(cmdLine)?
I'm using netcat to test a udp port forwarder, and am unable to programmatically read the string from the destination (a netcat listener subprocess). What is the correct stream to read from my netcat ...
0
votes
0answers
70 views
How to implement telnet negotiation in bash script being served using tcpserver
My script does a heavy use of tput things. And tput needs a proper $TERM variable.
Script is being served using TcpServer, while clients are expected to connect using NetCat.
Currently it takes $TERM ...
2
votes
1answer
86 views
Why netcat doesn't dumps the response?
$ cat mass_insert.txt
*3
$3
SET
$4
key1
$6
value1
*3
$3
SET
$4
key2
$6
value2
$ cat mass_insert.txt | nc localhost 6379
If you see, I've redis commands for mass insert in a file mass_insert.text, I ...
0
votes
3answers
113 views
How to delay pipe netcat to connect on first input
Running in bash under Ubuntu:
I have a source that generates me some output, but not straight away. Let's assume it is a first netcat listening on a socket: netcat -l 12345.
And I would like to pipe ...
0
votes
1answer
94 views
How to netcat multiple files without tar?
Currently I am transporting files back and forth over telnet and I would like to send multiple files at once.
However, my target platform (a Blackfin processor) does not have "tar" enabled in its ...
3
votes
1answer
101 views
Serve an HTTP response including an image, with netcat
I'm trying to write a little HTTP server using netcat. For plain text files this works fine but when I try to send a picture, the browser displays only the icon for broken images.
What I do is ...
1
vote
1answer
81 views
Getting Windows Store Sockets to chat with Netcat?
I'm trying to do get a basic interface working for Windows Store using the Windows.Networking.Sockets API. So far I have this:
public async void Test()
{
using (var socket = new ...
0
votes
1answer
36 views
Bash timed piping
I'm writing a script that uses netcat and when I try to run my script the server ignores some of the commands because there is no delay in the communication. So I need to be able to echo something to ...
1
vote
2answers
207 views
BASH web server on port 80 without running as root all the time
I am building a very small http server to control a raspberry pi-based device from a browser using this as a starting point: http://paulbuchheit.blogspot.com/2007/04/webserver-in-bash.html
The core ...
1
vote
1answer
30 views
Unable to send files using netcat
I am using netcat to send file over my campus network.
I have used
c:\nc -w200 10.x.x.x 9638 < file.txt
on my client machine and
c:\nc -v -L -p 9638 >> nc.out
on my computer that is working ...
0
votes
2answers
55 views
save result to variable
How can I save result from nc to the variable?
I want:
nc: connect to localhost port 1 (tcp) failed: Connection refused
on my variable. I tried:
a="$(nc -z -v localhost 1)"
echo $a
...
0
votes
2answers
106 views
how to re-compile netcat with options?
Silly question but I'm not very good at configuring from shell. I want to re-compile my version of netcat with the -DGAPING_SECURITY_HOLE option enabled (see section 0x1). I have the source code ...
1
vote
2answers
210 views
Netcat: using nc -l port_number instead of nc -l -p port_number
This question is following this one: Sockets working in openSUSE do not work in Debian?
When working with sockets on my Debian system, I have to use nc -l -p port_number to simulate the server I want ...
0
votes
1answer
61 views
Sockets working in openSUSE do not work in Debian?
I have a C/C++ TCP client working in OpenSUSE but not in Debian.
I'm using nc -l 4242 for the server.
Then I connect with ./my_client 127.0.0.1 4242 on my Debian system (Sid) and it will fail when ...
0
votes
1answer
63 views
Pipe data without EOF? Possible?
I am trying to write a bash script that opens an FTP connection in nc that remains open in the background. I have:
(echo "USER o:)"; echo "PASS foo")| nc -d 192.168.56.101 21 &
but the ...
0
votes
1answer
41 views
Bash script hand over input instead of exit
Is there a way to have a bash script hand over execution to the user in its current state upon exiting? For example, I would a script that logs into an FTP server with "nc ip-address 21", runs a ...
0
votes
2answers
89 views
Connect to host and replay output
I am trying to solve the following problem: Connect to a given ip address and port number using Netcat. Enter the password when prompted by "Enter password:". Then the remote machine echoes 2 lines of ...
0
votes
0answers
143 views
public socks proxy over SSH
So I'm able to create a local socks proxy with sudo ssh -D 8080 user@server
and I can access it only from my machine:
nmap -p 8080 127.0.0.1
8080/tcp open http-proxy
However this proxy is not ...
1
vote
2answers
150 views
How can you send a Growl notification with netcat?
I need to send growl notifications from a bash script, but I don't have the ability to install either the growlnotify command line tool, or the perl module that could do similar. I can write arbitrary ...
-1
votes
1answer
109 views
Netcat vs Traceroute [closed]
I tried to do a netcat to a specific server to check if the port is open:
nc -zu xxx.xxx.xxx.xxx 5060
Connection to xxx.xxx.xxx.xxx 5060 port [udp/sip] succeeded!
but traceroute, by default it uses ...
0
votes
1answer
97 views
Using windows built-ins (plus TeraTerm and perl, possibly) to emulate netcat's raw connection mode
So I'm trying to get windows to perform much like our Linux machines are able to.
Basically, we have a server set up to run a specific program on a port. From a Linux box, running the following will ...
0
votes
2answers
433 views
Send text file, line by line, with netcat
I'm trying to send a file, line by line, with the following commands:
nc host port < textfile
cat textfile | nc host port
And tried with tail or head, but with the same result: the entire file ...
-1
votes
1answer
496 views
tunnel ssh over udp using netcat [closed]
I am trying to tunnel a ssh over udp using netcat (I am doing everything in localhost for now):
> mkfifo /tmp/fifo
> nc -l 9999 < /tmp/fifo | nc -u localhost 10000 > /tmp/fifo
> ...
0
votes
1answer
143 views
CreateProcess doesn't run application (nc.exe) as it should?
The problem is that when i am open nc.exe from the CMD using the nc syntax as in the above code it works and is connecting to my server. But when i am doing so through my program (using the above ...
4
votes
1answer
161 views
Why does OS X allow listening on the same TCP port twice?
I was trying to debug port allocation problems in Jenkins on OS X by listening to certain ports with netcat, which led to some weird results.
In a terminal on OS X 10.8.2:
$ uname -rs
Darwin ...
0
votes
1answer
644 views
Executing script on receiving incoming connection with xinetd
I want xinetd to execute a shell script when a connection is received on a certain port. To accomplish this, followed this tutorial: [enter link description here][1]
Unfortunately, the whole thing ...
2
votes
2answers
134 views
Python subprocesses don't output properly?
I don't think I'm understanding python subprocess properly at all but here's a simple example to illustrate a point I'm confused about:
#!/usr/bin/env python
import subprocess
lookup_server = ...
0
votes
2answers
113 views
How To download a file from webserver to your computer?
I'm back connected with a Freebsd server [netcat ] And There is a File On /tmp That i want to download it but
Its can't be browsed with My Browser So there is any ways to download it ?
because i ...
0
votes
0answers
292 views
How create simple script ftp-server by netcat?
Start netcat:
#!/bin/bash
while true
do
nc -l -p 12345 -c ./log_script
done
./log_script:
#!/bin/bash
echo -n "login: "
read log
echo -n "password: "
read pass
if (echo "$pass">$log);then
...
0
votes
0answers
68 views
Netcat Traditional and extraction [closed]
I am a bit stuck on a few things that have to do with netcat traditional. I have been searching for a few days now on how to extract contents from netcat traditional into another directory using ...
0
votes
2answers
140 views
command hangs head / netcat
I am using two linux machines to simulate some firewall tests... I execute the tests by running nc through ssh on a remote machine... if I spawn the ssh like this, it works...
ssh -i id_dsa -o ...
2
votes
1answer
348 views
using netcat for external loop-back test between two ports
I am writing a test script to exercise processor boards for a burn-in cycle during manufacturing. I would like to use netcat to transfer files from one process, out one Ethernet port and back into ...
1
vote
1answer
187 views
ping router.utorrent.com using netcat for dht
I'm just trying to get a response from router.utorrent.com to potentially make a dht service down the track.
for example the magnet link would give me
...
-1
votes
1answer
163 views
Perl script making call to itself (through nc -e) is failing. Claiming no such file/dir
We have been asked to set up a backdoor in a victim machine for a homework assignment. I've gained access to the machine and I want to have the following script run on a cron, but it's throwing an ...
4
votes
2answers
291 views
How to answer to ajax request on server side?
I've following function:
$.ajax({url:"http://127.0.0.1:8080", data: "123",
success:
function(response, textStatus, jqXHR)
{
alert(response);
},
error:
function(jqXHR, ...
0
votes
1answer
221 views
how to put tcp data from netcat to variables?
I have set up a server with the usual nc - lk <port> command.
My client sends tcp data to the server socket in the form of xxx,yyy which are numbers.
I want every time the client connects ...
0
votes
0answers
178 views
Why does Multicast Netcat (mnc) seem to fail when I switch to static IP?
I have an embedded project that contains two independent processors that communicate using mnc (multicast netcat). Currently the system is set up to boot using DHCP (each processor gets its own IP). ...
1
vote
2answers
702 views
unix netcat utility on linux, checking if connection was made
I am using netcat utility on linux to receive outputs from a program on a windows machine. My problem being that the program on the windows machine does not always give an output.
How can i check ...
