Saturday, February 19, 2011

Make Windows Genuine

The Windows Genuine Advantage notification checks if you have a genuine copy of Windows registered to that computer. It allows you to update your computer with the Windows updates. If you have installed it, and you do not have a genuine copy of Windows XP installed, then you may notice an icon at the bottom of your window before you Login. It will make you wait three seconds before allowing you to...
Read more

Hack your Own Web Project ? SQL Injection

SQL InjectionSQL Injection like this Login Java CodeString userid = request.getParameter("userid");String password = request.getParameter("password");Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");connection = DriverManager.getConnection("jdbc:odbc:projectDB");query = "SELECT * FROM Users WHERE user_id ='" + userid + "' AND password ='" + password +"'";PreparedStatement ps = connection.prepareStatement(query);ResultSet...
Read more