This guide is for permanently rooting HTC Desire running stock Android Gingerbread 2.3.3 . If you want to temp root then you can follow this guide. Before starting please be aware that problems while rooting can brick your phone. While the process in this guide is relatively simple and easy, I can't be held responsible for whatever happens. Enable USB debugging in your phone by going to Settings -> Applications -> Development . Plug in your phone to the computer. Go to Revolutionary website http://revolutionary.io/ . From there download revolutionary software. Leave this browser tab opened. We need to generate Serial key later. Extract the downloaded software on your computer and run the software with root permission. $sudo ./revolutionary It will tell you your serial number and ask for the beta key. Copy the serial number and go to the browser tab we left open while downloading the software. Put the serial key there...
WPA or even WPA2 can be easily cracked under 10 hours provided that WPS is enabled on the router. The software we'll use is reaver . The hardware I'm using is Intel(R) PRO/Wireless 3945ABG/BG on Ubuntu 11.04 and driver is iwl3945. First install the necessary libraries to compile the software. Run the following command in terminal to do so. sudo apt-get install libsqlite3-dev libpcap0.8-dev build-essential Now open terminal and go inside /tmp folder. Download reaver from here by running the command wget -c http://code.google.com/p/reaver-wps/downloads/detail?name=reaver-1.4.tar.gz&can=2&q= Now extract it by running tar xf reaver-1.4.tar.gz Now run the following commands to compile the software. ./configure make sudo make install After this reaver will be installed on your system. Now let's install aircrack-ng(Optional). We'll not be using aircrack directly but use its tool to assist our cracking. You can install it by running: sudo apt-get...
You can remove footer from squid error pages. Removing the version number from the footer is very easy. In squid.conf enable httpd_suppress_version_string But what if you want to remove the whole message. Generated Thu, 08 Jun 2000 06:58:30 GMT by proxy1.proxy.com (Squid/2.3.STABLE1) There is no configuration available to remove it but you can always edit the source file for that. Don't worry its very easy. Easy because its really easy. Just follow the following steps: Go to squid source. /usr/src/squid/src Backup the existing file errorpage.c cp ./errorpage.c ./errorpage.c.bkp Remove errorpage.o rm errorpage.o Edit the file errorpage.c vim errorpage.c { ERR_SQUID_SIGNATURE, "\n \n" " \n" " \n" "Generated %T by %h (%s)\n" " \n" " \n" } Remove the line "Generated %T by %h (%s)\n" Save and exit :wq Reconfigure squid with old options ./configure ......... Ma...
Comments
Post a Comment
Comments are moderated. No spam please.