Monday, October 10, 2011

Computer virus hits US drone station

Los Angeles: A stubborn computer virus has reportedly hit the US Nevada control station that remotely pilot US military drone aircraft on missions in Afghanistan and other war zones, Xinhua reported. The virus has infected the cockpits of American Predator and Reaper drones, logging pilots' every keystroke.
According to Wired magazine, the virus, first detected about two weeks ago by the military's Host-Based Security System, has not prevented pilots at Creech Air Force Base in Nevada from flying their missions overseas. However, the virus has proven very difficult to eradicate. "We keep wiping it off, and it keeps coming back," <>iWired quoted a source as saying. "We think it's benign. But we just don't know."
The virus has infected both classified and unclassified machines at the base, but it was reported that no classified information has been lost or transmitted outside, the report said Friday. The US uses the unmanned aircraft to conduct surveillance and carry out strikes on enemy targets. They are used particularly in remote and mountainous areas of Afghanistan, Pakistan and Yemen. The affected US drones used to kill Anwar al-Awlaki and other Al Qaeda chiefs.
In 2009, US forces discovered drone footage on the laptops of Iraqi insurgents, Wired said. The incident has again sounded an alarm on US military network security.

Prime number using recursive function

    #include<stdio.h>
    #include<conio.h>
    void main()
    {
    int num,n;
    int prime(int);
    clrscr();
    printf("Enter a number to check prime or not ");
    scanf("%d",&num);
    n=prime(num);
    if(n==0)
        {
        printf("Not prime");
        }
        else
        if((n!=0)||(n<0)||(n>0))
        {
    printf("Prime");
    }
    getch();
    }

    prime(int num)
    {
    static int x=2;
    if((x==num/2) || (num%x==0))
    return num%x;
    else
    {
    x=x+1;
    return prime(num);
    }
    }

Solving QUARDITC Equcation in c

#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int a,b,c,d,e,f,g;
clrscr();
printf("Enter the three values\n");
scanf("%d %d %d",&a,&b,&c);
d=((b*b)-(4*a*c));
if(d==0)
{
printf("Roots are real and equal\n");

A trick to create an undeleatable and secure folder

A simple trick to Create an Secure and NOT deletable folder to hide your data on  your own system
try it

I AM USING MY F:\ DRIVE FOR THIS DEMONSTRATION 
--->>CREATE A FOLDER IN F:\ DRIVE NAMED DEMO
NOW START DOS AND TYPE COMMAND ONE BYE ONE
 "changing the default drive path to f"


C:\USER\ADMIN>F:  
F:\> CACLS DEMO /E  /C  /D %username%

Sunday, October 9, 2011

As Facial Recognition Improves, New Privacy Controversies Await

If you think recently-unveiled products like the Facebook Timeline and Amazon's cloud-powered Silk Web browser have raised privacy issues, an innovation that lies just around the corner could blow them both out of the water.
Facial recognition technology has been around for decades, but until recently it's been slow, inefficient and largely limited to proprietary implementations, such as databases used by law enforcement. That could all be about to change, and the results are bound to send shivers down the spines of digital privacy advocates.
PittPatt, software developed at Carnegie Mellon University (and now owned by Google), is just one example of software that can quickly identify individuals in a photograph, matching their likeness with other images of them found online and then scouring the Web for other information about the person.

Microsoft's Skype acquisition gets EU nod

BRUSSELS: Microsoft secured EU approval to purchase internet voice and video service Skype for $8.5 billion, its biggest ever acquisition.

The European Commission said that its investigation of the takeover showed that the firms' activities mainly overlapped for video communications, where Microsoft is active through its Windows Live Messenger.

"However, the Commission considers that there are no competition concerns in this growing market where numerous players, including Google, are present," it said in a statement.

The deal is expected to lead to new customers for Microsoft's Windows and Office software.

The U.S. Federal Trade Commission cleared the deal in June.