PHP Protect 1.3G – break challange

PHP-Protect 1.3G

PHP-Protect 1.3G

Challenge from developer of

PHP Protect 1.3G (code obfuscation / protection utility).

About PHP Protect
PHP Protect is a small tool developed by a programmer from Clixint Tech for protecting the php code written by developers. The online utility encodes the file and gives you back a download. The downloaded version is encoded and runs perfect as php script without any requirement of extra tool installed on server (i.e. unlike ioncube, zend-encoder shared libraries). Single file with built-in decoder.

  • Try to break and bring back the original code of php that was encoded and file should run as php script (should not give error or warning)
  • You should demonstrate the exact method how you are able to decode the file
  • Use following code, save it s test.php, upload at following link and you get encoded version.

<?php

print ( ‘Hello Chellanger’ );

?>

The one who breaks the code will get copy of any 5 chosen products from Scriptbaba store.

http://www.scriptbaba.com/php-protect

Happy breaking :) use comments..

Get images from Google, Yahoo, Bing with PHP

Get images from Google, Yahoo, Bing with PHP

Click here to see DEMO

NOTE: Script searches the first page of Yahoo, Google, and Bing, so whatever it gathers from first page is the result.
Requirements:

  • PHP 5 or higher
  • CURL Extension installed for PHP 5

Examples included in the pack..

Usage example :

<?php

/**
* Simple PHP Image Search API
* Example – Search google images
* Copyrights reserved – www.scriptbaba.com
*/

require_once ‘../api.php’;

$images = get_images_google(‘Albert Einstein’);

if (empty($images))
die( ‘No images found!’);

#Now display images
foreach ($images as $image)
{
print ‘<img src=”‘.$image.’” /> <br />’;
}