Subscribe via RSS ... Subscribe via e-mail ... Follow me on Twitter ... Follow me on Facebook ...

C – Generating a timestamp on Windows

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 #include <stdio.h> #include <windows.h>   /* * Program entry point * */   int main(int argc, char **argv) { SYSTEMTIME lSysTime; GetSystemTime(&lSysTime);   printf("%d:%d:%d.%.3d\n", lSysTime.wHour, lSysTime.wMinute, lSysTime.wSecond, lSysTime.wMilliseconds);   return(0); } Digg this post Buzz it up [...]

read full post »

AyCarrumba

The last weeks were quite intensive. In theorie it looked plausible and logical but while putting the plan into practise some obstacles had to be overcome, namely getting back into libpcap, ARP man in the middle and TCP stream reassembly. I’m on track and the deadline (between 15. and 18. December) is still realistic … [...]

read full post »

TCPReassemble

As mentioned earlier I’m going to upload sources that belong to the prototype of the new project. And as it is new, alpha and tested in a modest scope I cant guarantee it’s working without faults. In case you encounter problems let me know and drop a mail. TCPReassemble, as the name says, reassembles TCP [...]

read full post »

Tool name Cain & Abel Description Cain & Abel is a password recovery tool for Microsoft Operating Systems. It allows easy recovery of various kind of passwords by sniffing the network, cracking encrypted passwords using Dictionary, Brute-Force and Cryptanalysis attacks, recording VoIP conversations, decoding scrambled passwords, revealing password boxes, uncovering cached passwords and analyzing routing [...]

read full post »

Tool name WireShark Description Wireshark (known as Ethereal until a trademark dispute in Summer 2006) is a fantastic open source network protocol analyzer for Unix and Windows. It allows you to examine data from a live network or from a capture file on disk. You can interactively browse the capture data, delving down into just [...]

read full post »

older posts »