Skip to main content

Posts

Showing posts from August, 2015

How to remove autorun.inf file?

How to remove autorun.inf file? The most common virus malware that is being spread through USB flash drives is sent through Autorun.inf files. Along with the increasing use of the internet and external drives virus attacks are now much faster and common than ever before. Out of that most common viruses used is through the use of autorun.inf file through the use of   USB flash drives . This malware generally creates multiple copies of itself in each drive as a   read only and hidden file . It won't let you access your drives by giving you an autorun menu when you double click on anydrive( eg: c: or your usb flash drive ) Solution: In this tutorial we will be describing the two ways to get rid of these malwares. ·          Delete  autorun.inf file completely using the   command prompt window   ·          The second way is with the use of tool: USB immunizer. 1) Us...

Web Goat Installation over Linux

What is Web Goat and how to install it on Kali Linux? What is WebGoat: WebGoat is an OWASP project and a deliberately insecure J2EE web application designed to teach web application security lessons and concepts. What’s cool about this web application is that it lets users demonstrate their understanding of a security issue by exploiting a real vulnerability in the application in each lesson. WebGoat is a platform independent environment. It utilizes Apache Tomcat and the JAVA development environment. Installation Process: Pre-requisite: ***** Before Installing Webgoat we need to make sure that the Java is installed on the linux machine: For installing JAVA open Terminal and try below command #apt-get install openjdk-6-jre This will install Java on the Linux machine. Steps: ***** Open Terminal and run below command. ·           wget -c  https://webgoat.googlecode.com/files/WebGoat-OWASP_Stand...

JAVA UTIL pop ups

Show an error dialog that displays the message, 'alert': JOptionPane.showMessageDialog(null, "alert", "alert", JOptionPane.ERROR_MESSAGE); Show an internal information dialog with the message, 'information': JOptionPane.showInternalMessageDialog(frame, "information", "information", JOptionPane.INFORMATION_MESSAGE); Show an information panel with the options yes/no and message 'choose one': JOptionPane.showConfirmDialog(null, "choose one", "choose one", JOptionPane.YES_NO_OPTION); Show an internal information dialog with the options yes/no/cancel and message 'please choose one' and title information: JOptionPane.showInternalConfirmDialog(frame, "please choose one", "information", JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.INFORMATION_MESSAGE); Show a warning dialog with the options OK, CANCEL, title 'Warning', and message 'Click OK to...