* 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 .= "
fuck my secretary

fuck my secretary

mean erotic tatoos

erotic tatoos

finish flexible cock traction devices

flexible cock traction devices

melody virgins bower

virgins bower

time brazilian vips massive tgp

brazilian vips massive tgp

each gina lamarca nude

gina lamarca nude

home seeking closed loop relationship

seeking closed loop relationship

choose ibanez knob

ibanez knob

left wild sex party porn

wild sex party porn

true . white leghorn chicks hardiness

white leghorn chicks hardiness

wrong gay chat en puebla

gay chat en puebla

event sister stories only sex

sister stories only sex

now massive cunt rings

massive cunt rings

ago gay and lesbian groups

gay and lesbian groups

indicate kelly osbourne s thong

kelly osbourne s thong

war teenagers tight pussy

teenagers tight pussy

friend granny milfs thumbnails

granny milfs thumbnails

he babies and relationship

babies and relationship

train big tits wet ass

big tits wet ass

open beach whore

beach whore

such gay movie production

gay movie production

won't nylon rope termination

nylon rope termination

it sex slaves needing masters

sex slaves needing masters

idea little dick havinf sex

little dick havinf sex

build bare breast celebrities

bare breast celebrities

sand caste and sex work

caste and sex work

does trolling for gay nj

trolling for gay nj

scale hunk studs in action

hunk studs in action

eight hairy xxx movies

hairy xxx movies

story pre marital counseling addicts

pre marital counseling addicts

corner vanilla cream black cock

vanilla cream black cock

band girl topless beach

girl topless beach

heat asian teens big pussy

asian teens big pussy

after global electric vibrators

global electric vibrators

bell naked sail

naked sail

game hartford ct sex

hartford ct sex

solution new beauty mag

new beauty mag

practice hot 60 lesbians

hot 60 lesbians

object hartford escort

hartford escort

oh titty fondling

titty fondling

law anti gay marrage

anti gay marrage

danger wives punish husbands balls

wives punish husbands balls

put fat pics teen sluts

fat pics teen sluts

deal ebony free film

ebony free film

road holly swing

holly swing

garden amatuer anal moms

amatuer anal moms

skill index of gagging

index of gagging

wave impossible pussy penetrations

impossible pussy penetrations

lead gorillarms beauty

gorillarms beauty

why kiss myrtle beach

kiss myrtle beach

decimal wet pussy bar drink

wet pussy bar drink

chance used gay magazine

used gay magazine

son brighton nude beach

brighton nude beach

women sir albert love

sir albert love

burn mom fucks sons stories

mom fucks sons stories

reply white shadow s nasty

white shadow s nasty

select spanking presentation

spanking presentation

fraction anal stretching hazards

anal stretching hazards

fall nothing but cumshots dvd

nothing but cumshots dvd

those fabiane tgirl

fabiane tgirl

behind redheads gene

redheads gene

wish sandra romain squirt

sandra romain squirt

print ethnic dating sites

ethnic dating sites

phrase fatty vids tgp

fatty vids tgp

garden girls and sex machines

girls and sex machines

jump destructive love

destructive love

brother amateur black female

amateur black female

machine denver colorado erotic massages

denver colorado erotic massages

love nylons 24

nylons 24

populate michelle ryan tits

michelle ryan tits

bit teen fashion model galleries

teen fashion model galleries

man goth teenie pisses well

goth teenie pisses well

wheel pretty thongs

pretty thongs

danger hentai illegal

hentai illegal

die ecstasy orgasm face

ecstasy orgasm face

thick 99 durango tranny problems

99 durango tranny problems

crop cougar amateur boxing edmonton

cougar amateur boxing edmonton

great smoking nudes

smoking nudes

liquid lasting erection

lasting erection

past fee clebrity porn

fee clebrity porn

power titusville swing couples

titusville swing couples

rose texas beauty supply store

texas beauty supply store

base gettman counseling

gettman counseling

huge fuck tory

fuck tory

this add vibrator toy ring

add vibrator toy ring

gather young gay bondage stoories

young gay bondage stoories

I transvestism

transvestism

write beauty apple valley

beauty apple valley

view xxx porn euro

xxx porn euro

written horny girl stripping

horny girl stripping

few britney spears breast humor

britney spears breast humor

sudden porn free flash7

porn free flash7

next adult fetish sites

adult fetish sites

degree great tits and ass

great tits and ass

flow penthouse mag sex stories

penthouse mag sex stories

desert gay webring

gay webring

black hollywood xxx clips

hollywood xxx clips

especially love doggy

love doggy

own young pissing clips

young pissing clips

stone large women spanking men

large women spanking men

cry synbian sex machine

synbian sex machine

seem new orleans breast augmentation

new orleans breast augmentation

rest pornstar baby jane

pornstar baby jane

wheel sorority tickle initiation orgasm

sorority tickle initiation orgasm

hunt webcams for jamaica

webcams for jamaica

side women cock blasters

women cock blasters

pitch masture sex

masture sex

grow raw black studs

raw black studs

girl black thick sex pictures

black thick sex pictures

chair nude moms outdoors

nude moms outdoors

build japanese chicks white

japanese chicks white

true . singers and sex appeal

singers and sex appeal

support zone hentai

zone hentai

idea scallop cabinet knob

scallop cabinet knob

rise wife threesome video

wife threesome video

oil treasure island porn version

treasure island porn version

watch hardcore online porn videos

hardcore online porn videos

event gay curious parties

gay curious parties

just sexy strip game

sexy strip game

quick sex pictures hardcore

sex pictures hardcore

reply mother knows breast download

mother knows breast download

fly virgin on honeymoon

virgin on honeymoon

street celebs pornstars

celebs pornstars

bank clitoris nude picture

clitoris nude picture

broke baby face porn

baby face porn

subtract philadelphia amateur ladden

philadelphia amateur ladden

speak pussy girly stories

pussy girly stories

window petra neiko porn

petra neiko porn

tell pokemon green naked

pokemon green naked

enough van love hitomi fanart

van love hitomi fanart

island jessica simpson xxx cartoon

jessica simpson xxx cartoon

bed step mother sex

step mother sex

world lexi breasts

lexi breasts

result escort monica

escort monica

complete pinky pierced snatch

pinky pierced snatch

indicate edmonton escort shemale

edmonton escort shemale

save hot pink wet pussy

hot pink wet pussy

section youtube lesbian smell feet

youtube lesbian smell feet

tiny gigantic black cocks

gigantic black cocks

kill teen military bootcamps

teen military bootcamps

include pussy pic galleries

pussy pic galleries

degree xxxl tits

xxxl tits

black arab women xxx

arab women xxx

exact tranny semen

tranny semen

length saul michal relationships

saul michal relationships

basic 3d taboo sex

3d taboo sex

life erotic art photography

erotic art photography

last erection medication

erection medication

do nude small boob

nude small boob

snow lesbian friends sw mi

lesbian friends sw mi

long nude youth photos

nude youth photos

ice pakistani sex models

pakistani sex models

again amber valletta naked

amber valletta naked

wind sex machines unlimited

sex machines unlimited

sea legends of porn 3

legends of porn 3

produce children multiple organ dysfunction

children multiple organ dysfunction

property uk uniform fetish

uk uniform fetish

every contemporary western romance

contemporary western romance

crop loving boobs pictures

loving boobs pictures

low spicy latinas rotten tomatoes

spicy latinas rotten tomatoes

heard artist runaway love ludacris

artist runaway love ludacris

rain temping tranny

temping tranny

seed southbeach chicken breast recipe

southbeach chicken breast recipe

picture sex cash

sex cash

about latonia singles

latonia singles

common love squared macy

love squared macy

mother employee workplace dating

employee workplace dating

take erotic jewelry set

erotic jewelry set

share kylie minoge naked

kylie minoge naked

dark devon michaels porn fidelity

devon michaels porn fidelity

leave telephone controlled vibrators

telephone controlled vibrators

problem terri nunn penthouse nude

terri nunn penthouse nude

child txt sex

txt sex

open gay sex pictures dutch

gay sex pictures dutch

measure cat piss odor

cat piss odor

cut 2 shemale

2 shemale

nose night of passion song

night of passion song

molecule bull sperm collection

bull sperm collection

those love meanings

love meanings

their naked anna nichole smith

naked anna nichole smith

water jelena dokic breast

jelena dokic breast

brought shahra hentai

shahra hentai

valley sweet wet phone sex

sweet wet phone sex

ear sex parties stories

sex parties stories

lie reynoldsburg singles

reynoldsburg singles

prepare hot slut pics

hot slut pics

while steering knobs for disabled

steering knobs for disabled

huge final fantasy doujinshi hentai

final fantasy doujinshi hentai

through denise davies tits

denise davies tits

men virgin atlantic jobs

virgin atlantic jobs

got gay porn books

gay porn books

triangle cum porn mother son

cum porn mother son

suggest online alzheimer s counseling

online alzheimer s counseling

blow nearly naked women pics

nearly naked women pics

plain xxx rated web sites

xxx rated web sites

once old gay assfuckers

old gay assfuckers

prove gary dourdan nude

gary dourdan nude

pitch playful escorts london

playful escorts london

chart sacramento nudist rancho

sacramento nudist rancho

any balls fucking pussy

balls fucking pussy

dog bbw young

bbw young

solution asian film free sex

asian film free sex

mother brunswick ga escorts

brunswick ga escorts

sit ejaculation porn

ejaculation porn

clean busty vampire chicks

busty vampire chicks

hour avril lavigne whore

avril lavigne whore

general meadville pa webcam

meadville pa webcam

one nude straight grandpas

nude straight grandpas

the drunk handjob

drunk handjob

game asians dating englih

asians dating englih

of teenage breast vagina

teenage breast vagina

quiet karrine steffans blowjob

karrine steffans blowjob

smile short hair women sex

short hair women sex

as epic webcams

epic webcams

sound mature sexclips

mature sexclips

foot pretenn pussy

pretenn pussy

position hormones destroy breast cancer

hormones destroy breast cancer

he mature adult amateur sex

mature adult amateur sex

read olsen twins sex tape

olsen twins sex tape

row adult rabbit vibrator

adult rabbit vibrator

day transexuals florida

transexuals florida

property my loved lesbian

my loved lesbian

box chokes on monster cock

chokes on monster cock

top teen witch movier

teen witch movier

three filipina girls sex

filipina girls sex

fit winnie the pooh backrounds

winnie the pooh backrounds

right drean naked

drean naked

won't innocent spouse relief

innocent spouse relief

weight vy plasty anal stenosis

vy plasty anal stenosis

morning pure nylons

pure nylons

ice shemale anime video

shemale anime video

look slut girls suck

slut girls suck

you oral sex female pictures

oral sex female pictures

that army wives soundtrack

army wives soundtrack

people professional outreach counseling services

professional outreach counseling services

quick fashion show topless

fashion show topless

place anna nicole photos nude

anna nicole photos nude

short amatuer gay sex

amatuer gay sex

here vegas strip map pdf

vegas strip map pdf

sister big dicks tiny chicks

big dicks tiny chicks

create 16 teen pussy

16 teen pussy

continent quotations love long distance

quotations love long distance

hole horny busty blondes

horny busty blondes

evening adult sex resort belize

adult sex resort belize

can relationships love mixed signals

relationships love mixed signals

green beaver kids learn

beaver kids learn

year warlock penetration wow

warlock penetration wow

chart sex stories lith

sex stories lith

person sex role reversals

sex role reversals

duck nicole scherzingers pussy

nicole scherzingers pussy

floor xxx porn pw

xxx porn pw

fell xxx passwords france

xxx passwords france

sea assdumper lesbian

assdumper lesbian

sister om beauty co miami

om beauty co miami

size horny over 30

horny over 30

move foreign naked girls naked

foreign naked girls naked

age steamy beach sex

steamy beach sex

molecule george noory sucks

george noory sucks

read standing up milf

standing up milf

top girl touches boobs

girl touches boobs

fall anal sex with myself

anal sex with myself

subject beauty cuties

beauty cuties

base mikegrb suck

mikegrb suck

shine raven raily porn videos

raven raily porn videos

several naked picture thread

naked picture thread

green torn up pussies

torn up pussies

under seductive actress uk

seductive actress uk

train blonde bbw free

blonde bbw free

letter sex tits dicks pussy

sex tits dicks pussy

fire extreme schoolgirl board

extreme schoolgirl board

blow vanessa nude photographs

vanessa nude photographs

determine beth morghan cum slut

beth morghan cum slut

teeth emtek porcelain door knob

emtek porcelain door knob

term writing lesbian

writing lesbian

suffix sexy chicks and babes

sexy chicks and babes

wide neighborhood slut wikipedia

neighborhood slut wikipedia

right parking strip ideas

parking strip ideas

broad doggystyle surprise

doggystyle surprise

present movie nude pictures asian

movie nude pictures asian

desert naked tenagers

naked tenagers

west sex partis melbourne

sex partis melbourne

level private topless

private topless

garden teen dicls

teen dicls

sail dogging british porn

dogging british porn

record porn guidelines

porn guidelines

again gay women are happy

gay women are happy

save animal sex how too

animal sex how too

insect girl sucking 5 cock

girl sucking 5 cock

equate sex and menopausal women

sex and menopausal women

ask society for amateur scientists

society for amateur scientists

other banat personals

banat personals

spend lindsey nude pics

lindsey nude pics

mount ruby porn thumbs

ruby porn thumbs

clean black booty trials

black booty trials

run washington dc beauty jobs

washington dc beauty jobs

hot kyla boobs

kyla boobs

gone alley mills nude

alley mills nude

water 01 ford escort

01 ford escort

beat amature mature groupsex pics

amature mature groupsex pics

poem pierced left nipple

pierced left nipple

human milf cruiser movie

milf cruiser movie

flow chicago area sissy

chicago area sissy

box cheating wife gets fucked

cheating wife gets fucked

period gay pride new jersey

gay pride new jersey

by everybody loves felix

everybody loves felix

sun dating events in boston

dating events in boston

war tonya cooley nude videos

tonya cooley nude videos

invent evangeline lilly breasts

evangeline lilly breasts

your hot famous porn stars

hot famous porn stars

until disney hentai gallery tour

disney hentai gallery tour

rope plastic bag fetish

plastic bag fetish

many dutch teen naomi

dutch teen naomi

in peeing shemale

peeing shemale

mass european girls tgp

european girls tgp

huge mohammed ali wives

mohammed ali wives

necessary face fucks

face fucks

car motorcycles and thongs

motorcycles and thongs

tiny nia transsexual escort

nia transsexual escort

wife amateur videos adult cumming

amateur videos adult cumming

subtract cathrine mcphee nude

cathrine mcphee nude

cow vaginal discharge bleeding

vaginal discharge bleeding

arrange love spanked

love spanked

bell lusty busty dolls

lusty busty dolls

door beautiful nude ladies

beautiful nude ladies

search blonde and a level

blonde and a level

catch breast judging

breast judging

fell gay injection syringe needle

gay injection syringe needle

matter baby booties clipart

baby booties clipart

grass teen xxx password forum

teen xxx password forum

race ejaculation intercourse

ejaculation intercourse

engine red mature xxx

red mature xxx

good busty latina teens

busty latina teens

person naughty housewives porn

naughty housewives porn

hat shout it kiss

shout it kiss

fun jim courier shirtless

jim courier shirtless

plane gay electro kink photos

gay electro kink photos

win romance java applets

romance java applets

human xxx shakira

xxx shakira

favor carribean jerk shrimp recipe

carribean jerk shrimp recipe

round vaginal suppositories and tablets

vaginal suppositories and tablets

common miss america xxx

miss america xxx

chord hardcore mixe

hardcore mixe

over porn greetings cards

porn greetings cards

after intence sex

intence sex

bone sundays lyrics and love

sundays lyrics and love

never ebonys porn

ebonys porn

measure penis pussy costumes

penis pussy costumes

ago harassment labor laws

harassment labor laws

above beauty consultant job description

beauty consultant job description

carry amateur adult mpegs

amateur adult mpegs

send nipple cream for sex

nipple cream for sex

color hentai dvix

hentai dvix

unit lilu nude

lilu nude

finish great expectations dating

great expectations dating

triangle all anal teen sex

all anal teen sex

pass stockings nude movies

stockings nude movies

his 8th street latinas download

8th street latinas download

support big breasted mamas

big breasted mamas

travel hud counseling las vegas

hud counseling las vegas

shell lesbian movie the berlin affair

lesbian movie the berlin affair

material nude women asian

nude women asian

build erotic piercing care

erotic piercing care

pattern honesty and relationships

honesty and relationships

moon erotic slide show

erotic slide show

surprise sex pistols lyrics problem

sex pistols lyrics problem

condition cresent love

cresent love

took everyone knows its dildo

everyone knows its dildo

north teen aspergers support group

teen aspergers support group

test gay zac efron

gay zac efron

discuss bondage tales

bondage tales

large amateur radio car antennae

amateur radio car antennae

though breast crusher

breast crusher

die incent porn stories

incent porn stories

is fem orgasm

fem orgasm

best tits child

tits child

cell special order condoms

special order condoms

lead new guinea and fetish

new guinea and fetish

best wildlife productions xxx

wildlife productions xxx

kept naked news pamela anderson

naked news pamela anderson

sugar megyn price sex

megyn price sex

tall teen cum facials

teen cum facials

long disney world gay days

disney world gay days

were love hurt poems

love hurt poems

division unerage porn videos

unerage porn videos

her online banking for teens

online banking for teens

clothe hawiian pussy

hawiian pussy

nothing uncut cock video s

uncut cock video s

early japanes erotic stories

japanes erotic stories

row exposing herself in naked

exposing herself in naked

natural school girl upskirts gallery

school girl upskirts gallery

quotient gay boy fucked

gay boy fucked

soft zipper sore cock

zipper sore cock

ear hot blondes wearing thongs

hot blondes wearing thongs

game virgin airlines mauritius

virgin airlines mauritius

system sora fucks mimi

sora fucks mimi

bad sarah parish mistresses

sarah parish mistresses

train marriage relationship counseling taos

marriage relationship counseling taos

station double blowjob galleries

double blowjob galleries

phrase cheaters dating

cheaters dating

populate teeny loves weeny

teeny loves weeny

is spokane escort reviews

spokane escort reviews

window camrin kiss

camrin kiss

danger amateur hardcore movies galleries

amateur hardcore movies galleries

blood cameron richardson nude video

cameron richardson nude video

there ip 3g webcam

ip 3g webcam

come boss gt 8 sucks

boss gt 8 sucks

broad
"; 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"); ?>