It was great to be a part of the conference Cutting Edge 2012 from Symantec Corporation, Chennai on 16, 17th feb. To gear up the event we conducted a treasure hunt contest and the response was huge than my expectation. I was happy to create the portal. Then I was part of the Norton Android lab opening ceremony. Our VP appreciated my app. To say more on it, I presented a paper on “Security-as-a-Service enhancements to the existing Symantec.Cloud services”. It was great to present a paper on Security in a hacker’s perspective. Let me give a link to the presentation after sometime. Expecting a lot in the coming days!
Security-as-a-Service paper presentation
nothing > /dev/null
I thought of blogging often. But I am unable to do. I will make it soon. This is a post doesn’t contain anything specific. I just want to show my presence in online.
Hiding your name into Lover’s photo
I was just browsing through PHP functions from php.net for some other purpose. I have got interested in PHP Pack function. Pack function packs data into binary string.
string pack ( string $format [, mixed $args [, mixed $... ]] )
So I thought of doing some funny things with this. I tried to hide my name into my favorite photo. Just follow the steps.
Create an upload form using html at first. Then create upload_file.php
if ($_FILES["file"]["error"] > 0)
echo "Error: " . $_FILES["file"]["error"];
else
{
echo "Upload: " . $_FILES["file"]["name"];
echo "Type: " . $_FILES["file"]["type"];
echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb";
echo "Stored in: " . $_FILES["file"]["tmp_name"];
$file_data = fopen ($_FILES["file"]["tmp_name"], "r");
$reading = fread($file_data, 1048576);
fclose($file_data);
$final_data = bin2hex($reading);
echo $final_data;
}
?>
Now your Hexadecimal data is generated. Then add your name into $final_data string. Now we will restore the original photo from the hex value. We can hide and remove your name using
preg_match() and preg_replace() functions. Try it on your own if you want to waste some time.
$hexadecimaldata="add your hex data into the string here";
//For example I have attached a image hex value file along with the post
$picture_data = pack("H" . strlen($hexadecimaldata), $hexadecimaldata);
header("Content-Type: image/jpeg");
header("Last-Modified: " . date("r", filectime($_SERVER['SCRIPT_FILENAME'])));
header("Content-Length: " . strlen($picture_data));
echo $picture_data;
?>
I was searching a topic related HTML5. In the mean time pack function drags me to spend one more hour in this. I have used references from w3schools.com and php.net sites. Here is the hex value of my favorite photo. Download -> Hex Value file
And the name of the city is Madurai
It is two and half years since I have started staying out of my home town. Basically my city is famous for its cultural enrichment due to the temples and monuments here. It is the second largest city in Tamilnadu. But yet it is lagging in terms of faster development when compared to Coimbatore. But I hope this is the right time to pick up.
Till now it was a helm of local political rowdies. Now they are all taken away from here. I haven’t seen any posters/banners around the city now. It is a very good change. Yesterday I was roaming around the city. I am seeing many changes and more improvements on infrastructure development. And there are many car showrooms opened in the city. But still the roads are not that much vast anywhere. It needs more bridges at many places. The city limit is extended currently. The total city is stimulated to celebrate the upcoming festival Deepavali. Planning to get into the crowd today also. I met a lot of friends on the past two days. Still there are more people to meet.
Here really we don’t have much places to roam around other than old monuments. There is no entertainment other than theaters. I am looking for a change in it. It is really the right time for investors here.
Everybody have a dream of staying in their native itself. Yes, me too. Thinking of the day to come sooner.
One word – One day
I thought of writing a lot of blog posts but I am not able to sit and do it. So I was thinking of writing something very short as I can do it daily. Here after I am going to write to express the biggest moment of the day in a single word!