-
as seen on Super User
- Search for 'Super User'
socat - exec:'bash -li',pty,stderr,ctty - bash: no job control in this shell
What options should I use to get fully fledged shell as I get with ssh/sshd?
I want to be able to connect the shell to everything socat can handle (SOCKS 5, UDP, OpenSSL), but also to have a nice shell which correctly interprets…
>>> More
-
as seen on Super User
- Search for 'Super User'
socat - exec:'bash -li',pty,stderr,ctty - bash: no job control in this shell
What options should I use to get fully fledged shell as I get with ssh/sshd?
I want be able to connect the shell to everything socat can handle (socks5, udp, openssl), but also to have a nice shell which correctly interprets…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
As per a suggestion on stackoverflow, to compare IPC on a single machine using
a) sockets (TCP) on localhost to localhost
b) using FIFOs
(between Java and C)
To answer (a), I used netcat to gauge transfer speed (91 MBytes/sec)[1]
(b) Q: How can I test FIFO write speed using socat?
My…
>>> More
-
as seen on Super User
- Search for 'Super User'
socat - exec:'bash -li',pty,stderr,ctty - bash: no job control in this shell
What options should I use to get fully fledged shell as I get with ssh/sshd?
I want be able to connect the shell to everything socat can handle (socks5, udp, openssl), but also to have a nice shell which correctly interprets…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
Concerning the Netcat/Socat utility . From the man page, it seems like it is possible to create a secure proxy using netcat by which I could point my web browser to like a proxy server , that could fork/drive my web traffic through the proxy. Is this possible? Any hints on how to do this? …
>>> More
-
as seen on Super User
- Search for 'Super User'
Is anybody else not able to get nc -lp 8888 working on Mac OS X? Is there another way to get this to work?
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
Hi, everyone
I'm trying to do something like:
echo "request" | nc -u 1.1.1.1 9999 > response.txt
I can see that response is comming from server (with tcpdump) after executing this line. However, my response.txt stays empty. Is there a way to get it?
Thanks in advance
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I tried to connect to my POP3 school server as part of my assignment. Now, I can connect to the server but the real problem is when I try to log in using the "USER" command.
c:/>nc server.pop3.com 110
+OK Microsoft Exchange Server 2003 POP3 server version 6.5.7638.1 (server.pop3.com) ready.
USER…
>>> More
-
as seen on Super User
- Search for 'Super User'
I want to use netcat as a proxy to log http requests and responses to files, then tail these to inspect traffic. Think wireshark.
Tried the following where 'fifo' is a named pipe, 'in' and 'out' are files, netcat proxy on port 8080, server on port 8081.
while true; do cat fifo | nc -l -p 8080 |…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
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 simple tcp/ip connection.
I'm currently trying to that through simple netcat, but netcat…
>>> More