Linux

So I’ve slowly been working my way through Security Tubes Python Scripting Expert (SPSE) course. But, I’ve not liked the way the python interpreter doesn’t have tab completion. After a little bit of digging I found the following so wanted to make sure I made a note of it and shared it with others.

Create a file in your home directory called .pyrc and insert the following lines into it:… Continue reading

So on a test I wanted to test the possibility of performing a DoS against an IP based network camera to see of the possibility of disrupting it’s video stream. Well the idea was to hammer the device with UDP packets.

A quick look around and I found this code here. I decided to take a copy of the code as the base for a quick perl script.

A quick… Continue reading

So on 21st May 2012 version 6 of nmap was released. Only issue is that they dont seem to release a deb package for it.

No big deal we’ll just have to build our own (tested on BT5r2 32+64bit)…

1234567891011echo "deb http://security.ubuntu.com/ubuntu lucid-security main" >> /etc/apt/sources.list apt-get update apt-get upgrade apt-get install libssl-dev checkinstall wget http://nmap.org/dist/nmap-6.00.tar.bz2 bzip2 -cd nmap-6.00.tar.bz2 | tar xvf - cd nmap-6.00 ./configure make checkinstall --install=no… Continue reading

So on a recent test I found a few devices, one was a Qunatum Scalar i500 and the other was an IBM TS3310, both are tape libraries.

CVE-2012-1844 states the following: The Quantum Scalar i500 tape library with firmware before i7.0.3 (604G.GS00100), also distributed as the Dell ML6000 tape library with firmware before A20-00 (590G.GS00100) and the IBM TS3310 tape library with firmware before R6C (606G.GS001), uses default passwords for… Continue reading

Just downloaded and started playing with BackTrack 5 R2 but there is still plenty of tools missing, you would have thought they would have took a look at my script and added most of the bits I have fixed in my script… what do they do with their time???

Anyway, until I update the bt5-fixit.sh script to work with BT5r2 I have quickly put together a list of my… Continue reading