Showing posts with label hack. Show all posts
Showing posts with label hack. Show all posts

Thursday, 8 May 2014

Hack WIFI easily

Hack WIFI easily


Having access to every single Wifi Network was miracle? Not Anymore!


Now a days to have an Internet Connection is very important thing. To be connected to the Internet means to have every single answer to any question using Google and other search engines, to be able to play any online game, to be able to listen every single song(download it to your computer) and on top of that to be able to

Wednesday, 7 May 2014

How to Crack Windows 7 Password

How to Crack Windows 7 Password



Windows 7 is a very secure and powerful software for your home computer, which allows you to create a password to secure your user account. But, what if you forget it, and you don't have a Reset Disk, password cracking program or anything else which would help you retrieve it? Well, follow those simple steps below and you will have your password reset in now time!
I'll show you how to break password without help of any software or programs.

Follow steps:

  1. Start (or restart) your computer. You can do this by clicking the reset button in the Windows 7 Login Prompt or pressing the On/Off button on your computer.
  2. Make Windows 7 have a hard shutdown. Complete this step by pressing the On/Off button on your computer while the "Starting Windows" screen is active.
  3. Start your computer again. Same, complete this task by pressing the On/Off button on your computer.
  4. Select the "Launch Start up Repair" option. If you completed steps 1, 2 and 3 correctly, you will be given to options on how to start your computer: normally or using the Start up Repair. You should select the Start up Repair option.
  5. Cancel the "Do you want to use System Restore?" prompt. After you've launched Start up Repair, a prompt will pop up on your screen. You will want to select "Cancel".
  6. Wait until Windows has finished repairing your computer. After completing Step 5, you will have to wait. The repairing process will not harm any of your personal files.
  7. Click the arrow in the bottom-left corner of the window. After waiting, a window saying "Start up Repair could not repair your computer." You will see an arrow pointing downwards in the bottom left corner (Problem Details).
  8. Scroll down and click the last link. After Step 7, a window will pop up displaying the Problem Details. Scroll down until you see links. Ignore the first one, click the second one.
  9. File > Open > Computer > Local Disk > Windows > System32. After completing Step 8, Notepad will open up. You will want to follow the route displayed in bold.
  10. Switch from Text Documents (*.txt) to All Files. You can do this by simply clicking the drop-down menu, displayed as Text Documents (*.txt) and select All Files.
  11. Find the application named sethc and rename it to sethc-bak. Sethc is the application for the Sticky Keys program. You have to rename it to sethc-bak as a backup file. This won't do any harm to your computer or personal files.
  12. Find the application named cmd and copy & paste it into the folder System32 (the one you're in right now). Cmd is the application known as Command Prompt. After this, you will have a file named cmd - Copy in the System32 folder.
  13. Rename cmd - Copy to sethc. To be able to access cmd without permission from Windows, you will need to trick Windows thinking it is Sticky Keys.
  14. Close all opened windows and select "Finish". You're done! Now you just need to close out of all the opened windows and restart your computer.
  15. Hit Shift 5 times. After successfully restarting your computer, hit Shift on your keyboard 5 times. Command Prompt with adminstrator privileges opens up!
  16. net user [type your username] *. Enter this code into the command prompt to change the username's password. You will not be able to see the new entered password, so enter it wisely.
  17. Close Command Prompt. After you've successfully changed the user's password, you can now close cmd.
  18. Enter the password you've just set for the user. After you've entered the password - you're in! This is all you need to do!

Tuesday, 8 April 2014

How to change the Magento Admin URL

How to change the Magento Admin URL / Path

To protect your Magento backend against hackers and brute-force attacks, we recommend that you change the default URL to the Magento Admin Panel. It is a quick way to add an extra layer of security to your site.
Follow these steps to change the admin URL/path.
Note: Do NOT use the web interface in the Magento Admin Panel to change the admin URL, as this is known to cause severe problems.

Step 1 - Change Path

First, open the local.xml configuration file in your favorite text editor, or use the Text Editor in the cPanel File Manager. The file is usually located in the app/etc/ directory under your Magento installation. Locate the following code segment:
  1. <admin>
  2.   <routers>
  3.     <adminhtml>
  4.       <args>
  5.         <frontName><![CDATA[admin]]></frontName>
  6.       </args>
  7.     </adminhtml>
  8.   </routers>
  9. </admin>
Now, replace admin with your new admin path. This should be something personal which is hard to guess, use only letters or numbers - no special characters, then save the file.

Step 2 - Refresh Cache

The final step is to refresh your cache. Use an FTP client to delete the content of the var/cache/ directory, or use the following SSH command.
(First, navigate to you Magento root directory)
  1. rm -rf var/cache/*

Step 3 - Complete

The change is now complete and you should try to log in via the new admin url - http://yourmagentodomain/adminpath/, replacing 'adminpath' with the path you chose in the step above. If everything went fine, you should now be presented with the Admin Panel login screen at the new URL. The old admin login URL should return a 404 error message.