lkml.org 
[lkml]   [2008]   [Aug]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [malware-list] [RFC 0/5] [TALPA] Intro to alinuxinterfaceforon access scanning
On Mon, Aug 18, 2008 at 10:32 AM,  <david@lang.hm> wrote:
> On Mon, 18 Aug 2008, Peter Dolding wrote:
>
>> On Sun, Aug 17, 2008 at 6:58 PM, <david@lang.hm> wrote:
>>>
>>> On Sun, 17 Aug 2008, Peter Dolding wrote:
>>>
>>>> On Sun, Aug 17, 2008 at 1:17 AM, Theodore Tso <tytso@mit.edu> wrote:
>>>>>
>>>>> On Sat, Aug 16, 2008 at 09:38:30PM +1000, Peter Dolding wrote:
>>>>>>
>>>> I am not saying in that it has to be displayed in the normal VFS. I
>>>> am saying provide way to see everything the driver can to the
>>>> scanner/HIDS. Desktop users could find it useful to see what the
>>>> real permissions are on disk surface useful for when they are
>>>> transferring disks between systems. HIDS will find it useful for Max
>>>> confirm that nothing has been touched since last scan. White list
>>>> scanning finds it useful because they can be sure nothing was missed.
>>>
>>> unless you have a signed file of hashses of the filesystem, and you check
>>> that all the hashes are the same, you have no way of knowing if the
>>> filesystem was modified by any other system.
>>
>> That is called a HIDS. Network form even has central databases of
>> hashes of applications that should be on the machine. Its tampering
>> detection.
>
> is this what you are asking for or not?
>
>>> you may be able to detect if OS Y mounted and modified it via notmal
>>> rules
>>> of that OS, but you have no way to know that someone didn't plug the
>>> drive
>>> into an embeded system that spit raw writes out to the drive to just
>>> modify
>>> a single block of data.
>>
>> Exactly why I am saying the lower level needs work. Everything the
>> file system driver can process needs to go to Hids for most effective
>> detection of tampering. Ok not 100 percent but the closest to 100
>> percent you can get. 2 causes of failure are hash collisions that
>> can happen either way and data hidden outside the drivers reach. All
>> execute data leading into the OS will be covered by a TPM chip in time
>> so that will only leave non accessible data not a threat to current
>> OS.
>
> so are you advocating that every attempt to access the file should calculate
> the checksum of the file and compare it against a (possibly network hosted)
> list?
>
Mixed solution. HIDS gets you so far. White List format scanning
gets you more.

Best of all techs.
>>>> You mentioned the other reason why you want to be under the vfs. As
>>>> you just said every time you mount a file system you have to presume
>>>> that its dirty. What about remount? Presume its all dirty just
>>>> because user changed a option to the filesystem? Or do we locate
>>>> ourself in a location that remount don't equal starting over from
>>>> scratch. Location in the inodes wrong for max effectiveness. Even
>>>> on snapshoting file systems when you change snapshot displayed not
>>>> every file has changed.
>>>
>>> this is a policy decision that different people will answer differently.
>>> put
>>> the decision in userspace. if the user/tool thinks that these things
>>> require
>>> a re-scan then they can change the generation number and everything will
>>> get
>>> re-scanned. if not don't change it.
>>>
>> With out a clear path were user space tools can tell that its the same
>> files they have no option bar to mark the complete lot dirty.
>>
>> Hands are tied that is the issue while only in the inode and vfs
>> system. To untie hands and allow most effective scanning the black
>> box of the file system driver has to be opened.
>
> you are mixing solutions and problems. I think my proposal can be used to
> address your problem, even if the implementation is different.
>
You proposal idea is right. Implementation location is pain to get
right so everything works.

Issue is some of the changes that need doing may take years to get
sorted out. So we kinda need to start now working our ways to having
them by the time these other things become main line in kernel causing
us head aches.

Lets try to avoid having to do last min fixs up. We know the tech
that is coming lets be ready for it.

>>>> Logic that scanning will always be needed again due to signatures
>>>> needing updates every few hours is foolish. Please note signatures
>>>> updating massively only apply to black list scanning like
>>>> anti-viruses. If I am running white list scanning on those disks
>>>> redoing it is not that required unless disk has changed or defect
>>>> found in the white list scanning system. The cases that a white list
>>>> system needs updating is far more limited: New file formats, New
>>>> software, New approved parts or defect in scanner itself.
>>>> Virus/Malware writer creating a new bit of malware really does not
>>>> count if the malware fails the white list. Far less chasing. 100
>>>> percent coverage against unknown viruses is possible if you are
>>>> prepared to live with the limitations of white list. There are quite
>>>> a few places where the limitations of white list is not a major
>>>> problem.
>>>
>>> the mechanism I outlined will work just fine for a whitelist scanner. the
>>> user can configure it as the first scanner in the stack and to trust it's
>>> approval completely, and due to the stackable design, you can have thigns
>>> that fall through the whitelist examined by other software (or blocked,
>>> or
>>> the scanning software can move/delete/change permissions/etc, whatever
>>> you
>>> configure it to do)
>>>
>>>> Anti-Virus companies are going to have to lift there game stop just
>>>> chasing viruses because soon or latter the black list is going to get
>>>> that long that its going to be unable to be processed quickly.
>>>> Particularly with Linux's still running on 1.5 ghz or smaller
>>>> machines.
>>>
>>> forget the speed of the machines, if you have a tens of TB array can will
>>> take several days to scan using the full IO bandwith of the system (so
>>> even
>>> longer as a background task), you already can't afford to scan everything
>>> every update on every system.
>>>
>>> however, you may not need to. if a small enough set of files are accessed
>>> (and you are willing to pay the penalty on the first access of each file)
>>> you can configure your system to only do on-access scanning. or you can
>>> choose to do your updates less frequently (which may be appropriate for
>>> your
>>> environment)
>>>
>>
>> You missed it part of that was a answer to Ted saying that we should
>> give up on a perfect system due to the fact current AV tech fails
>> there is other tech out there that works.
>>
>> In answer to the small enough set of files idea. The simple issue is
>> that one time cost of black list scanning gets longer and longer and
>> longer as the black list gets longer and longer and longer. Sooner
>> or latter its going to be longer than the amount of time people are
>> prepared to wait for a file to be approved and longer than the time
>> taken to white list scan the file by a large margin. It is already
>> longer by a large margin to white list scanning. CPU sizes not
>> expanding as fast on Linux kind brings the black list o heck problem
>> sooner. Lot of anti-virus black lists are embeding white lists
>> methods so they can operate now inside the time window. The wall is
>> coming and its simply not avoidable all they are currently doing is
>> just stopping themselves from going splat into it. White list methods
>> will have to become more dominate one day there is no other path
>> forward for scanning content.
>>
>> Most common reason to need to be sure disks are clean on a different
>> machine is after a mess. Anti-Virus and protection tech has let you
>> down. Backups could be infected before restoring scanning those
>> backups to sort out what files you can salvage and what backups
>> predate the infection or breach. These backups of course are
>> normally not scanned on the destination machine. Missing anything
>> scanning those backups in not acceptable ever.
>>
>> By the way for people who don't know the differences. TPM is a HIDS
>> hardware support it must know the files its protecting exactly.
>> White list scanning covers a lot more than just HIDS. White List
>> scanners that knows file formats themselves sorts the files by unknown
>> format, damaged ie not to format like containing buffer oversize and
>> the like, Containing executable parts unknown, Containing only
>> executable parts known safe and 100 percent safe. First 3 are blocked
>> by while list scanners last 2 are approved. Getting past a white
>> list scanner is hard. White list scanning is the major reason we
>> need all formats to documents used in business so they can be scanned
>> white list style. White List format style does not fall pray to
>> checksum collisions. Also when you have TB's and PB of data you don't
>> want to be storing damaged files or viruses. Most black list
>> scanners only point out viruses some viruses so are poor compared to
>> what some forms of white list scanning offer of trust able clean and
>> undamaged.
>
> the scanning support mechanism would support a whitelist policy, it will
> also support a blacklist policy.
>
> I will dispute your claim that a strict whitelist policy is even possible on
> a general machine. how can you know if a binary that was compiled is safe or
> not? how can you tell if a program downloaded from who knows where is safe
> or not? the answer is that you can't. you can know that the program isn't
> from a trusted source and take actions to limit what it can do (SELinux
> style), or you can block the access entirely (which will just cause people
> to disable your whitelist when it gets in their way)

Sorry to say whitelists of safe exe's exist today.
http://www.softpedia.com/ for one they keep a list of virus and
malware free programs.

The who knows where is the issue. Whitelist system don't tollerate
that. That is part user getting use to that fact. selinux is still
needed around applications even on a white list system. Even the most
virus and malware free applications can have flaws. White list system
are really hard to break.

People disable black list scanners because they are slowing down there
gaming too much. In the case of /var/log/apache/access.log and other
access logs. Guess what they can be format white listed. They are
a know format that they should be written in what permissions they
should have. I have not found a attack using access.log yet that has
passed a format check. There is really not much a format based white
list scanner misses. Selinux is also needed to prevent applications
from altering logs in ways they should not. Even better .log files
may only exist threw the syslog interface that allows entries to be
added only to spec and not edited back in time.

Lot of vectors simply don't exist in a truly secure White list system.

You can operate a pure white list based systems today. Just as
functional as there non white list relations. I have run networks
white list based. Windows registry is the worse nightmare to build a
white list system for. Linux and Mac systems are simpler to run
white list based.

Remember White List blocking something is not the last roll of the
dice. User is informed at this point and gets to make a judgement
call. Is this something worth running a black list scan over or do I
just get rid of it. Its called having user involved in there own
secuirty. Users kinda going to go hang on I though that was a mp3 now
you are telling me its a program or damaged delete end of story.
Virus does not even get a chance to trick the black list. Black List
first line is flawed. General all comes system HIDS first of some
form system is not damage ie scanning system checked that its not
crippled or tampered with then White list format based then Black
List then LSM around program if it gets it that far. Objective
virus/malware has to get past as many walls as possible and to get
true feed back from users. Avoiding bugging users any more than you
have to threw that system will take careful design.

All 4 lines of defence are needed HIDS, White List, Black List and
LSM's. Miss HIDS, White List or LSM have weaker defence. Miss
black list have less open selection of applications. Black List
missing can be worked around. 3 are 100 percent critical. Black
Lists is about 50/50 some users need it some don't.

Peter Dolding


\
 
 \ /
  Last update: 2008-08-18 03:23    [W:0.190 / U:0.956 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site