

InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
4301. |
Solve : Cryptography Programming Question? |
Answer» Sorry in advance: I wasn't sure where to post this. All I want want to do is encrypt a password in such a way that it does not have a key to decrypt it. (I have no need to decrypt it, I plan on just encrypting the password again and checking to see if they match) Before yo go any deeper, please clarify the above statement. A password i just 8to 16 characters long. There is little need for heavy duty encryption. Yet there should be some way to verify the hash with the original. And you do not need to write the code. Others have ALREADY don it. In Java there already are things for doing that kind of stuff. Same in C++ and Visual Basic. Generate a Random Salt. Use a new salt each time a hash is computed. Code: [Select]public static byte[] GenerateSalt() { byte[] salt = new byte[16]; new RNGCryptoServiceProvider().GetBytes(salt); return salt; } hash a password with a salt into a Base64 string for storing into a database (or wherever) Code: [Select]public static String HashPassword(string password, byte[] salt) { var hasher = new Rfc2898DeriveBytes(password, salt, 10000); byte[] hash = hasher.GetBytes(20); byte[] hashBytes = new byte[36]; Array.Copy(salt, 0, hashBytes, 0, 16); Array.Copy(hash, 0, hashBytes, 16, 20); return Convert.ToBase64String(hashBytes); } Verify that a password matches a hash. You could alternatively also use HashPassword() with the same salt stored elsewhere or from other data and compare the output. This uses the Salt present in the original Hash and checks if the provided password matches instead: Code: [Select]public static bool VerifyPassword(String password,String StoredHash) { byte[] hashBytes = Convert.FromBase64String(StoredHash); byte[] salt = new byte[16]; Array.Copy(hashBytes, 0, salt, 0, 16); var hasher = new Rfc2898DeriveBytes(password, salt, 10000); byte[] hash = pbkdf2.GetBytes(20); for (INT i = 0; i < 20; i++) if (hashBytes[i + 16] != hash[i]) return false; return true; } |
|
4302. |
Solve : Secondary hard drive? |
Answer» I have a laptop with 2 hard drive ports, it's own hard drive, and another hard drive from a dead CPU. Both drives fit in the laptop, but the native hard drive is loaded with Malware! I was using Safe Mode with Networking & tried running Malwarebytes on one drive, and it let me scan & clean both drives. So i know this is POSSIBLE, and i'm looking for a solutionWhen the screen's full size was smaller than usual, i looked up a solution. BSOD's are usually caused by a hardware problem such as a defective HD or RAM. You may or may not be able to run some tests using these tools.First off, what am i doing exactly & how does it help me? Second, which drive to i do it on? Also, it's not RAM, cause the other drive works fine in this computer.Quote First off, what am i doing exactly & how does it help me?You should run a scan on the hard drive that's giving you the problem to make sure if it is healthy or not. |
|
4303. |
Solve : Friends Windows 10 Laptop Edge got hit with a call this number hijacker? |
Answer» So my one friend contacted me that they got hit by a POP up telling them to call a phone number and it was Microsoft. I told them to hold on and let me remote into them with teamviewer since we use this as a means to show each other remotely what we are doing with character builds for video games etc. So I was able to run taskmgr and kill edge. And then start edge back up and it brings you back to this hijacker. I then killed it again in task manager. I then brought up command prompt and ran an INSTRUCTION to call edge to run but to "www.google.com" this way i can bypass the hijacker that was taking the focus of edge and not allowing any browser use. I was able to get to google this way and then download and install Firefox and told it NOT to get any info from edge. I then from firefox was able to download and install malwarebytes. Ran malwarebytes and it found 16 problems with 2 detections for the hijacker. Told malwarebytes to go and fix the problems. I'm not sure if this will work on Win 10 but did you try turning Edge off and on in Control Panel?You're referring to the settings for default programs, right? Go to Control Panel, Add/Remove programs and you should be able to turn it off and then back on on the left-hand side. Reboot after you turn it off and then turn it back on after the reboot.Quote from: SuperDave on November 04, 2016, 09:57:15 AM Go to Control Panel, Add/Remove programs and you should be able to turn it off and then back on on the left-hand side.Windows 10 does not have Add/Remove program; it has Programs and Features (and so does Windows 7). And, Windows 10 does not have an option to "turn off " Edge. As stated in my previous post, the default browser can be changed from Edge to another browser. A reference: http://www.thewindowsclub.com/change-default-browser-program-windows-10This might be of interest: https://www.bing.com/videos/search?q=how+to+remove%2fdisable+windows+edge+browser%3f&qpvt=How+to+remove%2fdisable+Windows+Edge+browser%3f+&FORM=VDRE It will show links to You Tube videos. Like this: https://www.bing.com/videos/search?q=how+to+remove%2fdisable+windows+edge+browser%3f&qpvt=how+to+remove%2fdisable+windows+edge+browser%3f&view=detail&mid=9385607832274C92DB0F9385607832274C92DB0F&FORM=VRDGAR Quote And, Windows 10 does not have an option to "turn off " Edge.It does on my laptop.Quote from: SuperDave on November 05, 2016, 11:45:50 AM It does on my laptop. Where are you seeing the option? I thought it existed and was going to rebut Soybean myself but could not find an option on any of my Win10 systems to allow Edge to be turned off so decided I was mistaken. Speaking of the Topic, my Mom was hit by a Microsoft Scammer I think a month or two ago. I pop over and learn that she had gotten a message that her system was infected and to call a 1-800 number. But afterwards she thought it was a scam but thought they might have done something to it. I took a look and they had installed a Remote Access Trojan in the form of an unsecured TeamViewer (Which I suppose is right now every copy of TeamViewer because of the exploit?). If I understand correctly they got her to install it, remotely controlled her system, set it up for unsecured access later, then opened command prompt and did some dir /s and netstat commands and typed in stuff like "These are all virus" as a description. When they started pushing her to pay them she suspected that they were scammers and hung up, and then they started "doing things" on the laptop and didn't know how to stop the laptop from being controlled so she forced it off (She was proud of herself for remembering when I told her she could hold the power button for 5 seconds to force it off), and she hadn't turned it on in the few hours since. I think they were about to install some more nefarious malware but were stopped by the forced power off, and subsequently by my removal of TeamViewer entirely.Quote I took a look and they had installed a Remote Access Trojan in the form of an unsecured TeamViewer (Which I suppose is right now every copy of TeamViewer because of the exploit?) WOOOOOOOWWW Now I am gonna dig into this with her right away. Wasnt aware of this security issue was for to connect to a persons system they need the ID of the computer to connect to and then key which is a alphanumeric, sometimes just NUMERIC. On my systems I only have teamviewer running as a stand alone, its not installed so I have to tell it to start and run once and personal use etc. Maybe at her end she installed it vs run once. Thank you for sharing this info BC. Now eager to get onto her system tonight to check into this. She didnt see anyone remoted into her system, but your moms situation sounds EXACTLY like my friends. I think the safe thing to do at this point will be to walk her through over the phone to use the system recovery media that I helped her create and make this system fresh. Then make sure that she is instructed to only have Teamviewer set up to run once each time she uses that with me this way the ability to connect only happens when she wants me to help her vs a service that runs idle waiting for anyone to connect. Quote The passwords they are talking about are not per-session pins but account passwords for accounts in the service i.e. on their site. Those can't be randomized per session. Her and I only use the random pins which require a phone call to each other to tell the other what the pin is to connect, but still going to make sure she is set up to have it only run once vs installed and service idle which will make her more secure. Read up on this here: http://arstechnica.com/security/2016/06/teamviewer-says-theres-no-evidence-of-2fa-bypass-in-mass-account-hack/ I recently (only 4 days ago) encountered the scammer situation where a box popped up on my screen with boxes for phone # and name, as I recall, accompanied by a voice telling me something bad had occurred, or was about to occur, in my computer and that I should allow them to call me so that they could help me resolve this. My description might be inaccurate since I was in a bit of panic mode and forced a shutdown to prevent a continuation of the attack. I have TeamViewer installed - have had it installed on this computer for many months - but do not believe TeamViewer was in anyway a factor in this attempted malicious attack. If the scammers were going to ask me to install or open TeamViewer, we had not reached that point yet. I suspect the attack was launched by me visiting a malicious website with popups that appear to be ads and I made the mistake of clicking on a popup that launched the attack. And, I suspect I arrived at the malicious website by clicking a junk ad on FACEBOOK. But, I had many tabs open in my browser when the attack hit and my suspicion might be incorrect. More info after phone call to her this afternoon. So she said she was playing number games at this website and then a pop up happened with 1-800 number and it also had audio as soybean stated. When this happened she panicked and contacted me right away to remote into her system which I did and killed the hijacker in its tracks with what i said in the first post here. Website she plays number games is this one: http://wellgames.com/free_online/digitz/ She also had facebook open at same time but nothing else going on. And in the middle of playing Digitz she got this pop up that took over edge browser. She claimed she didnt install anything new, didnt agree to any other pop up boxes. To her it popped up out of nowhere, and then she contacted me to assist because her computer was only 2 weeks old and just got hit by this. |
|
4304. |
Solve : Computer Slow and Beat Up? |
Answer» It's a good laptop but it works nowhere close to how it should. I even tried formatting it and reinstalled windows but it still is crap. I'll post all the logs and hopefully someone can help me# AdwCleaner v6.040 - Logfile created 06/12/2016 at 14:54:59 |
|
4305. |
Solve : Osiris virus question? |
Answer» Hello! I'm new here and I want to ask you if you can help me with OSIRIS virus. This virus or ransomware infected my computer 2 days ago via misleading e-mail. Now ALMOST all my files are locked and hackers demand 1.5 bitcoins for decryption. I've already tried different antiviruses and antimalware TOOLS (Cureit, Adwcleaner, AVZ, Malwarebytes antimalware) but result is zero files decrypted. So I've used google and found this guide that promotes SpyHunter tool and assures that it will help me. But... this tool costs 50$ and on the other hand bleeping computer SAYS: Quote Unfortunately, there is still no way to decrypt Locky encrypted files for free.So I want to ask you it is any chance to decrypt files without paying bitcoins? Can this SpyHunter tool help me to recover my files or it is another way to lure money? Thank you!The weird thing about that article is that the site itself has a page about a tool to decrypt files encrypted with locky here. Perhaps there is some DIFFERENCE in what that tool is able to unlock and more recent malware. The comments seem to suggest that there is a new "breed" that the tool doesn't work with. |
|
4306. |
Solve : My laptop always disconnects from the internet? |
Answer» Ok,,,,I am an idiot. |
|
4307. |
Solve : Suggestions on what products to go with or should he stick with what he has?? |
Answer» Friend of mine contacted me looking for better security coverage to prevent virus's and ransomeware as seen below. Curious what suggestions you guys might have for him. Looking to improve security on my on-line devices (desktop at home, office laptop, and smartphone). I’m thinking of something a little more tailored than just buying McAfee or Norton coverage every year. It seems like it’s just a matter of time before I get hacked for ransom or something like that.What OS is he/she running?He has Windows 7 64-bit Home and Pro versions on the desktop and Laptop ... Smartphone is Android but not sure which version of Android.He should install one of these free AV's. He should also make sure his Windows Defender is enabled if he uses any other AV except MSE. If you decide to use MicroSoft Security Essentials it will automatically turn off WD. You can also use either the free or the paid version of MBAM. The free version will only be full-time for a test period. After that, he will have to initiate the scans himself. Remember to only install one antivirus! 1) Avast! Home Edition 2) AVG Free Edition 3) Avira AntiVir Personal 4) MicroSoft Security Essentials All versions and all languages. 5) Comodo Antivirus (Uncheck during installation "Install Comodo SafeSurf..", Make Comodo my default search provider" and "Make Comodo Search my homepage" if you choose this one) It is strongly recommended that you run only one antivirus program at a time. Having more than one antivirus program active in memory uses additional resources and can result in program conflicts and false virus ALERTS. If you choose to install more than one antivirus program on your computer, then only one of them should be active in memory at a time. ********************************************* Please download Malwarebytes Anti-Malware from here. Double Click mbam-setup.exe to install the application.
With his statement of: Quote I’m thinking of something a little more tailored than just buying McAfee or Norton coverage every year. I was thinking he was going to have to go with like a Corporate Edition of NAV to have a stronger antivirus product and pay out a few hundred dollars to have the 2 computers as protected as possible. Its cool that the free ones are strong. Myself I am very low risk for virus's and have been using AVG for a few years now without any problems. But he gets e-mail with attachments regularly and so he is at a greater risk for something to try to slip on in. A while back i found a website where they did tests with antivirus's and they showed a matrix of which antivirus's scored better than others under testing with systems that were installed with AV's and which ones fell prey to certain virus's ETC. Thing is that that information is old now and unable to find a newer version of it showing which one is best currently. The information was so old that they displayed Windows Defender as being weak. I know that Windows Defender has gotten better since. Cant seem to find that exact comparison but found this one but its an editors rating and anyone can be an editor and say they like one better than another but which one is the best, but testing to try to infect systems with antivirus's and scoring them is better assuming its not altered to be biased to promoting a product etc: http://www.pcmag.com/article2/0,2817,2372364,00.asp Also to mention, his business runs on these 3 devices and so its critical that he is as protected as possible. I give free advice to him on IT, but making sure he has the best protection is not my specialty. Ive educated him on spoofing and all that so he is better than most users out there, but he just wants to be as safe as possible and I think he feels that McAfee or Norton Antivirus off the shelf home computer editions might be weaker in some way vs something that might be for corporate small business use. So Real-Time protection is a must then whichever one is the strongest at prevention. Quote Myself I am very low risk for virus's and have been using AVG for a few years now without any problems. But he gets e-mail with attachments regularly and so he is at a greater risk for something to try to slip on in.He should use a mail prescreener such as MailWasher. That way he won't have to worry about attachments.Almost every day this week I receive e-mails telling me about a new invoice that I need to open but I know I don't do business with them so I just bounce it before it comes down off the server. I use free AV's on all my computers and I go to some very dangerous sites with NEVER any problems. It has been my experiences that lately, there are very few virus floating around. The secret is to stay away from opening attachments unless you know that they are safe to open. If a friend sent me an attachment the first thing I would do is ask him/her if they indeed sent it to me. On another note, I've cleaned many computers that have had paid for AV's so that in itself is no guarantee to stay safe. I would however recommend the paid version of MBAM which is not all that expensive.One of the problems, IMO, with making recommendations in this scenario, is that it's hard to evaluate precisely what would provide benefit to a specific user without knowing a lot of details about their usage; generalizations lead to generalized advice and while very valuable, if you're looking to get some security solution specific to your friends usage, that's a tall order. I'm of the mind that regardless of the security solutions/software in use, nothing will protect a user from themselves. For example, if a user is easily convinced to turn off their AV then it won't matter; if they will open E-mail attachments, run executables they downloaded, etc. while following advice that it is a false positive and to disable the software, then what good is the software? Similarly, no amount of AV protection is going to protect somebody from falling victim to say the Microsoft Scam E-mails and stuff. That takes a sort of computer security literacy which has to be learned, and cannot be gained by merely installing security software. Most consumer-aimed malware, I expect, is largely distributed by exploiting the weakest link- these aren't usually security exploits, but rather just giving the user enough ROPE to "hang themselves" with. Being security conscious means being aware of when somebody is having you tie a noose; an AV program is a tool that is intended to effectively warn you when somebody has you tying a noose. That can be useful, but it becomes less useful if a user can be convinced that they are lying. (The aforementioned "disable your AV before running this as it's a false positive" stuff) Thank You for the info... also going to check out MailWasher never heard of it before. I use Thunderbird and it looks like it will work with that. The good thing is that he is knowledgeable and in the 8 years I have known him he hasnt gotten into any virus TROUBLES. Just unfortunate hardware failures from aged computers and a lightning strike that hit a brand new Toshiba Tecra and burned out the onboard ethernet in which the solution for him was to add a USB Ethernet adapter vs replacing the main board. Going to share this info with him. Many Thanks! Also for SmartPhone should I direct him to the free McAfee for Android or?Sorry, I'm not up-to-date with Smartphones and such.Ok no problem. Thank You for all the info. I use mcAfee on my android phone so I will suggest that for him. Its free and has pretty good protection and a lock on it that keeps malware and unauthorized users from being able to factory reset it too as I experienced the hard way on my LG16C phone when the keypad software got corrupt. I ended up having to use a voice to text app that I had on the phone to enter the pin number specific for McAfee in order to factory reset my phone and then once I did that i installed a different keypad app so that if the one crashes again that came with phone from factory i can navigate and select to make the other active. |
|
4308. |
Solve : I have a virus that malwarebytes and JWRT can't seem to find.? |
Answer» Most of the clean up things seemed to run as I expected. |
|
4309. |
Solve : I have a picture I can't move or delete. One I didn't create.? |
Answer» I need advice as to how I may remove this picture that appears when I boot and lies across the desk top icons. It is about TWO inches tall and crosses the screen LEAVING a two in. margin, either end. Part of the middle is some translucent and the icons are visible there. |
|
4310. |
Solve : AVG free trial? |
Answer» My free trial is over, & I get messages that I have 'junk files' not cleared away, & various other issues. I'm encouraged to buy AVG Antivirus, as none of these issues will be taken care of otherwise. Can't afford this. What to do instead ?Junk files are harmless. If you aren't GOING to buy the PAID version of AVG, uninstall it and replace it with a GOOD, free anti virus.Hello and welcome to COMPUTER Hope Forum. My name is Dave. I will be helping you out with your particular problem on your computer. |
|
4311. |
Solve : which is best antivirus to delete trojon virus?? |
Answer» which is BEST antivirus to delete trojon virus?You can ask 100 people what is the best AV and you will receive 100 answers. Everyone has a different opinion. If you SUSPECT that your computer is infected I can HELP you. Please RESPOND yes or no. |
|
4312. |
Solve : Help recoverin wifi on laptop running windows 7 after virus? |
Answer» My laptop is SERIOUSLY messed up. I had to call again my internet service provider and the TECH who took care of me told me either change the wireless card inside the laptop (which I don't KNOW how to do) or to buy a wireless USB router (which is what I am going to do). THANK YOU SO MUCH FOR ALL YOUR HELP! I thought it could be solved with software, but can't be. The switch is in your F keys. CHECK with the site of your laptop to find out which one. If you can't download the scanner try it in Safe Mode with NetWorking. It didnt work. Any other suggestion pls!Lorraine, if you need help please start a new thread of your own instead of jumping in on someone else's thread. |
|
4313. |
Solve : Short videos take gigabytes of my space? |
Answer» A 8 MIN videos and videos that short takes a lot of space , It must be a viruse that my avast cannot detect |
|
4314. |
Solve : Very old files slow down my laptop? |
Answer» Greetings |
|
4315. |
Solve : "The requested resource is in use" error when attempting to run AV software? |
Answer» Quote from: SuperDave on August 09, 2017, 01:12:03 PM While I'm looking through these logs could you please check something for me? Did you make any changes to this computer prior to being infected? Did you download or install any new programs? Go to your installed programs and see if there are any programs that you do not recognize or did not install. If you find any that are suspicious check that date it was installed. In my installed programs menu, I see a program labeled "DragonBoost", this is adware, but I am unable to uninstall it, as the uninstall and modify BUTTONS are grayed out. I have also identified some malicious processes on my system, here they are: this tool will let you delete the associated executables of each process, but attempting to do this with the viruses will lead to them just reappearing a few minutes later. I tried running the re-named malwarebytes setup, but I got the error message.Please launch Task Manager. CTRL+Alt+Delete and stop any suspicious processes you find and then try to run MBAM.Quote from: SuperDave on August 10, 2017, 01:20:31 PM Please launch Task Manager. CTRL+Alt+Delete and stop any suspicious processes you find and then try to run MBAM.All I see are just normal processes, nothing that looks even slightly suspicious, yet something is still blocking MBAM and everything else. I was even able to delete all of the contents of AppData\Local\ntuserlitelist (where cpx.exe, svcvmx.exe, vmxclient.exe and dataup.exe were all located), as well as C:\Windows\System32\tprdpw64.exeQuote I see a program labeled "DragonBoost", this is adware, but I am unable to uninstall it, as the uninstall and modify buttons are grayed out.Go into your C drive, Program Files and see if you can find DragonBoost. If you can find it, please delete the folder. Were you able to run MBAM with the name change? ESET Online Scanner Note : If you use Internet Explorer to get the ESET Online Scanner, you won't have to download, nor install the tool, as everything will be ran in a contextual (pop-up) window of Internet Explorer. However, for every other browsers, you will have to download and install ESET Online Scanner. In this set of instruction, I'll use Google Chrome to download it and run it (since a lot of people will do it), however, except for the download and INSTALLATION procedure, the same instructions applies if you use Internet Explorer. Please note that two or three prompts will appear if you use Internet Explorer asking you to reload the page, authorize the application, execute it, etc. Accept all of them in order to run ESET Online Scanner. Download and execute ESET OnlineScan (on this window, click on ESET Smart Installer to trigger the download). People accessing this URL via Internet Explorer will start the integration process of ESET Online Scanner in their browser; Once the installation is done (it requires Admin Rights), check the following settings (two of them are under Advanced Settings, click on it to display them) : Enable detection of potentially unwanted applications; Scan archives; Scan for potentially unsafe applications; Optional : If you want to scan more drives, click on Change... and select the drives you want to include in the scan; After you're done checking these options, click on Start and ESET Online Scanner will download it's virus signature database before starting the scan; Once done, the scan will start automatically. Detections will appear at the bottom of the window. ESET Online Scanner can have an extremely long scan time that can last between 2 or 3 hours. So if you start the scan, do not interrupt it, let it complete until the end; After the scan is finished, a summary window will appear to give you the information about the scan. Then you'll have to the option to see what threads were found and to manage the threats that were quarantined; Click on List of found threats, it'll display every threat identified during that scan, their type and what action was taken against them. Click on Copy to clipboard to copy these results on our clipboard and post them in your next reply; Once you're done, click on the Back button; Check both checkboxes at the bottom: Uninstall application on close and Delete quarantined files before clicking on the Finish button;I get the "resource is in use" error when I run the ESET scan. However, I was able to download and run a program called Roguekiller in safe mode. This found several malicious registry files. Here is the log of what it found: [Suspicious.Path] (X86) HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run | cpx : "C:\Users\Hunter\AppData\Local\ntuserlitelist\cpx\cpx.exe" -starup
[Suspicious.Path] (X64) HKEY_LOCAL_MACHINE\System\ControlSet001\Services\Dataup (C:\Users\Hunter\AppData\Local\ntuserlitelist\dataup\dataup.exe) -> ERROR [5] [PUM.Dns] (X64) HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{995807ba-c37b-4698-899a-03a798fa44d2} | DhcpNameServer : 209.18.47.61 209.18.47.62 ([X][X]) -> Replaced () [PUM.Dns] (X64) HKEY_LOCAL_MACHINE\System\ControlSet001\Services\Tcpip\Parameters\Interfaces\{995807ba-c37b-4698-899a-03a798fa44d2} | DhcpNameServer : 209.18.47.61 209.18.47.62 ([X][X]) -> Replaced () Could you tell me how to fix/delete these?Update: I was able to fix eveything! I got MBAR to run and scanned my pc, which then allowed me to run MBAM and now all of the symptoms are fixed.You should now try to run ESET. |
|
4316. |
Solve : redirect.cheapred.info hijack my browsers? |
Answer» Could you please post a screenshot of the re-direct?here it is
[attachment deleted by admin to conserve space]Code: [Select]HitmanPro 3.7.20.286 www.hitmanpro.com Computer name . . . . : DELL-PC Windows . . . . . . . : 6.1.1.7601.X64/4 User name . . . . . . : dell-PC\dell UAC . . . . . . . . . : Disabled License . . . . . . . : Free Scan date . . . . . . : 2017-08-28 18:03:15 Scan mode . . . . . . : Normal Scan duration . . . . : 8m 2S Disk access mode . . : Direct disk access (SRB) Cloud . . . . . . . . : Internet Reboot . . . . . . . : No Threats . . . . . . . : 1 Traces . . . . . . . : 20 Objects scanned . . . : 1,262,129 Files scanned . . . . : 15,236 Remnants scanned . . : 226,731 files / 1,020,162 keys Malware _____________________________________________________________________ C:\Users\dell\Downloads\Programs\disk-defrag-setup.exe Size . . . . . . . : 8,844,032 bytes Age . . . . . . . : 3.8 days (2017-08-24 22:40:54) Entropy . . . . . : 8.0 SHA-256 . . . . . : E56404B46C97CDBD6B08B3C0E05B605667E2FD074B436C84983DBFE580984698 Product . . . . . : Auslogics Disk Defrag Publisher . . . . : Auslogics Labs Pty Ltd Description . . . : Auslogics Disk Defrag Installation File Version . . . . . : 7.1.5.0 RSA Key Size . . . : 2048 LanguageID . . . . : 0 Authenticode . . . : Valid > HitmanPro . . . . : App/ADiskDef-A Fuzzy . . . . . . : 98.0 Forensic CLUSTER -1.8s C:\Users\dell\AppData\Roaming\IDM\DwnlData\dell\disk-defrag-setup_16\ 0.0s C:\Users\dell\Downloads\Programs\disk-defrag-setup.exe Cookies _____________________________________________________________________ C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:262855726.log.optimizely.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:addthis.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:adnxs.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:adsrvr.org C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:agkn.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:atdmt.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:bluekai.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:connexity.net C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:doubleclick.net C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:mookie1.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:openx.net C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:pixel.rubiconproject.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:pubmatic.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:rlcdn.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:rubiconproject.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:scorecardresearch.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:taboola.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:tapad.com C:\Users\dell\AppData\Local\Google\Chrome\User Data\Default\Cookies:trc.taboola.com Download SpyHunter Double-click SpyHunter-Installer.exe to install it into your system: Select Language, installer and EULA. Select “Start a New System Scan” and then click Scan Computer Now! Step 4: Get rid of all detected items by clicking “Fix Threats” button: no threats found Quote from: alixa on August 25, 2017, 09:00:19 PM it was fine for a while but it keeps coming back for no reason i do not know what is wrong about itDoes it do this on all your browsers including IE?YES to all browsersThe instructions I have given you is the proper method to get rid of this re-direct. Have you tried a System Restore to before the date this problem happened?WELL i finally solved it at last 1- i have to disable cookies 2- i have to disable java in a the browsers thanks for your help and i am sorry to bother you thanks again Click Start> Computer> right click the C Drive and choose Properties> enter Click Disk Cleanup from there. Click OK on the Disk Cleanup Screen. Click Yes on the Confirmation screen. This runs the Disk Cleanup utility along with other selections if you have chosen any. (if you had a lot System Restore points, you will see a significant change in the free space in C drive) *************************************** This step will remove all cleaning tools we used, it'll reset restore points (so you won't get reinfected by accidentally using some older restore point) and it'll make some other minor adjustments... This is a very crucial step so make sure you don't skip it. Download DelFix by Xplode to your desktop. Delfix will delete all the used tools and logfiles. Double-click Delfix.exe to start the tool. Make sure the following items are checked:
Once finished a logfile will be created. You don't have to attach it to your next reply. ******************************************** I suggest using WOT - Web of Trust. WOT is a free Internet security addon for your browser. It will keep you safe from online scams, identity theft, spyware, SPAM, viruses and unreliable shopping sites. WOT warns you before you interact with a risky website. It's easy and it's free. Check out Keeping Yourself Safe On The Web for tips and free tools to help keep you safe in the future. Also see Slow Computer? It may not be Malware for free cleaning/maintenance tools to help keep your computer running smoothly. Safe Surfing! |
|
4317. |
Solve : Device Manager - Device Migrated? |
Answer» Hello, |
|
4318. |
Solve : Malwarebytes? |
Answer» I now have two drives, C & E. I downloaded what I thought was the free version of Malwarebytes, but it gave me the trial version. I have uninstalled it the correct way from the control panel, but Malwarebytes is still shown in the program section of C & E. How can I get rid of it entirely, and how can I download the absolutely free copy with no ties instead of the free trial?What is the "Program section of C & E"? What is the "Program section of C & E"?Sorry, I meant Malwarebytes folder was still showing in Local Disk C & Local Disk E Quote You can delete the folder if you uninstalled the program either way.The Malwarebytes FOLDERS both have stuff inside them. Is that still OK? It won't leave anything behind or interfere with the registry? Quote You can get the free version by not choosing to install the trial version during setupI DID select the free version, but the trial version installed itself every time.The trail will AUTOMATICALLY END in 15 days or you can go into Malwarebytes settings and end the trail straight away.Quote The Malwarebytes Folders both have stuff inside them. Is that still OK? It won't leave anything behind or interfere with the registry?You mean just delete the two full Malwarebyte folders? I just want to be sure about this, as you usually UNINSTALL them (which I did) except these two full folders stayed behind. |
|
4319. |
Solve : Something in my. Computers and life? |
Answer» I set up to be connected for 1 hour. After struggling to type this on my CL phone it was lost when, booted out. Would love to see those posts saved to drafts so it's not a total loss. |
|
4320. |
Solve : Hacker turned my Win10 PC into a VM and remote controls it for months now! HELP!? |
Answer» Quote from: BC_Programmer on February 10, 2018, 09:13:05 AM A lot of companies make use of Akamai-based servers as they are a very large CDN (Content Delivery Network). Microsoft in particular have used it for Windows Update for around a decade now. Apple has actually been starting to MOVE away from the Akamai CDN for their own in-house Content Delivery Network for a few years but still utilize a number of nodes (eg. servers for certain geographic areas) *context handler. And yah I know what’s a Clsid is, that’s just it though, all of my apps and security devices are used under a different handle /clsid that I don’t control. Obviously there is parts of a pc that provide support for apps and what not but not every single dll And CFg exec file on the pc. A handler is just that it handles operations for that given clsid. A handle. Handler. Mine as we’ll be the same thing. Also why every single program gets added it’s own unsigned service because schost can be controlled from a remote shell. So making everything a service it can LOOK as if ignore Ian my legitimate program but it’s not and it’s not me using it fully. |
|
4321. |
Solve : Re: Deleting unwanted toolbars and favorites folde? |
Answer» DJ.....what operating system are you using.....and do you have any idea which tool bar it is that you cant remove. |
|
4322. |
Solve : PLEASE HELP, I CANT FIND ANY HELP? |
Answer» I need HELP really fast. Please answer my question as soon as possible. I am having internet problems and virus problems. It's all been going one after the other. I have XP I believe. OKAY PROBLEM: Whenever I press "Internet" on the desktop, it tells me "This page cannot be displayed. I've tryed so many websites, but will not WORK. It keeps going to http://if.searchcentrix.com/searchcat.jsp?p=98567&appid=21&type=dns&id=162826192168266&url=if.searchcentrix.com but I never got the program "centrix". Okay so I got here by going to My Computer. I put in google.com in the URL of My computer and I got there. I dont want to be going to My Computer everytime I want to go on the internet. And also, whenever I use the internet, I will get "This page cannot be displayed" for all the pop-ups that I DO want. Also, I recently uninstalled Ad-aware because I thought it was doing something wrong to the computer(it slowed down the internet a lot and kept freezing the internet), but then I realized it wasn't. The Freezing became more frequent, and I kept restarting the computer. I realized we got a lot of adware viruses(I first thought it was Ad-Aware and was a virus that got detected by Norton Antivirus). I deleted them all, and I got Ad-Aware back. Now this whole internet thing has happened. SO, please answer quick, because this is NOT MY COMPUTER. It's my friends so please please help. I will be so happy if you can help me Download 'spybot s&d'. It is free and gets rave reviews for those who go get it. Easy to install. Good Luck.Go to House Call free online virus scanner. Run Scan Go to CW Shredder. Follow instructions. Go to Internet Optins/Programs and hit RESET web settings. Confirm what home page you want or just put in blank,again at Internet options General tab. Reload Ad aware and Spybot. elizabeth27......It almost sounds like your p/c has a hijacker bug......Open Ad-Aware and get the latest update .....it will remove the hijacker . Now your problem with the internet.....may be the result of the sasser worm.....are you getting any odd error messages or is your p/c shutting down? Have you checked with your internet service provider in case they had a problem..... let us know dl65 |
|
4323. |
Solve : Re: *censored* Ad Popups? |
Answer» YellowRose......go to .... |
|
4324. |
Solve : Re: NO CLUE? |
Answer» Joanna....SOUNDS like you may have a virus or trojan.... |
|
4325. |
Solve : a quick question..? |
Answer» eloz all, |
|
4326. |
Solve : Re: error.com? |
Answer» Jennifer......Hummmmmmmm it sound like you may have a virus or a hijacker .......I would suspect sasser .......If you go to Symantec site ...and D/l the sasser removal tool ....SAVE it to DISK .......then with the infected p/c offline ........run the removal tool and it should get rid of it ...... |
|
4327. |
Solve : spyware & adware destroying my computer? |
Answer» Recently my computer started acting up. For no reason it SHUTS down unexpectedly. I thought there was a virus but the antivirus didn't detect any viruses on my computer MAYBE is hidden. I really need your help what programs can I use or buy in order to protect from all viruses, spyware, adware, hacker you name it. Any suggestion of how to STOP these? I'm concern about security and privacy when SURFING the Internet. Need guidance. thanksteck2k.....perhaps you could give us a little more info....like what O/S are you running , what kind of Anti virus are you using..Are all your patches and updates |
|
4328. |
Solve : Viruses and Spyware? |
Answer» I think I have a virus problem. A week ago, when I booted up, I started getting a "Kernel" message, the desktop appears to be in the Safe Mode and my mouse does not function. A friend suggested adaware. My son seems to have downloaded adaware USING only the keyboard but we cannot navigate within the adaware (without our mouse). What can we do? Does this sound like a virus? We have Norton Anti-Virus running. |
|
4329. |
Solve : Gator W/Gain popups? |
Answer» I just notified Gator about it carrying Spy Ware and Add-Ons in its PROGRAM, and their reply was that in the agreement section of the program, it is explicit about not having or useing any such related spammers. |
|
4330. |
Solve : some virus or hijacker keeps shutting down my IE!? |
Answer» I have RUN the latest Ad-Aware and Spy-bot. I have run BPS (BulletProof Software). Everytime I try to scan with TrendMicro, or get to some other online scan --- whatever virus or hijackers I have, shuts down my Internet Explorer. How can I get rid of this vermin!!! Please, I'm not that cyber-friendly; but I need my system to work when I need it to work!!! Can anybody help me??? If I had MILLIONS of dollars, I would hire a hacker --- to trace back whatever hacker is hijacking me, and I would find out where that hijacker lives; and I would visit him ... or her ... and I would chop-off his ... or her ... hands and give them a lobotomy with no anesthetic, so he ... or she ... could never hijack or HACK anyone ever again I'm a liberated avenger! Anybody else WANT to help with THAT DREAM!!! Dwayne .....What kind of Anti Virus do you have installed on your P/C |
|
4331. |
Solve : Adware Problem? |
Answer» I have a problem w/ adware on my computer. I have Windows XP for my O/s and Norton Anti-virus 2004. I have run several system scans, and more than 20 adware files are found. However, Norton is unable to delete them and my attempts at deleting them manually have also failed. How do I get RID OF THEM??!! |
|
4332. |
Solve : evil evil virus? |
Answer» Whenever I try to start up my computer, instead of going through the normal startup routine, the blue Windows XP screen comes on, and no matter what I try (pressing F8; Cntrl, Alt, Dlt; or puttin in my XP Installation CD, the computer is stuck on that screen. What to do? What HAPPENED before this event occured?the only thing that i can think of was a couple of MESSAGES came up saying that a file wasn't working and needed to be reinstalled. but they were all pretty periferal files like messaging systems and stuff. this happened the last TIME i turned the COMPTUER on. |
|
4333. |
Solve : explore function doesn't work? |
Answer» PLEASE bear with me as this is my first post here. I must have picked up something from the internet that is causing havoc with my computer. It resets my homepage automatically to some page I have never seen. Also I can no longer ACCESS explore from my computer nor control panel. My computer locks up everytime I try to explore to see what's been added to my system. Please help if you can. Thanks Download, install, update, and run AdAware and SpyBot.easy........Do as Joleen suggests.....it should correct the problem Ad-Aware ...... HTTP://www.download.com/3000-2144-10045910.html?part=69274&subj=dlpage&tag=button SpyBot..... http://www.download.com/3000-8022-10122137.html Don't forget to GET the updates...... Good luck dl65 Thank you both for your help, I did just as you suggested and updated and ran both programs. Part of my problem is fixed. I can run my computer now without it locking up on it's own but it still locks up anytime the explore funtion is needed. Could have I accidentallly deleted a needed file? I can't run certain programs nor can I use the explore my computer or control panel without it locking up. ADDITIONALLY, when I reboot I get this message "C:\Windows\sp.dll: Error opening the file. There may be a disk or file system error." Thank you again for your help and I would appreciate any additional help with this problem. easy.......there is a good chance that " sp.dll " is part of one of the bugs you had ........but before you do anything radical......try D/L Pest Patrol is it supposed to detect and remove this threat.... http://www.antivirus-online.de/english/counttro.php3?a=1229 Hope this solves your problem dl65 http://www.dll-files.com/dllindex/dll-files.shtml?sp - sp.dll http://www.liutilities.com/products/wintaskspro/dlllibrary/sp/ - sp.dll information. Donot download this .dll file, it isn't missing do as DL65 says. |
|
4334. |
Solve : Computer seems like it has a glitch? |
Answer» StartupLite Download StartupLite by MalwareBytes to your Desktop. Doubleclick StartupLite.exe to launch the program. Ensure the Disable box is checked. Click Continue. A pop up message will tell you the unecessary startup items in your list have been disabled and ask you to restart your computer. Re-start your computer. I told you something always goes wrong with me and a computer. I did what you said, the Disabled box was checked, I clicked on Next and this box comes up saying: Error on value: SunJavaUpdateSched. There was an error creating a MSConfig key. Then when I went to X out, it said complete and restart the computer. That's how it goes with me, something is always thrown up on the screen that I never know what to do with! I'm leaving it alone, it said it did it, so that's fine with me. About the cat - it is about a year old. I rescued it from outside when it was sick and its mother abonded it. It is a female, not spayed yet (planned to do so but if she was pregnant, I wanted to wait, and wasnt sure), possibly pregnant. There are a lot of wild cats in my area, and I saw her, tried to get her, but she just ran. All my other pets loved her as a friend, and I lived her very much. I hope one of the wild cats didnt convince her to leave me.(P.S The cat has been missing for a few days now).Oh no, Coco. I am so sorry. Since she was a female rescue, if it's possible she was pregnant, she very well could be looking for a safe place to have her kittens. That happened to us on the first one we rescued. We were feeding her, petting her, letting her in, we figure she's our cat at this point. Then she disappeared for a four days and we looked everywhere and called for her. (Unlike my cats, she actually came to "kitty, kitty, kitty"!) When she showed up, she was skinnier. She would come every day, hang out a bit, but always left and was gone most of the time. One day I decided to follow her and we went way up the ROAD until we got to someone's house where she cut back behind and into the woods. I didn't want to trespass on someone's land, so I went back home. A few days later she showed up at a shed way down at the end of our property with the kittens. The next day she moved them up to the house and behind the hedges in front of the house. So maybe that's what yours is doing. Don't give up yet. How long had you had her? Because this cat we had only a month when she left to have her BABIES. Keep your fingers crossed and I hope she shows up. I have had her about a year, since she was a few weeks old. (P.S. Can we go back on topic somewhat? Thanks for the message.)I know, I figure we'll get in trouble if we keep talking cats. I hope you get her back. If you do, do let me know. I'll keep my fingers crossed for you! My cat returned! And she is back to her normal self!OMG! WONDERFUL! She was out "catting around". Now she just might be pregnant, so look out! I'm so glad she's back and I know you are too. You never knew whether they are somewhere hurt or lost when that happens, but am so terribly delighted she is back home. Give her tons of love! Quote from: Coco423 on FEBRUARY 17, 2018, 02:36:48 PM (P.S. Can we go back on topic somewhat? Thanks for the message.) Can we please at least get somewhat back on topic? Thank you for the encouragement.Click Start> Computer> right click the C Drive and choose Properties> enter Click Disk Cleanup from there. Click OK on the Disk Cleanup Screen. Click Yes on the Confirmation screen. This runs the Disk Cleanup utility along with other selections if you have chosen any. (if you had a lot System Restore points, you will see a significant change in the free space in C drive) *************************************** I suggest using WOT - Web of Trust. WOT is a free Internet security addon for your browser. It will keep you safe from online scams, identity theft, spyware, spam, viruses and unreliable shopping sites. WOT warns you before you interact with a risky website. It's easy and it's free. Check out Keeping Yourself Safe On The Web for tips and free tools to help keep you safe in the future. Also see Slow Computer? It may not be Malware for free cleaning/maintenance tools to help keep your computer running smoothly. Safe Surfing! Thanks, Dave. I did run the Disk Cleanup. My computer seems fine now. I did not know about WOT...how interesting. I will download that for sure! Now, because I have that on my computer, will it work with both IE and Google Chrome? For some reason, when I get on Facebook with IE, it starts MESSING up and things go haywire, like FREEZING, not showing big spaces of text or pictures, and sometimes just totally stops working. So I use Google Chrome for Facebook and do not have that problem. Somewhere along the way I was told IE has glitches that it will do that sometimes as Facebook is not the only website I've been on with IE and it has acted up. I went to WOT and got my question answered...they do not have WOT for IE evidently. I saw Google Chrome, Foxfire, Opera, and one other, but not IE. So I guess you don't need to answer that question for me! I will lock this thread. If you need it re-opened, please send me a pm. |
|
4335. |
Solve : p2esocks_1012.dll? |
Answer» Hi, upon start-up on my computer i recieve this message which says it cant find this MODULE or something |
|
4336. |
Solve : Is it too late?? |
Answer» chelc.....are you not able SET BIOS to boot from floppy....shut down .....insert floppy and restart then using the bootdisk ....REMOVE the partition and then format .......set the bios to start with cd assistance ....PUT in the win cd and let it load ? |
|
4337. |
Solve : Virus? Please help me.? |
Answer» Everytime I get on my computer, it says EXPLORER has performed and illegal operation. I cannot open any of the programs. When I click "ok" the screen goes to just my wallpaper and sometimes it then repeats the same process. Once, after I kept clicking ok the WORD "kernal" came up at the top of one of the illegal operation bars. I tried restarting my computer from a new Norton Anti-virus cd and it searched for over 5 hours until it said no virus found on the C drive. I can't load the cd while in safe mode. When I try to get on the internet it won't get online and only says the communications port it busy. Is there a virus on there or is there something else? Please help me. Thanks.........It certainly sounds like a virus is present.....and the problem using the NAV cd is that it doesnt have all the current virus updates......and there a lot of them....... |
|
4338. |
Solve : Error that keeps popping up!? |
Answer» So i ran SpyDoctor which got rid of some things and after that i kept getting an error message every minute or so, it would pop up with a message like "Error LOADING 'file name here'..." so my friend had me type 'msconfig' into RUN and it got rid of that certain file's problem but then i get a new error that says "Error loading C:\PROGA~1\INTERN~2\inetkw.dl the specified module could not be found" and it pops up every minute like the other error only when i tried msconfig in run, it didn't stop the problem. i don't know how to get rid of it. can anyone help?Please Read This First - Viruses & Spyware |
|
4339. |
Solve : wallpaper change? |
Answer» I need HELP! My wallpaper turns black and changes into an image of a "spiderweb tattooed a**hole"! I've got adaware, spybot, avast and zone alarm running and updated but they don't detect the problem! The pest puts a bmp file in winnt folder that sets as wallpaper. Even if i delete it and the temporary files, the wallpaper changes after a short time! |
|
4340. |
Solve : trouble with norton av? |
Answer» I installed my av program a few days ago. It won't let me register my produce, receive live updates or get on the tech web site. |
|
4341. |
Solve : Screwed up Comp? |
Answer» I dont kno whats happened but i only REALISED i had comp problems when i couldnt access my emails through hotmail.com. I have scanned my comp with a number of adware and spyware SCANNERS but i still cannot access my emails. I tried entering the registry editor but when i try to OPEN it (start/run/regedit/open) it doesnt open could anyone PLEASE help me. |
|
4342. |
Solve : cannot delete:access denied? |
Answer» I have run Ad Aware and SPYBOT and there are a few files that neither one can get rid of. I have tried to remove them myself and it tells me "cannot delete:ACCESS denied". What can I do?FIRST you can GIVE us some idea as to what the files are. Does Adaware or spybot recommend any actions?You can tell Ad-aware to start it's self before the rest of the programs load into the memory. |
|
4343. |
Solve : Unable to enable Norton? |
Answer» I've successfuly used Norton (Symantec) for years on Windows 98. Recently upgraded to Windows 2000 and added the RIM Blakberry synchronization software. RIM Blakberry synchronization software Is this software used for cellular phones?It may not have FULLY uninstalled. Symantec has this tool that may help.. http://service1.symantec.com/SUPPORT/nav.nsf/df0a595864594c86852567ac0063608c/33497f6e8a319ece88256ace0076cc02?OpenDocument&src=bar_sch_nam Read all the documentation before using. |
|
4344. |
Solve : Internet Problems.? |
Answer» Hi I don't know what happen but I cannot log into my hotmail account. I can't SEND my from my school's mailing account. I can't hit submit when i try to change my profile on some forums. I can't hit submit when i post on some forums. I think it the problem worsen everyday. I don't know what to do. I have try reinstalling WINDOWS XP but that just wiped out my entire computer w/o resolving the issue. I try rebooting my computer using the 4 system restore but that also only wiped out my computer w/o resolving the issue. As I write this I can only hope the submit button works. I don't know what to do. I have tried posting it on some random forums on the INTERNET but no one seems to be able to help me. I can't even access windows update. It gives me an error and says "we're sorry." I try running the troubleshooter for windows update but it was hard to understand. More or less, my problem is still at hand. I can't check my mails, i can't send it, i can't post things. What good is this internet now? I have even ran the latest version of NORTON Anti Virus and clean out everythign with SpyDoctor. The problem still exist. Please help me, I beg of you. Did you format before reinstalling Windows XP or only uninstalled Windows XP? |
|
4345. |
Solve : I can't access my programs. A virus stops them.? |
Answer» I recently RECEIVED a letter in my Hotmail junk mail informing me that something that I am supposed to have ordered had been shiped and my credit card had been billed. There was a place I was to click if I wanted to SEE what it was all about. Well I clicked it as I had not ordered anything. Now if I click on a shortcut on my desktop nothing happens and also on my program list. I am useing windows 2000. Is there ANYWAY to fix this without formating my hard drive?I'd boot into safe mode and SCAN for VIRUSES. Are you able to get out to the internet?You can also try if Ad-aware or Spybot Search & Destroy will help you. |
|
4346. |
Solve : 180search assistant? |
Answer» RECENTLY through some sort of spyware i think, i noticed this program called 180search assistant. it constantly launches pop ups at pretty much every site i visit and it is not only becoming incredibly annoying it is also slowing my computer considerabley. I've tried uninstalling the program through Add/Remove Programs but it won't uninstall! is there any other way i can get rid of this pest of a program!???PLEASE Read This First - Viruses & Spyware Install the programs recommended. I suggest you properly configure them to MAKE better use of the SCANNER. Refer to the manual in order to do so. |
|
4347. |
Solve : malware & data miner? |
Answer» how to REMOVE malware & data miner?avocada...go to ...... |
|
4348. |
Solve : w32.pinfi? |
Answer» I recently got a new computer and WANTED to use some files I SAVED ONTO a CD-R disk from my old computer, but when I try to do anything on the disk I get a W32.pinfi virus warning. I did what the instructions on the Norton site said but it didn't HELP. How can I eliminate the virus? |
|
4349. |
Solve : Can't get rid of Hantaner virus? |
Answer» Hi, |
|
4350. |
Solve : Small program? |
Answer» That packs a punch with trojans and alike >http://vil.nai.com/vil/stinger/ it pay to keep it on you pc ..you NEVER know when it MIGHT come in handy Merlin, what does this program have that a (decent) virus SCANNER cannot offer?Raptor....... Here's the scoop on Stinger....... |
|