Feed on
Posts
Comments

Archive for February, 2006

Here are the steps I took to format my USB flash disk for VFAT filesystem. I chose this filesystem because it is supported in Windows and also in Linux :

Unmount the usb disk (if it is still in use) :

# umount /dev/sda1

Format the usb disk :

# mkfs.vfat -c -n TEDI /dev/sda1mkfs.vfat 2.10 (22 [...]

Read Full Post »

First Encounter with Scapy

After read several papers and presentations in network security field that mentioning scapy, I decided to try it.
From the Scapy website :
Scapy is a powerful interactive packet manipulation program. It is able to forge or decode packets of a wide number of protocols, send them on the wire, capture them, match requests and replies, [...]

Read Full Post »

Trying Nmap 4.00

Several days ago, I read an announcement about Nmap 4.00 release. In that announcement there are at least 200 fixes and features added to this version compare to Nmap 3.50. And also Fyodor said this version has many performance improvement I couldn’t resist to download the newest version.
Last night, I installed it on my machine.
When [...]

Read Full Post »

Graffiti Generator

I found a cool site to generate graffiti online :http://atom.smasher.org/graffiti/
It’s so darn cool.
I make one graffiti for my blog site :

Read Full Post »

Fix Backspace Key Problem in vim

Problem :
In my SUSE 9.3 Professional there is a problem in vim. The backspace key only delete new text and it doesn’t delete old text, it just gives me a system beep.
So, for example, if there is already text in the file, I cannot delete it. But if I insert new text and immediately [...]

Read Full Post »

Forensic Tools in Court

Here are several articles regarding forensic tools in court :

http://www.unixreview.com/documents/s=9943/ur0512i/ur0512i.html

http://www.cybersecurityinstitute.biz/tpicq.htm

http://www.forensicfocus.com/index.php?name=Forums&file=viewtopic&t=4&postdays=0&postorder=asc&start=0

http://informationsecurity.techtarget.com/magPrintFriendly/0,293813,sid42_gci1147990,00.html

While reading those articles, I come across an article titled MD5 collisions and the impact on digital forensics by Eric Thompson of AccessData.

Read Full Post »

MD5 in Erlang

Last week (20 Dec 2005) there is a question regarding how to do MD5 in Erlang in Erlang mailing list.
I replied by quoting the following resource :
In addition to what Bengt has said, you may want totake a look at the following message thread. Itdiscussed how to generate MD5 hash like md5sum program :

http://www.erlang.org/ml-archive/erlang-questions/200303/msg00492.html
Jing sent [...]

Read Full Post »

I have been struggling with the deferred concept in TwistedMatrix since last night. At that time, I read the deferred concept from : Generalization of Deferred Execution in Python. Unfortunately, I didn’t get it. I couldn’t do more because I was too tired, so I went to bed.
I wake up early this morning to go [...]

Read Full Post »

TwistedMatrix : Foundation Theory

I got the following links regarding Twisted framework background theory from an email sent to Twisted mailing list:

Generalization of Deferred Execution in Python

Asynchronous Programming with Twisted

Components: Interfaces and Adapters

Read Full Post »

Berkenalan Dengan Twisted

Beberapa malam lalu, saya akhirnya berhasil juga cobain Twisted. Proses instalasinya tidak sesulit yang saya perkirakan, gampang banget. Cuma kemaren-kemaren ada kesalahan, saya mendownload paket Twisted secara terpisah-pisah, dan ternyata ada paket yang dibutuhkan yang belum didownload. Jadi gak bisa dibuild dah.
Untunglah kemaren tahu triknya, ambil aja paket bernama TwistedSumo, paket itu udah komplit..plit..plit….Di dalamnya [...]

Read Full Post »