Friday 20 January 2012

Batch Code Library

I want to clear a thing first we will not teach here batch programming we will only tell you the codes ......
how to make a batch file???

simple save a notepad file as ****.bat

---------------------------
how to convert a bat file to exe ? ? ?
download bat to exe converter from here
Link:
http://www.mediafire.com/?l63lopwabaaz4nf
Secured Profile Program Using Batch Script

Now What is this ....
this is a batch script that will ask for a username and password .......... then it will open the desired content...........
Code

@echo off
Title Secure File Access Zone
color 02
ECHO [SECURE FILE ACCESS ZONE]
echo.
echo Type your name and Security number to get access to your secret file. TYPE EXIT anytime to quit.
echo.
set /p name="Username:"
if %name%==saurav goto ask1
if %name%==exit goto quite
goto ask2
:ask1
cls
echo Type EXIT to quit
set /p number="Security number:"
if %number%==gstek goto command1
if %number%==exit goto quite
goto ask2
:ask2
cls
echo You are not allowed to view the secret document. Access denied!!!
echo.
echo Type EXIT to quit
set /p name="Username:"
if %name%==saurav goto ask1
if %name%==exit goto quite
goto ask2
:command1
cls
echo Welcome %name%,
echo.
echo You've the following options:
echo homepage
echo favorite forum 
echo.
set /p page="where do you want to go:"
if %page%==homepage goto google
if %page%== favorite forum goto favorite forum
if %page%==exit goto quite
goto command1
:google
start http://google.com
goto quite
: favorite forum
start http://gstek.info
gotto quite
:quite
exit

See the working ....



---------------------------------------------------------------------------------
Hope you understood this ...  

simple IP Tool Batch File

works
1 - show ip configurations
2 - add ip address
3 - exit

Code
@echo OFF
:Start
echo Enter 1 to show TCP/IP Configuration
echo Enter 2 to add IP ADDRESS
echo Enter 3 to Exit

ECHO Enter Choice.
SET /P variable=

IF %variable%==3 exit
IF %variable%==2 GOTO IPAD
IF %variable%==1 GOTO IPSH

:IPSH
ipconfig /all
GOTO Start

:IPAD
echo Enter IP address in dotted format [ex: 192.168.10.100] :
Set /P variable1=

echo Enter subnet mask in dotted format [ex: 255.255.25.0] :
Set /P variable2=

echo Enter the name of you network connection [ex: Local Area Connection, Lan] :
Set /P variable3=

netsh interface ip add address %variable3% %variable1% %variable2%

GOTO Start

Calculator Program

Code:

@echo off
Title Secure File Access Zone
color 02
ECHO [SECURE FILE ACCESS ZONE]
echo.
echo Type your name and Security number to get access to your secret file. TYPE EXIT anytime to quit.
echo.
set /p name="Username:"
if %name%==saurav goto ask1
if %name%==exit goto quite
goto ask2
:ask1
cls
echo Type EXIT to quit
set /p number="Security number:"
if %number%==gstek goto command1
if %number%==exit goto quite
goto ask2
:ask2
cls
echo You are not allowed to view the secret document. Access denied!!!
echo.
echo Type EXIT to quit
set /p name="Username:"
if %name%==saurav goto ask1
if %name%==exit goto quite
goto ask2
:command1
cls
echo Welcome %name%,
echo.
echo You've the following options:
echo homepage
echo favorite forum 
echo.
set /p page="where do you want to go:"
if %page%==homepage goto google
if %page%== favorite forum goto favorite forum
if %page%==exit goto quite
goto command1
:google
start http://google.com
goto quite
: favorite forum
start http://gstek.info
gotto quite
:quite
exit


Load Bar
Code:

@echo off
color 0a
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading...        Please Wait
echo ---------------------------------------
echo                                 =   0 ]
echo ---------------------------------------
ping localhost -n 2 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading.          Please Wait
echo ---------------------------------------
echo []                              =   5 ]
echo ---------------------------------------
ping localhost -n 3 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading..         Please Wait
echo ---------------------------------------
echo [][]                            =  15 ]
echo ---------------------------------------
ping localhost -n 2 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading...        Please Wait
echo ---------------------------------------
echo [][][]                          =  23 ]
echo ---------------------------------------
ping localhost -n 3 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading.          Please Wait
echo ---------------------------------------
echo [][][][]                        =  30 ]
echo ---------------------------------------
ping localhost -n 4 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading..         Please Wait
echo ---------------------------------------
echo [][][][][]                      =  38 ]
echo ---------------------------------------
ping localhost -n 2 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading...        Please Wait
echo ---------------------------------------
echo [][][][][]                      =  42 ]
echo ---------------------------------------
ping localhost -n 3 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading.          Please Wait
echo ---------------------------------------
echo [][][][][][]                    =  45 ]
echo ---------------------------------------
ping localhost -n 1 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading..         Please Wait
echo ---------------------------------------
echo [][][][][][][]                  =  48 ]
echo ---------------------------------------
ping localhost -n 3 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading...        Please Wait
echo ---------------------------------------
echo [][][][][][][][]                =  50 ]
echo ---------------------------------------
ping localhost -n 3 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading.           Please Wait
echo ---------------------------------------
echo [][][][][][][][][]              =  56 ]
echo ---------------------------------------
ping localhost -n 2 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading..         Please Wait
echo ---------------------------------------
echo [][][][][][][][][][]            =  63 ]
echo ---------------------------------------
ping localhost -n 2 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading...        Please Wait
echo ---------------------------------------
echo [][][][][][][][][][][]          =  69 ]
echo ---------------------------------------
ping localhost -n 3 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading.          Please Wait
echo ---------------------------------------
echo [][][][][][][][][][][][]        =  75 ]
echo ---------------------------------------
ping localhost -n 2 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading..         Please Wait
echo ---------------------------------------
echo [][][][][][][][][][][][][]      =  79 ]
echo ---------------------------------------
ping localhost -n 3 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading...        Please Wait
echo ---------------------------------------
echo [][][][][][][][][][][][][][]    =  86 ]
echo ---------------------------------------
ping localhost -n 2 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading.          Please Wait
echo ---------------------------------------
echo [][][][][][][][][][][][][][][]  =  90 ]
echo ---------------------------------------
ping localhost -n 3 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading..         Please Wait
echo ---------------------------------------
echo [][][][][][][][][][][][][][][]  =  96 ]
echo ---------------------------------------
ping localhost -n 3 >nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo    Loading...        .Complete.
echo ---------------------------------------
echo [][][][][][][][][][][][][][][][]= 100 ]
echo ---------------------------------------

:: *************v REMOVE v*************
echo.
echo By saurav
echo ty for using
echo this message is at bottom of script if u want to remove it...
echo =] ^_^
:: *************^ REMOVE ^*************

pause >nul

some random keyboard shortcuts

Best Keyboard Shortcuts
Getting used to using your keyboard exclusively and leaving your mouse behind will make you much more efficient at performing any task on any Windows system.:

Windows key + R = Run menu

This is usually followed by:(cmd = Command Prompt )

iexplore + "web address" = Internet Explorer
compmgmt.msc = Computer Management
dhcpmgmt.msc = DHCP Management
dnsmgmt.msc = DNS Management
services.msc = Services
eventvwr = Event Viewer
dsa.msc = Active Directory Users and Computers
dssite.msc = Active Directory Sites and Services



Windows key + E = Explorer

ALT + Tab = Switch between windows

ALT, Space, X = Maximize window

CTRL + Shift + Esc = Task Manager

Windows key + Break = System properties

Windows key + F = Search

Windows key + D = Hide/Display all windows

CTRL + C = copy

CTRL + X = cut

CTRL + V = paste

Also don't forget about the "Right-click" key next to the right Windows key on your keyboard. Using the arrows and that key can get just about anything done once you've opened up any program.


Keyboard Shortcuts

[Alt] and [Esc] Switch between running applications

[Alt] and letter Select menu item by underlined letter

[Ctrl] and [Esc] Open Program Menu

[Ctrl] and [F4] Close active document or group windows (does not work with some applications)

[Alt] and [F4] Quit active application or close current window

[Alt] and [-] Open Control menu for active document

Ctrl] Lft., Rt. arrow Move cursor forward or back one word

Ctrl] Up, Down arrow Move cursor forward or back one paragraph

[F1] Open Help for active application

Windows+M Minimize all open windows

Shift+Windows+M Undo minimize all open windows

Windows+F1 Open Windows Help

Windows+Tab Cycle through the Taskbar buttons

Windows+Break Open the System Properties dialog box


acessability shortcuts

Right SHIFT for eight seconds........ Switch FilterKeys on and off.

Left ALT +left SHIFT +PRINT SCREEN....... Switch High Contrast on and off.

Left ALT +left SHIFT +NUM LOCK....... Switch MouseKeys on and off.

SHIFT....... five times Switch StickyKeys on and off.

NUM LOCK...... for five seconds Switch ToggleKeys on and off.

explorer shortcuts

END....... Display the bottom of the active window.

HOME....... Display the top of the active window.

NUM LOCK+ASTERISK....... on numeric keypad (*) Display all subfolders under the selected folder.

NUM LOCK+PLUS SIGN....... on numeric keypad (+) Display the contents of the selected folder.

NUM LOCK+MINUS SIGN....... on numeric keypad (-) Collapse the selected folder.

LEFT ARROW...... Collapse current selection if it's expanded, or select parent folder.

RIGHT ARROW....... Display current selection if it's collapsed, or select first subfolder.



Type the following commands in your Run Box (Windows Key + R) or Start Run


devmgmt.msc = Device Manager
msinfo32 = System Information
cleanmgr = Disk Cleanup
ntbackup = Backup or Restore Wizard (Windows Backup Utility)
mmc = Microsoft Management Console
excel = Microsoft Excel (If Installed)
msaccess = Microsoft Access (If Installed)
powerpnt = Microsoft PowerPoint (If Installed)
winword = Microsoft Word (If Installed)
frontpg = Microsoft FrontPage (If Installed)
notepad = Notepad
wordpad = WordPad
calc = Calculator
msmsgs = Windows Messenger
mspaint = Microsoft Paint
wmplayer = Windows Media Player
rstrui = System Restore
netscp6 = Netscape 6.x
netscp = Netscape 7.x
netscape = Netscape 4.x
waol = America Online
control = Opens the Control Panel
control printers = Opens the Printers Dialog

internetbrowser

type in u're adress "google", then press [Right CTRL] and [Enter]
add www. and .com to word and go to it

Tuesday 17 January 2012

Send Anonymous SMS Without Registration


There are a lot of websites on the Internet that provides free sms services but only handful of them allows you to send Sms without registration and anonymously.In this post I will review the services of 4 Sms websites that allows you to send Anonymous messages.

1. Smsti.in
Smsti.in allows you send message of complete 160 words and without any ads.There message service is very fast and you can even check the delivery reports of the sms that has been sent.
They provide their sms services for Indian Mobile numbers only.
2. Seasms.com
Seasms allows you to send messages all over the world.This is the only free Sms service that I found which all allows you to send worldwide messages anonymously.
They also provide 160 character support for SMS.

3. Spicesms.com
Spicesms allows you to send sms only in India with 130 character support for sms.They service is very fast and sms are delivered instantaneously.

4. Bollywoodmotion
Bollywoodmotion is one of the best sms website as you can send sms upto 500 characters long.
They do not include any ads into your message and messages are delivered in real time.This service is available only for Indian mobile numbers
If you know any other sms services that allows you to send messages without registration then do share with us by commenting.

NOTE:- Don’t send abusive messages to somebody using the above site as you can be traced .

Enjoy..!!

Access Facebook Without Internet Connection

India has estimated 34 million registered Facebook .To expand its roots more deeper into rural areas and to strengthen its current user base Facebook has partnered with Fonetwish for free access to Facebook accounts without Internet connection.Now you access Facebook even with stone age phones like Nokia 1100 which even don’t have Gprs facility.



However access to facebook account and Status updates is completely free.If you also want to use features like Notifications, updating friends wall you have to subscribe to Fonetwish premium plan which is very cheap.

How it Works:

Just dial *325# or *fbk# from your mobile and wait for the confirmation message on the screen. Give your username and password to access Facebook without any Data Charges. Have a look at screenshots below for step by step guide.











That’s it! This is the New Year gift from the Facebook to the Indian users. 
Note:-This service is currently available on Airtel, Aircel and Tata Docomo (India) & XLcom, Telkomsel (Indonesia).
Enjoy..!!

Monday 16 January 2012

Send UNLIMITED free SMS to any mobile

JaxtrSMS is an open texting application.With JaxtrSms user can send SMS to any mobile even to those which do not have similar app installed.


This application is being touted to be world’s first free and open mobile to mobile texting application. Like other applications this too uses data connection like wi-fi, 3G for sending SMS. This works on almost all the devices.







1.Using Android device?
Download the JaxtrSMS app on the  Android market:

Link:
https://market.android.com/details?id=com.thin.JaxtrSMS
2.Using an iOS device?
Download the JaxtrSMS app on the iTunes Market FROM HERE:
Link:
http://itunes.apple.com/us/app/jaxtr-sms/id455652621?ls=1&mt=8
3.Using a J2ME java device?
Download the JaxtrSMS app on the App Store FROM HERE:
Link:
http://www.getjar.com/mobile/254574/JaxtrSMS-Beta
Link:
http://plunder.com/56SKPV25RQ

4.Using a Symbian device?

Download the JaxtrSMS app on the App Store FROM HERE:
Link:
http://www.getjar.com/mobile/254574/JaxtrSMS-Beta

Windows Password Breaker [Easy Method - Windows 7 Supported]

Fear not! You can instantly reset the forgotten or missing Windows password with Windows Password Breaker on your own. 8)

::Windows Password Breaker::
Windows Password Breaker is a powerful Windows password reset tool for Windows 7/Vista/XP/2000 and Server 2003(R2)/2008(R2). With the help of this password reset tool, you can create a bootable password reset disk with CD/DVD or USB flash drive to reset all forgotten Windows passwords instantly and safely, such as Windows Administrator, Standard and Guest users password, and Windows Domain Administrator password as well.
::Key Features and Benefits::

Reset Windows Local Administrator and other users password
Reset Windows Domain Administrator password
100% Windows password reset rate
Create a bootable password reset disk with CD/DVD or USB flash drive
Compatible with Windows 7/Vista/XP/2000 and Server 2003(R2)/2008(R2)
Works well on all computer brands like Dell, HP, Acer, IBM, Sony, Lenovo, ASUS, etc.
Support many types of hard disk like RAID/SCSI/SATA
Support a couple of file systems including FAT16, FAT32, NTFS and NTFS5
Easy to use, totally safe, no special computer skills requiredWhat to do?

EXTRACT ZIP TO USB STICK OR BURN TO CD, RESTART PC AND SELECT BOOT FROM CD OR USB STICK
Code:
http://www.mediafire.com/file/xg4zddb024h2255/Windows%20Password%20Reset.zip

Easiest trick to reset Windows 7 administrator password if you fogot it

In this method we will be leveraging "Sticky keys" function of windows OS.
for this you just need a WIN7 DVD and have to make some dos commands.



>> Start your Win 7 computer with WIN7 DVD as bootable media , Choose Recover ( Repair ) option
Choose Recovery Tools, Command prompt

>> Type the following command in Command prompt
copy c:\windows\system32\sethc.exe c:\
(replace “c:” with the correct drive letter if your Windows is not on C:):


>> Type this command to replace sethc.exe with cmd.exe:
copy /y c:\windows\system32\cmd.exe c:\windows\system32\sethc.exe

>> Now take Win7 DVD out and restart your computer normally.

>> At logon screen press shift key continuously 5 times and you will get
a command prompt with escalated privileges to make any change :)

( This happened because we have changed Sticky key file with command prompt )

>> Finally enter the following command to reset the Windows password:
net user "your_user_name" "new_password"

>> You can easily see which username you you want to reset as it will be there on
logon screen but If you don’t know your user name or actual username is different from
display name then just type "net user" to list the available user names.

>> Exit from command prompt and Login :)

Note: If you want to restore Sethc file then you again need to do it by using Win 7 DVD
as you cant change while you are logged into windows.

Friday 13 January 2012

How to track the original location of an email via its IP address


Here’s a quick how-to guide on how you can track email to it’s originating locationby figuring out the email’s IP address and looking it up. I have found this to be quite useful on many occasions for verification purposes since I receive lots of emails daily due to my blog. Tracking the IP address of an email sender does require looking at some technical details, so be ready to dig your heels in!
There are basically two steps involved in the process of tracking an email: find the IP address in the email header section and then look up the location of the IP address.

Finding the IP address of an email sender in GMail, Yahoo Mail, and Outlook

Let’s go ahead and take a look at how you would do this for Google, Yahoo and Outlook since those are the most popular email clients
Google’s Gmail
1. Log into your account and open the email in question.
2. Click on the down arrow that’s to the right of the Reply link. Choose Show Original from the list.
Now here’s the technical part that I was telling you about earlier! You need to look for the lines of text that start with “Received: from“. It might be easier to simply press Cntrl + F and perform a search for that phase. You’ll notice that there are several Received From’s in the message header. This is because the message header contains the IP addresses of all of servers involved in routing that email to you.
To find the first computer that originally sent the email, you’ll have to find the Received From that’s farthest DOWN. As you can see from the above image, the first one is from a computer called “aseem” with the IP address 72.204.154.191. Then it was routed to my ISP’s server at eastrmmtao104.cox.net and so on and so forth till it got to your email server.
The computer aseem is my personal home computer and that’s my public IP address for my house! I’ll go through Yahoo and Outlook before talking about tracking the location of that IP address.
Yahoo Mail Beta
1. Log into your account and open the email (if you’re using Yahoo Mail Beta with the new preview interface, make sure you double-click on the email so that it opens in a new tab)
2. At the top right, you’ll see there is a drop-down option where Standard Headeris selected by default.
3. Click on it and choose Full Header.
Again, you’ll see the same information as before, just in a different window:
Microsoft Outlook
1. Open the email in Outlook by double-clicking on it
2. Go to View at the top menu (the menu options for the email, not the main Outlook window) and choose Options.
You’ll get a dialog box where you can set the message options and at the bottom you’ll see the Internet Headers box. For some silly reason, the box is very small and you have to scroll a lot, so it’s best to simply copy and paste the text into Notepad to view it more easily.

Tracking the location of an IP address

Now that we have our originating IP address of 72.204.154.191, let’s find out where that is! You can do this by perform a location lookup on the IP address. My favorites are IP2Location and GeoBytes IP Locator.
GeoBytes gave me a big map of New Orleans, LA along with a bunch of other information about the location itself.
IP2Location also gave me the same information pretty much, including the ISP (Cox Communications). Of course, this is correct since I live in New Orleans!
If you want more information, you can do a WHOIS database search also. My favorite one is the ARIN WHOIS Database Search. This will give you information on who hosts that IP address and their registration information. You can always contact them to try and find more information on that particular IP address.
Have fun tracking down those emails! Questions, comments, or suggestions? Post a comment!




How to access blocked web sites from school, office, or work using JAP

Looking for a way to access blocked websites like Orkut, YouTube, MySpace, FaceBook, etc from school or work? Most people end up trying out the million or so proxy servers out there, but those are usually dead ends. Also, those proxy servers are very slow and it can take a year for a single web page to load sometimes! There’s luckily an easier way to access blocked websites that doesn’t rely on proxy servers!

JAP is a free open-source software tool that can be used to browse the web anonymously and unobservably. Whenever you browse the Internet, your IP uniquely identifies your computer and your location to the requesting servers, thereby reducing your privacy. JAP uses a single static IP address for many JAP users, thereby making it impossible for the visited website or any sniffer to determine which user visited.
The extra benefit that we can also get out of using JAP other than anonymous browsing is the fact that it can be used to access blocked web sites! That’s because all requests are first passed to JAP servers, then the requested sites are retrieved from their servers. Basically, for the local servers that control your access, it looks as if you’re always requesting something from the JAP web site, not FaceBook or MySpace, etc.
Here’s how to setup JAP: first download the JAP app from the link above. Install it and make sure it’s up and running. Then all you have to do is change some of the settings in Internet Explorer or Firefox. You have to change the LAN Settings so that the Default Gateway is 127.0.0.1 and the port is 4001.
In IE, click on Tools, then Internet Options, and click on the Connections tab.
If you’re connecting to the Internet using a dial-up, modem, or ISDN connection, choose your connection and then click on the Settings button at the top. If you’re connected permanently using a LAN, Cable or DSL connection, click on the Settingsbutton under Local Area Network (LAN) settings heading.
Check the Proxy Server box and type in the IP address and port number shown above.
For Firefox, you click on Tools, then Options, and then click on the Advanced tab. Under Connection, click on Settings.
Click on Manual Proxy Configuration and enter in the same information. Check the box to use this proxy for all protocols. You can also download a cool plugin in Firefox called SwitchProxy that will allow you to quickly switch between JAP and normal browsing.
You should now be able to access blocked web sites while JAP is running. However, if you are at the office or at school and the only ports that are open are port 80, and 443, then JAP won’t work without a little more tweaking.
  • In JAP under “Config/InfoService“, change the port from 6543 to 80
  • Go to the “Config/Anonymity” page. Click on the “Fetch” button and choose the “Dresden-Dresden” cascade from the drop down menu.
  • Select the “Manual Configuration” radio button and change the Anon-Port from 6544 to 443
Now try to activate the anonymous web access. If you’re able to connect, you’ll now be able to browse web sites using the normal web access ports so even if your company or school blocks all other ports, you’ll still be able to access JAP.
Also, if your company forces you to access the web through a proxy server, then you’ll need to configure that in JAP. You can see if you have to go through a proxy server by checking out the values in the above LAN settings section. If it’s greyed out with something already in there when you tried to change it to 127.0.0.1, that means you’re going through a proxy server.
In that case, in JAP you need to do the following:
  • Activate the checkbox under “Config/Proxy-Firewall” and enter the address of the required proxy. Some proxies require a user authorization. If this is the case, activate the appropriate checkbox and enter the User ID. (First try it without authorization and only do this step if it doesn’t work.)
  • Under “Config/InfoService“, change the port number from 6543 to “80″.
  • Go to the “Config/Anonymity” page. Click on the “Fetch” button and choose the “Dresden-Dresden” cascade from the drop down menu.
You should now be able to connect to the JAP service and access any web site that you like! If that was too technical or something was not explained clearly, please post a comment and I will try to help as much as possible! Enjoy!



Smart Hide IP v2.6.4.8




Smart Hide IP v2.6.4.8 Final




Can Someone Find me with my IP Address?
Yes! In most cases all that can be easily determined is who your ISP is and possibly the state and city you reside in. Cybercriminals can use it to track back to your computer's specific IP address, which means they can secretly read your emails and IM conversations, watch your shopping habits, detect personal information such as SSN, credit card passwords, even others...
So, Hide your IP with Smart Hide IP NOW -- the perfect 1 click solution!


Features
* Surfing online Anonymously 
* Keeping Hackers off 
* Preventing Identity Theft & Credit Card Fraud 
* Blocking ISP Eavesdropping 
* Protecting Online Privacy 
* Chatting in MIRC, ICQ, and MSN with real location concealed. 
* Shopping online securely 
* Ensuring Internet banking safe 
* Sending anonymous Emails 
* Posting on bulletin boards without displaying your real identity 
* Protecting all connections including Wi-Fi 
* Accessing Internet radioes


Primary Benefits
- Safe Proxy
- Every IP address you see is usable, fast and 100% secure! 
- Easy-to-use Interface
- One single click and you are ready to go. Hide your real IP address without any configuration. 
- Dynamic IP Address
- Automated IP changing protection, customize set-it-and-stop-it manual mode. 
- Works With a Lot
- Compatible with Windows 7/Vista/XP/2000/98 and Server editions, 32 and 64 bit.


How It Works?



How To Select Fake Location


Install Notes
1. Install the program and do not run.
2. Copy the crack "SmartHideIP.exe" to prog dir, i.e. "C:\Program Files\SmartHideIP\", and replace the original.
3. DONE!


Have a nice day 
Category: Windows
Size: 6.10 MB
Files: 3 files
Added: 13/01/2012
Uploader: sajan jyoti


           
   


Copyright © 2009 Cool Tips & Tricks All rights reserved. Theme by Laptop Geek. | Bloggerized by FalconHive | Blogger Templates.