Thursday, 10 November 2016

Raspberry Pi on QEMU






---Thanks---

https://sourceforge.net/projects/honeeepi/?source=typ_redirect

http://techny.tumblr.com/post/36589722093/quick-guide-on-emulating-a-raspberry-pi-in-windows


Wednesday, 9 November 2016

Ubuntu 14.04.5 LTS (Trusty Tahr) and Modern Honey Network


Getting much better results now installing onto Ubuntu 14.04




sudo apt-get install git -y

cd /opt/
sudo git clone https://github.com/threatstream/mhn.git
cd mhn/

sudo ./install.sh



Sunday, 11 September 2016

MHN mnemosyne FATAL status

I found this page

http://webcache.googleusercontent.com/search?q=cache:luZNj4e2uL4J:www.malovisky.com/&num=1&hl=en&gl=uk&strip=1&vwsrc=0

The application mnemosyne is responsible for informing the attacks suffered by the honeypot and without her the operation framework becomes somewhat inoperable.
 If the terminal give the command #python-V you will check that the python version is 2.7.3 and for the application's operation it must be to 2.7.4.

Some more naughty already would drop an apt-get upgrade but from what I have researched the
python 2.7.4 is not part of the source list for ubuntu 12.04.5 only from the 13.

From then on will work.  I hit my head more than a week to fix this problem


wget https://www.python.org/ftp/python/2.7.4/Python-2.7.4.tgz
tar -zxvf Python-2.7.4.tgz
cd Python-2.7.4/
./configure
make
make install
shutdown -r now


cd /opt
rm -rv mnemosyne
cd /opt/mhn/scripts
./install_mnemosyne.sh
shutdown -r now


===
Thanks to https://github.com/malovisky

Sunday, 3 January 2016

MHN and Raspberry Pi

Pi Bits

Back up NOOBs

load up
turn on SSH
note the IP address



Ubuntu MHN install

https://github.com/threatstream/mhn

cd /opt/
sudo apt-get install git -y
sudo git clone https://github.com/threatstream/mhn.git
cd mhn/
sudo ./install.sh




https://github.com/threatstream/mhn/wiki/Deploying-Dionaea-on-a-Raspberry-Pi



Browse from a Windows PC

https://www.bitvise.com/ssh-client-download


Test 1


MHN Troubleshooting

PyMongo Connection Refused 

sudo rm -r /opt/hpfeeds

sudo rm -r /opt/mnemosyne

mongod --repair



./install.sh


Check if firewall port redirects are causing this trouble.



edit the /etc/mongod.conf file and set your bind_ip = 0.0.0.0 in order to make connections externally.





Thanks----


http://stackoverflow.com/questions/24899849/connection-refused-to-mongodb-errno-111