Archive for March, 2009

DragonBall Z Season 1

dbz1

Season 1 : Saiyan Saga
After giving his life to kill his evil brother, Goku must train with King Kai, in order to be strong enough to beat the saiyans, who will be arriving on Earth in one years time. Can he become powerful enough to defeat them though?

Episode 1
Episode 2
Episode 3
Episode 4
Episode 5
Episode 6
Episode 7
Episode 8
Episode 9
Episode 10
Episode 11
Episode 12
Episode 13
Episode 14
Episode 15
Episode 16
Episode 17
Episode 18
Episode 19
Episode 20
Episode 21
Episode 22
Episode 23
Episode 24
Episode 25
Episode 26

Install Wordpress di komputer lokal

To install wordpress you didn’t must have hosting, but you can also be installed on the local computer that does not connect to the network or internet.
Surely the computer should have some application that supports Wordpress, such as PHP, My SQL, web server and wordpress itself. Here i’m using XAMPP which built in with My SQL and apache service. For Wordpress can be downloaded directly from the source http://wordpress.org.
Let’s go step by step (assumed you have successfully installed xampp) :
1. Extract wordpress into htdocs directory on XAMPP (the extract is usually called wordpress folder)
2. Make new database for wordpress. Type http://localhost on the browser then choose phpmyadmin on the left tab and create new database.
3. type on browser htpp://localhost/wordpress. Will appear a button to create configuration files, then fill the form with Database name, Database Username, Database password, Database host and table prefix.
If you are not familiar with it all, you can just edit a file name wp-config-sample.php then save with name wp-config.php
4. After success will appear to fill the form again to fill the blog title and email address.
5. Finally, you will get a username and password to start the wordpress on local machine.

Array PHP

Most of us have never thought that if a tool has a lot of backdoor (Most files for free with a lot of backdoor). They use encrypted in the installation of a backdoor method, for example using base64 facilities, MD5, Zend Guard or using array. Here is a little light for reading tutorials groove array from php script.

The sample code is bellow :

$ar=array(”0″=>”j”,”1″=>”i”,”2″=>”a”,”3″=>”n”,”4″= >”b”,”5″=>”h”,”6″=>”g”,”7″=>”.”,”8″=>”t”,”9″=>”e”, “10″=>”@”,”11″=>”k”,”12″=>”o”,”13″=>”m”,”14″=>”d”);
$cc=$ar['4'].$ar['2'].$ar['0'].$ar['1'].$ar['3'].$ar['6'].$ar['2'].$ar['3'].$ar['7'].$ar['8'].$ar['9']. $ar['3'].$ar['6'].$ar['1'].$ar['11'].$ar['10'].$ar['14'].$ar['12'].$ar['13'].$ar['1'].$ar['3'].$ar['7'].”c”. $ar['12'].$ar['13'];

Reading of that code is just matches variable $cc with variable in $ar. First $ar['4'], Look array number 4 in variable $ar, it’s “b”. Next $ar['2'] is “a” and so on.
The results from the decomposition of the array is : bajingan.tengik@domain.com
Usually this sort encrypts used to send information via email.