Created
March 5, 2011 19:30
-
-
Save filler/856645 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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