Selasa, 08 Februari 2011

Hacking Java Clients

The presentation will demonstrate a complete analysis and compromise of a Java client-server application using entirely open source tools. Performing penetration testing on Java clients, both applications and applets is often problematic because the data transport (typically RMI) is difficult to manipulate in a meaningful way and complex applications require more refined techniques than direct byte code manipulation. Java development approaches and tools have been steadily improving and many of these new paradigms and tools can be used to fully decompose and manipulate client side Java without resorting to decompiling the binary.
Due to the high level nature of developer tools, it is very easy for developers to misplace trust in client-server applications and erroneously or deliberately include security controls on the client instead of on the server side. By using testing and profiling tools and aspect oriented programming, it is possible to build a clear picture of the application's logic flow and to identify private objects that should not ordinarily be editable by the user. Injecting an interactive console into the running application allows you to change these objects at will and to call any methods on the client side, thereby bypassing client side security controls.

Jumat, 28 Januari 2011

Cara Mengirim Email Palsu (Anonymouse) Dengan Script PHP


Cara Mengirim Email Palsu (Anonymouse) Dengan Script PHP – Iseng iseng cari di google tentang anonymous surfing, malah ketemunya ini. Jadinya sharing tentang email palsu dulu deh. Aku memberikan tutorial ini hanya untuk belajar bukan untuk melakukan kejahatan! Apapun yang terjadi pada anda karena tutorial ini, saya tidak bertanggung jawab. Gunakanlah script email palsu ini untuk hal yang positif saja.
JANGAN DI PAKE UNTUK KEJAHATAN!!!!!
Caranya cukup simpel, pertama carilah hosting yang support SMTP (bisa untuk mengirm email), bisa pake hosting gratisan, sekarang kan udah banyak tuh penyedia jasa hosting gratis.
Kemudian copas script berikut ini, dan simpan dengan nama email.php . Anda bisa menggunakan notepad atau notepad++ untuk menyimpan script email palsu inii menjadi php.
<html>
<head>
<title>Anonymous Email Sender</title>
<meta name=”ROBOTS” content=”NOINDEX, NOFOLLOW”>
</head>
<body>
<?php
if(isset($_REQUEST['dari']))
{
$subjek = $_REQUEST['subjek'];
$isi = $_REQUEST['isi'];
$dari = $_REQUEST['dari'];
$untuk = $_REQUEST['untuk'];
$reply = $_REQUEST['reply'];
$header = ‘From : $dari’ . ‘rn’ . ‘reply-to : $reply’;
mail( $dari, “Subjek : $subjek”,$isi, $header) or die (“Sent.. Failed”);
echo “Sent.. Success”;
}
else
{
echo ”
<div style=’border:1px solid #000;width:200px;’>
<form method=’post’ action=”>
Dari : <br/><input name=’dari’ type=’text’/><br/>
Untuk : <br/><input name=’untuk’ type=’text’/><br/>
Subjek : <br/><input name=’subjek’ type=’text’/><br/>
Reply-to : <br/><input name=’reply’ type=’text’/><br/>
Isi : <br/>
<textarea name=’isi’ row=’20? cols=’24?></textarea><br/>
<input type=’submit’ value=’Kirim Email!’/> | <input type=’reset’ value=’ulang’/>
</form></div>”;
}
?>
<div align=”center” style=”color:red”>
Copyleft &copy;2010 by ItsMeFurZy |<a href=”http://alvienrizki.com”>AlvinRizki’s Site</a>
</div>
</body>
</html>
Upload file script email palsu tadi ke dalam hostingan yang sudah anda miliki. Sudahh… Selesai! Selamat mencoba!
Anda diperbolehkan untuk melakukan modifikasi script, sehingga anda bisa menciptakan sebuah script yang lebih baik dari script email anonymous ini.