Showing posts with label Hacking Tips. Show all posts
Showing posts with label Hacking Tips. Show all posts

Wednesday, 26 November 2014

Paypal in Pakistan Verified With Payoneer Mastercard

Paypal in Pakistan Verified With Payoneer Mastercard

Hi guys, today in this post how to create your Verified PayPal account In Pakistan is being told. Well So you\’ll know. That Pakistan is not included in the list of PayPal. Will help today\’s tutorial unsupported country you belong to PayPal. Our tutorial will help you stay in Pakistan, very easily verified Paypal account In Pakistan will be able to achieve. that you will receive payments from virtually any merchant within the world. The method we are going to do that is via Payoneer pre-paid master card which is able to be shipped at your door step freed from price. All you wish to try and do is to use for that Payoneer Master card & paypal verify your account with it.

Step 1: 1st of all take away all of your browser’s history & cache.
Step 2: never use any proxy what thus ever. Login along with your normal IP address.
Step 3: Visit Payoneer-affiliates web site so as to use for Payoneer paid Debit MasterCard®. simply click on huge Signup button to begin with.
Step 4: currently you may see a lot of options like Personal Details, Account info and private Verification buttons. simply click on it to fill all of your valid info and check all the boxes at the end of the form.




Step 5: Congratulations your card can currently be shipped at your door step in only twenty to forty days(after account approval that takes one to two business days).
Step 6: currently the foremost important factor is that the special email that you may receive from Payoneer regarding you wish to use for U.S. banking server or not.
Step 7: you\’ve got to reply to the present email along with your necessary info like why you wish to use and your identity etc. Don’t worry you\’ll be able to give any info here you wish to begin your own hosting server and provides some unknown hosting supplier web site name.
Step 8: currently its for wait as a result of they\’re going to review your application and can answer you back inside two to three business days. Don’t worry they accept almost 99% applications therefore your also will be accepted.
Step 9: once you receive the e-mail containing U.S. Virtual Bank Account number & Routing number save /the info/the knowledge|the data/ as a result of you wish this information to verify your Paypal account.


Step 10: currently its time to form account. Visit USA Paypal web site by clicking here and click on on signup button. you wish to produce faux info here however don’t worry you\’ll be able to choose this info from fake Name Generator.
Step 11: when you produce your account clearly they\’re going to ask you to verify it. simply click on verify with checking account option and provide the main points you bought from Payoneer email.
Step 12: currently they\’re going to send you some very little amount in your account like zero.17 or 0.05 etc & you wish to put this info in your paypal account so as to be absolutely verified. enjoy your fresh created Paypal account In Pakistan.

how to withdraw money from payoneer & Paypal in pakistan

how to withdraw money from payoneer & Paypal in pakistan

Hi guys, I Applied for A Payoneer prepaid MasterCard. the card was approved on march 7/2014, I received the MasterCard via normal mail at my residence (Gujrat, Pakistan). these days on march 12/2014, I done a check withdrawal of PKR 3000 with My Payoneer MasterCard &  “MCB” (Muslim commercial Bank’s) ATM was the sole ATM among out there ATMs in my space that Accepted the dealing. Still i’m happy that currently I will simply withdraw PayPal money & money from many  All alternative services as well as Infolinks,Odeskadf.lyMoneyBookersClickBank & Facebook Etc.

If you have got additionally apply for a Payoneer MasterCard, then it’ll reach you via standard mail at your Provided Home Address. Once the Payoneer Master card reaches you, follow below directions before you’ll be able to withdraw your money at choose ATMs in Pakistan.
Step 1: Activate Your Card:
Once the card reaches you, simply login to your Payoneer account and follow the link highlighted in your account dashboard to activate your card. On activation screen, enter the sixteen digit card number so select PIN number. Once you’ll give the card variety and PIN number, your card are activated.
Step 2: Add Funds to Your Card:
You can then add funds to your Payoneer MasterCard. {you will|you’ll|you’ll be able to} transfer the funds from alternative cards or can add from PayPalMoneyBookers,ClickBank or the other supported source of your convenience to US Payment Service’s provided virtual Bank Account.
Step 3: Withdraw money or Use it on-line at Stores:
ATMs at selected  banks in Pakistan accept Payoneer’s MasterCard. The banks embodyMCBCiti BankFaysal Bank and “standard chartered” Bank. Before inserting your card in ATM, make sure that funds ar loaded to that, otherwise the ATM could eat the card.
For each transaction, you’ll be charged between 200-400PKR. once I withdrew PKR3000 nowadays, i used to be charged PKR400. to prevent further charges, ne’er check your balance via the ATM and continually withdraw most amounts. to boot, withdraw money in multiples of thousands, i.e. withdraw a thousand, 2000, 3000 around on. Don’t withdraw 1500, 2500 etc. to forestall declines.
You can use your debit card for on-line purchases additionally. the card is accepted at a lot of stores Across the globel. you’ll be able to purchase on-line Many services additionally. If you’re thinking to get Hostgator or BlueHost Webhosting in Pakistan, then the Mastercard can get you the Webhosting. however keep this in mind that the Mastercard is prepaid and fewer secure than a mastercard, therefore don’t use it for subscribing trial services or at spurious stores.
If you haven’t applied for a Payoneer Card however, signup currently through thisAffiliate link. {it can|it’ll} get you Payoneer’s prepaid Card and can additionally earn you a bonus of $25 once you will receive AN quantity of $100.

How To block Unwanted / Specific Traffic using .htaccess

How To block Unwanted / Specific Traffic using .htaccess

All of the recipes below refer to AN .htaccess file. An .htaccess file could be a document named \”.htaccess\” placed in your www/ directory or any directory therefrom, with web user-readable (0644) permissions. The .htaccess file contains rules that apply to the handling of traffic to the directory containing the .htaccess file, and every one subdirectories therefrom. so as an example, if you had a rule you needed to use to your entire website, you\’d put AN .htaccess come in your www/ directory. If you needed the rule to use solely to your www/hitleap/ directory, you\’d place the .htaccess enter www/hitleap/.

How do I deny traffic from a specific IP address?

Suppose you would like to dam traffic from IP address 192.188.1.166.
Add to your .htaccess file the following line:
deny from 192.188.1.166
You can block entire networks using a similar kind of rule. to dam the whole Network 172.148.1.6-192.188.1.166:
deny from 172.148.1.6
You can use multiple lines, one for every network or host:
  • deny from 192.168.1
  • deny from 192.168.3.24
  • deny from 192.168.5.33
See also Apache\’s mod_access page

How do I block traffic from a specific referrer?

You may need to dam traffic from explicit websites that link to your site. you\’ll perform HTTP referrer-based block using mod_rewrite.
Suppose you\’d wish to block (with a 403 forbidden code) traffic referred by hitleap.com. Add the lines to .htaccess:
RewriteEngine on
RewriteCond % ^http://(www\\.)?hitleap\\.com [NC]
RewriteRule (.*)               – [F]
You can block multiple domains victimization multiple RewriteCond lines and also the [OR] “Flag” As Follows:
RewriteEngine on
RewriteCond % ^http://(www\\.)?hitleap\\.com [NC,OR]
RewriteCond % ^http://(www\\.)?easyhits4u\\.com [NC]
RewriteRule (.*)               – [F]
NB: make sure to feature [OR], as shown, to every RewriteCond line however the last. The default behavior could be a logical AND, i.e. the RewriteRule takes impact providing all of the RewriteCond lines apply, that you are doing not need here.

Tuesday, 25 November 2014

How to verify alexa on Blogger & wordpress WITH VEDIO

How to verify alexa on Blogger & wordpress


What is alexa rank?

Alexa.com is a professional site which provides the ranking data to each website or page on the internet on the fundamental of traffics they receive.
The rank of alexa is also be called as Traffic Rank.It is created at 1996. Alexa is a seo tool which adjust website traffics and decides which website is on which number according to the traffic which each website receives. Alexa updates its robots and servers daily on 12 AM.There are 31 millions+ websites are included on alexa,in which alexa provide there ranks or data on internet. The Top One rank on alexa is google second one is Facebook third one is Yahoo Search Engine, Fourh one Youtube and  continuously so on etc.The Website ComputerUstaad on alexa rank at 500 numbers.This is very Good Alexa Rank. You can check any website alexa rank on alexa.com site.
Procedure of Verification on alexa:
The Practical Procedure to verify or submit your site on alexa is described in the below video. But I Manually verify or add your site on alexa.
  1. First go on alexa and create an account.
  2. Alexa send the Confirm Email Messege on your Given Email Account.
  3. You can Confirm it by opening the email and clicking the link.
  4. When Click the link where alexa send a  message on your Confirm Email.
  5. After that you can go to the alexa site Page.
  6. The Page is setting about Your Password.You can create just a password.
  7. Now you can go to the site submission page.
  8. You can view some Packages in alexa.
  9. If you verify your site on alexa you can go to the Upper side a search bar option which named as (Find).
  10. Paste your website link and click Find.
  11. Your site information is finded and new page is appeared.
  12. In new Page go to below section,you can see a button of
  13. “Add a Site”.Just Click this Button and you can go to
  14. the verification page.
The Methods of verification are as:
There are three methods to verify your website on alexa. Choose anyone Method,Verify it and After Verify your website is on alexa list.Verificaion method is described on this video in urdu and hindi.
TipsNTricks:
Improving Alexa Rank
1)Install alexa Rank toolbar on your browser
2) Updating your site daily
3)Creating Backlinks of your site
4)Adding site in alexa list
5)Increase your traffic website on any tool,software,websites.

VEDIO TOTORIAL:


How do I claim and Certify a Blogger..

How To Install A Local Web Server With XAMPP

How To Install A Local Web Server With XAMPP


LocalHost in a PC:
LocalHost is a hosting name in which the computers acces its network services from loopback interface. For Example:
There are softwares for running localhost in computer such as Xampp,Bitnami etc…
Introduction Of Xampp in LocalHost:
Xampp is a software of LocalHost of Computer.It is a free open source network of Apache (HTTP) Server, MySQL database. The Users write Php Language and shown result as output form in the computer.Php is required Server.We can use Localhost on your own computer network and running php websites ,CMS etc Xampp is good Software of localhost and mostly users use only this software.
Recommended Testing Appahce MY SQL Servers:
As well as Appache,my sql are used in programming languages We can Test on our computer Programming language, Php Websites, run CMS. We can make our php new website offline, After completing The website projects we can uploading files and run online on internet.
Downloading Xampp:
There are many softwares but I recommended Xampp software. We Can Download this Software from its Download Now official site</a> It can be Run on three operaters.Windows , Mac ,Android etc
Installing Xampp on PC or Laptops:
Step 1:
First you can Download Xampp in a computer using windows operating system.You must Download its Latest Version.
Step 2:
After Downloading the Software,You can ready to install to the Specific Location,As you want to installing this software.But we recommended Please install on The Local Drive C. For Example: C:\XAMPP After Step by step installing process has done. The Xampp is installed on your computer at your specific Place.
Step 3:
After Installing Please Open the software for run in a computer as well as Some Social Softwares are closed such as Skype. If you do not stop skype software then Xamp is not running When Opening the Xampp run file(xampp-control.exe) you see a picture of window havig some Buttons of Modules.Check Appace and Mysql Modules Button. When they are running your xampp software is fully run. If stopping Xampp Software so in checkbox remove the Appache,Mysqal
Step 4:
If you are Testing Your Servers.You can go to the Browser and Check that its links such as localhost/
Step 5:
If you Run Php or any CMS Content Managent Softwares like wordpress CMS ,Joomla CMS so the files of CMS is in htdocs folder.
Generally if you run any php page .You can open its from website if you save files in htdocs folder.
Alternative:
Bitnami is also a free source network same like Xampp.But its features is less than Xampp.Computer Ustaad recomended install only Xampp Software.
Application Running Features:
You have use its a lot of fun.You can istall Content Management System software like Worpress CMS,Joomla CMS etc.Make Complete website and run or open in offline.
VEDIO TOTURIAL:

How To Install A Local Web Server With XAMPP

Friday, 14 November 2014

Hack Gmail, Facebook,Yahoo with Ardamax Keylogger (Free and full version)

Hack Gmail, Facebook,Yahoo with Ardamax Keylogger (Free and full version)


Today i am going to show you how to hack gmail, facebook, Yahoo! Passwords using ardamax keylogger

Procedure to hack.
Step 1) First downoad Ardamax keylogger from here.  Extract the keylogger from RAR into your desired folder and open it.



Double Click  the setup file and install it as normal setup by clicking next.
Once if you complete your installation, it shows an icon at the right bottom corner of your screen as shown in the figure below..


Step 2) Now right click the ardamax kelogger icon and select  “enter registration key “ Enter the name and key which are there in the downloaded folder.


Step 3) Now right click the icon and select “remote installation”. Click next by checking all the boxes until you see the following window and then follow the following pictures.




Step 4) Once you are done with the above, you will see the following window. Selecting delivery method via FTP is the better option, but in this tutorial i am going with email deliverymethod.


Now fill the email options as mentioned here.
Send to- your email id
Send from- your email id
Smtp host –smtp.gmail.com
And finally your username and password.  You can test whether it is working or not by clicking the test button. And finally click next to proceed.


Step 5) Now you can change your icon by selecting change icon option and then click next.


Finally you will see the following window, if you have done everything correctly.


Now send the created server file to your victim. It logs all his keystrokes and sends them to you via email.
Note: The server file you have created will be detected as a virus by your antivirus. I will write few articles on bypassing antivirus detection in my upcoming posts.

Hope you enjoyed this article,









Hack Windows Passwords Using OphCrack

Hack Windows Passwords Using OphCrack

Have you ever thought of breaking into your friend’s password protected computer to steal his confidential  files? What if you forget  the password of your computer? This article will answer all these questions.
In this article i am going to show you how you can hack windows password using OPHCRACK LIVE CD.

What is OPHCRACK??

Ophcrack is a free open source program that cracks Windows passwords by using NTLM hashes through rainbow tables. By default, ophcrack is bundled with tables that allows it to crack passwords no longer than 14 characters using only alphanumeric characters. For more about rainbow tables please visit this link.

Procedure to Hack:

Step 1: Download ophcrack live cd from here. 


Step 2: Make abootable CD/DVD with the downloaded iso file.
Follow the steps to create a bootable CD/DVD.
First download the ISO burner software from here. I selected this software because there is no need of installation. You can use it just by double clicking the file you downloaded. 
Now put your blank CD in CD drive. 
When you double click isoburner software, it shows the following screen.You can locate the file by clicking on the “open” option. and then click Burn button.


Step 3: put the CD/DVD in your CD-DRIVE
 Restart your computer and change your boot options to “boot from CD/DVD”
 You can do this by  continuously pressing F12  or  F10 when it is restarting. You may use del or esc also. This option changes computer to computer. 
Then follow the instructions that shows. It is self explanatory so you can easily understand that. Once if ophcrack loads completely, it will automatically get your Windows password. 






Hack Remote Computers using EXTREME RAT

Hack Remote Computers using EXTREME RAT FULL  Method


What is RAT?

RAT is commonly known as REMOTE ADMINISTRATION TOOL. We can control a remote pc right from our computer using these RATs.

In one of my previous articles, i have explained about  team viewer which can be treated as legal. In this article i am going to show you how you can hack remote computers using RATs that are commonly known as illegal ones.


Things you require

1) EXTREME RAT

This is the RAT you are going to use. You can get it from HERE

2) No-ip.biz  account

As our IP-Address is dynamic(in general), we need to make it static.

3) DUC client

We can automatically update our dynamic IP-Adress, by installing DUC client.

4) VPN (If you are behind a router)

We must enable our router to allow us to connect to a remote PC. So we need to port forward.
Instead of port forwarding we use a VPN(Virtual Private Network).
You can use Proxpn.

Procedure:

Step 1:


First you need to create an account in www.no-ip.com

Step 2:

After creating an account, login with your account and create a host. You can do this by just following the steps.

Goto this link, and login. Then follow the steps as shown in the picture.


Finally click “Create Host”.


Step 3: Setting up your server.

Open the xtreme.exe file you have downloaded.



By default, the language is Portuguese. So you can change it into English as shown in the figure below.




Now goto FIile->create server. It is shown in the figure below.




When you are done, it opens a new window and then select the “+” symbol as shown in the following figure.


Then it opens a new window and you can give any name you want as your profile name.
 
In my case it is “profile1”.


After this, you need to give your no-ip domain name by selecting the option “add dns”. This can be done by clicking the ”+”  symbol next to your profile name.
Fill this as “yourhost.no-ip.biz:81


Now click on “install options” and uncheck the two options as shown in the figure and then click on “create server” option which is the last one in the figure. You can follow these steps from the following figure.


Then simply click the tick mark which is green in color and save your server file. You are done.
 
Now  upload this server file on any file hosting site and prompt  your victim to download it. Or  you can send it via email. When he clicks it, your client will connect to his system as shown below. 


Now you will access all his files right from your computer. I have added a screen shot of how it looks like.


Legal disclaimer: 

Using RATs on remote systems without their permission is illegal. This article is for educational purpose only. Dont do anything illegal. I will not be held responsible for that.