Jump to content

Jen

Active Members
  • Posts

    205
  • Joined

  • Last visited

Posts posted by Jen

  1. This is a script from delphi that i made. Don't know if it works with switchblade.

    :

    We will be using GetVersionEx() to fill in the _OSVERSIONA (TOSVersionInfoA) structure with information about current OS.

    0 = The operating system is Windows Server 2008, Windows Vista, or Windows 2000.

    1 = The operating system is Windows XP.

    2 = The operating system is Windows Server 2003 R2, Windows Server 2003, or Windows XP Professional x64 Edition.

    What we do is compare dwMinorVersion (DWORD) to the value 0.

    function IsVista:Boolean;

    var OS:TOSVersionInfoA;

    begin

    OS.cbSize:=sizeof(OS);

    if OS.dwMinorVersion = 0 then

    result:=true

    else

    result:=false;

    end;

    Useage: If IsVista = True Then ShowMessage(’Windows Vista!’);

  2. Nah man, i tried it on another computer and it throws No Disk errors there. The real question here is why would one computer throw No Disk errors while another doesn't...

    Edit: With everything enabled, it throws the No Disk error exactly 9 times every time...there's a clue.

    Hi I'm new here, and I would say that I love your payload. However, the No Disk Error, if you disable all the password dumping and the LSA secrets, then it wouldn't show up, or at least that's what happens to me. i'm trying this on my virtual Machine running windows xp home sp2 Hope this helps!

×
×
  • Create New...