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 [...]
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 … [...]
TCPReassemble
posted in C, Tools & sources, Windows on Nov 25th, 2011
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 [...]
Cain and Abel : The password recovery tool for Windows
posted in Windows on Dec 4th, 2010
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 [...]
WireShark : Network sniffer and protocol analyzer
posted in Windows on Dec 4th, 2010
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 [...]