* Project Founder: Chris Vincent * * Copyright (c) 1999-2005 The Owl Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * * small change here * * $Id: index.php,v 1.20 2007/07/11 00:27:47 b0zz Exp $ */ ob_start(); if (bcheckLibExists(dirname(__FILE__)."/config/owl.php")) require_once(dirname(__FILE__)."/config/owl.php"); $out = ob_get_clean(); if (bcheckLibExists($default->owl_fs_root ."/lib/disp.lib.php")) require_once($default->owl_fs_root ."/lib/disp.lib.php"); $default->owl_lang = fGetBrowserLanguage(); if (bcheckLibExists($default->owl_fs_root ."/lib/owl.lib.php")) require_once($default->owl_fs_root ."/lib/owl.lib.php"); if (bcheckLibExists($default->owl_fs_root ."/lib/security.lib.php")) require_once($default->owl_fs_root ."/lib/security.lib.php"); if (bcheckLibExists($default->owl_fs_root ."/scripts/phpmailer/class.phpmailer.php")) require_once($default->owl_fs_root ."/scripts/phpmailer/class.phpmailer.php"); if (isset($_COOKIE["owl_sessid"]) and $default->remember_me) { if ($login == "0") { if (!(strcmp($login, "logout") == 0)) { if ( isset($_POST[loginname]) and isset($_POST[password])) { $sql = new Owl_DB; $sess = $_COOKIE["owl_sessid"]; if ($default->active_session_ip) { $sql->query("DELETE FROM $default->owl_sessions_table WHERE sessid = '$sess' and ip <> '0'"); } else { $sql->query("DELETE FROM $default->owl_sessions_table WHERE sessid = '$sess' and ip = '0'"); } setcookie ("owl_sessid", ""); } else { $sess = $_COOKIE["owl_sessid"]; $sql = new Owl_DB; $sql->query("SELECT usid FROM $default->owl_sessions_table WHERE sessid = '$sess'"); $sql->next_record(); $uid = $sql->f("usid"); $sql->query("SELECT curlogin FROM $default->owl_users_table WHERE id = '$uid'"); $sql->next_record(); $curlogin = $sql->f("curlogin"); $sql->query("update $default->owl_users_table set lastlogin = '" . $curlogin . "' WHERE id = '$uid'"); $dNow = $sql->now(); $sql->query("update $default->owl_users_table set curlogin = $dNow WHERE id = '$uid'"); if (isset($parent) and is_numeric($parent)) { header("Location: browse.php?sess=$sess&parent=$parent"); } else { header("Location: browse.php?sess=$sess"); } exit; } } } } else { setcookie ("owl_sessid", ""); } // // Function to check if the required libraries exists // and are readable by the web server. // and issue a more significant message // Maybe we need this in other files as well, I'll wait and // see. function fPrintLoginPage($message = "") { global $default, $owl_lang, $language, $parent, $fileid, $anon_disabled, $folderid ; print("\n"); print("\n"); print("
owl_graphics_url/$default->sButtonStyle/ui_misc/$default->owl_logo\" border=\"0\" alt=\"$default->site_title\">
\n\n"); if (!empty($message)) { print("\n"); print("\n"); print("
$message
\n\n"); } else { print("\n"); print("\n"); print("
 
\n\n"); } print(""); print(""); if (isset($fileid) and is_numeric($fileid)) { print "\n"; print "\n"; } else { if (isset($parent) and is_numeric($parent)) { print "\n"; } } if (isset($folderid) and is_numeric($folderid)) { print "\n"; } print("\n"); print(" \n"); print(" \n"); print(" \n"); print("\n"); print("\n"); print(""); print("
 
\n\n"); print(" \n"); print(" \n"); print("
$default->site_title
\n"); if (count($default->owl_db_display_name) > 1) { print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print("
 
$owl_lang->repository_list:
\n"); print(" \n"); print("  
\n\n"); } print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); if ($default->remember_me) { print(" \n"); print(" \n"); print(" \n"); print(" \n"); print(" \n"); } print("
owl_graphics_url/$default->sButtonStyle/ui_misc/x_clear.gif\" width=\"1\" height=\"18\" border=\"0\" alt=\"\">
 

 
 

 
 
\n"); fPrintSubmitButton($owl_lang->btn_login, $owl_lang->alt_btn_login, "submit", "", "", "xbutton2", "xbutton2", "tabindex=\"3\""); print("  
 
$owl_lang->remember_me_checkbox: 
\n"); if ($anon_disabled != 1) { if(isset($fileid)) { $sHilite = "?fileid=$fileid"; } print(" \n"); print(" \n"); print("
$owl_lang->anonymous
\n"); } print(' '); print("
 
 \n"); if ($default->self_reg == 1) { print("$owl_lang->like_register  "); } if ($default->self_reg == 1 and $default->forgot_pass == 1) { print("|  "); } if ($default->forgot_pass == 1) { print("$owl_lang->forgot_pass
"); } print("
"); print("\n"); print("\n"); print("
 " . $owl_lang->engine . ", " . $owl_lang->version . " " . $default->version . " 
\n"); } // function bcheckLibExists ($filename) { global $default; if (file_exists("$filename")) { if (is_readable("$filename")) { return true; } else { die("
$owl_lang->debug_webserver_no_access
"); } } else { die("
$owl_lang->debug_file_not_exist
"); } } //if (checkrequirements() == 1) //{ //exit; //} if (!isset($failure)) $failure = 0; if (!$login) $login = 1; if($default->auth == 1 and isset($_SERVER['PHP_AUTH_USER'])) { $_POST[loginname] = $_SERVER['PHP_AUTH_USER']; } //if (($_POST[loginname] && $_POST[password]) or ($default->auth == 1 and $_POST[loginname] and $login <> "logout")) if (($_POST[loginname]) or ($default->auth == 1 and $_POST[loginname] and $login <> "logout")) { $verified["bit"] = 0; $verified = verify_login($_POST[loginname], $_POST[password]); if ($verified["bit"] == 1) { if ($default->auth == 0) { $sql = new Owl_DB; $sql->query("SELECT change_paswd_at_login, passwd_last_changed, expire_account FROM $default->owl_users_table WHERE id = '" . $verified["uid"] . "'"); $sql->next_record(); $sExpiredAccount = $sql->f("expire_account"); if (empty($sExpiredAccount)) { $dAccountExpire = 0; } else { $dAccountExpire = date("d-m-Y H:i:s", strtotime($sql->f("expire_account"))); } $sPasswdLastChanged = $sql->f("passwd_last_changed"); if (isset($sPasswdLastChanged)) { $dLastChanged = date("d-m-Y H:i:s", strtotime($sPasswdLastChanged)); } else { $dLastChanged = 0; } $dateTo = date("d-m-Y H:i:s", strtotime('now')); $diffd = getDateDifference($dLastChanged, $dateTo, 'd'); $dExpireDiff = getDateDifference($dAccountExpire, $dateTo, 'd'); $userid = $verified["uid"]; $usergroupid = $verified["group"]; if ($dExpireDiff > 0 and $sql->f("expire_account") != "") { owl_syslog(LOGIN_FAILED, $verified["uid"], 0, 0, $owl_lang->log_login_expired . $verified["user"], "LOGIN"); header("Location: index.php?login=1&failure=2"); exit; } if (isset($parent) and is_numeric($parent)) { $verified["homedir"] = $parent; } if ( $sql->f("change_paswd_at_login") == 1 or $diffd > $default->change_password_every) { if ( $sql->f("change_paswd_at_login") == 1) { header("Location: register.php?myaction=changepass&uid=" . $verified["uid"] . "&parent=" . $verified["homedir"] . "&c=" . $default->owl_current_db); exit; } else { if (!fIsAdmin() and $default->change_password_every > 0) { header("Location: register.php?myaction=changepass&uid=" . $verified["uid"] . "&parent=" . $verified["homedir"] . "&c=" . $default->owl_current_db); exit; } } } $userid = $verified["uid"]; $usergroupid = $verified["group"]; } else { $userid = $verified["uid"]; $usergroupid = $verified["group"]; } $session = new Owl_Session; $uid = $session->Open_Session(0, $verified["uid"]); $id = 1; /** * If an admin signs on We want to se the admin menu * Not the File Browser. */ owl_syslog(LOGIN, $verified["uid"], 0, 0, $owl_lang->log_login_det . $verified["user"], "LOGIN"); if ($default->notify_of_admin_login == 1 and $verified["uid"] == 1) // uid 1 = Administrator { if ($_SERVER["HTTP_CLIENT_IP"]) { $ip = $_SERVER["HTTP_CLIENT_IP"]; } elseif ($_SERVER["HTTP_X_FORWARDED_FOR"]) { $forwardedip = $_SERVER["HTTP_X_FORWARDED_FOR"]; list($ip, $ip2, $ip3, $ip4) = split (",", $forwardedip); } else { $ip = $_SERVER["REMOTE_ADDR"]; } $mail = new phpmailer(); if ($default->use_smtp) { $mail->IsSMTP(); // set mailer to use SMTP if ($default->use_smtp_auth) { $mail->SMTPAuth = "true"; // turn on SMTP authentication $mail->Username = "$default->smtp_auth_login"; // SMTP username $mail->Password = "$default->smtp_passwd"; // SMTP password } } $mail->CharSet = "$owl_lang->charset"; // set the email charset to the language file charset $mail->Host = "$default->owl_email_server"; // specify main and backup server $mail->From = "$default->owl_email_from"; $mail->FromName = "$default->owl_email_fromname"; $mail->AddAddress("$default->notify_of_admin_login_email"); $mail->AddReplyTo("$default->owl_email_replyto", "OWL Intranet"); $mail->WordWrap = 50; // set word wrap to 50 characters $mail->IsHTML(true); // set email format to HTML $mail->Subject = $owl_lang->admin_login_subject; $mail->Body = ""; $mail->Body .= $owl_lang->admin_login_date . date($owl_lang->localized_date_format, mktime()) . "
"; $mail->Body .= $owl_lang->admin_login_from . " " . $ip . " (" . fGetHostByAddress($ip) . ")

"; $mail->Body .= "
tiny teen files

tiny teen files

keep transsexual fictional stories

transsexual fictional stories

air katie appentice nude pictures

katie appentice nude pictures

but run naked

run naked

black shaved pussy free pics

shaved pussy free pics

catch the chicks are packed

the chicks are packed

salt ducky sex ball licking

ducky sex ball licking

young topless babes on signs

topless babes on signs

heavy surviver tv nudes

surviver tv nudes

duck gay hotels in florida

gay hotels in florida

school condom measured

condom measured

you wascally wabbit vibrator

wascally wabbit vibrator

half behind curtains porn

behind curtains porn

city rope bondage tortoise shell

rope bondage tortoise shell

to powerweapons story shemale

powerweapons story shemale

current bbw looking for soulmate

bbw looking for soulmate

gas japanese spanking

japanese spanking

spot nipples thumb galeries

nipples thumb galeries

quotient miss japan nude

miss japan nude

total cumonboys tgp

cumonboys tgp

ready georgia teen curfew laws

georgia teen curfew laws

find amatuer college sex

amatuer college sex

anger matt damon naked

matt damon naked

rise ladies classic intimate underware

ladies classic intimate underware

smell homemade oral sex simulator

homemade oral sex simulator

list busty pregos

busty pregos

unit sexy hairy women porn

sexy hairy women porn

sentence sister masturbates me

sister masturbates me

try sex and pot

sex and pot

want huge tits porn sites

huge tits porn sites

collect cock measuring

cock measuring

oil simson n pantyhose

simson n pantyhose

roll healthy male sexuality

healthy male sexuality

spell detroit gay

detroit gay

event anime sex sendspace

anime sex sendspace

flow making female squirt

making female squirt

drive stove knob replacement part

stove knob replacement part

paragraph sex deskmates

sex deskmates

hot women and thongs

women and thongs

never sex injuries uncircumsized

sex injuries uncircumsized

add xmas anal pics

xmas anal pics

join neighbor sex voyeur

neighbor sex voyeur

grow sayuki escort

sayuki escort

protect bignaturals carmen

bignaturals carmen

solve laitna boobs

laitna boobs

keep webcam por 1 sms

webcam por 1 sms

job phila singles

phila singles

few brown round butts

brown round butts

industry secret webcam live streaming

secret webcam live streaming

catch nude car girls

nude car girls

claim blowjob vomits

blowjob vomits

govern 15 seeking sex partner

15 seeking sex partner

lone chatroom mansfield

chatroom mansfield

total oral sex brazil

oral sex brazil

each korean milf videos

korean milf videos

soil couples massages in houston

couples massages in houston

oxygen naked mens lockerroom

naked mens lockerroom

often torrent xxx swing

torrent xxx swing

ring songs nasty pete fr

songs nasty pete fr

eye daily homemade sex vids

daily homemade sex vids

chart youtube naughty girl

youtube naughty girl

milk whipping scenes in moviesw

whipping scenes in moviesw

fly dirtbag brad sucks

dirtbag brad sucks

for navajo beauty

navajo beauty

second real wives getting banged

real wives getting banged

continue naked sophia loren

naked sophia loren

horse gay active duty

gay active duty

middle pussy redhead free movie

pussy redhead free movie

period nude resourts

nude resourts

here i love pantys

i love pantys

finish catherine bell upskirt

catherine bell upskirt

think isabel soprano bondage

isabel soprano bondage

still xxx porno igre

xxx porno igre

than lesbian feminist

lesbian feminist

noise the bounty naked girls

the bounty naked girls

clothe dick marcinko downloads

dick marcinko downloads

part john daley s big dick

john daley s big dick

condition black pussy images

black pussy images

cell chyna unleashed naked

chyna unleashed naked

excite memories spanking child stories

memories spanking child stories

red creating polarity relationship

creating polarity relationship

century instructional video female orgasm

instructional video female orgasm

book college boys naked photos

college boys naked photos

room shannon elizabeth nude videos

shannon elizabeth nude videos

fruit jakarta gay men

jakarta gay men

month jeniffer love hewitt lingerie

jeniffer love hewitt lingerie

remember marisa perora nude

marisa perora nude

chair cape town porn

cape town porn

felt the brass knob salvage

the brass knob salvage

look ameture wife nude pictures

ameture wife nude pictures

idea teen beach wear

teen beach wear

soon drive thru facial

drive thru facial

animal netref fetish

netref fetish

also panela anderson nude

panela anderson nude

oh hot lesbians in thongs

hot lesbians in thongs

tool tyler kyte naked

tyler kyte naked

turn lithuanian teen model

lithuanian teen model

wing 8thstreetlatinas margarita

8thstreetlatinas margarita

care crossovers with good mpg

crossovers with good mpg

charge lets suck

lets suck

most liev schreiber pussy

liev schreiber pussy

nature hermaphrodite hentia

hermaphrodite hentia

care erotic geschichten

erotic geschichten

earth transvestite lesbians

transvestite lesbians

smile organization for teens

organization for teens

hunt stories girl lick suck

stories girl lick suck

spell extreme fat porn

extreme fat porn

region naked vagrant men picture

naked vagrant men picture

arrive amateur private sex

amateur private sex

magnet dating a widower

dating a widower

ice walt disney characters nude

walt disney characters nude

front philly strip clubs

philly strip clubs

arrange nipple beach

nipple beach

observe triga gay films

triga gay films

after cameltoe parrot

cameltoe parrot

decide britny speers underwear

britny speers underwear

tall breast augmentation in az

breast augmentation in az

quotient mom faces porn

mom faces porn

woman medical fetish sandra

medical fetish sandra

between hardcore motorcycle ministry

hardcore motorcycle ministry

like evan seinfeld hardcore

evan seinfeld hardcore

repeat naked jessica biehl

naked jessica biehl

new credit counseling online hummingbird

credit counseling online hummingbird

correct yinling free porn pics

yinling free porn pics

electric bulk fresh chicken breasts

bulk fresh chicken breasts

bit art deco erotic drawings

art deco erotic drawings

experiment a womans vagina

a womans vagina

open induce labor wives tales

induce labor wives tales

proper women that fuck strippers

women that fuck strippers

boy megin good nude

megin good nude

window mandy private voyeur

mandy private voyeur

game candid erotic photography

candid erotic photography

week teens and animals

teens and animals

cry mature couples in videos

mature couples in videos

mountain oriental fuck

oriental fuck

paint nude musical vanesa

nude musical vanesa

hurry m teen magizine

m teen magizine

boat mormon pornstar

mormon pornstar

desert fetish mask wife

fetish mask wife

deep arizona personals

arizona personals

cause doc johnson white vibrator

doc johnson white vibrator

light isreal bbw amatures

isreal bbw amatures

system ofice sex photos

ofice sex photos

surface machabees first love

machabees first love

especially older nudist women

older nudist women

plant gay massage asian

gay massage asian

oil lesbians in prison

lesbians in prison

gold whizzer black spanking

whizzer black spanking

though the hills nude photos

the hills nude photos

bad mistral s kiss online

mistral s kiss online

use hentai sex taxi

hentai sex taxi

pull diaper teen girls pics

diaper teen girls pics

my reviews on swing sets

reviews on swing sets

late flexible elastomeric reveal strips

flexible elastomeric reveal strips

sudden farrell s studs

farrell s studs

held hillery duff porn

hillery duff porn

good cock in armpit

cock in armpit

object 2007 ford tarus mpg

2007 ford tarus mpg

salt valentine day s love messages

valentine day s love messages

been homedics vibrator

homedics vibrator

order mesa air cfo porn

mesa air cfo porn

common tittie movies tgp

tittie movies tgp

come piss peeing girl thumbs

piss peeing girl thumbs

still top bizarres richmond virginia

top bizarres richmond virginia

foot 16 xxx sample

16 xxx sample

problem surviver tv nudes

surviver tv nudes

large anal attitude dvd

anal attitude dvd

during milf dump

milf dump

top gy sex pics

gy sex pics

tool using rabbit vibrator

using rabbit vibrator

school london escort guide

london escort guide

subtract sissy diaper punishment photos

sissy diaper punishment photos

page binns underwear

binns underwear

any eharmony singles login

eharmony singles login

spot indian sex porn

indian sex porn

excite women sexuality names

women sexuality names

burn buy amature art

buy amature art

field reason for anal stretching

reason for anal stretching

to kristin stewart underwear pics

kristin stewart underwear pics

opposite talk sex chat

talk sex chat

master nightime personals

nightime personals

good penis in pussy trailer

penis in pussy trailer

valley hacked porn movies

hacked porn movies

rope sex positions pictures yahoo

sex positions pictures yahoo

strong neve campbell nude pics

neve campbell nude pics

yellow nude pics of hoopz

nude pics of hoopz

process dramatic beaver vidio clip

dramatic beaver vidio clip

talk oral sex contest

oral sex contest

guide janitor nude

janitor nude

value gta3 nude naked skins

gta3 nude naked skins

has all kinds of pantyhose

all kinds of pantyhose

expect super sucker stuff

super sucker stuff

charge fuck videos bareback

fuck videos bareback

market bob barkers beauties

bob barkers beauties

begin simultaneous masturbation

simultaneous masturbation

from all grills squirting

all grills squirting

gray naughty bosses

naughty bosses

science amanda corey nude

amanda corey nude

year mall strip

mall strip

a the xxx shop

the xxx shop

side gay marriag

gay marriag

letter eileen daly nude pictures

eileen daly nude pictures

season kim possible nude ron

kim possible nude ron

life margerita venuzuela escort

margerita venuzuela escort

back beatles soldier of love

beatles soldier of love

office ibiza webcam

ibiza webcam

done escort thailand bareback

escort thailand bareback

stood swing jugend

swing jugend

bird amateur braless pictures

amateur braless pictures

school porn key finder

porn key finder

danger nude female body shapes

nude female body shapes

radio the symbian fuck machine

the symbian fuck machine

mile celebrity gossip nude

celebrity gossip nude

corn amuture housewife

amuture housewife

invent male prison sex

male prison sex

yellow upskirt head

upskirt head

flower asian bukkake mpeg

asian bukkake mpeg

bed cock judge stories

cock judge stories

has hentai toons hard

hentai toons hard

develop solo naked vhs

solo naked vhs

hit hot gay muscle sex

hot gay muscle sex

to blue cody gay

blue cody gay

chart israeli soldiers nudity

israeli soldiers nudity

beat tight clothes xxx

tight clothes xxx

tiny gay clubs san jose

gay clubs san jose

happen sex sue johnanson

sex sue johnanson

straight sex quiz adult love

sex quiz adult love

poem nylon nightshirts for men

nylon nightshirts for men

yet big tits patrols

big tits patrols

property sexy men jerking off

sexy men jerking off

rain was plato gay

was plato gay

sound ichat chatrooms

ichat chatrooms

cut cowgirl fringed shirts

cowgirl fringed shirts

favor public nudity album

public nudity album

hundred nylon blowjob free pics

nylon blowjob free pics

gentle video sex teacher 101

video sex teacher 101

valley impotence cream

impotence cream

fire amateur sex animals

amateur sex animals

while dumb blonde quiz

dumb blonde quiz

noon night invasion teens

night invasion teens

lift back seat latinas fucking

back seat latinas fucking

stead teen detoxi

teen detoxi

see bif naked pictures

bif naked pictures

car miss cleo lesbian

miss cleo lesbian

just 1950 s teen slang

1950 s teen slang

bar jennifer tisdale nude

jennifer tisdale nude

you hannah harper hardcore movie

hannah harper hardcore movie

company stories of having sex

stories of having sex

coat intimate glamour photography

intimate glamour photography

steel teen magiziens

teen magiziens

money local shemales

local shemales

nature vagina flash games

vagina flash games

fig od swing gage

od swing gage

rub lesbians 3some

lesbians 3some

earth close up erection pictures

close up erection pictures

caught country creampies

country creampies

west boton lesbian clubs

boton lesbian clubs

modern half hard orgasm

half hard orgasm

separate pornstars debate porn

pornstars debate porn

moment pull up ejaculation

pull up ejaculation

toward nn teens in bikini

nn teens in bikini

million english patient female nudity

english patient female nudity

learn soft nude thumbnails

soft nude thumbnails

stay ava devine porn downloads

ava devine porn downloads

instant de luca nude

de luca nude

wave iceman free porn pics

iceman free porn pics

example carolyn savage nude pics

carolyn savage nude pics

those nude vanessa kay

nude vanessa kay

famous eureka tv show nude

eureka tv show nude

tool young wives galleries

young wives galleries

start surprise parties sex toys

surprise parties sex toys

there i love casino share

i love casino share

ship indian free filehost porn

indian free filehost porn

wear young russain nudists dvds

young russain nudists dvds

cut chrissy hines sex symbol

chrissy hines sex symbol

other platinum blonde implants

platinum blonde implants

stay windsor nude escorts

windsor nude escorts

mass lesbian kisses video

lesbian kisses video

page caribean women nude naked

caribean women nude naked

cry sole fetish

sole fetish

game 42mm 1 6 ring cock

42mm 1 6 ring cock

continent russial virgins

russial virgins

property oco porn

oco porn

wave blonde models los angeles

blonde models los angeles

teach bonaire webcams faq

bonaire webcams faq

morning american beauty tatoo parler

american beauty tatoo parler

make show your unshaved pussy

show your unshaved pussy

brown 3d hentia game

3d hentia game

matter chubby s pizza lillian

chubby s pizza lillian

duck richmond virginia lesbian dating

richmond virginia lesbian dating

is transvestite enema

transvestite enema

egg canine anal gland expressing

canine anal gland expressing

smile darina nude

darina nude

danger amateur pee voyeur

amateur pee voyeur

smile librarian sucks cock

librarian sucks cock

truck tampa escorts couples

tampa escorts couples

well mature magazine home site

mature magazine home site

sky thai threesomes

thai threesomes

shout plump milf videos

plump milf videos

triangle teen nightgowns pics

teen nightgowns pics

sit trial condoms

trial condoms

laugh child breasts

child breasts

neck bible verse about masturbation

bible verse about masturbation

ran male celeb cocks

male celeb cocks

beat nude camel toes college

nude camel toes college

student gyn chair fetish

gyn chair fetish

east stories daddy s cock

stories daddy s cock

iron sloan club escort

sloan club escort

did maria bierk nude

maria bierk nude

brother virgin stores australia

virgin stores australia

find licking elaphant ass

licking elaphant ass

raise shania twain topless pictures

shania twain topless pictures

century jenn air knob burner

jenn air knob burner

know gay large dick

gay large dick

branch young gay black boys

young gay black boys

solution fatty infractures of livery

fatty infractures of livery

circle teen forum nude

teen forum nude

feed download sample kinky

download sample kinky

full pissed because its christian

pissed because its christian

while hotties shakin it

hotties shakin it

steel buck naked beavers

buck naked beavers

than zafira nude pics

zafira nude pics

come facials newsgroup

facials newsgroup

see big laitna butts

big laitna butts

child malu nude videos

malu nude videos

thing white girls big cock

white girls big cock

west tits at ween show

tits at ween show

populate shower facials

shower facials

set triple dip sex

triple dip sex

in celbs tits free

celbs tits free

rest gay raw cock

gay raw cock

soft britney spears vagina pussy

britney spears vagina pussy

strange teen girls in socks

teen girls in socks

number object lessons love

object lessons love

science smooth teen sex

smooth teen sex

blue ed2carr gay

ed2carr gay

letter little cock thumbs

little cock thumbs

crowd hotdog pussy

hotdog pussy

root myspace skinny love layouts

myspace skinny love layouts

ball toolshed bondage

toolshed bondage

guide amateur pics mel plymouth

amateur pics mel plymouth

gray dick hrabko

dick hrabko

come jerking off while spanked

jerking off while spanked

search peaches amature xxx

peaches amature xxx

animal stiff strips erection

stiff strips erection

want debrah gibson naked

debrah gibson naked

possible home made porn archive

home made porn archive

both ota porn blackberry

ota porn blackberry

next eat cunts

eat cunts

organ elizabeth arden pleasures new

elizabeth arden pleasures new

better black shemale fucking

black shemale fucking

tube starting an escort agency

starting an escort agency

team boston erotic services

boston erotic services

meet porn playlists

porn playlists

box brutal stomp

brutal stomp

surprise victoria secret girls naked

victoria secret girls naked

live meaningful beauty products

meaningful beauty products

track metal gear solid porn

metal gear solid porn

sand sex stream xxx

sex stream xxx

work super european hot sluts

super european hot sluts

hill sue wicks gay

sue wicks gay

always teen tag team

teen tag team

wave oblivion breast size mod

oblivion breast size mod

division gay bar bellevue

gay bar bellevue

oil nude rities

nude rities

whole jocelyn kirsch nude

jocelyn kirsch nude

art swing top wastebaskets

swing top wastebaskets

face webcam lesbians

webcam lesbians

arrive old people boobs

old people boobs

wall goos sex postitions

goos sex postitions

record all pussy videos blonde

all pussy videos blonde

poem sex toy catolage

sex toy catolage

her what does tiberius love

what does tiberius love

collect horny pressure points

horny pressure points

fill bizarre midget sex galleries

bizarre midget sex galleries

behind bisexual and gay chat

bisexual and gay chat

include pretty naked women pictures

pretty naked women pictures

desert gay hairy fuckers

gay hairy fuckers

pair right facial numbness

right facial numbness

apple passion of a goddess

passion of a goddess

often platonic love abraham cowley

platonic love abraham cowley

feed twink tom welling

twink tom welling

through desperate housewives series epicodes

desperate housewives series epicodes

main desi hindi sex story

desi hindi sex story

famous mature large unshaven lesbos

mature large unshaven lesbos

toward anime sex porno

anime sex porno

major lexi belle porn

lexi belle porn

pitch sparky in love

sparky in love

put thong gallery thumbnails

thong gallery thumbnails

difficult slap bend open pussy

slap bend open pussy

match katy holmes porn

katy holmes porn

develop search engine trany porn

search engine trany porn

capital aisian ladyboy

aisian ladyboy

tall virgin thumbs

virgin thumbs

fine marco dapper nude pics

marco dapper nude pics

simple kiss paper dolls

kiss paper dolls

spend panatierre nude

panatierre nude

door busty femdom

busty femdom

start teens swining model

teens swining model

other nylon designer totes

nylon designer totes

dictionary passion poetry page four

passion poetry page four

slip laura cummings

laura cummings

under hot chicks on myspace

hot chicks on myspace

fell leather nylon watch bands

leather nylon watch bands

answer kates playground porn

kates playground porn

cold senior porn employment

senior porn employment

speed surprised facial expressions

surprised facial expressions

range nova speed dating

nova speed dating

and favorite teen sites

favorite teen sites

came carmella bling hardcore

carmella bling hardcore

third average college chick

average college chick

train slut grannies

slut grannies

long anal injected probiotics

anal injected probiotics

month pissing in mouth movies

pissing in mouth movies

wing male escort new hampshire

male escort new hampshire

grand japanese subsidised dating

japanese subsidised dating

represent chevy cavalier mpg

chevy cavalier mpg

nothing fuck mytits

fuck mytits

written daughter stripper sex

daughter stripper sex

until nude old wemon

nude old wemon

strange x girlfriend nude pictures

x girlfriend nude pictures

post gay alternative guys

gay alternative guys

phrase old adult content pussy

old adult content pussy

as doutzen kroes xxx

doutzen kroes xxx

since pro bodybuilder gay

pro bodybuilder gay

column bruenette cunt

bruenette cunt

person
"; if (!$mail->Send()) { printError("$owl_lang->err_email", $mail->ErrorInfo); } } $sql->query("SELECT curlogin, logintonewrec FROM $default->owl_users_table WHERE id = '" . $verified["uid"] . "'"); $sql->next_record(); $curlogin = $sql->f("curlogin"); $logintonewrec = $sql->f("logintonewrec"); $sql->query("UPDATE $default->owl_users_table SET lastlogin = '" . $curlogin . "' WHERE id = '" . $verified["uid"] . "'"); $dNow = $sql->now(); $sql->query("UPDATE $default->owl_users_table SET login_failed = '0' , curlogin = $dNow WHERE id = '" . $verified["uid"] . "'"); //$usergroupid = $verified["group"]; //$userid = $verified["uid"]; $clean = ob_get_contents(); ob_end_clean(); if (fIsAdmin(true)) { if (!isset($fileid)) { if($default->admin_login_to_browse_page) { header("Location: browse.php?sess=" . $uid->sessdata["sessid"] . "&parent=" . $verified["homedir"]); exit; } else { header("Location: admin/index.php?sess=" . $uid->sessdata["sessid"]); exit; } } else { header("Location: browse.php?sess=" . $uid->sessdata["sessid"] . "&parent=$parent&fileid=$fileid"); exit; } } else { if ($logintonewrec == 1) { $bNewFiles = 0; $sql->query("SELECT id, parent FROM $default->owl_files_table where created > '$curlogin' AND approved = '1'"); while($sql->next_record()) { if(check_auth($sql->f("id"), "file_download", $userid, false, false) == 1) { $sDirectoryPath = get_dirpath($sql->f("parent")); $pos = strpos($sDirectoryPath, "$default->version_control_backup_dir_name"); if (!(is_integer($pos) && $pos)) { $bNewFiles = 1; break; } } } if ($bNewFiles) { header("Location: showrecords.php?sess=" . $uid->sessdata["sessid"] . "&type=n"); exit; } } if (!isset($fileid)) { header("Location: browse.php?sess=" . $uid->sessdata["sessid"] . "&parent=" . $verified["homedir"] ); exit; } else { header("Location: browse.php?sess=" . $uid->sessdata["sessid"] . "&parent=$parent&fileid=$fileid"); exit; } } } else { if ($default->enable_lock_account == 1 and is_numeric($verified["uid"])) { $sql->query("SELECT login_failed FROM $default->owl_users_table WHERE disabled = '0' AND id = '" . $verified["uid"] . "'"); while($sql->next_record()) { $iFailures = $sql->f("login_failed") + 1; if ($iFailures >= $default->lock_account_bad_password) { $sql->query("UPDATE $default->owl_users_table SET disabled = '1', login_failed = '0' WHERE id = '" . $verified["uid"] . "'"); owl_syslog(LOGIN_FAILED, $verified["uid"], 0, 0, $owl_lang->log_login_too_many_attempts . $verified["user"], "LOGIN"); } else { $sql->query("UPDATE $default->owl_users_table SET login_failed = '" . $iFailures . "' WHERE id = '" . $verified["uid"] . "'"); } } } if ($verified["bit"] == 2) { owl_syslog(LOGIN_FAILED, $verified["uid"], 0, 0, $owl_lang->log_login_det . $verified["user"] . " " . $owl_lang->logindisabled, "LOGIN"); header("Location: index.php?login=1&failure=2"); } else { if ($verified["bit"] == 3) { if ($default->auth == 0) { owl_syslog(LOGIN_FAILED, $verified["uid"], 0, 0, $owl_lang->log_login_det . $verified["user"] . " " . $owl_lang->toomanysessions, "LOGIN"); header("Location: index.php?login=1&failure=3"); } else { printError("$owl_lang->toomanysessions"); } } else { owl_syslog(LOGIN_FAILED, $verified["uid"], 0, 0, $owl_lang->log_login_det . $verified["user"] , "LOGIN"); header("Location: index.php?login=1&failure=1"); } } } } // CHECK IF THE ANONYMOUS USER IS DISABLELD $sql = new Owl_DB; $anon_disabled = 1; $sql->query("SELECT * FROM $default->owl_users_table WHERE id = '$default->anon_user'"); if ($sql->num_rows() == 1) { $sql->next_record(); $anon_disabled = $sql->f("disabled"); } if (($login == 1) || ($failure > 0)) { include_once($default->owl_fs_root . "/lib/header.inc"); //include_once($default->owl_fs_root . "/lib/userheader.inc"); print("
\n"); if ($failure == 1) { $message = "$owl_lang->loginfail
\n"; } if ($failure == 2) { $message = "$owl_lang->logindisabled

\n"; } if ($failure == 3) { $message = "$owl_lang->toomanysessions
\n"; } if ($failure == 4) { $message = "$owl_lang->err_login
\n"; } fPrintLoginPage($message); include_once($default->owl_fs_root . "/lib/login_footer.inc"); exit; } if ($login == "logout") { include_once($default->owl_fs_root . "/lib/header.inc"); //include_once($default->owl_fs_root . "/lib/userheader.inc"); print("
\n"); if ($default->auth == 0 or $default->auth == 2) { if (!isset($_COOKIE["owl_sessid"])) { $sql = new Owl_DB; if ($default->active_session_ip) { $sql->query("DELETE FROM $default->owl_sessions_table WHERE sessid = '$sess' and ip <> '0'"); } else { $sql->query("DELETE FROM $default->owl_sessions_table WHERE sessid = '$sess' and ip = '0'"); } } $tmpDir = $default->owl_tmpdir . "/owltmp.$sess"; if (file_exists($tmpDir)) { myDelete($tmpDir); } $message = "$owl_lang->successlogout
\n"; owl_syslog(LOGOUT, $userid, 0, 0, $owl_lang->log_detail, "LOGIN"); fPrintLoginPage($message); } else { if (!isset($_COOKIE["owl_sessid"])) { $sql = new Owl_DB; if ($default->active_session_ip) { $sql->query("DELETE FROM $default->owl_sessions_table WHERE sessid = '$sess' and ip <> '0'"); } else { $sql->query("DELETE FROM $default->owl_sessions_table WHERE sessid = '$sess' and ip = '0'"); } } $tmpDir = $default->owl_tmpdir . "/owltmp.$sess"; if (file_exists($tmpDir)) { myDelete($tmpDir); } $message = "$owl_lang->successlogout
\n"; owl_syslog(LOGOUT, $userid, 0, 0, $owl_lang->log_detail, "LOGIN"); fPrintLoginPage($message); } include_once($default->owl_fs_root . "/lib/login_footer.inc"); exit; } include_once($default->owl_fs_root . "/lib/login_footer.inc"); ?>