POV-Ray : Newsgroups : povray.off-topic : Malware is getting nastier and more professional than ever Server Time
11 Oct 2024 01:23:19 EDT (-0400)
  Malware is getting nastier and more professional than ever (Message 15 to 24 of 34)  
<<< Previous 10 Messages Goto Latest 10 Messages Next 10 Messages >>>
From: somebody
Subject: Re: Malware is getting nastier and more professional than ever
Date: 12 Mar 2008 21:11:48
Message: <47d88d64$1@news.povray.org>
"Warp" <war### [at] tagpovrayorg> wrote
> Orchid XP v7 <voi### [at] devnull> wrote:

> > No - it displays a message during the POST sequence. (And waits for a
> > keypress.)

>   What's that?

You push down on a key until it registers or bottoms out. There's usually an
audible click too.


Post a reply to this message

From: Darren New
Subject: Re: Malware is getting nastier and more professional than ever
Date: 12 Mar 2008 22:23:44
Message: <47d89e40$1@news.povray.org>
Invisible wrote:
> More interesting is that it can touch the MBR from Windoze in the first 
> place...

Why's that interesting? Run "diskpart" (which comes with Windows) and 
tell it to look at the MBR.  Or google mbrfix, and have a program 
that'll read *and* write.

Indeed, read the first 512 bytes from the file \\.\physicaldisk0 to look 
at your MBR.  I just couldn't get it to open for writing.

-- 
   Darren New / San Diego, CA, USA (PST)
     "That's pretty. Where's that?"
          "It's the Age of Channelwood."
     "We should go there on vacation some time."


Post a reply to this message

From: Darren New
Subject: Re: Malware is getting nastier and more professional than ever
Date: 12 Mar 2008 22:25:10
Message: <47d89e96$1@news.povray.org>
Warp wrote:
>   And how would it detect at that stage if something modified the MBR?

It stores in the CMOS the checksum of the previous MBR.

> And even if it did, wouldn't it be too late? The modification and thus
> the damage already happened.

MBRs are pretty standard. You know your system is hosed, so instead of 
continuing you boot the CD and rewrite the MBR. :-)

-- 
   Darren New / San Diego, CA, USA (PST)
     "That's pretty. Where's that?"
          "It's the Age of Channelwood."
     "We should go there on vacation some time."


Post a reply to this message

From: Darren New
Subject: Re: Malware is getting nastier and more professional than ever
Date: 12 Mar 2008 22:25:30
Message: <47d89eaa$1@news.povray.org>
somebody wrote:
> "Warp" <war### [at] tagpovrayorg> wrote
>> Orchid XP v7 <voi### [at] devnull> wrote:
> 
>>> No - it displays a message during the POST sequence. (And waits for a
>>> keypress.)
> 
>>   What's that?
> 
> You push down on a key until it registers or bottoms out. There's usually an
> audible click too.

BURN!  :-)

-- 
   Darren New / San Diego, CA, USA (PST)
     "That's pretty. Where's that?"
          "It's the Age of Channelwood."
     "We should go there on vacation some time."


Post a reply to this message

From: Chris Cason
Subject: Re: Malware is getting nastier and more professional than ever
Date: 13 Mar 2008 01:41:23
Message: <47d8cc93$1@news.povray.org>
scott wrote:
>> http://www.f-secure.com/weblog/archives/00001393.html
> 
> Don't most BIOSs have some "prevent write to MBR" function?  Would malware 
> like this be able to get around that?

This only applies to software that uses the BIOS for disk I/O. Basically
this means bootloaders and somtimes first-level bootstrap routines (DOS
also). Modern OS's always have their own hardware drivers for disks.

Basically anything that can gain supervisor privileges on a windows system
can do whatever it wants with the hardware, even bypassing the OS's own
driver if need be (the latter requires that it understand the hardware of
course).


Post a reply to this message

From: scott
Subject: Re: Malware is getting nastier and more professional than ever
Date: 13 Mar 2008 03:42:42
Message: <47d8e902@news.povray.org>
>> True. But I'd wager that MBR protection is probably turned off on most
>> machines out there.
>
>  What actually happens if some software (for example an OS installer)
> tries to modify the MBR and it has been bios-protected?

ON mine I get a blue screen alerting me that something is trying to 
overwrite the MBR, and do I want to allow the write or not.


Post a reply to this message

From: scott
Subject: Re: Malware is getting nastier and more professional than ever
Date: 13 Mar 2008 03:51:18
Message: <47d8eb06$1@news.povray.org>
>> I believe what it *actually* does is yell "hey, somebody changed this!"
>
>  How does it do that? The bios cannot have sufficient info about the
> graphics card in order to show a message on screen, especially if the
> graphics card is currently in non-vga mode.

I would imagine it goes something like this:

Interrupt 13 handler (file I/O) code inside BIOS:

Check if trying to write to MBR (always on the same place)
If not, write as usual to the drive, return
Change screen mode to 720x480 (or whatever that one is the BIOS uses at 
startup) using an interrupt 10 call
Display some text on the sceeen using the same routines as the BIOS setup 
screen etc
Wait for keyboard input (note this totally hangs the system)
If user agrees, write the data as normal to the disc
If not, just exit the interrupt handler


Post a reply to this message

From: Joel Yliluoma
Subject: Re: Malware is getting nastier and more professional than ever
Date: 13 Mar 2008 05:21:00
Message: <slrnfti00c.5fg.bisqwit@bisqwit.iki.fi>
On Thu, 13 Mar 2008 09:51:41 +0100, scott wrote:
> I would imagine it goes something like this:
>
> Interrupt 13 handler (file I/O) code inside BIOS:

No modern OS uses 16-bit BIOS interrupts.

I have understood so that the MBR write protection simply
discards any writes addressing the MBR, silently.

-- 
Joel Yliluoma - http://iki.fi/bisqwit/


Post a reply to this message

From: scott
Subject: Re: Malware is getting nastier and more professional than ever
Date: 13 Mar 2008 05:41:23
Message: <47d904d3$1@news.povray.org>
>> I would imagine it goes something like this:
>>
>> Interrupt 13 handler (file I/O) code inside BIOS:
>
> No modern OS uses 16-bit BIOS interrupts.

Well yeh I doubt it does, but that's how I understood the BIOS MBR 
write-protect feature to work that I'd seen in the past on my system.


Post a reply to this message

From: Warp
Subject: Re: Malware is getting nastier and more professional than ever
Date: 13 Mar 2008 09:42:55
Message: <47d93d6f@news.povray.org>
Jim Henderson <nos### [at] nospamcom> wrote:
> POST = Power On Self Test.  I'm really surprised you don't know that, 
> it's a very common thing for people who work with computers to know. 

  I program computers, I don't build them.

-- 
                                                          - Warp


Post a reply to this message

<<< Previous 10 Messages Goto Latest 10 Messages Next 10 Messages >>>

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.