Messages - hwtan [ switch to compact view ]

Pages: prev1 2 3 4 5 [6] 7 8 9next
26
WinXP has one build in. At command prompt, type netstat -ab


28
Did a update today and was able to update to 2.51.26.

The latest components of NOD32 that I have are:

NOD32 antivirus system information
Virus signature database version:   1.1807 (20061017)
Dated:   17 October 2006
Virus signature database build:   8196

Information on other scanner support parts
Advanced heuristics module version:   1.037 (20060926)
Advanced heuristics module build:   1122
Internet filter version:   1.002 (20040708)
Internet filter build:   1013
Archive support module version:   1.050 (20060926)
Archive support module build version:   1176

Information about installed components
NOD32 for Windows NT/2000/XP/2003/x64 - Base
Version:   2.51.26
NOD32 for Windows NT/2000/XP/2003/x64 - Internet support
Version:   2.51.26
NOD32 for Windows NT/2000/XP/2003/x64 - Standard component
Version:   2.51.26

29
Developer's Corner / Re: Tiny 'Touch' 32 bits program in C (3 kb)
« on: October 01, 2006, 02:17 PM »
Interesting... AFAIK, win32 PE header is already 1KB in side...


30
Developer's Corner / Re: Tiny 'Touch' 32 bits program in C (3 kb)
« on: October 01, 2006, 01:36 PM »
If you want it smaller, here's the program in assembly. Executable file has size of 1536 bytes.

Code: ASM [Select]
  1. .486                                ; create 32 bit code
  2.     .model flat, stdcall                ; 32 bit memory model
  3.     option casemap :none                ; case sensitive
  4.  
  5.     include \masm32\include\windows.inc
  6.     include \masm32\include\kernel32.inc
  7.     include \masm32\include\user32.inc
  8.     include \masm32\include\shell32.inc
  9.  
  10.     includelib \masm32\lib\kernel32.lib
  11.     includelib \masm32\lib\shell32.lib
  12.  
  13.     .code
  14. start:
  15.  
  16. main proc
  17.         local   commandLine:LPSTR
  18.         local   numOfArgs:DWORD
  19.         local   argsP:DWORD
  20.         local   fileH:HANDLE
  21.         local   currentSysTime:SYSTEMTIME
  22.         local   newFileTime:FILETIME
  23.    
  24.         invoke  GetCommandLineW
  25.         mov     commandLine, eax
  26.         invoke  CommandLineToArgvW, commandLine, addr numOfArgs
  27.         mov     argsP, eax
  28.         cmp     numOfArgs, 2
  29.         jl      failure
  30.         mov     eax, argsP
  31.         mov     ebx, [eax + 4]
  32.         invoke  CreateFileW, ebx, FILE_READ_ATTRIBUTES+FILE_WRITE_ATTRIBUTES, FILE_SHARE_READ+FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL
  33.         mov     fileH, eax
  34.         cmp     eax, INVALID_HANDLE_VALUE
  35.         je      failure
  36.         invoke  GetSystemTime, addr currentSysTime
  37.         invoke  SystemTimeToFileTime, addr currentSysTime, addr newFileTime
  38.         invoke  SetFileTime, fileH, NULL, NULL, addr newFileTime
  39.         invoke  ExitProcess, 0
  40.        
  41. failure:        
  42.         invoke  ExitProcess, -1
  43. main    endp
  44.    
  45. end     start

Pages: prev1 2 3 4 5 [6] 7 8 9next
Go to full version