Orange Website Hacked

Sep 04, 10 Orange Website Hacked

Posted by in News

Just a few days ago World Central Security published an article claiming that one of Orange’s website is vurnable to sqli (Structured Query Language Injection), which has allowed access to over 60,000 accounts. Moreover, as you can see from the screenshots below their passwords are stored in plain text, thus allowing access...

read more

Rotating a line in C#

May 26, 10 Rotating a line in C#

Posted by in Algorithmics, Programming

Recently I had a problem that required me to do a rotation of a line keeping the original point fixed. A rotation is a movement of an object in a circular motion, mathematically a rotation is a rigid body movement which, unlike a translation, keeps a point fixed. public partial class Rotate : Form { public Bitmap...

read more

May 2010 – The Month of PHP Security

May 04, 10 May 2010 – The Month of PHP Security

Posted by in General IT

On May 1, 2010 The Month of PHP Security 2010 officially started, an initiative which took place first in 2007 aiming to improve PHP security. In each day of this month at least one PHP vulnerability will be posted. Along with the articles they’ll be writing, viewers can contribute with their own papers on this subject,...

read more

How to turn off POST revisions in WordPress

May 01, 10 How to turn off POST revisions in WordPress

Posted by in General IT

What is the POST revision? Everytime someone edits a post, a new row is created in the wp_posts table.The number of rows grows as the number of edits grows.It is important to know that autosaves do not create revisions of the post. This feature is useful only if there is more than one author on the blog, otherwise, it is useless,...

read more

Top 10 MySQL Functions

May 01, 10 Top 10 MySQL Functions

Posted by in Programming, Query Languages

Introduction As of MySQL 5.0 built-in (native) functions, user-defined functions and stored functions are now supported by the mysql engine. Although these functions are widely available to the developer their use isn’t fully exploited. In this article I am going to present the top MySQL functions that come in handy. Hash...

read more