Domain: dest-unreach.org
Stories and comments across the archive that link to dest-unreach.org.
Comments · 12
-
Re:pop3 and Google
... it requires SSL, which I don't know how to emulate with anything at the command line like telnet.socat is a telnet/netcat clone with SSL and readline baked in. I used to (in a former life) regularly hit imap servers with:
bash$ socat READLINE SSL:mailserver:993
-
Re:telnet mailhost.foo.com 25
You won't get far with telnet unless you can do SSL in your head. I recommend socat.
$ socat ssl:mail.foo.com:456 stdio -
Re:People stopped using Telnet?
-
Re:who still uses telnet?
You might have better success with even a semi-valid HTTP/1.1 request such as
GET / HTTP/1.1
Host: www.google.comAlso, using telnet here is redundant. You should consider using one of the several netcats available. Some even support nice features like SSL encryption, so you can make encrypted requests to to the https port (443).
-
try to use SOCAT.
Another very good solution is to use this little multipurpose relay netcat++: http://www.dest-unreach.org/socat/ They are saying that you could tunnel even a VPN traffic, with just one simple command.
-
Re:ncat vs socat
socat is crazy. It supports SSL/TLS and chaining of protocols (e.g. for tunnelling) and you can use this addressing scheme as a library for your projects.
checkout the Manpage and the examples
Definitely powerful, but I found it a little picky on command-line parameters -- if you just want to do simple stuff it is not that easy to get into it.
-
Re:ncat vs socat
socat is crazy. It supports SSL/TLS and chaining of protocols (e.g. for tunnelling) and you can use this addressing scheme as a library for your projects.
checkout the Manpage and the examples
Definitely powerful, but I found it a little picky on command-line parameters -- if you just want to do simple stuff it is not that easy to get into it.
-
ncat vs socat
ncat is still fairly limited.
socat (the 2.0 beta versions) is the best app to use for that stuff. It can use arbitrary chains of protocols, which is very useful when dealing with exotic and crazy situations like trying to tunnel stuff through multiple proxies.
-
Re:Show attached block devices
If you like netcat, try out socat . Like netcat on steroids.
-
Re:One awsome tool
Real men use socat.
-
Re:I've always wanted to know if it is possible
Socat for every type on tingling you wanna do on a socket http://www.dest-unreach.org/socat/
-
Re:dsniff, ntop
socat > netcat. If you need that fancy flexibility, and can handle more obtuse commandlines.