Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 30th January 2008, 09:43 AM
fgold Offline
Registered User
 
Join Date: Jan 2008
Posts: 1
libtheora.so.0.3.2 AVG virus trojan Downloader.Swizzor

Hi I just did a windows avg antivirus scan and it reported a trojan / virus called Downloader.Swizzor on /usr/lib/libtheora.so.0.3.2 through my linux mounted drive. I wonder if I should be worried about this and should I get anti virus for my fedora 8 ? Also all my files were from the Yum or the Package Installers, so its not safe getting files from there??? Anyone else got the same problem? If you submit this file to VirusTotal online, AVG is the only one that reports the virus out of all the other scans.
Reply With Quote
  #2  
Old 30th January 2008, 10:13 AM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
I doubt you got a virus though yum as all the packages are verified though gpg check.
__________________
My Hardware
- CPU: AMD Phenom II X6 Hex Core 1055T 95W Edition @3.5Ghz
- Motherboard: Gigabyte GA-880GM-UD2H
- Cooler: Corsair H50 CPU Cooler
- RAM: Corsair Dominator 8GB (4x2GB) DDR3 1600MHz
- Graphics: Gigabyte GeForce GTS 450 OC 1024MB GDDR5
Reply With Quote
  #3  
Old 30th January 2008, 03:50 PM
d_g_f Offline
Registered User
 
Join Date: Jan 2008
Posts: 4
I ran into the same problem this morning.
Unfortunately AVG couldn't clean it, as it reported an "error" to do so.
I deleted the file, mentioned above.
However, how do I use yum to re-install the rpm, libtheora.i386? When I try to use yum install libtheora.i386, it responds by saying it's installed. However, I do not want to remove the rpm, because of the dependencies I would break. Sigh ...
Reply With Quote
  #4  
Old 30th January 2008, 04:10 PM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
Quote:
Originally Posted by d_g_f
I ran into the same problem this morning.
Unfortunately AVG couldn't clean it, as it reported an "error" to do so.
I deleted the file, mentioned above.
However, how do I use yum to re-install the rpm, libtheora.i386? When I try to use yum install libtheora.i386, it responds by saying it's installed. However, I do not want to remove the rpm, because of the dependencies I would break. Sigh ...
Try

Code:
su
yum install yum-utils
yumdownloader libtheora.i386
rpm -U --replacepkgs --replacefiles libtheora*rpm

P.S AVG sucks and can't be relied on

Quote:
I deleted the file, mentioned above.
What a stupid thing to do
__________________
My Hardware
- CPU: AMD Phenom II X6 Hex Core 1055T 95W Edition @3.5Ghz
- Motherboard: Gigabyte GA-880GM-UD2H
- Cooler: Corsair H50 CPU Cooler
- RAM: Corsair Dominator 8GB (4x2GB) DDR3 1600MHz
- Graphics: Gigabyte GeForce GTS 450 OC 1024MB GDDR5

Last edited by leigh123linux; 30th January 2008 at 04:12 PM.
Reply With Quote
  #5  
Old 30th January 2008, 04:17 PM
Janl Offline
Registered User
 
Join Date: Sep 2006
Location: Kentucky, USA
Age: 32
Posts: 309
See previous post for steps.

Last edited by Janl; 30th January 2008 at 04:31 PM.
Reply With Quote
  #6  
Old 30th January 2008, 04:24 PM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
Quote:
Originally Posted by Janl
Can probably remove it using the RPM command with the --nodeps flag to remove it without removing dependencies, and then use yum to reinstall the package. The following should do the trick.
Code:
su -
rpm -e libtheora-1.0beta2-3.fc8 --nodeps
yum install libtheora
Why use --nodeps when there is a better way ? ( see post #4 )



Please read the guidelines

http://www.fedoraforum.org/?view=guide


Quote:
When Answering Questions

1. Don't be cruel. We have all been newbies at one point and no one needs someone telling them how stupid they are.
2. Don't use jargon in your instructions if it can be avoided, newbies may not understand. If you don't have any better answer than RTFM (Read the fine manual), just be quiet.
3. Point the user to existing resources if they can provide useful information. Use community sites like fedorafaq.org and fedoraNEWS.org in your answers, searching the Red Hat bugzilla is a good idea as well.
4. Always assume the the user has a default installation unless you're told otherwise. This means that you can't tell anyone to use APT without providing instructions on how to install APT or at least link to an APT tutorial, as APT isn't included in the default installation. If you tell people to use an application outside of Core, give instructions on how to install it.
5. Always assume that the user is a newbie unless you're certain the user is not. Give detailed instructions.
6. Use proper formating, use[CODE] tags around terminal commands. You can attach files and pictures that you think might help.
7. Do things the Fedora-way. There are always more than one solution to a problem, choose the one you think will be the easiest for the user. Automatic package installation (using YUM, up2date or apt) over manual installation. RPM over source. Where possible get people to use the official Fedora Extras and the related rpm.livna.org. They are of higher quality. Don't replace any Core packages and never instruct users to do anything that might break their system, this includes using --force and --nodeps when installing an RPM. Try to think as a newbie and choose the simplest solution.
8. Explain each step of the solution. The ideal solution to a problem should be able to teach the user how to solve similar problems in the future. Teach people to fish, don't just throw them a salmon.
__________________
My Hardware
- CPU: AMD Phenom II X6 Hex Core 1055T 95W Edition @3.5Ghz
- Motherboard: Gigabyte GA-880GM-UD2H
- Cooler: Corsair H50 CPU Cooler
- RAM: Corsair Dominator 8GB (4x2GB) DDR3 1600MHz
- Graphics: Gigabyte GeForce GTS 450 OC 1024MB GDDR5
Reply With Quote
  #7  
Old 30th January 2008, 04:29 PM
d_g_f Offline
Registered User
 
Join Date: Jan 2008
Posts: 4
Quote:
Originally Posted by leigh123@linux
Try

Code:
su
yum install yum-utils
yumdownloader libtheora.i386
rpm -U --replacepkgs --replacefiles libtheora*rpm

P.S AVG sucks and can't be relied on



What a stupid thing to do
I know, I know ...
Thanks, your instructions worked and thanks leight123@linux for your help also.
BTW, I ran AVG on the libtheora.so files, and sure enought, after replacement of the libtheora.so files, it reported the infection, "Downloader.Swizzor" again. So, either there is an infection, which I am now somewhat doubting, or it's a false alarm by AVG.

What good Linux virus scan would one recommend?

Thanks
Reply With Quote
  #8  
Old 30th January 2008, 04:30 PM
Janl Offline
Registered User
 
Join Date: Sep 2006
Location: Kentucky, USA
Age: 32
Posts: 309
Actually I started the reply before you posted yours. Was just slow at submitting it. I'll go back and edit it.
Reply With Quote
  #9  
Old 30th January 2008, 04:55 PM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
Quote:
Originally Posted by d_g_f
I know, I know ...
Thanks, your instructions worked and thanks leight123@linux for your help also.
BTW, I ran AVG on the libtheora.so files, and sure enought, after replacement of the libtheora.so files, it reported the infection, "Downloader.Swizzor" again. So, either there is an infection, which I am now somewhat doubting, or it's a false alarm by AVG.

What good Linux virus scan would one recommend?

Thanks
You could try Avast , you will need to register

http://www.avast.com/eng/download-av...x-edition.html


Code:
su
wget http://files.avast.com/files/linux/avast4workstation-1.0.8-1.i586.rpm
yum localinstall avast4workstation-1.0.8-1.i586.rpm

P.S I don't ever use antivirus as it isn't really needed as 99.9% of virus's need a windows environment to execute .
__________________
My Hardware
- CPU: AMD Phenom II X6 Hex Core 1055T 95W Edition @3.5Ghz
- Motherboard: Gigabyte GA-880GM-UD2H
- Cooler: Corsair H50 CPU Cooler
- RAM: Corsair Dominator 8GB (4x2GB) DDR3 1600MHz
- Graphics: Gigabyte GeForce GTS 450 OC 1024MB GDDR5
Reply With Quote
  #10  
Old 30th January 2008, 08:03 PM
Magnar Offline
Registered User
 
Join Date: Dec 2007
Posts: 68
I get the same result, except in my case I have 4 infected files:

Code:
[root@localhost ~]# avgscan -scan -heur /usr/lib/
AVG7 Anti-Virus command line scanner
Copyright (c) 2007 GRISOFT, s.r.o.
Program version 7.5.51, engine 442
Virus Database: Version 269.19.16/1251  2008-01-30
License type is FREE.
/usr/lib/libtheora.so.0  Virus found Downloader.Swizzor
/usr/lib/libtheora.so.0.3.2  Virus found Downloader.Swizzor
/usr/lib/gimp/2.0/plug-ins/spheredesigner  Virus found Downloader.Swizzor      
/usr/lib/vlc/access/libaccess_realrtsp_plugin.so  Virus found Downloader.Swizzor
Tested: 10891 files, 0 sectors                                   
Infections: 4
Errors: 0
Could these files really be infected? Should I do something?
Reply With Quote
  #11  
Old 30th January 2008, 08:08 PM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
Quote:
Originally Posted by Magnar
I get the same result, except in my case I have 4 infected files:

Code:
[root@localhost ~]# avgscan -scan -heur /usr/lib/
AVG7 Anti-Virus command line scanner
Copyright (c) 2007 GRISOFT, s.r.o.
Program version 7.5.51, engine 442
Virus Database: Version 269.19.16/1251  2008-01-30
License type is FREE.
/usr/lib/libtheora.so.0  Virus found Downloader.Swizzor
/usr/lib/libtheora.so.0.3.2  Virus found Downloader.Swizzor
/usr/lib/gimp/2.0/plug-ins/spheredesigner  Virus found Downloader.Swizzor      
/usr/lib/vlc/access/libaccess_realrtsp_plugin.so  Virus found Downloader.Swizzor
Tested: 10891 files, 0 sectors                                   
Infections: 4
Errors: 0
Could these files really be infected? Should I do something?
I would leave them as they are probably a false positive .

Swizzor is a Win32 virus and won't / can't affect Linux

http://vil.nai.com/vil/content/v_136491.htm
__________________
My Hardware
- CPU: AMD Phenom II X6 Hex Core 1055T 95W Edition @3.5Ghz
- Motherboard: Gigabyte GA-880GM-UD2H
- Cooler: Corsair H50 CPU Cooler
- RAM: Corsair Dominator 8GB (4x2GB) DDR3 1600MHz
- Graphics: Gigabyte GeForce GTS 450 OC 1024MB GDDR5

Last edited by leigh123linux; 30th January 2008 at 08:10 PM.
Reply With Quote
  #12  
Old 30th January 2008, 09:25 PM
d_g_f Offline
Registered User
 
Join Date: Jan 2008
Posts: 4
Quote:
Originally Posted by Magnar
I get the same result, except in my case I have 4 infected files:

Code:
[root@localhost ~]# avgscan -scan -heur /usr/lib/
AVG7 Anti-Virus command line scanner
Copyright (c) 2007 GRISOFT, s.r.o.
Program version 7.5.51, engine 442
Virus Database: Version 269.19.16/1251  2008-01-30
License type is FREE.
/usr/lib/libtheora.so.0  Virus found Downloader.Swizzor
/usr/lib/libtheora.so.0.3.2  Virus found Downloader.Swizzor
/usr/lib/gimp/2.0/plug-ins/spheredesigner  Virus found Downloader.Swizzor      
/usr/lib/vlc/access/libaccess_realrtsp_plugin.so  Virus found Downloader.Swizzor
Tested: 10891 files, 0 sectors                                   
Infections: 4
Errors: 0
Could these files really be infected? Should I do something?
I forgot to mention also, I did get the same result of:

/usr/lib/gimp/2.0/plug-ins/spheredesigner as an infection you indicated.

Also, thanks Leigh123@linux for your suggestion as to Virus Scanner for Linux.
Reply With Quote
  #13  
Old 31st January 2008, 02:44 PM
Alex Ultra Offline
Registered User
 
Join Date: Oct 2007
Posts: 13
I've heard (can't remember where exactly, but most likely from PC World or PC Magazine) that AVG's free edition was rather bad (or worse than others) about false positives, in that it finds more false positives than other utilities. Generally, though they used to be good and relatively reliable, anymore the 'free' utilities are becoming less reliable than the paid-for services. If you've got Windows, PCM recommends Norton Internet Security 2008... if you want to pay for it. -.-? It's their current favorite, but personally I'd rather just use Linux. I still swap to Windows for gaming, but Linux just doesn't get virus-ified like Windows does. Or Spam-ified, or spy-fied, or wormed, or most of the other nasties that are coming out for Windows faster than the high-bill security firms can deal with them.

At any rate, ya AVG Free is known to pick up false positives. Google 'AVG false positives' and you'll see threads from all over the web complaining about it. Good program, but like anything it's not perfect. ^_^?
__________________
FC4: Downloaded, never installed. | FC5: Downloaded, installed, never connected. | FC6: Got fed up with Windows, downloaded, installed, loved it, kept it. | F7: Downloaded, Installed, Loved. | F8: See F7.
1) 1.6GHz w/ F8 / Win XP Home
2) 698MHz w/ F8
3) 350MHz w/ F8 (atm)
4) 2.4GHz w/ F8 / Win XP Pro (laptop)
Reply With Quote
  #14  
Old 31st January 2008, 06:27 PM
d_g_f Offline
Registered User
 
Join Date: Jan 2008
Posts: 4
Thanks Alex.

I used to use (paid) the subscription to Norton's but didn't like it since it was a huge memory hog. Though it was good, I didn't like it.

Yes, I do realize about the false positives and I am trying out "AVAST" for Linux now. It's nice but the free version doesn't seem to have some command line options (remotely) I wish it did have.

I don't mind paying for software if it's well constructed and *NOT* a memory hog. :-)

Thanks again,

Dan
Reply With Quote
Reply

Tags
avg, downloaderswizzor, libtheoraso, trojan, virus

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Virus Found: PHP/Rst.AK Trojan bubaphex Servers & Networking 3 19th February 2009 11:00 PM
LKM Trojan Virus installed bigmacbb63 Security and Privacy 2 15th April 2007 10:02 AM
trojan horse seif_root Using Fedora 20 10th September 2005 10:23 AM
Trinity v3 trojan? sebb Security and Privacy 4 16th August 2004 02:09 AM


Current GMT-time: 14:17 (Tuesday, 21-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat