Telecom News,Mobile Solutions and more...
How to Change Wi-Fi Password of PTCL ADSL Modem
7/09/2013 06:55:00 pm
Finally your neighbourhood tech savvy kid has hacked your password or you just simply want to change the password of your Wi-Fi then do not worry because I have created a full tutorial for you on how you can change your Wi-Fi password of PTCL ADSL modem. Follow the steps given below to change the password easily.
Step 1:
First make sure you are connected to the internet. Then open up your browser.
Step 2:
Type 192.168.1.1 in the address bar and press enter. You will be asked to enter "User name" and "password".
By default both the username and password is "admin". Enter admin for both username and password and click on login. If you have changed the username and password then enter it. In case if you have forgot the username and password, then call the customer support and request them to change the username and password to default values.
Step 3:
Once logged in, click on Wireless > Security present in the sidebar.
Step 4:
Change the password to anything you want. Remember to use a secure password to make sure it doesn't get hacked or stolen in near future. A combination of upper-case, lower-case letters and numbers is the ideal formula of a secure password. Once you have set the password, click on apply/save button. Also save it on a notepad or somewhere safe for future safe.
Step 1:
First make sure you are connected to the internet. Then open up your browser.
Step 2:
Type 192.168.1.1 in the address bar and press enter. You will be asked to enter "User name" and "password".

By default both the username and password is "admin". Enter admin for both username and password and click on login. If you have changed the username and password then enter it. In case if you have forgot the username and password, then call the customer support and request them to change the username and password to default values.
Step 3:
Once logged in, click on Wireless > Security present in the sidebar.

Then scroll down to the bottom and look for WPA/WAPI passphrase. This is the password of the Wi-Fi.
Step 4:
Change the password to anything you want. Remember to use a secure password to make sure it doesn't get hacked or stolen in near future. A combination of upper-case, lower-case letters and numbers is the ideal formula of a secure password. Once you have set the password, click on apply/save button. Also save it on a notepad or somewhere safe for future safe.
ProPakistani Hacked - Contains Links to Payday Loans Site
7/04/2013 05:45:00 pm
ProPakistani.PK is the leading website in Pakistan which covers the Pakistani telecom sector and IT news. It is quite popular in Pakistan where it has gained an Alexa rank of 153. Today I noticed a weird thing on their website when I opened their website on my mobile phone. I found a link to quick-loans.tripod.co.uk in their header but if you open it on your computer, it is not shown. On further investigation I found that the link was hidden using the following code:
On opening the website nothing shows up:
But when I looked at the source code of the website, I found a link to Payday loans website:
Now there are only two possibilities of this:
A) The site is hacked.
B) Aamir Attaa (owner) is selling links on his site.
I think the option A will be true. There is a lot of heat going on with the spammy Payday loans showing up in the SERPs having links from hacked sites. Google also shows a notification in the Webmaster tools if it detects any unnatural links on a site. Probably Aamir Attaa is unaware of this situation.
You can also see the hidden link by going to view-source:http://propakistani.pk/. Then search for payday loans to see the hidden link.
If Aamir Attaa is reading this, then I strongly recommend him to remove the links ASAP.
<body class="home blog unknown"><ul style=" height:0px; overflow:hidden"><li><a href="http://quick-loans.tripod.co.uk">http://shortloans.tripod.co.uk</a> payday loans</li></ul>
On opening the website nothing shows up:
But when I looked at the source code of the website, I found a link to Payday loans website:

Now there are only two possibilities of this:
A) The site is hacked.
B) Aamir Attaa (owner) is selling links on his site.
I think the option A will be true. There is a lot of heat going on with the spammy Payday loans showing up in the SERPs having links from hacked sites. Google also shows a notification in the Webmaster tools if it detects any unnatural links on a site. Probably Aamir Attaa is unaware of this situation.
You can also see the hidden link by going to view-source:http://propakistani.pk/. Then search for payday loans to see the hidden link.
If Aamir Attaa is reading this, then I strongly recommend him to remove the links ASAP.
Best Solution to Disable Copy/Paste & Right Click on Website
6/03/2013 05:48:00 pm
There are a lot of JavaScript available to disable the right click and text selection on webpage but all of them lack the proper functions and almost all of them shows a annoying message when a user clicks on right mouse button like "Right click disabled' or "Copy/paste disabled".
I also faced a similar situation and after searching on Google, I found that there was no script that matches my requirements. So I have created a simple but very effective JavaScript that will disable the copying of text, images and right mouse button. This JavaScript will also disable the commands like Ctrl+C and Ctrl+V. The text will be replaced by your url if some one will try to copy the content from your site.
This is the code:
You can use this on any website that supports JavaScript including WordPress, blogger blogs and so on.
How to use this:
For blogger blogs, go to Layout> Add a gadget> HTML/JavaScript and paste the code shown above. Click on save.
Some of the unique features of this Javascript are:
Let me know what you think of this JavaScript.
I also faced a similar situation and after searching on Google, I found that there was no script that matches my requirements. So I have created a simple but very effective JavaScript that will disable the copying of text, images and right mouse button. This JavaScript will also disable the commands like Ctrl+C and Ctrl+V. The text will be replaced by your url if some one will try to copy the content from your site.
This is the code:
<script type="text/javascript">function mousedwn(e) { try { if (event.button == 2||event.button == 3) return false; } catch (e) { if (e.which == 3) return false; }
} document.oncontextmenu = function() { return false; } document.ondragstart = function() { return false; } document.onmousedown = mousedwn; </script>
<script language="JavaScript" type="text/javascript">if (top.location != self.location) top.location.replace(self.location);</script>
<meta http-equiv="imagetoolbar" content="no">
<script type="text/javascript">document.ondragstart = function(){return false;};</script>
<style type="text/css">*:not(input,textarea) {
-webkit-touch-callout: none; -webkit-user-select: none;}
img { -webkit-touch-callout: none; -webkit-user-select: none; } </style>
<script type='text/javascript'>window.addEventListener("keydown",function (e) { if (e.ctrlKey && (e.which == 65 || e.which == 67 || e.which == 85 || e.which == 80)) { e.preventDefault(); }}) document.keypress = function(e) { if (e.ctrlKey && (e.which == 65 || e.which == 67 || e.which == 85 || e.which == 80)) { } return false; };</script>
You can use this on any website that supports JavaScript including WordPress, blogger blogs and so on.
How to use this:
For blogger blogs, go to Layout> Add a gadget> HTML/JavaScript and paste the code shown above. Click on save.
Some of the unique features of this Javascript are:
- Disable right click on your site without showing annoying message.
- Disable copying of images.
- Prevents your users from using the commands like Ctrl+C and Ctrl+V.
- Very fast and easy to use
Let me know what you think of this JavaScript.
How to Remove Default Tab Extension in Google Chrome
5/25/2013 11:38:00 am
Default Tab extension is actually a browser hijacker extension and it usually comes along with free games or other products. After its installation, when you open the Google Chrome next time, a new default tab opens up with a search function instead of showing a blank page or the page you have set as homepage.
I also faced a similar situation when my brother installed a free game and this browser hijacker was packed with the game. After its installation, it changed the default tab in Google Chrome to a website with search option. I tried removing this extension by going to wrench menu > Extensions > Default tab but it showed up again next time. I tried deleting it from Add/Remove Programs but it comes again. Luckily I found a way to get rid of Default Tab extension.
Follow the steps given below to remove Default tab:
Step 1: Go to wrench icon > Extensions and remove the default tab extension.
Step 2: Close the Google Chrome.
Step 3: Go to Add/Remove programs and uninstall the Default tab.
Step 4: Open the Task Manager and kill the process "Default tab". The name of the process will be similar to default tab.
Step 5: Go to C:\Program Files and delete the folder "Default Tab".
Now open the Google Chrome and you will see that the Default tab extensions is gone now. Now run a virus scan to make sure that there are no other viruses on your computer.

I also faced a similar situation when my brother installed a free game and this browser hijacker was packed with the game. After its installation, it changed the default tab in Google Chrome to a website with search option. I tried removing this extension by going to wrench menu > Extensions > Default tab but it showed up again next time. I tried deleting it from Add/Remove Programs but it comes again. Luckily I found a way to get rid of Default Tab extension.
Follow the steps given below to remove Default tab:
Step 1: Go to wrench icon > Extensions and remove the default tab extension.
Step 2: Close the Google Chrome.
Step 3: Go to Add/Remove programs and uninstall the Default tab.
Step 4: Open the Task Manager and kill the process "Default tab". The name of the process will be similar to default tab.
Step 5: Go to C:\Program Files and delete the folder "Default Tab".
Now open the Google Chrome and you will see that the Default tab extensions is gone now. Now run a virus scan to make sure that there are no other viruses on your computer.
Check Your Polling Station Details By Sending SMS
5/11/2013 05:49:00 am
If you are still wondering where you are supposed to go and cast your vote and do not know your polling station then do not worry because you cane easily find out the details of your designated polling station by sending out a SMS.
Here is the procedure to check out your polling station:
The reply will be in the Urdu language. The "silsila number" is the serial number. More than 40 million people have already availed this service. Do not waste time and check out your polling station now if you want to to cast your vote.
You can send multiple SMS to 8300 to find the polling station of all of your family members.
Here is the procedure to check out your polling station:
- Create a new SMS
- Enter your CNIC with dashes
- Send the SMS to 8300

You can send multiple SMS to 8300 to find the polling station of all of your family members.
Payoneer Global Bank Transfers now Available in Pakistan
5/04/2013 04:19:00 pm
Payoneer has just announced a new update via their blog that Pakistani Rupees is now added to list of supported currencies for Global Bank Transfer services. Recently they added Kenyan shillings and now PKR!
The service will not be so expensive as it only costs $2.99 per payment and users can receive their payments from the Payoneer partners in Pakistani Rupee instead of US Dollar ($). Payoneer is providing a number of services like US payment service (Direct deposit), card to card payment, Global Bank Transfer, receiving funds directly on your card etc.
If you are already using the Payoneer Global Bank Transfer service and want to recieve funds in PKR instead of US Dollar, then contact the Payoneer service department at
lbt@payoneer.com.
The service will not be so expensive as it only costs $2.99 per payment and users can receive their payments from the Payoneer partners in Pakistani Rupee instead of US Dollar ($). Payoneer is providing a number of services like US payment service (Direct deposit), card to card payment, Global Bank Transfer, receiving funds directly on your card etc.
If you are already using the Payoneer Global Bank Transfer service and want to recieve funds in PKR instead of US Dollar, then contact the Payoneer service department at
lbt@payoneer.com.
Subscribe to:
Posts
(
Atom
)