Stuxnet source code

      Bot name Stuxnet   Author Unknown     Written in C     Description Stuxnet is a computer worm discovered in June 2010. It initially spreads via Microsoft Windows, and targets Siemens industrial software and equipment. It is the first discovered malware that spies on and subverts industrial systems, and the first [...]

read full post »

Ghost RAT source code

      Bot name Ghost RAT   Author China     Written in C++     Description Ghost Rat (or Gh0st RAT) is a Trojan horse for the Windows platform that the operators of GhostNet used to hack into some of the most sensitive computer networks on Earth.[1] It is a cyber spying computer [...]

read full post »

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 #include <windows.h> #include <stdio.h>     void main(int argc, char **argv) { FILE [...]

read full post »

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); }

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 »

« newer posts - older posts »