Text

June 17, 2009

Transformer 2 - Revenge of The Fallen

Perang untuk bumi telah selesai, tapi perang untuk alam semesta baru saja dimulai. Setelah kembali ke Cybertron, Starscream memberikan perintah terhadap Decepticon untuk kembali ke bumi dengan kekuatan penuh. Autobots percaya bahwa dengan kematian Megatron bumi bisa damai. Tetapi Skorpinox telah mencuri tubuh Megatron yang mati dari US Military dan menghidupkannya dengan Spark yang dimilikinya. Sekarang Megatron telah kembali untuk balas dendam, bersama Starscream dan pasukan Decepticon-nya. Autobot yang di pimpin Optimus Prime juga dengan pasukan mereka siap menghadapi Decepticon.

The Art of Intrusion - Kevin Mitnick

Seorang Hacker yang sangat luar biasa, Kevin Mitnick. Mengulang kembali kesuksesan sebelumnya dalam buku The Art of Deception. Dalam buku The Art of Intrusion ini, Kevin Mitnick menceritakan tentang seni penyusupan terhadap security system. Buku ini ditulis berdasarkan kisah nyata yang langsung di ceritakan oleh beberapa sumber, salah satunya adalah ne0h. Salah satu bab di buku ini menceritakan tentang beberapa orang yang meng-hack casino (tempat judi), dan menghasilkan jutaan dollar.

Download

The Art of Deception - Kevin Mitnick


Hacker
terkenal sepanjang masa, Kevin Mitnick yang sekarang menjadi konsultan computer security menulis buku tentang seni social engineering. Dalam buku ini, Kevin Mitnick menggambarkan beberapa hacker yang sukses melalui teknik social engineer, yang mampu memanfaatkan faktor manusia untuk dapat menyusup ke dalam information security system sebuah perusahaan dan memanfaatkan informasi yang telah di perolehnya.

Download

December 18, 2007

Java Dial-up Networking Package For Windows


JDUN Download

JDUN provides a dial-up networking (DUN) Java interface for use with Windows operating systems. Microsoft™ remote access services (RAS) can be accessed such as enumerating DUN phonebook entries, dialing connections, and hanging up connections.

You can now add dial-up capabilities to your Java application with ease. JDUN also allows any type of connection provided through Windows Dial-up Networking. This includes modem, VPN, broadband, serial, parallel, and other connections.

JDUN provides the following functionality:

  • Create entry (dial-up, VPN, etc)
  • Edit entry
  • Delete entry
  • Rename entry
  • Get all entry names
  • Dial entry with defaults or override username / password / phone number
  • Dial non-entry (simple modem connection)
  • Hang up connection
  • Detect entry connection
  • Detect internet connection
  • Retrieve local IP and remote server IP from a PPP dial-up connection allowing the establishment of a socket connection

Java Runtime Exec Example

import java.io.*;

class RunProc {
public static void main(String args[]) {
try {
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec("cmd /c dir");

InputStream inStd = pr.getInputStream();
InputStreamReader inStdR = new InputStreamReader(inStd);
BufferedReader bStd = new BufferedReader(inStdR);

String line=null;

while((line=bStd.readLine()) != null) {
System.out.println(line);
}
int exitVal = pr.waitFor();
System.out.println("Exited with error code "+exitVal);

} catch(Exception e) {
System.out.println(e.toString());
e.printStackTrace();
}
}
}