From random discussions I’ve had with people over the last few months, it seems to me that not too many people really know about a particularly nasty and cunning form of computer attack: the decompression bomb.
First, think about compressing data. Most of us have used an application like WinZip or some similar tool to make our files smaller, albeit less accessible temporarily. These programs take advantage of how signal to noise ratios work in most representations of data; that is, the way we try to represent information is almost always ineffecient. There are usually techniques available for removing the parts that aren’t so important, and letting important (or common) information take less space.
For example, the algorithm behind the ZIP programs is largely based on LZW compression: a technique that collapses common substrings down into single codes. Obviously, I’ve completely glossed over how it works, but if you want to know the information is out there (any computing scientist worth their salt should have at least an idea of how this sort of thing works).
Using a randomly selected document of, say, English text, you would expect a maximum compression ratio of 10:1. That is, given a 100k file, you would expect a zip file of around 10k. That’s pretty good compression! The language being used and the specific text will cause the compression ratio to vary greatly, but the principles remain the same.
The thing is, if you carefully construct an example document, you can get a compression ratio much higher. How much higher? MUCH, MUCH higher. For example, if you created a PNG image containing just one colour repeated over and over then you could easily get a 1000:1 ratio. For a text document containing 1 character repeated over and over, it’s possible to shrink 100Gb to about 6k. Think about that, it is a huge difference: 1.7e7:1.
That’s all well and good as an interesting experiment, but what does it mean for an average user? Imagine I had constructed one of those zip files that had shrunk 100Gb down to 6k and I sent you that file. If you trusted me, you might try to open it. Therein lies the problem: while you can readily accept the zipped file, the chances that you have the 100Gb of free memory (including virtual memory) to accomodate the decompressed file are bloody slim. When you try to open one of these files, your computer will quickly become overwhelmed and stop responding; all of the free memory having been used up, it can’t do anything else. You effectively suffer a denial of service attack.
That is what we call a decompression bomb.
There is another factor that could cause problems for people who are careful when opening files: well-meaning programs can open them anyway. If the file arrives on your system (either by explicit downloading or by, say, a mail program fetching it), it’s likely that anti-virus software installed on your system would then want to check if the file contained any viruses. To do this, it pretty much has to decompress the file in memory, leading to the same problem. Oh dear.
Most modern anti-virus software has some defences against decompression bombs, but they can still cause significant system lock-ups while figuring it out. Perhaps more evil is compressed web content, whether images or GZip encoded HTML. No modern browser has a strong defence against decompression bombs. Relatively small files (100Mb decompressed) are usually handled quite well, in that the browser doesn’t crash completely, but go much bigger and most systems will run into trouble. Because browsers, sensibly, accept GZip encoding by default, any URL can hide a problem.
Thankfully, problems don’t arise much in practice because there is little to be gained from this activity: if you take out someone’s system, you’ve annoyed them but you can rarely turn this to your advantage i.e. you can’t elicitly install spyware.
If you want to see some more figures or examples (at your own risk), then the AERAsec decompression bomb page is a great start. It’s where I got a few of my figures from (so thanks for that!), and has a link to some real examples you can try.
Now, Decompression Bombs Part 2 outlines some real-life examples and answers a few questions!
Posted: January 8th, 2006
#Permalink: Decompression Bombs, By Gary Fleming
So someone with the time to write a 100Gb long text file could write a ‘bomb’ that makes me gasp have to restart my computer. Forgive me for not running for the hills.
# Posted by David Russell, on January 9th, 2006 at 9:34 pm
Granted, it’s not an overly serious issue, but it’s one that’d piss you right off if you fell for it. It’s probably about as quick as a forkbomb, but easier to plant, and more universal — farewell, unsaved work, farewell cached data which hasn’t made it to disk yet!
As with most things of this nature, no-one really cares about you, the home user. I’ve written most of a second post (which I should be putting up tomorrow) that covers a couple of scenarios where decompression bombs could cause problems that people might not be thinking about.
# Posted by Gary Fleming, on January 10th, 2006 at 1:23 pm
Hello,
I came upon this site while trying to find out what a decompression bomb file is. I have Avast antivirus on my computer. I did a scan today and the report showed 2 files that were decompression bombs and could not be scanned. I didn’t know what to do, so I had them put into a vault until I can find out what kind of files they are. I just a housewife who uses the computer minimally, mostly e-mails and banking or to find recipes etc. In the last several weeks my computer has been acting strangely. It just freezes and I must restart it. Happens many many times during a session. Would these files have anything to do with the problem? A friend thought that it might have something to do with the computer’s memory because of some unusual activity he saw on the task manager. I don’t know what I’ve got or what to do with the files. Can you help me?
# Posted by Shelby, on January 23rd, 2006 at 10:40 pm
If your antivirus program says you have decompression bombs, delete them. If they are the problem, it’ll go away.
# Posted by Gary Fleming, on January 24th, 2006 at 7:44 pm
Oh geez Gary, yeah, delete files that might be useful to your system, just because your antivirus thinks that it’s compressed too much.
DO NOT DELETE the “COMPRESSION BOMB” - labelled files until you know what those files do. I have some .PST (MS Outlook archive) files that Avast thinks are compression bombs.
And besides, who cares if it is a compression bomb? An inert file sitting somewhere on your system isn’t going to inexplicably open like a lifeboat in an airplane or something.
# Posted by JvD, on June 27th, 2006 at 6:13 pm
JvD: As the previous commentator already said, she had put them in the vault meaning they were effectively gone. Deleting them is unlikely to make any difference. But yes, I agree that you should be cautious about exactly what you delete: mail files have high compression ratios. I’m just surprised it’s high enough to set off a compression bomb, or that it’s the only heuristic in use (you can use fingerprinting techniques to detect a great number of bombs).
# Posted by Gary Fleming, on June 27th, 2006 at 7:01 pm
Mr. Russell’s comment above was interesting, and suggests that he’s a veteran Windows user - so what if you have to reboot? No big deal if you’re used to it. If you run Windows, you’re used to it (I know; I run Windows).
I don’t think that the point is how much damage this sort of trick can cause, but that it is an intrusion, someone interfering with your use of your computer. Not every exploit has to be devastating, to be a problem.
# Posted by BlesedB, on January 19th, 2007 at 7:00 pm
By the way, I belive that the Zip algorithm uses Huffman coding. GZip uses LZW.
# Posted by netdpb, on January 19th, 2007 at 9:18 pm
By the way, I belive that the Zip algorithm uses Huffman coding. GZip uses LZW.
# Posted by netdpb, on January 19th, 2007 at 9:18 pm
Thanks for the comment. I freely admit I was using ZIP in the laziest sense possible. In reality, Zip files use various compression methods. The first method used was LZW-based, other revisions use deflate. Deflate, in turn, uses the Huffman encoding (as you point out) and LZ77 encoding; LZ77 encoding itself being the basis of LZW. Phew.
I think the Wikipedia page on the Zip File format gives a decent background to all of this. Worth a look.
# Posted by Gary Fleming, on January 20th, 2007 at 12:03 am
Hi,
I use Avast and it has detected this file:c:\Found000\file\ooochk\file0000
Avast Message shown, Unknown File format: This is a decompression bomb.It’s listed in the scans for avast but I can find the file on the hard disk.
Every time I try to delete / move to chest this file, through avast, it gives me an error message.
Is there anyway I can get rid of these files.
# Posted by ashanka, on April 2nd, 2007 at 10:16 am
Gary,
you been getting a tough time here.
if you see this, thanks for enlightening me aboot decomp bombs.
You went oot your way to let the dumb folks(me included) understand and for that as i say, ta.
Cheers and may you have nooo moooore decompression bombs on stinky windows!
Kato )
# Posted by Kato, on May 24th, 2007 at 3:03 am
Thanks, glad that someone is finding it interesting. By the amount of traffic I get to this page (a lot), I’m guessing quite a few people like it.
I’m also going to add a link to the second part, which is a little more technical.
# Posted by Gary Fleming, on May 24th, 2007 at 8:35 am
If Gary’s been getting a bit of a tough time, it might be because he didn’t really acknowledge that quite legitimate files may be recognised as so-called decompression bombs. Any compressed file with a high compression ratio risks being flagged by an AV program as a decompression bomb.
eg. I have a 630 mB file compressed down to 340 mb. Avast! thinks this is a decompression bomb. It isn’t. If I deleted that file, I would be an unhappy camper.
It’s well worth making the effort to determine what the compressed file is for or what its contents are before deleting it.
# Posted by Simon, on July 4th, 2007 at 3:49 am
I know you guys are sick of hearing this but I am having the same "decompression bomb" problem. I also am not a computer guru, so when avast gives you that horrible "bomb" message when you are trying to fix a virus that it has found, it kinda freaks you out, especially when it has the word "bomb" associated with it. The "geek squad", a company that will come in and help you with problems like this, says they can fix this for a nominal fee. Is this something that I should do or should I just not really worry about it? Is in "documents and settings", don’t know if that matters or not. Please help, I don’t have any idea what to do about this problem…
# Posted by Jill, on August 3rd, 2007 at 8:47 am
Jill: to be honest, I wouldn’t worry about it a huge amount. Unless you try to open it (or a program tries to open it on your behalf), you’re completely fine.
# Posted by Gary Fleming, on August 4th, 2007 at 12:12 am
I too ended at this site after trying to find out what the 6 alarming sounding "Decompression Bombs" that Avast! turned up on my computer might be.
Of note, the Avast! website bothers not to define the term.
So have now learned what a DCX Bomb is. Interesting, not much of a threat.
In my own case I was not too worried as all the files ID’d in this manner were vacation video footage which I had edited and rendered to DVD format.
Avast! apparently thinks that VOB files are too efficiently compressed - which is certainly open to argument.
# Posted by Hummmmmmmm, on August 12th, 2007 at 7:05 pm
I think we’re seeing a definite pattern here. I can’t say for sure, as I don’t use it myself, but it seems like Avast! is fairly quick to call a file a decompression bomb and it seems to be doing it primarily based on it’s compression ratio. Right now, fingerprinting techniques are more effective.
It does surprise me that a VOB would be marked as a decompression bomb.
# Posted by Gary Fleming, on August 13th, 2007 at 11:53 am
Me agaun,
If the "fingerprinting technique" is more effective, what is it and how do you do it? I know I shouldn’t even worry about the D-bomb, but it seems like when we first put the DSL line in a couple of weeks ago,the internet was really really fast, now it has gotten progressively slower. I keep running the anti-virus software from like Microsoft and Windows websites to see what is going on but all they have found so far is a trojan that comes through the backdoor or something like that. I don’t know what else to do…any suggestions?
# Posted by Jill Clark, on August 18th, 2007 at 5:00 am
Jill: the fingerprinting techniques I’ve alluded to are not really something that you, as an end user, can easily utilise. It’s more down to your security software to use them. If I get some time, I’ll write a bit more about them.
As for your net connection getting slower, it’s not related to decompression bombs. Since you’re using Windows, I’d install a decent virus scanner, a decent firewall (not Windows built-in firewall), and probably AdAware too. I’ll leave the choice of firewall and virus scanner up to your research, as I barely use Windows these days.
I’d also go through your “Add/Remove Programs” list and remove anything you don’t use, and do this fairly aggressively. You could just be experiencing slow-down because of a bloated Windows installation.
# Posted by Gary Fleming, on August 18th, 2007 at 1:27 pm
Just in the event that nay-sayers didn’t actually read the article, it says nothing about anti virus programs always identifying Decomp Bombs properly. I quote,
Most modern anti-virus software has some defences against decompression bombs, but they can still cause significant system lock-ups while figuring it out.
That is the only mention of an anti virus identifying a bomb, and doesn’t even say the defense is practical. Just that it exists.
And to Gary, thank you for sharing this information. I had a folder that was flagged as holding 3 trojans and two decomp bombs, and I had about 10 minutes this morning to fix things before school.
Thanks for writing this up. It at least made a difference for some of us.
Dante
# Posted by Dante, on August 21st, 2007 at 11:24 pm
Question…I want to open one of these files…how do I? because my computer recently crashed and as I did a AV scan I found that all the files lost went into a folder starting with C:/foun0000/ and then I forget it from there. But anyway my question is if there’s anyway to restore all this stuff? I went into control panel to the restore option but it couldn’t restore anything… I’d really appreciate it if someone with an answer reply asap because I’m really annoyed that I can’t access my previous works and documents. (btw everything on my desktop was deleted when it crashed…everything else was fine.)
# Posted by Roger Tseng, on August 24th, 2007 at 11:34 pm
Dante: glad it was useful.
Roger: I can’t really give you advice on how your AV software works, as I don’t know. It will likely have an option inside it to remove items from quarantine. You’ll need to speak to your vendor to figure out how.
# Posted by Gary Fleming, on August 25th, 2007 at 11:52 am
Thanks Gary, I have found one of these decompression bombs and was at my wits end so I appreciate your article that at least gives some light on the subject.
Since this one is located in Thunderbird I have a suspicison that it may be mmy compressed mail files. Now at least I do not have to be so concerned.
As a side note, the file cannot be removed, deleted or put into the virus chest. There is an error message instead. Perhaps this is a protection if it is a necessary file. go figure.
Dear Gary, My daughters computer has gotten 6 decompression bombs in her D Drive, over the past few weeks, She has noticed the pc running slower and freezing at times. We can not remove the files, or defragment the drive, please advice how i can sole this problem. Sincerly,
Dianna
# Posted by Dianna, on September 11th, 2007 at 12:27 pm
You can avoid some of the issues with ‘bombs’ like these if you use a virtual machine.
Microsoft provide virtual pc for free and vmware is also free at the moment.
The benefit would be that you would do your browsing, or checking, in a virtual machine with limited memory (256Mb). If it dies your main machine is unaffected and the memory was only virtual machine memory. If you have corruption, or virus, issues then you delete your vm and restore from the last good backup. This strategy limits the impact of novelty items such as ‘decompression bombs’ and other inventive ways to waste peoples time and disrupt their lives.
# Posted by Gary Bennett, on October 17th, 2007 at 12:39 pm
For these stubborn files people want to remove but can’t — I’m surprised that you can’t. For example, if you used any live CD, even a Linux CD, or maybe Hiren’s Boot CD, couldn’t you come up "alongside" your XP and reach over and delete the file?
And what about a program like Eraser 5.8? Wouldn’t it give you a choice to have the file erased on your next restart?
If not, as a last resort, couldn’t you install a second XP to a different partition — or, if you absolutely had to, even to the same partition (not recommended, but possible) and get at the file from there? You can set up XP from a disk in, well, 39 minutes + about 20 minutes.
And if none of those work for you, couldn’t you have a separate partition for downloads? Use XP’s Computer Management to reformat that partition, bomb and all. Couldn’t that idea be adapted for your mail, too, by sandboxing the program?
I dunno; just some ideas.
# Posted by Carson, on October 17th, 2007 at 8:33 pm
Gary Bennett: good point on the virtual machines. A VM will, of course, protect you from decompression bombs (in so far as you can just spawn another one). Not particularly viable for the casual user though as no-one has really come close to nailing the VM set-up and user experience. Definitely got potential though.
Carson: using a Live CD to bypass Windows’ sometimes odd file locking strategy seems pretty solid too. As someone who uses it daily, I’d recommend trying Ubuntu.
# Posted by Gary Fleming, on October 17th, 2007 at 10:08 pm
Nice article about Decompression Bombs Gary. Nothing to get too excited about, unless you routinely open all unexpected/unknown compressed files. But essential to know about especially for those with older computers and/or smaller hard disks (I’m running 1.5TB!!).
Some of the pleas for help here suggest that people are not running effective firewalls. If the PC is behind an ADSL router with an SPI firewall then the Windows firewall will probably do. But if the PC is directly attached to the Internet via a DSL Modem then it needs something much stronger. There are plenty of free and paid-for SPI firewalls out there. No excuse for not running one of these. All of the other caveats for using the Internet also apply. Find out about and secure your PC by visiting http://www.grc.com
Dianna - your daughter’s PC running slow - do you mean just the browser or everything? If its just the browser check for and consider removing all Browser Helper Objects (i.e. Google/Yahoo etc. toolbars). The kids love these, like candy in a store, but they clog up the browser dreadfully. Other reasons for running slow generally are low RAM memory and running lots of apps concurrently.
# Posted by Danny T, on October 20th, 2007 at 9:17 am
Jill,
You mentioned that there was something going on in your task manager that was not correct. This is the clue that needs to be addressed. You are probably getting a high CPU usage on one of the "Image Name" programs. I have found that 95% of the time this is a result of some recently installed software that is either poorly written or it is conflicting with another piece of software. I have even had this problem occur after downloading Microsoft Updates. This is sometimes difficult to track down. Especially if the high CPU usage is showing up under one of the svchost.exe processes. You can try removing recently installed programs and rebooting. Then reinstall each one individually and check to see when the high CPU usage begins again. You can also see if it occurs only when certain programs are open. If it does then either check for an update to the program that seems to be causing it or delete the program.
The files that Avast are showing as decompression bombs have been moved, then unless you physically click on them then they are unlikely to be causing the problem. Hope this helps.
P Tyson
# Posted by P Tyson, on November 17th, 2007 at 3:37 pm
my decompresson bomb came in the winnt internet logs as tvdebug.zip. It seems to also auto unlock my spybot s & do "lock hosts file" w start. The initial symptoms were memory, as stated by other posters, then became evident with win32.iroffer.af I reccomend using spybot s & d to keep your computer managable, then try making that file a read only file. I have not got into this one much yet, so Don’t hold me to it. But spybot has kept the major symptoms at bay.
# Posted by Hampster Farm, on November 27th, 2007 at 12:33 am
I find this interesting, and agree that it’s not much of a threat compared to other things, although letting them sit there isn’t the best idea (like when some other program is in the startup folder accessing it).
Also, I’ve seen a lot of responses with Avast! concerning its labeling of harmless files as decompression bombs. I have to agree that whatever algorithm or method they use to pick out decompression bombs appears to have flaws. A recent Avast! scan labeled 5 files as decompression bombs, and I noticed that all of them were the install files I had neglected to delete.
While not necessary, they certainly weren’t harmful (quicker way to delete them though).
# Posted by David, on December 12th, 2007 at 1:20 am
I ran Avast and it says that I have two files that are decompression bombs. But it will not let me delete the files. Does anybody know how I could delete these files, or of any programs that can? My computer freezes 2-3 times every hour, so this is really getting annoying. Thanks!
# Posted by Bobby, on January 19th, 2008 at 9:09 pm
Bobby: your computer freezing 2-3 times an hour might not be (read: probably isn’t) related to decompression bombs. Do some general maintenance.
# Posted by Gary Fleming, on January 20th, 2008 at 1:24 pm
Is there a way to extract the OS in my case Windows XP from the computer so I can have it on disk or dvd? I would like to know the steps and explaination or be told where to get it; I also have found decompression bomb notes on my set by Avast. More than 20 at last count. If I back up and restart with a new OS will I transport these bombs to that OS? Is there a better OS to use to not have the problem? Thanks very much, you have a great site!
# Posted by Robert L. Sutton, on January 21st, 2008 at 2:57 pm
Robert: you’re really asking a few different questions there.
1) You can’t really “extract an OS”. You can reinstall it fresh from source (a Windows XP install disc, in your case).
2) You can use virtualisation to make your set-up more tolerant of OS changes. Look into VMWare or Xen.
3) Avast is probably incorrectly identifying at least some of those files as bombs. Find out what each of them are to see if they can be safely deleted.
4) If you wipe your entire system, then real decompression bombs will be wiped; but you’ll lose all your data so that seems more than extreme.
5) There are better operating systems, but they won’t shield you from genuine decompression issues. Ubuntu is nice though.
Hope that helps.
# Posted by Gary Fleming, on January 21st, 2008 at 5:02 pm
Well here goes my comment:
I use Avast 3 years now. Many times it has detected d-bombs, and I took no action against them. This is the first time I glanced through the net to learn what they are. I never had trouble with them, some times (all the times), they were files belonging to another program (as in Nero).
Now I know what d-bombs are thanks to you people, specially thanks to Gary Fleming.
I found, just by chance, that it is helpful to have to different anti-virus programs in my pc. One in each of my two partitions. So when Avast says BOMB!! my other one (Eset for the moment) says what bomb?! And by doing the math you get to a safe conclusion.
Thanks again for the enlightenment Gary.
Alexandros.
# Posted by Alexandros, on January 26th, 2008 at 10:17 am
I am also running Avast on my Ubuntu machine. 4 out of 11 files it identified as D-Bombs were the Ubuntu ISO’s I had downloaded (Kbuntu, Gobuntu, Ubunto, Xbuntu) 2 were .img files 1 another .iso and the rest compressed English language tutors. I think you hit it on the head when you said there was a pattern here Hmmm…Avast me hearties!!!
To the lady with her Windoze machine getting slower, check your Doc Watson Log file it can sometimes grow out of proportion and you end up with not enough disk space for your virtual memory. Just delete it, it will create another and the debugging info is useless to most people. Do check how much space is free on your hard disk and maybe increase the size of your swap file (virtual memory).
Hope that helps
Tony
# Posted by Tony, on February 5th, 2008 at 5:29 pm
Hi, i got a d bomb from my avast! scanning but it wont let me delete it. The file is located in my system volume information folder in the C drive. I don’t know what to do. Help would be appreciated. Also, is this “D bomb” malicious?
# Posted by jack, on February 19th, 2008 at 6:07 am
I just had Avast scan my desktop - it allegedly found 6185 files that it “couldn’t scan” !!! - about half it labelled as “decompression bombs” and another (approx) half were listed as “corrupted” (usually described by Avast as “CAB” files, although their extensions varied all over the map - “exe”, “dll”, “zip”, “jpg”, etc, etc). Remainder of “couldn’t scans” were labelled as various “something elses”, that I don’t remember the details of at the moment.
Will investigate further tonight. [Avast's virus definition was updated last night].
# Posted by Peter Clarke, on April 8th, 2008 at 12:32 pm
Thanks heaps for some very helpful info Gary. I, (along with the multitudes using Avast!) have been getting Dbomb and corrupt warnings with all sorts of files, including VOB and system files, if I was to delete a these files that are flagged as potentially dangerous I’d lose a lot of video/picture files among other things, and I would probably not be able to boot up due to the removal of system files. I think maybe it would be very wise for people using Avast! to at least create a restore point or even do a back-up before deleting anything that Avast! has flagged, common sense really. BTW, have you heard of any other AV programs that have such a penchant for flagging so many files as Dbombs, corrupted etc, because I have never run across this type of thing in other AV progs. Keep up the good work.
# Posted by Craig Bennett, on April 16th, 2008 at 6:35 am
I have bombs, as well as Avast. It seems avast is the ONLY antivirus scanner I have seen that finds theses “bombs”. So I have a few questions pertaining to these…..
Why is Avast the only, or one of the few antivirus scanners that find these problems? Also….I have a trojan. A bad one. How can I get rid of this? I want to delete it, but I’ve deleted a virus on another computer, and the computer stopped functioning properly. So can someone give me some good advice on deleting a trojan? Also, I know a little about computers, but not a lot, so please keep the technical terms to a minimum, and keep it dumd. Haha
# Posted by Kid With Bombs, on April 21st, 2008 at 9:25 pm
“There inlies the problem”? Presumably you mean “Therein lies the problem”, which actually makes sense.
# Posted by Kw, on April 23rd, 2008 at 7:58 pm
Kw: I wrote this over two years ago and no-one else had noticed. Good spot! Fixed it.
# Posted by Gary Fleming, on April 24th, 2008 at 8:00 pm
Thanks for a concise explanation of decompression bombs. Running a deep scan using Avast I got a warning that two files were bombs, files that I had created.
On 3/15 I zipped 3 graphics files to send via email. Afterwards I just left the zipped file in My Documents. Compressed the files are 1,177 KB extracted they are 12,774 KB.
I don’t run virus scans as often as I should (how many users do?). I’ve run Avast scans three times since creating the zipped folder and files without any alert. Running a scan overnight it tagged them, this time, as Decompression Bombs.
Perhaps Avast has been made more cautious. The thinking might be that it is better to be oversensitive than miss something significant.
I’m glad to know that I’m not the accidental father of something malicious. Thanks again!
# Posted by CW, on May 13th, 2008 at 2:31 pm
I found this site most interesting and it gave me an idea of what to do when the same message came up in my Avast scan.
I found out that Avast was seeing files from the Microsoft program Picture It! as decompression bombs. I actually typed in the file path into Microsoft’s site search and found out the folder was associated with Picture It!
Please check before you delete as I would have lost the use of a program that although I don’t use it a lot kids love to play with it when they visit.
I have only just installed it on this computer in between my usual weekly scans. So maybe also check to see if you have installed a new program recently.
Now all I have to do is tell Avast to ignore them. ;-)
Thanks everybody for the help.
# Posted by opal white, on July 6th, 2008 at 7:32 am
i have a d-bomb by avast and my shredder
wont delete it cause as the notice says
it is being used by another process
# Posted by Omar, on July 25th, 2008 at 8:51 am
Well, as with most, Avast is what brought me here. Going off of the general tone from most of the posts, I would be tempted to not stress too much over the d-bombs Avast found…
However, the same day I discover what a d-bomb is I find that I am having problems getting onto the internet. I know it’s not my internet connection because when I plug into another computer, I’m connected.
The files labeled as d-bombs are related to a torrent I’ve been downloading. Could it be that this movie torrent is bad news? Again, I want to go with “no”. However, I’m thinking that my two issues are related.
Please, if anyone can offer some insight, it’d be greatly appreciated.
Finally, a big thanks goes out to Gary for starting this whole thing. I’m pretty impressed that the discussion has been active for two years.
# Posted by Howard, on July 31st, 2008 at 4:52 am
Howard: I find it unlikely that your torrent is stopping you from connecting to the internet. It’d slow your connection down if already connected, but not stop a connection in the first place. Good luck figuring out the real cause, given my experience I’d be tempted to blame some kind of wifi problem (but I don’t have much to go on).
Believe me, I’m as surprised as anyone the thread has survived this long.
# Posted by Gary Fleming, on July 31st, 2008 at 8:27 am
Hi!
How concerned should I be about avast giving file shared music files and film files the message “Unable to scan: This file is a decompression bomb.”? I can understand that zip and rar files may be decompression bombs but not music files and film files. These are not compressed in the same way and should not be dangerous.
If the answer is “They may be dangerous” I would like to know how dangerous, and if it is worth taking the risk.
# Posted by Thomas Osterlind, on August 7th, 2008 at 7:44 pm
Ya, i have Avast, and i did a scan and found 2 Compression Bombs. BUT, like someone said before me, DO NOT DELETE them without looking to see what they are!
The two “bombs” that were found on my comp were actually just large files required for Crysis. so be sure to check every “bomb” before you delete it.
Hi!
GREAT article AND comments/suggestions! I switched to AV [again] after my AdAware stopped being able to update. . . Once I installed SP3 I’ve been inundated with trojans, viruses and everything else — in spite of my trusty ZoneAlarm firewal/virus protection subscription. . . AV has been helpful w/getting things cleaned up and blocking new attacks yet i’d prefer to go back to AdAware for it’s simplicity. Any thoughts?
Thnx much,
YE is Here!
# Posted by YEisHere!, on August 13th, 2008 at 6:29 pm