Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save filler/856645 to your computer and use it in GitHub Desktop.
Save filler/856645 to your computer and use it in GitHub Desktop.
Installing atop python 2.4 had busted wgets in the honeypot.
Bug @ http://code.google.com/p/kippo/issues/detail?id=38
Author demanded 2.5+
Installed previously using vendor 2.4:
yum install python-setuptools.noarch python-devel gcc
easy_install pycrypto
easy_install pyasn1
curl -O -C - "http://pypi.python.org/packages/source/T/Twisted/Twisted-10.2.0.tar.bz2"
tar xvfj Twisted-10.2.0.tar.bz2
cd Twisted-10.2.0
python setup.py install
/sbin/iptables -t nat -A PREROUTING -i eth0 -p tcp --destination-port 22 -j REDIRECT --to-port 2222
Installed with 2.6 via epel repo:
yum install python26-distribute python26-devel gcc
easy_install-2.6 pycrypto
easy_install-2.6 pyasn1
curl -O -C - "http://pypi.python.org/packages/source/T/Twisted/Twisted-10.2.0.tar.bz2"
tar xvfj Twisted-10.2.0.tar.bz2
cd Twisted-10.2.0
python26 setup.py install
/sbin/iptables -t nat -A PREROUTING -i eth0 -p tcp --destination-port 22 -j REDIRECT --to-port 2222
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment