Skip to content
Kev++ edited this page Oct 2, 2017 · 3 revisions
mkdir -p ~/proxychains-ng/{DEBIAN,etc,usr/{bin,lib}}
apt show proxychains > ~/proxychains-ng/DEBIAN/control
vim ~/proxychains-ng/DEBIAN/control

wget https://github.com/rofl0r/proxychains-ng/releases/download/v4.12/proxychains-ng-4.12.tar.xz
tar xJf proxychains-ng-4.12.tar.xz
cd proxychains-ng-4.12
./configure --prefix=/usr
make install DESTDIR=~/proxychains-ng
cp src/proxychains.conf ~/proxychains-ng/etc/

dpkg -b ~/proxychains-ng proxychains-ng_4.12-1_armhf.deb
sudo dpkg -i proxychains-ng_4.12-1_armhf.deb

sudo vim /etc/proxychains.conf
proxychains4 curl https://www.youtube.com/
~/proxychains-ng/
├── DEBIAN/
│   ├── control
│   ├── postinst*
│   └── postrm*
├── etc/
│   └── proxychains.conf
└── usr/
    ├── bin/
    │   └── proxychains4*
    └── lib/
        └── libproxychains4.so*

File: control

Package: proxychains-ng
Version: 4.12-1
Maintainer: EasyPi Software Foundation
Homepage: https://github.com/rofl0r/proxychains-ng/
Architecture: armhf
Section: net
Priority: optional
Description: proxychains-ng - redirect connections through proxy servers

File: postinst

#!/bin/bash

ldconfig

File: postrm

#!/bin/bash

ldconfig
Clone this wiki locally