Articles

Metasploit Framework Windows Tutorial
Remote Desktop Connection
Windows Processes That May Be Dangerous
How-To use NetCat a Tutorial
Common Linux Commands
Common Ports
Netcat Commands
HTTP Response Codes
War-Google Hack Terms
Wardriving
Avoiding Social Engineering and Phishing Attacks
Intrusion Detection on Linux
Linux Intrusion Detection
Penetration Testing Guide
Penetration Testing Tools
Social Engineering Fundamentals, Part I: Hacker Tactics
Social engineering (computer security)
The Psychology of Social Engineering

The Archives

General GSO
GovernmentSecurity.org News & Suggestions
In The News
Open Topic
General Security Information
Trash Can
Exploit & Vulnerability Mailing List Archives
Trial Member Forum
Product and Program Reviews GSO Tutorials
System Security
Windows Systems
Beginners Section
Linux & Unix Systems
File Downloads
Exploit Research & Discussion Trojan & Virus Errata
Networking Security / Firewall / IDS / VPN / Routers
System Hardening
E-Mail Security
Wifi Security
Trial Member Uploads
Upload discovered Trojans & Mal ware
GSO Programming Section
C , C++ , VC++
Visual Basic.NET
Perl /CGI
Java/Javascript
PHP/XML/ASP/HTML
Assembly + Other
The Cork Board
Network Security Consultant Directory
Network Security Jobs
The Archives
Encryption Information
General Network Security
Internet Anonymity
HTTP Protocol Security
Linux Security
MS IIS Information
Exploit Articles
Programming / Tool Design
GSO Software Projects
Public Downloads
Microsoft Security Questions and Papers

JewelCase
can you please suggest me any tiny and good port redirector
for linux and unix like oses ?
so that when I connect to the box to a given port it redirects my connection
to another box and port that I can chose ?
thanx a lot ..
linux_dude
Search helps :-/

Click Me
myth
Most *nix boxes come with ssh anyway. So you can use SSH's Port Redirecting/Forwarding method to get past the firewalls, in places where the firewalls are strict, often you'll find ssh to normal users maybe restricted aswell - so yeah, check out the other methods mentioned in the other post.

But linux_dude has a point - shouldve searched first...
linux_dude
I've compiled and succesfully run datapipe on almost any account on *nix boxes**, so give it a try.

**Unless you're completely barred from using the network stack at all
JewelCase
QUOTE(linux_dude @ Jul 19 2005, 02:45 PM)
I've compiled and succesfully run datapipe on almost any account on *nix boxes**, so give it a try.

**Unless you're completely barred from using the network stack at all
*



well I'm not sure I can compile anything ..
it's not exactly a shell what I have ..
can you please explain me better that SSH's Port Redirecting/Forwarding method ?
Nitron
QUOTE(JewelCase @ Jul 19 2005, 03:29 PM)
can you please explain me better that SSH's Port Redirecting/Forwarding method ?
*



http://www.codemastershawn.com/library/tut.../ssh.tunnel.php

Oh, and Google is your friend.
lovepump
netfilter/iptables are built in to linux. It can do port redirection (DNAT) without any additional software.

Here is an example of taking TCP traffic from eth0 on port 80, and redirecting to ip address 10.1.1.1 :

CODE

iptables -t nat -I PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to-destination 10.1.1.1


Thats all that is required.

Bob
JewelCase
CODE

iptables -t nat -I PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to-destination 10.1.1.1

damn interesting ..
do you think it works on Mac os X out of the box ?
cduke250
Maybe something like samplicator, socat, nc, vtun? There is a really cool tool out there that is a socket file, like mysql.sock, but it is really a redirector. I use it to connect remotely to mysql servers, when they do not allow remote connections.

Ya datapipe is solid also. Samplicator is UDP. socat is probably the best.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2005 Invision Power Services, Inc.