WELCOME TO MY SPIRIT UNDERGROUND BLOG (SEMANGAT JIWA YANG SURAM DAN MATI)

Selasa, 29 Juni 2010

Your E-mail Has Won 485,910.00 Euros

Attention Email ID User,

We happily announce to you the draw of the Loteria Nacional Special Global 2010 Promotional Draw held in Madrid Spain.Your e-mail address attached to REF No;ESP/62934LN/2010, with Batch No: CH 200 drew the Winning No: 02 10 16 18 27 41, Bonus No: 28 for LN-49 Lotto under the choice of the lottery in the 1st category.

All participants were selected randomly from World Wide Web site through computer draws system and extracted from over 10,000,000 companies and
personal e-mails. So your email is your online automatic ticket that qualified you for this draw. You have therefore been approved to claim a total sum of 485,910 Euros (Four Hundred and Eighty Five Thousand Nine Hundred and Ten Euros)

Therefore, you are required to forward your details to our claims department/Finance/Legal office to help facilitate the processing of your fund as stated below:

1. FULL NAMES: ________
2. ADDRESS: __________
3. AGE AND SEX: ________
4. MARITAL STATUS: _____
5. OCCUPATION: ________
6. E-MAIL ADDRESS: ______
7. TELEPHONE NUMBER: ________

Contact Person: Barrister.Luis Capiel
Tel: +34 672 860 220
E-mail:hamiltonabogado@aol.es

Congratulation!!

Sincerely,
Sandra Luque (Mrs.)
Lottery Controller

Selasa, 25 Mei 2010

Domain : biner.com
IP server : 192.168.254.1

1. Install linux Suse 10.2
Siapkan PC untuk install linux suse, install dengan mode text.

2. Setting IP
yast -> Network Device -> Network Card -> Traditional Method with ifup -> pilih card -> edit -> Statistic Address Setup
-> Ip Address : 192.168.254.1 -> Subnet Mask : 255.255.255.0 -> Next -> Finish

3. Hostname
yast -> Network Service -> DNs and Hostname -> Hostname : server -> Domain Name : biner.com -> Finish

4. Install aplikasi
untuk DNS :
bind
DNS Server

untuk webserver:
apache
yast2-http-server

tool:
mc

5. aktifkan IP forwarding
Yast -> Network Service -> routing
aktifkan : enable IP Forwarding

6. Menjalankan bind
# /etc/init.d/named start

7. setting DNS
a. named.conf
1. vi /etc/named.conf

# Copyright (c) 2001-2004 SuSE Linux AG, Nuernberg, Germany.
# All rights reserved.
#
# Author: Frank Bodammer, Lars Mueller
#
# /etc/named.conf
#
# This is a sample configuration file for the name server BIND 9. It works as
# a caching only name server without modification.
#
# A sample configuration for setting up your own domain can be found in
# /usr/share/doc/packages/bind/sample-config.
#
# A description of all available options can be found in
# /usr/share/doc/packages/bind/misc/options.

options {

# The directory statement defines the name server’s working directory

directory “/var/lib/named”;

# Write dump and statistics file to the log subdirectory. The
# pathenames are relative to the chroot jail.

dump-file “/var/log/named_dump.db”;
statistics-file “/var/log/named.stats”;

# The forwarders record contains a list of servers to which queries
# should be forwarded. Enable this line and modify the IP address to
# your provider’s name server. Up to three servers may be listed.

#forwarders { 192.0.2.1; 192.0.2.2; };

# Enable the next entry to prefer usage of the name server declared in
# the forwarders section.

#forward first;

# The listen-on record contains a list of local network interfaces to
# listen on. Optionally the port can be specified. Default is to
# listen on all interfaces found on your system. The default port is
# 53.

#listen-on port 53 { 127.0.0.1; };

# The listen-on-v6 record enables or disables listening on IPv6
# interfaces. Allowed values are ‘any’ and ‘none’ or a list of
# addresses.

listen-on-v6 { any; };

# The next three statements may be needed if a firewall stands between
# the local server and the internet.

#query-source address * port 53;
#transfer-source * port 53;
#notify-source * port 53;

# The allow-query record contains a list of networks or IP addresses
# to accept and deny queries from. The default is to allow queries
# from all hosts.

#allow-query { 127.0.0.1; };

# If notify is set to yes (default), notify messages are sent to other
# name servers when the the zone data is changed. Instead of setting
# a global ‘notify’ statement in the ‘options’ section, a separate
# ‘notify’ can be added to each zone definition.

notify no;
include “/etc/named.d/forwarders.conf”;
};

# To configure named’s logging remove the leading ‘#’ characters of the
# following examples.
#logging {
# # Log queries to a file limited to a size of 100 MB.
# channel query_logging {
# file “/var/log/named_querylog”
# versions 3 size 100M;
# print-time yes; // timestamp log entries
# };
# category queries {
# query_logging;
# };
#
# # Or log this kind alternatively to syslog.
# channel syslog_queries {
# syslog user;
# severity info;
# };
# category queries { syslog_queries; };
#
# # Log general name server errors to syslog.
# channel syslog_errors {
# syslog user;
# severity error;
# };
# category default { syslog_errors; };
#
# # Don’t log lame server messages.
# category lame-servers { null; };
#};

# The following zone definitions don’t need any modification. The first one
# is the definition of the root name servers. The second one defines
# localhost while the third defines the reverse lookup for localhost.

zone “.” in {
type hint;
file “root.hint”;
};

zone “localhost” in {
type master;
file “localhost.zone”;
};

zone “0.0.127.in-addr.arpa” in {
type master;
file “127.0.0.zone”;
};

# Include the meta include file generated by createNamedConfInclude. This
# includes all files as configured in NAMED_CONF_INCLUDE_FILES from
# /etc/sysconfig/named

include “/etc/named.conf.include”;

# You can insert further zone records for your own domains below or create
# single files in /etc/named.d/ and add the file names to
# NAMED_CONF_INCLUDE_FILES.
# See /usr/share/doc/packages/bind/README.SUSE for more details.

2. Tekan tombol Insert untuk edit file named.conf, tambahkan dibawah ini

zone “biner.com” {
type master;
file “/var/lib/named/master/biner.com.hosts”;
};
zone “254.168.192.in-addr.arpa” {
type master;
file “/var/lib/named/master/192.168.254.rev”;
};

3. simpan
tekan Esc + shift : wq

B. biner.com.hosts
1. vi /var/lib/named/master/biner.com.hosts
$ttl 38400
biner.com. IN SOA server.biner.com. server.biner.com. (
2010012302
10800
3600
604800
38400 )
biner.com. IN NS server.biner.com.
server.biner.com. IN A 192.168.254.1
biner.com. IN MX 10 mail.biner.com

C. 192.168.254.rev
1. vi /var/lib/named/master/192.168.254.rev
$ttl 38400
254.168.192.in-addr.arpa. IN SOA server.biner.com. server.biner.com. (
2010012301
10800
3600
604800
38400 )
254.168.192.in-addr.arpa. IN NS server.biner.com.
1.254.168.192.in-addr.arpa. IN PTR server.biner.com.

D. Cek DNS
1. Restart bind
# /etc/init.d/named restart
Shutting down name server BIND done
Starting name server BIND done

(jika masih belum muncul seperti di atas masih salah cek lagi penulisannya )
2. cek host
# host server.biner.com
server.biner.com has address 192.168.254.1

3. cek server
# nslookup server
Server: 127.0.0.1
Address: 127.0.0.1#53

Kamis, 11 Februari 2010

Membangun DNS dan Web Server

IP Address

misalnya :

  1. server.smkn3kotatgl.or.id = 192.168..254.1/24
  2. www.smkn3kotatgl.or.id = 192.168..254.1/24
  3. mo.smkn3kotatgl.or.id = 192.168..254.1/24
  4. gb.smkn3kotatgl.or.id = 192.168..254.1/24
  5. av.smkn3kotatgl.or.id = 192.168..254.1/24
  6. nkpi.smkn3kotatgl.or.id = 192.168..254.1/24
  7. tkpi.smkn3kotatgl.or.id = 192.168..254.1/24
  8. mm.smkn3kotatgl.or.id = 192.168..254.1/24
  9. tkj.smkn3kotatgl.or.id = 192.168..254.1/24

DNS Server

  1. SIstem Operasi = OSS Linux Suse 10.2
  2. Domain = smkn3kotatgl.or.id
  3. Email Admin = smkn3kotatgl@smkn3kotatgl.or.id
  4. Sub Domain = www.smkn3kotatgl.or.id
  • mo.smkn3kotatgl.or.id
  • gb.smkn3kotatgl.or.id
  • av.smkn3kotatgl.or.id
  • nkpi.smkn3kotatgl.or.id
  • tkpi.smkn3kotatgl.or.id
  • mm.smkn3kotatgl.or.id
  • tkj.smkn3kotatgl.or.id

Web Server

  1. Sistem Operasi = OSS Linux Suse 10.2
  2. Port Enable = 80
  3. Virtual Host Enable = Yes
  4. DocumentRoot =
  • www.smkn3kotatgl.or.id =/home/smkn3kotatgl/public_html/
  • mo.smkn3kotatgl.or.id =/home/mo/public_html/
  • gb.smkn3kotatgl.or.id =/home/gb/public_html/
  • av.smkn3kotatgl.or.id =/home/av/public_html/
  • nkpi.smkn3kotatgl.or.id =/home/nkpi/public_html/
  • tkpi.smkn3kotatgl.or.id =/home/tkpi/public_html/
  • mm.smkn3kotatgl.or.id =/home/mm/public_html/
  • tkj.smkn3kotatgl.or.id =/home/tkj/public_html/


Langkah Konfigurasi :

  1. Siapkan 1 PC untuk DNS dan Web Server dan 1 PC / Laptop untuk Client
  2. Install PC Server dengan menggunakan Linux Suse 10.2 dengan Mode Text (untuk mode yang lain juga bisa)
  3. Untuk client bisa menggunakan OS yang lain/
  4. Konfigurasi IP dengan mengunakan fasilitas yast
  5. Menambah user linux
    1. Yast
    2. Security and Users
    3. User Management
    4. Pilih Add
    5. User’s Full name (masukan nama lengkap misalnya : SMKN 3 Tegal)
    6. Username (masukan username misalnya : smkn3kotatgl)
    7. Password (masukan password misalnya : 123456)
    8. Confirm Password (masukkan lagi password : 123456)
    9. Ulangi lagi Add untuk username mo, gb, nkpi, tkpi, av, mm dan tkj
  6. Install Sotfware linux yg dibutuhkan :
    1. Yast
    2. Software Management
    3. Alt + F (filter)
    4. Pilih Patterns
    5. Pilih File Server, network admiistrasi, web and Lamp server, DHCP and DNS Server
    6. Accept
    7. Lakukan instalasi sampai selesai
  7. Konfigurasi DNS

a. Aktifkan IP forwarding
Yast -> Network Service -> routing
aktifkan : enable IP Forwarding
b. Menjalankan bind
# /etc/init.d/named start
c. vi /etc/named.conf
# Baris terakhir tambahkan di bawah ini
zone “smkn3kotatgl.or.id” {
type master;
file “/var/lib/named/master/smkn3kotatgl.or,id.hosts”;
};
zone “254.168.192.in-addr.arpa” {
type master;
file “/var/lib/named/master/192.168.254.rev”;
};

d. vi /var/lib/named/master/smkn3kotatgl.or.id.hosts

$ttl 38400
smkn3kotatgl.or.id. IN SOA server.smkn3kotatgl.or.id. server.smkn3kotatgl.or.id. (
2010012302
10800
3600
604800
38400 )
smkn3kotatgl.or.id. IN NS smkn3kotatgl.or.id.
server.smkn3kotatgl.or.id. IN A 192.168.254.1
smkn3kotatgl.or.id. IN MX 10 mail. smkn3kotatgl.or.id.
www.smkn3kotatgl.or.id. IN A 192.168.254.1
mo.smkn3kotatgl.or.id. IN A 192.168.254.1
gb.smkn3kotatgl.or.id. IN A 192.168.254.1
av.smkn3kotatgl.or.id. IN A 192.168.254.1
nkpi.smkn3kotatgl.or.id. IN A 192.168.254.1
tkpi.smkn3kotatgl.or.id. IN A 192.168.254.1
mm.smkn3kotatgl.or.id. IN A 192.168.254.1
tkj.smkn3kotatgl.or.id. IN A 192.168.254.1

d. vi /var/lib/named/master/192.168.254.rev

$ttl 38400
254.168.192.in-addr.arpa. IN SOA server.smkn3kotatgl.or.id. server.smkn3kotatgl.or.id. (
2010012301
10800
3600
604800
38400 )
254.168.192.in-addr.arpa. IN NS server.smkn3kotatgl.or.id.
1.254.168.192.in-addr.arpa. IN PTR server.smkn3kotatgl.or.id.
1.254.168.192.in-addr.arpa. IN PTR www.smkn3kotatgl.or.id.
1.254.168.192.in-addr.arpa. IN PTR www.smkn3kotatgl.or.id.
1.254.168.192.in-addr.arpa. IN PTR www.smkn3kotatgl.or.id.
1.254.168.192.in-addr.arpa. IN PTR www.smkn3kotatgl.or.id.
1.254.168.192.in-addr.arpa. IN PTR www.smkn3kotatgl.or.id.
1.254.168.192.in-addr.arpa. IN PTR www.smkn3kotatgl.or.id.
1.254.168.192.in-addr.arpa. IN PTR www.smkn3kotatgl.or.id.
1.254.168.192.in-addr.arpa. IN PTR www.smkn3kotatgl.or.id.

e. Restart bind

# /etc/init.d/named restart
Shutting down name server BIND done
Starting name server BIND done
(jika masih belum muncul seperti di atas masih salah cek lagi penulisannya )

f. cek host
# host server.smkn3kotatgl.or.id
smkn3kotatgl.or.id has address 192.168.254.1

8. edit hosts

#vi /etc/hosts

# hosts This file describes a number of hostname-to-address

# mappings for the TCP/IP subsystem. It is mostly

# used at boot time, when no name servers are running.

# On small systems, this file can be used instead of a

# “named” name server.


# Syntax:

# IP-Address Full-Qualified-Hostname Short-Hostname

#127.0.0.1 localhost

# special IPv6 addresses


::1 localhost ipv6-localhost ipv6-loopback

fe00::0 ipv6-localnet

ff00::0 ipv6-mcastprefix

ff02::1 ipv6-allnodes

ff02::2 ipv6-allrouters

ff02::3 ipv6-allhosts

192.168.254.1 server.smkn3kotatgl.or.id server

192.168.254.1 www.smkn3kotatgl.or.id www

192.168.254.1 mo.smkn3kotatgl.or.id mo

192.168.254.1 gb.smkn3kotatgl.or.id gb

192.168.254.1 av.smkn3kotatgl.or.id av

192.168.254.1 nkpi.smkn3kotatgl.or.id nkpi

192.168.254.1 tkpigb.smkn3kotatgl.or.id tkpi

192.168.254.1 mm.smkn3kotatgl.or.id mm

192.168.254.1 tkj.smkn3kotatgl.or.id tkj

9. cek client

Untuk di PC client anda bias cek dengan ping tkj.smkn3kotatgl.or.id atau sub domain yg lainnya.

Senin, 19 Oktober 2009

Cara memasang lagu di Facebook

Quantcast

Jika kamu bosen dengan facebookmu yang hanya berisi gambar-gambar, foto-foto dan juga hiasan2 yang biasa aja dan kamu ingin facebookmu tampil spt friendster yang bisa mengembed music dan memainkan lagu mp3 di profilemu, kini ada aplikasi facebook
yang bisa menjawab kebutuhanmu. Kamu bisa memasang dan mendengarkan lagu di Facebook. Bisa disetting hanya kamu yang bisa mendengar ataupun friendlist bahkan untuk publik.

Nah, plugin facebook ini bisa memasukkan maksimal 200 lagu di facebook sesuai dengan seleramu, kamu bisa memilihnya langsung dari facebook dengan fasilitas search box di sana, ketikkan nama penyanyi atau judul lagu di sana, kemudian tambahkan lagu-lagu tsb ke playlist sehingga nantinya playlist itu bisa dipasang di profile page. Seperti di contoh di screenshot di bawah ini, saya mencoba nyari lagu Nirvana, yang muncul adalah lagu-lagu yang nyerempet ke Nirvana ataupun lagu yang dinyanyikan oleh grup musiknya Kurt Cobain – Nirvana, maksud saya nyari Smells Like Teen Spirit.

Oya, nanti kamu perlu melakukan sedikit settingan di Settings > Application Settings supaya bisa di-add ke profile page.
Dengan mixpodplaylist, kamu bisa memanjakan teman2mu untuk mendengarkan lagu favorit mereka di profile page facebookmu.

Silahkan log in ke facebook pagemu dulu, baru lanjutkan ke link ini:

http://apps.facebook.com/mixpodplaylist/.

Minggu, 18 Oktober 2009

Cara Membobol dan Mecari solusinya

Jaman sekarang yang namanya hacker atau cracker semakin kreatif, dengan berbagai cara mereka berusaha menembus email Anda, friendster, rekening online, web site, bahkan blog.Anda tidak mau kan, kalau suatu saat profile Anda di friendster diubah oleh orang? Atau web site Anda tiba-tiba di ganti tampilannya oleh hacker / cracker ?

Salah satu cara hacker menembus account kita adalah dengan cara menebak password. Hacker menggunakan script yang dapat memasukkan puluhan password tiap detik untuk mencoba masuk ke dalam account kita.

Cara hacker menebak password kita antara lain dengan:

1. Brute force attack, yaitu dengan mencoba semua kombinasi, mulai dari aaaa sampai zzzz, sampai beberapa karakter.
2. Dictionary attack, yaitu dengan menebak menggunakan kata-kata dalam kamus, dan dikombinasikan dengan angka-angka atau karakter.
3. Personal information attack, dengan cara memasukkan data-data pribadi seperti nomor telepon, tanggal lahir, nama pacar, kode pos, dan sebagainya.

Password yang sangat lemah akan sangat mudah dibobol hacker dengan cara ini. Contoh password yang sangat lemah misalnya:

* 123456, qwerty, asdf, ini karena mudah sekali orang mengetik kombinasi ini di keyboard.
* password, mypassword, dan lain-lain yang menggunakan kata-kata dalam kamus (semua bahasa).
* tanggal lahir, nama pacar, dan lainnya yang merupakan data diri orang tersebut.

Password yang lemah, bisa dibobol dalam waktu yang lebih cepat, misalnya:

* menggunakan semua huruf kecil.
* menggunakan kombinasi kata dan angka, misalnya buku10, teroris80.
* mengganti huruf dengan karakter, misalnya c1nt@

Bagaimana password yang kuat dan sulit ditembus hacker?

1. Merupakan kombinasi dari huruf besar, huruf kecil, nomor, dan karakter.
2. Panjang lebih dari 10 karakter.
3. Tidak menyertakan kata-kata dalam kamus.

Password yang kuat harus mudah diingat oleh pemiliknya.

Contoh password yang kuat: 1mAu$100Ribu

Cara mengingatnya:

* 1 = kata “saya” diterjemahkan dalam bahasa Inggris (I).
* mAu = mau
* $ = uang
* 100Ribu = 100 ribu

Contoh password kuat yang lain: ninG->0+1Gul

Cara mengingatnya:

* ninG = misalnya nama orang sepesial buat Anda: Naning
* -> = panah identik dengan adalah
* 0+ = lambang cewek
* 1 =berarti nomor satu atau paling
* Gul = gula itu manis

Beberapa tips:

1. Jangan menggunakan password yang sama untuk berbagai macam layanan, misalnya password email Anda sama dengan password friendster. Ini berarti:
* seseorang yang dapat menjebol password friendster Anda, bisa juga menjebol password email Anda. Sementara di mata hacker menjebol password friendster lebih mudah daripada menjebol email Yahoo.
* admin atau “orang dalam” friendster tahu password Anda, dia juga bisa memasukkan password tersebut ke email Anda.
2. Jangan mengklik link di email yang menyatakan Anda harus memverifikasi password Anda. Email ini dikirim oleh hacker.
3. Jangan memasukkan password disitus selain yang memberikan layanan. Misalnya jangan memasukkan password yahoo di situs friendster untuk alasan apapun (misalnya import address book).
4. Sebelum login ke email atau yang lain, pastikan URL di browser Anda benar. Misalnya mail.yahoo.com bukan mail.yahoo-ltd.com atau yahoo-verify.com atau yang lain.
5. Untuk rekening online seperti e-gold, klik BCA, paypal, sebaiknya Anda tidak mengetik password Anda lewat keyboard (karena hacker bisa membaca keyboard Anda dengan program keylogger). Gunakan On Screen Keyboard, Charakter Map, atau copy paste dari huruf acak.

Okey begitulah tips-tips agar password kita sulit dibobol hacker. Semoga dengan tips ini account kita aman dan terhindar dari kebobolan.

http://www.fontriver.com/i/preview.php?font=linkin_park&text=semoga%20bermanfaat%20bagi%20anda&size=16