Pages

Pages

Thursday, January 24, 2013

Dante Socks5 Server Debian



Dante - A free SOCKS server

Dante is a product developed by Inferno Nettverk A/S. It consists of a SOCKS server and a SOCKS client, implementing RFC 1928 and related standards. It is a flexible product that can be used to provide convenient and secure network connectivity.
Once installed, Dante can in most cases be made transparent to clients, providing functionality somewhat similar to what could be described as a non-transparent Layer 4 router. For customers interested in controlling and monitoring access in or out of their network, the Dante SOCKS server can provide several benefits, including security and TCP/IP termination (no direct contact between hosts inside and outside of the customer network), resource control (bandwidth, sessions), and logging (host information, data transfered).

  1. Upload Script to your Debian root
  2. chmod 0777 scriptname.sh
  3. ./scriptnasme.sh
  4. Enter Socks5 User Password
  5. Connect to your new Socks Server on Port 7334 with your User Password

#!/bin/bash

# by cr4shyyy Auto Simple- Dante-Socks-Server



apt-get install dante-server

cat /dev/null > /etc/danted.conf

echo logoutput: stderr /dev/null >> /etc/danted.conf

echo internal: eth0 port = 7334 >> /etc/danted.conf

echo external: eth0 >> /etc/danted.conf

echo method: username >> /etc/danted.conf

echo user.privileged: root >> /etc/danted.conf

echo client pass { >> /etc/danted.conf

echo from: 0.0.0.0/0 to: 0.0.0.0/0 >> /etc/danted.conf

echo } >> /etc/danted.conf

echo pass { >> /etc/danted.conf

echo from: 0.0.0.0/0 to: 0.0.0.0/0 >> /etc/danted.conf

echo protocol: tcp udp >> /etc/danted.conf

echo } >> /etc/danted.conf 



dpkg --configure --pending

/etc/init.d/danted start

useradd Socks5

mkdir  /home/Socks5

chown Socks5:users /home/Socks5

passwd Socks5

No comments:

Post a Comment