Thursday, 31 January 2013

DionaeaFR

A graphical Front end to Dionaea.

Been investigating Honeydrive http://bruteforce.gr/honeydrive








Friday, 18 January 2013

Linux static address

edit /etc/network/interfaces

auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1



Restart the neworking service using the following command
/etc/init.d/networking restart


---
Thanks

http://www.ubuntugeek.com/change-ubuntu-system-from-dhcp-to-a-static-ip-address.html

Thursday, 10 January 2013

OpenVAS Security Scanner

Install CentOS 6.3 from the ISO:http://www.mirrorservice.org/sites/mirror.centos.org/6.3/isos/i386/CentOS-6.3-i386-bin-DVD1.iso

when built

ifup eth0

The follow

http://www.openvas.org/install-packages.html#openvas_centos_atomic


yum -y install wget

wget -q -O - http://www.atomicorp.com/installers/atomic |sh


yum install openvas -y

openvas-setup





---
Thanks

http://www.blogger.com/blogger.g?blogID=79461662083673586#editor/target=post;postID=7180450781596906845
http://www.openvas.org/install-packages.html#openvas_centos_atomic

Tuesday, 1 January 2013

Install a graphical interface on Ubuntu



rrdtool@ubuntu:~$ sudo apt-get install xinit


sudo startx



Useful links

http://andrewmichaelsmith.com/2012/02/quick-install-of-dionaea-on-ubuntu/


Set Linux time / date

Have noticed that virtual machines may not have the same time as host.

So, some systems like OpenVAS may not allow logons.

to set the time use

# date +%T -s "10:13:13"

or for time and date


sudo date newdatetimestring
where newdatetimestring has to follow the format nnddhhmmyyyy.ss which is described below
  • nn is a two digit month, between 01 to 12
  • dd is a two digit day, between 01 and 31, with the regular rules for days according to month and year applying
  • hh is two digit hour, using the 24-hour period so it is between 00 and 23
  • mm is two digit minute, between 00 and 59
  • yyyy is the year; it can be two digit or four digit: your choice. I prefer to use four digit years whenever I can for better clarity and less confusion
  • ss is two digit seconds. Notice the period ‘.’ before the ss.
Let’s say you want to set your computer’s new time to December 6, 2007, 22:43:55, then you would use:
sudo date 120622432007.55
date mmddhhmmyyy




---
Thanks to
http://lists.wald.intevation.org/pipermail/openvas-discuss/2011-June/003128.html
http://www.cyberciti.biz/faq/howto-set-date-time-from-linux-command-prompt/
http://codeghar.wordpress.com/2007/12/06/manage-time-in-ubuntu-through-command-line/