Category Archives: Tutorial
sql injection tutorial for beginners
DISCLAIMER : Breaking into websites and doing damage is a bad thing, do not use the information in this article for destructive purposes. I am not accountable for any damage that may occur due to the information supplied in this article. You can do SQL injection for fun Okay so the other day I was just derping on this website, when suddenly, I noticed the Url was something like: http://www.vulnerablesite.com/promotion.php?id=1 And so I’m like, let me check and see if it’s vulnerable to SQL injection. So I modified the URL to something like: http://www.vulnerablesite.com/promotion.php?id=1′ or ’1′=’0 And what do you know, it … [Read More]
Jquery: Text spanned checkbox
I’m not sure what they call this, but it’s best shown with a demo. See here. The upper one is what I want to achieve, the lower one is a bad bad pampered child. I’m not sure if there’s an easier way of doing this, but I achieved this effect using a small JQuery script. The markup The markup is just a form with a checkbox. But we added a <span> around the checkbox to be used by the script. Any checkbox with this span element will have the same effect. Put this between your <body> tags The CSS You don’t … [Read More]
Fancy JQuery social sidebar slider
In this tutorial, I will show you how to make a fancy social jQuery sidebar like the one overhere. If you think its too fancy for you, I will also show you how to make an animation like this one. Nice? Well lets get started! MARKUP First up, we need to have some markup. You can place this in your <body> tag, OUTSIDE any other tags: Nothing much there, just a main “social icon” container with a three div containers. CSS Next, lets style this markup using some CSS. We’re going to use an image sprite to improve performance. We’re using … [Read More]