Install proxychains kali linux

Configuring The ProxyChains

Sometimes we need to remain untraceable while performing a penetration testing activity. Proxychains helps us by allowing us to use an intermediary system whose IP can be left in the logs of the system without worry of it tracing back to us.

Proxychains is a tool that allows any application to follow connection via proxy such as SOCKS5, Tor and so on.

How to do it

Proxychains is a pre-installed tool in Kali Linux. If not you need to install it by using following command in terminal :

apt-get install proxychains
  • To do that we open the configuration file of proxychains in a text editor like LeafPad or Vim. We are gonna use LeafPad so open the terminal in Kali Linux and the command is following :
leafpad /etc/proxychains.conf

The following screenshot is showing the output for the preceding command :

Default configuration file
  • By default the dynamic_chain is closed and the strict_chain is opened. But we need to open the dynamic_chain and close the strict_chain. To do that delete the # before dynamic_chain and put a # before strict_chain. Following screenshot shows the difference from the default configuration file to changed configuration file.
Changed configuration file

  • Almost done now scroll down to last and add an extra line and wright following line there :
  • Save the file and close this configuration in ProxyChains is complete. Now we will learn how to use this with Tor to be untraceable in the Internet world.
Читайте также:  Узнать заряд батареи linux

Using with Tor

  • After starting tor services we need to type following command to use an application via proxychains:
proxychains toolname -arguments

Источник

Инструменты Kali Linux

Список инструментов для тестирования на проникновение и их описание

ProxyChains-NG

Описание ProxyChains-NG

ProxyChains – это UNIX программа, которая подцепляет связанные с сетью libc функции в ДИНАМИЧЕСКИ СВЯЗЫВАЕМЫХ программах через предварительно загруженный DLL (dlsym(), LD_PRELOAD) и перенаправляет подключения через SOCKS4a/5 или HTTP прокси.

Она поддерживает только TCP (UDP/ICMP и т.д. отсутствует).

Поддерживаемые платформы: Linux, BSD, Mac.

Программа не всегда может работать так, как вы ожидаете, поэтому при любых серьёхных случаях использования всегда требуется проверять, что трафик действительно отправляется через прокси.

Не смотря на ограничения, эта программа обладает замечательными функциями:

  • Она может смешивать различные типы прокси в одной цепи, например: ваш_хост socks5 http socks4 целевой_хост
  • Поддерживаются различные опции построения цепи
  • случайный порядок из списка (пользователь определяет длину цепи).
  • точный порядок (по мере их появления в списке)
  • динамический порядок (умное исключение из цепи мёртвых прокси)
  • Вы можете использовать её с большинством программных TCP клиентов, возможно даже с сетевыми сканерами, если они используют функциональность стандарта libc. Сканеры, основанные на pcap, не работают.
  • Вы можете использовать её с серверами вроде squid, sendmail или любыми другими.
  • Преобразование DNS через прокси.

ProxyChains-NG – это продолжение больше не поддерживаемого проекта proxychains. В ней содержаться многочисленные исправления ошибок и некоторые улучшения. Рекомендуется использовать именно новую версию ProxyChains-NG, которая в некоторых системах заменила оригинальную proxychains (производные Arch Linux). Но в производных Debian ProxyChains-NG нужно устанавливать из исходного кода.

Автор: N3E7CR34TUR3, rofl0r и другие

Источник

How To Install proxychains on Kali Linux

In this tutorial we learn how to install proxychains on Kali Linux.

What is proxychains

Proxy chains force any tcp connection made by any given tcp client to follow through proxy (or proxy chain). It is a kind of proxifier. It acts like sockscap / premeo / eborder driver ( intercepts TCP calls )

This version supports SOCKS4, SOCKS5 and HTTP CONNECT proxy servers. Different proxy types can be mixed in the same chain.

  • Access Internet from behind restrictive firewall.
  • Source IP masquerade.
  • SSH tunneling and forwarding.
  • Dynamic LAN-to-LAN VPN channel.
  • Servers and daemons friendly (works fine with sendmail MTA).
Читайте также:  Операционная система linux краткая характеристика

There are three ways to install proxychains on Kali Linux . We can use apt-get , apt and aptitude . In the following sections we will describe each method. You can choose one of them.

Install proxychains Using apt-get

Update apt database with apt-get using the following command.

After updating apt database, We can install proxychains using apt-get by running the following command:

sudo apt-get -y install proxychains 

Install proxychains Using apt

Update apt database with apt using the following command.

After updating apt database, We can install proxychains using apt by running the following command:

sudo apt -y install proxychains 

Install proxychains Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

After updating apt database, We can install proxychains using aptitude by running the following command:

sudo aptitude -y install proxychains 

How To Uninstall proxychains on Kali Linux

To uninstall only the proxychains package we can use the following command:

sudo apt-get remove proxychains 

Uninstall proxychains And Its Dependencies

To uninstall proxychains and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove proxychains 

Remove proxychains Configurations and Data

To remove proxychains configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge proxychains 

Remove proxychains configuration, data, and all of its dependencies

We can use the following command to remove proxychains configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge proxychains 

References

Summary

In this tutorial we learn how to install proxychains using different package management tools like apt, apt-get and aptitude.

Читайте также:  Поменять права доступа папке linux

Источник

Packages and Binaries:

Proxychains is a UNIX program, that hooks network-related libc functions in dynamically linked programs via a preloaded DLL (dlsym(), LD_PRELOAD) and redirects the connections through SOCKS4a/5 or HTTP proxies. It supports TCP only (no UDP/ICMP etc).

This project, proxychains-ng, is the continuation of the unmaintained proxychains project (known as proxychains package in Debian).

This package provides the runtime shared library used by proxychains-ng program.

Installed size: 63 KB
How to install: sudo apt install libproxychains4

proxychains4

Proxychains is a UNIX program, that hooks network-related libc functions in dynamically linked programs via a preloaded DLL (dlsym(), LD_PRELOAD) and redirects the connections through SOCKS4a/5 or HTTP proxies. It supports TCP only (no UDP/ICMP etc).

This project, proxychains-ng, is the continuation of the unmaintained proxychains project (known as proxychains package in Debian).

Installed size: 67 KB
How to install: sudo apt install proxychains4

proxychains4

Redirect connections through proxy servers

[email protected]:~# proxychains4 --help Usage: proxychains4 -q -f config_file program_name [arguments] -q makes proxychains quiet - this overrides the config setting -f allows one to manually specify a configfile to use for example : proxychains telnet somehost.com More help in README file 
proxychains4-daemon
[email protected]:~# proxychains4-daemon -h Proxychains-NG remote dns daemon -------------------------------- usage: proxychains4-daemon -i listenip -p port -r remotesubnet all arguments are optional. by default listenip is 127.0.0.1, port 1053 and remotesubnet 224. 

Источник

Оцените статью
Adblock
detector