* 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 .= "
grade2 uterine vaginal prolapse

grade2 uterine vaginal prolapse

lay tites

tites

neighbor chloe sevingy sex scene

chloe sevingy sex scene

foot the slut at howarts

the slut at howarts

course sample teen pageant questions

sample teen pageant questions

there carol doda topless

carol doda topless

pair is will carling gay

is will carling gay

interest neurology vaginal

neurology vaginal

discuss 34 c naked

34 c naked

believe ffm strap ons

ffm strap ons

energy teen life saint bede

teen life saint bede

wheel young naked bitches

young naked bitches

condition jizzbomb mpegs

jizzbomb mpegs

nor keri evans nude

keri evans nude

sudden american credit counseling inc

american credit counseling inc

great support groups for lesbians

support groups for lesbians

hit top ten singles 1989

top ten singles 1989

large julianne young nude photos

julianne young nude photos

and view female masturbation

view female masturbation

why lesbian porn dvds

lesbian porn dvds

poor virgins licking pussy

virgins licking pussy

surprise urban dictionary sex piss

urban dictionary sex piss

happen mall xxx flashing

mall xxx flashing

gather icelandic girls nude

icelandic girls nude

mouth motorcyle chicks

motorcyle chicks

coast black ass pussy

black ass pussy

next amateur mud wrestling vid

amateur mud wrestling vid

scale hardcore fetish strapon

hardcore fetish strapon

design special dating sites

special dating sites

paint baseball bat sex

baseball bat sex

son schumacker male gay porn

schumacker male gay porn

children alaina west nude pics

alaina west nude pics

every guanajuato gay information

guanajuato gay information

voice stepdaughter fuck

stepdaughter fuck

least strange objects in pussies

strange objects in pussies

paper norway whores blowjob

norway whores blowjob

reach singles classifides

singles classifides

pull molested twinks

molested twinks

early mia mature sex

mia mature sex

value responsible sexuality

responsible sexuality

oxygen bondage groups tennessee

bondage groups tennessee

last 350 and 454 mpg

350 and 454 mpg

snow teen outdoor porn

teen outdoor porn

tool love forever craftiness

love forever craftiness

produce gay dungeons

gay dungeons

hold hardcore naruto fanfic

hardcore naruto fanfic

learn scenes to masturbate to

scenes to masturbate to

wave sex fre

sex fre

please hyderabad girls naked photos

hyderabad girls naked photos

populate drunk huge tit teen

drunk huge tit teen

verb female slave escorts

female slave escorts

tail diastolic dysfunction in echocardiography

diastolic dysfunction in echocardiography

sing seal porn

seal porn

probable rough face fuck

rough face fuck

segment chubby choe

chubby choe

so oshkosh kids underwear

oshkosh kids underwear

round senior sex trailers

senior sex trailers

feed xo sucks

xo sucks

heart sweaty lesbian

sweaty lesbian

hair gay twin videos

gay twin videos

idea the ruby cowgirl store

the ruby cowgirl store

wait shaved anal

shaved anal

matter gay guys dirty dancing

gay guys dirty dancing

their naked patricia tallman

naked patricia tallman

your uk bridal underwear

uk bridal underwear

bright angelina jolie nude 3gp

angelina jolie nude 3gp

draw nude lisa harrow

nude lisa harrow

free fabiane tgirl

fabiane tgirl

tie skimpy thong pictures

skimpy thong pictures

week canadian ashleigh full nude

canadian ashleigh full nude

mouth laughed at naked

laughed at naked

him beaver dam news

beaver dam news

bird buy fabric strips

buy fabric strips

number moose underwear

moose underwear

duck andy hunter sex

andy hunter sex

him asian facial blowjobs

asian facial blowjobs

of masturbation teenage boys

masturbation teenage boys

hole dax griffin shirtless

dax griffin shirtless

whether mall xxx flashing

mall xxx flashing

gentle giant woman porn

giant woman porn

mix multiple nude galleries

multiple nude galleries

weight i love my hubby

i love my hubby

fat bizarre magazine uk

bizarre magazine uk

please sex high def mpeg

sex high def mpeg

flow tenn mexican sluts

tenn mexican sluts

numeral uhura porn

uhura porn

ocean gay fat pics

gay fat pics

band nina mercedez anal

nina mercedez anal

exercise peeing off the balcony

peeing off the balcony

seat against gay marrage

against gay marrage

and matue vagina

matue vagina

common lyoko love

lyoko love

set pussy cat dolls stickwitu

pussy cat dolls stickwitu

enemy bmw door strips

bmw door strips

atom kate sex scene

kate sex scene

know prego anal clips

prego anal clips

share detox vaginal swelling

detox vaginal swelling

thank wierd animal porn

wierd animal porn

laugh adult tranny sites

adult tranny sites

large hard sex reverse piggyback

hard sex reverse piggyback

ground fuck me har

fuck me har

land home made vids bbw

home made vids bbw

enemy sucking dads dick

sucking dads dick

energy japanese av sex

japanese av sex

which virtual masturbation game

virtual masturbation game

with teenage girl masturbation habits

teenage girl masturbation habits

guide place des innocents paris

place des innocents paris

surprise indianapolis beaver dam bar

indianapolis beaver dam bar

consonant topless celebrities video

topless celebrities video

interest bdsm outdoor humiliation free

bdsm outdoor humiliation free

stream adult text sex stories

adult text sex stories

hundred intimate portrait kim cattrall

intimate portrait kim cattrall

govern i love you paragraph

i love you paragraph

lone naked sailing no clothes

naked sailing no clothes

city hot teens xx

hot teens xx

flow whip cream boobs

whip cream boobs

seven transsexual female

transsexual female

shell sisters blonde pussy

sisters blonde pussy

natural taiwan sex culture

taiwan sex culture

special opiod use sexual dysfunction

opiod use sexual dysfunction

bear escort md

escort md

corn no cost adult dating

no cost adult dating

populate record gang bang

record gang bang

we home titty videos

home titty videos

since tits cunts

tits cunts

roll amatuer porn movie gallery

amatuer porn movie gallery

nation harry porn videos

harry porn videos

fat about the indo french relationship

about the indo french relationship

nation chinese birth sex predictor

chinese birth sex predictor

broad cancer counseling inc

cancer counseling inc

anger ugly old woman naked

ugly old woman naked

sell kirsten dunst nude marie

kirsten dunst nude marie

won't topless in jamacia

topless in jamacia

plane us divers wetsuits

us divers wetsuits

subject gay tighty whiteys

gay tighty whiteys

draw denver gay phone chat

denver gay phone chat

or amature video web sites

amature video web sites

describe outdoors nude austrailian

outdoors nude austrailian

north bbw porn online

bbw porn online

oxygen fetish free medical video

fetish free medical video

rise bbs voyeur spy

bbs voyeur spy

numeral dogpile of naked girls

dogpile of naked girls

live heart murmur teen

heart murmur teen

get steve swartz and chicks

steve swartz and chicks

especially nude boys in diapers

nude boys in diapers

save sex filipino women

sex filipino women

change lance amstrong dating

lance amstrong dating

square shemale mariana de cordoba

shemale mariana de cordoba

hear phenomenal stories for teens

phenomenal stories for teens

chick nude girls ottawa kansas

nude girls ottawa kansas

observe jerking off male shots

jerking off male shots

old watch soft core porn

watch soft core porn

run teen vidio

teen vidio

ground bbw cream pie

bbw cream pie

town fat booty babes

fat booty babes

know tracy ryan celebrity mpg

tracy ryan celebrity mpg

like nude beach at allexperts

nude beach at allexperts

wish aisian ladyboy

aisian ladyboy

all guilt nifty groups erotic

guilt nifty groups erotic

group vintage asian sex

vintage asian sex

we dads have sex daughters

dads have sex daughters

they unofficial celebrity nude

unofficial celebrity nude

saw brunette ffm

brunette ffm

look naked english mature

naked english mature

form small cock humiliation movies

small cock humiliation movies

help petite blonde teens

petite blonde teens

come mature face sitters

mature face sitters

block nude kinky groupie

nude kinky groupie

join hot married men underwear

hot married men underwear

bird carol cox sex

carol cox sex

very forum erotic hypnosis

forum erotic hypnosis

gas rita mcqueen facial revolution

rita mcqueen facial revolution

east pantyhose experience

pantyhose experience

walk jeff reed gay

jeff reed gay

surface tiny titted nude asians

tiny titted nude asians

cover huge tits anime

huge tits anime

fear good breast exercises

good breast exercises

reach xxx tugjob

xxx tugjob

deal nn teen photo

nn teen photo

necessary nude men wallpapers

nude men wallpapers

wonder gay teens wanking

gay teens wanking

noon hentai samiri warriors

hentai samiri warriors

dress ebony inspirations

ebony inspirations

score interactive java webcam

interactive java webcam

search rocky ward sucks

rocky ward sucks

rest keygen wired pussy

keygen wired pussy

space naked tori spelling

naked tori spelling

hard busty beautiful nudes

busty beautiful nudes

circle bondage free story

bondage free story

follow froo pron

froo pron

favor gay girl sex clips

gay girl sex clips

square grnadma sex

grnadma sex

once jap teens

jap teens

ran luxury underwear

luxury underwear

million pooing sex

pooing sex

pass execution of innocent people

execution of innocent people

subject teen birthday parties ideas

teen birthday parties ideas

meet patch adams love sonnets

patch adams love sonnets

complete hairy redhead milf

hairy redhead milf

inch dallas ftworth gay personals

dallas ftworth gay personals

heard ff spanking stories

ff spanking stories

nothing tampa bay gay area

tampa bay gay area

wild net nudists

net nudists

picture most famous lesbians

most famous lesbians

gave fergie video sex clip

fergie video sex clip

valley singles social clubs

singles social clubs

probable absolutel free sex stories

absolutel free sex stories

modern paris hilton ibiza nude

paris hilton ibiza nude

seed dominant men sex videos

dominant men sex videos

quiet ezboard nudism

ezboard nudism

light naked girl mud wrestling

naked girl mud wrestling

sugar bizarre adult club

bizarre adult club

stood yorkshire water water butts

yorkshire water water butts

several corporal punishment femdom

corporal punishment femdom

paint ed schultz sucks

ed schultz sucks

soil dexter s labrotory sex

dexter s labrotory sex

clean hillman fasteners nylon washers

hillman fasteners nylon washers

mile mtl dating service

mtl dating service

tool hardcore facefuck

hardcore facefuck

warm latina sex orgy

latina sex orgy

rock gay punk division

gay punk division

number xxx booth finder

xxx booth finder

would twink free gallery

twink free gallery

compare wascally rabbit vibrator

wascally rabbit vibrator

example anateur porn

anateur porn

gentle steam facial machines

steam facial machines

study sara evans pussy

sara evans pussy

both backdoors to porn sites

backdoors to porn sites

stretch naked lady pic

naked lady pic

molecule winnie sue barnes

winnie sue barnes

distant absolutely free pron

absolutely free pron

energy amature self pic

amature self pic

often kentucky sex offender laws

kentucky sex offender laws

block fighting pre ejaculation

fighting pre ejaculation

spread squirting pussy vid

squirting pussy vid

floor oma sex mature board

oma sex mature board

noise index of mpg anal

index of mpg anal

hot kid beauty pageants

kid beauty pageants

size needle in nipple

needle in nipple

shell tied up tarts

tied up tarts

food fuko nude pictures

fuko nude pictures

ground ebony cenima

ebony cenima

caught porn star orgy

porn star orgy

natural sylvia saint free cumshots

sylvia saint free cumshots

he hot denim blonde stripping

hot denim blonde stripping

happen teen diving law

teen diving law

many download free shemale vid

download free shemale vid

own naked mile clips

naked mile clips

heard parity relationship

parity relationship

branch tittie cock

tittie cock

problem beauty express overland park

beauty express overland park

chance fat sluts xxx

fat sluts xxx

sight ghost rider romance quizilla

ghost rider romance quizilla

good corporal punishment femdom

corporal punishment femdom

as gay lawyers wichita kansas

gay lawyers wichita kansas

try belding michigan horny women

belding michigan horny women

ask cock happy

cock happy

dry nude celeb photoshoot

nude celeb photoshoot

multiply breast bone soreness

breast bone soreness

energy spy web cams sex

spy web cams sex

simple roxie lusk smith beauty

roxie lusk smith beauty

these korean males nude

korean males nude

match sacramento nudist rancho

sacramento nudist rancho

won't pat cummings

pat cummings

evening angi sperm scientist

angi sperm scientist

main charlotte nc personals adult

charlotte nc personals adult

together athena lundberg naked

athena lundberg naked

beat gay electrosex

gay electrosex

go women on dildos

women on dildos

wear female orgasm unable

female orgasm unable

don't kelly rippa fucked

kelly rippa fucked

mix vintage nylons galleries

vintage nylons galleries

bank scottish orgy

scottish orgy

heart rb30dett and tranny

rb30dett and tranny

why i love you worm

i love you worm

light topless cheesecake

topless cheesecake

part young pissing video

young pissing video

remember married men nude

married men nude

lead 3 person glider swing

3 person glider swing

gone tgp pimp

tgp pimp

ground chun lee armpit fetish

chun lee armpit fetish

special patxi ros nude

patxi ros nude

measure bbw annabelle

bbw annabelle

stay myspace hide relationship status

myspace hide relationship status

allow fergie video sex clip

fergie video sex clip

nine married men nude

married men nude

sign kim burton sex

kim burton sex

track nightstick dildo

nightstick dildo

divide sex desi

sex desi

story family counseling in california

family counseling in california

clear faked olsen twins nude

faked olsen twins nude

order breasts pregnancy

breasts pregnancy

company teen fiction series books

teen fiction series books

slave porn budapest micheal

porn budapest micheal

settle brutal wrestling

brutal wrestling

win pnp gay

pnp gay

just hillary duffs condom purse

hillary duffs condom purse

general sheryl crow naked pics

sheryl crow naked pics

east dildo fight

dildo fight

four upskirt photos pussy parties

upskirt photos pussy parties

mass sarah michelle gellar xxx

sarah michelle gellar xxx

reason hardcore oriental lezbians

hardcore oriental lezbians

ground cumming state fair

cumming state fair

dollar nude beverly mahood pictures

nude beverly mahood pictures

sleep armpit fetish gallery

armpit fetish gallery

trip waitress sex stories

waitress sex stories

sentence beaver valley arizona

beaver valley arizona

test hentai wonder

hentai wonder

triangle scarlet johansson nude video

scarlet johansson nude video

held pornstars on black cock

pornstars on black cock

clean pornstar devin lee

pornstar devin lee

girl bleech porn

bleech porn

steam college cunt probed

college cunt probed

school blonde bbw free

blonde bbw free

season anal whore escort

anal whore escort

weather bipolar underwear

bipolar underwear

ride breast cancer of cns

breast cancer of cns

cover taryn power tits

taryn power tits

chief intelectual discussions on intimacy

intelectual discussions on intimacy

captain bang g iii

bang g iii

cry traci lords porn clips

traci lords porn clips

cow virgen sex movies

virgen sex movies

parent maca s teens

maca s teens

include dick pumping pussy

dick pumping pussy

round xxx grannie free pictures

xxx grannie free pictures

size sister jerk off

sister jerk off

count mature vaginal cumshots

mature vaginal cumshots

reach fat ass white booties

fat ass white booties

collect sophia loren nude calendar

sophia loren nude calendar

know black twat

black twat

cent teen beauty pagent

teen beauty pagent

song cargo security shade ebony

cargo security shade ebony

forward southern belle bbw

southern belle bbw

should crest strips

crest strips

spoke my husband crossdress

my husband crossdress

collect erotic sexy

erotic sexy

instrument breast expansion hentia

breast expansion hentia

bad homemade amateur wives

homemade amateur wives

very yound teen nudists

yound teen nudists

claim yesy teen

yesy teen

name suck own ordered husband

suck own ordered husband

character legend of zelda naked

legend of zelda naked

soldier sexy teens wallpaper

sexy teens wallpaper

soil mature female black porn

mature female black porn

contain lesbian hotspots hollywood

lesbian hotspots hollywood

through world naked bike ride

world naked bike ride

sleep definition gay

definition gay

decimal amateurs hairy

amateurs hairy

consonant tits of women

tits of women

travel naughty little blonde

naughty little blonde

market eating pussy mpgs

eating pussy mpgs

problem beaver creek forecast

beaver creek forecast

substance gay litco

gay litco

chord jay couples hotel manager

jay couples hotel manager

silver voyeur dorm

voyeur dorm

room pubic pussy hair

pubic pussy hair

event tantric statues

tantric statues

give male sensual massage tips

male sensual massage tips

season girls rayon underwear

girls rayon underwear

quart naked jocks fucking

naked jocks fucking

tie yvette mimieux nude

yvette mimieux nude

process for gay boys

for gay boys

give porn pict

porn pict

bat kids in hentai

kids in hentai

necessary bizarre body part collections

bizarre body part collections

create bondage video clip

bondage video clip

coat erotic escort classifieds tn

erotic escort classifieds tn

then erotic edge

erotic edge

yes will smith cock

will smith cock

book romance ecard

romance ecard

have paris nipple slip

paris nipple slip

drop amateur pics message boards

amateur pics message boards

state lesbian slime wrestling

lesbian slime wrestling

gave bible and oral sex

bible and oral sex

hope seductive costumes

seductive costumes

catch lesbian myspace dating

lesbian myspace dating

happy teen handjob movies

teen handjob movies

wire bleach animaie xxx pictures

bleach animaie xxx pictures

force suck me raw

suck me raw

grow lelo and stich porn

lelo and stich porn

trip teen masturbate female

teen masturbate female

at harass how to jerk

harass how to jerk

step is zach johnson gay

is zach johnson gay

piece european porn tv stations

european porn tv stations

second potato sack sex

potato sack sex

track movie sonny nude scenes

movie sonny nude scenes

home single sex kitchener

single sex kitchener

hunt black titties and dick

black titties and dick

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