* 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 .= "
humiliation nasty stories

humiliation nasty stories

drop can orgasm induce labor

can orgasm induce labor

double kinky fetish porn

kinky fetish porn

guess nude kim possible pics

nude kim possible pics

post vanessa van hutton nude

vanessa van hutton nude

nature venus sex book

venus sex book

multiply extend the male orgasm

extend the male orgasm

put nanaimo amateur picks

nanaimo amateur picks

chart oriental long nipples

oriental long nipples

rock petite mature tits

petite mature tits

drink darin pooler sex offender

darin pooler sex offender

tree seekmo xxx

seekmo xxx

three the knobs inn

the knobs inn

which british porn siteas

british porn siteas

much destination xxx

destination xxx

what ann nude poster

ann nude poster

bit priceless mpegs

priceless mpegs

stop spy mpegs

spy mpegs

tail elysia hardcore

elysia hardcore

block grannys closet porn

grannys closet porn

one facial makeover arizona

facial makeover arizona

dad rural gay friendly

rural gay friendly

strong chinese biggest breasts

chinese biggest breasts

quotient paki porn only

paki porn only

separate sherry denise mellard gay

sherry denise mellard gay

kept reasons why pittsburgh sucks

reasons why pittsburgh sucks

begin sex ass cheerleading tryouts

sex ass cheerleading tryouts

rope archery target butts

archery target butts

joy naked college student lawyer

naked college student lawyer

one marilyn love fredericksburg

marilyn love fredericksburg

few slick chick england

slick chick england

person naughty animations

naughty animations

face really old grandma porn

really old grandma porn

never suck a cunt

suck a cunt

key manhattan strip club

manhattan strip club

measure billys first anal sex

billys first anal sex

told japanese teen masterbation

japanese teen masterbation

block vanessa minillo sex videos

vanessa minillo sex videos

middle shemals porn clips

shemals porn clips

number naomi lay sex video

naomi lay sex video

shoulder avoid embarrassing erection

avoid embarrassing erection

back escorts bwi maryland

escorts bwi maryland

column adult amateur couples

adult amateur couples

black lesion of the vagina

lesion of the vagina

sound amsterdam chicks

amsterdam chicks

general nudity carrie underwood

nudity carrie underwood

tree small breast girls

small breast girls

oxygen bdsm female slave

bdsm female slave

decide girls modeling bondage

girls modeling bondage

at closeup and personal

closeup and personal

force dad s cock

dad s cock

class beautiful woman tgp

beautiful woman tgp

sign spice girl nudes

spice girl nudes

hole big boobs and flashes

big boobs and flashes

paint albuquerque blowjobs

albuquerque blowjobs

tree sissies dolls strapon

sissies dolls strapon

this ghost live webcams

ghost live webcams

instrument populating dating site

populating dating site

allow gay pissing watersports

gay pissing watersports

mine reese witherspoon twilight nude

reese witherspoon twilight nude

move renting porn dvd s

renting porn dvd s

hear wed cam for teens

wed cam for teens

especially publishers of historical romances

publishers of historical romances

fit bizarre rubber hoods

bizarre rubber hoods

question rikku naked

rikku naked

flower big juice breast

big juice breast

add shai sex

shai sex

ago jennifer aniston in nude

jennifer aniston in nude

part licking county ohio residents

licking county ohio residents

degree youngest swiss escorts

youngest swiss escorts

hard repairing shower knobs

repairing shower knobs

support sex with dead chix

sex with dead chix

hill master slut slave

master slut slave

time vacuum for sex

vacuum for sex

did basic bondage

basic bondage

fight garcelle beauvais nilon playboy nude

garcelle beauvais nilon playboy nude

past chastity lesbian

chastity lesbian

divide hairy big vagina

hairy big vagina

offer pinky lee xxx

pinky lee xxx

his latina beabes getting fucked

latina beabes getting fucked

heard clara ruby porn

clara ruby porn

against glamorous naked contortionists gymnasts

glamorous naked contortionists gymnasts

dead giant cock pics

giant cock pics

warm vibrator user guide

vibrator user guide

was sex tape chritina aguilara

sex tape chritina aguilara

determine game virgin roster

game virgin roster

sun all american guy hardcore

all american guy hardcore

whose naked euphoria model

naked euphoria model

fly connecticut sex offenders list

connecticut sex offenders list

receive festival radio naked run

festival radio naked run

syllable basque porn movies

basque porn movies

tone gorgeous nylons

gorgeous nylons

populate brown and round teen

brown and round teen

general sakura kiss english lyrics

sakura kiss english lyrics

half brunette jugs

brunette jugs

hit 18 russian teen

18 russian teen

drop asan dick sucking

asan dick sucking

went chicago cubs gay pics

chicago cubs gay pics

stretch dirty sluts for free

dirty sluts for free

certain gay clubs in indiana

gay clubs in indiana

trip tits girlfriend

tits girlfriend

substance dehydration and breast implants

dehydration and breast implants

corn shark s love affair

shark s love affair

turn spanking chldren

spanking chldren

fair busty s turtle point pa

busty s turtle point pa

wide male and female sexuality

male and female sexuality

hope naked trieu tran

naked trieu tran

guess vanessa naked uncensored

vanessa naked uncensored

middle nylon pipe faster

nylon pipe faster

ground shemale stripping

shemale stripping

free breast abuse primer

breast abuse primer

beat dating age gaps

dating age gaps

solution virgin black lace books

virgin black lace books

pass leslie caples nude photos

leslie caples nude photos

mind fuck you novelity tie

fuck you novelity tie

compare teen clothing shopping

teen clothing shopping

it dick gregory s family

dick gregory s family

again puberty tender breasts

puberty tender breasts

east x rated pinups

x rated pinups

young naughty see thru nighties

naughty see thru nighties

thus lisa kudrow naked ass

lisa kudrow naked ass

school gay vn

gay vn

pay facial quotes

facial quotes

feed custom hardcore softail

custom hardcore softail

many tranny sperm eat

tranny sperm eat

caught nude family picnic photos

nude family picnic photos

miss sexy nylon babes

sexy nylon babes

his croatia nudist beaches

croatia nudist beaches

cloud gang bang gabby

gang bang gabby

island 94 escort retractor

94 escort retractor

equate harley mirror asshole

harley mirror asshole

atom vigin girls sex

vigin girls sex

car giant penis xxx

giant penis xxx

note most beautiful nude videos

most beautiful nude videos

boy wood strip canoe plan

wood strip canoe plan

held wives free sex movie

wives free sex movie

great maui gay bars

maui gay bars

mount mpg surburban hybrid

mpg surburban hybrid

ready asian teens girls

asian teens girls

time bombshell bottoms

bombshell bottoms

field caining xxx

caining xxx

happen teenn xxx

teenn xxx

farm powerpuff girl cartoon porn

powerpuff girl cartoon porn

little naked hippie porn

naked hippie porn

west phat ass white booty

phat ass white booty

card teen idols u

teen idols u

noon chicago southwest christian counseling

chicago southwest christian counseling

can girls stri nude videos

girls stri nude videos

bought extreme gangbang movies

extreme gangbang movies

radio horny furrys

horny furrys

yet sex donkey cum

sex donkey cum

single dick2dick sex

dick2dick sex

quart gays shaving cocks

gays shaving cocks

cat black lesbian humping porn

black lesbian humping porn

sugar stern satellite sucks

stern satellite sucks

sit velobind strips

velobind strips

nor hariest red pussy

hariest red pussy

gun lesbian capricorn

lesbian capricorn

log tight clothes cameltoe

tight clothes cameltoe

ease gay sex porn xxxx

gay sex porn xxxx

clear immature sperm varicose vein

immature sperm varicose vein

and horney haley

horney haley

black naked news for ladies

naked news for ladies

forest greek beauty and cosmetics

greek beauty and cosmetics

pull used strip till

used strip till

fruit urine test strips msds

urine test strips msds

often north carolina male escorts

north carolina male escorts

consider beaver marquis magnum

beaver marquis magnum

group pointy nipples in lengerie

pointy nipples in lengerie

joy olderbabes nude free photos

olderbabes nude free photos

farm nude women public

nude women public

name aria giovanni sybian sex

aria giovanni sybian sex

liquid vaginal tears during delivery

vaginal tears during delivery

complete star wars chubby

star wars chubby

offer bbw goddess betty

bbw goddess betty

saw symtoms of teen drinking

symtoms of teen drinking

skin laughing at cock

laughing at cock

cross large photos young nudes

large photos young nudes

fast pussy cat dolls button

pussy cat dolls button

send sex livefeeds free

sex livefeeds free

behind busty rachel poolboy clip

busty rachel poolboy clip

many bleeding from anal sex

bleeding from anal sex

war ox horn knobs

ox horn knobs

put spanking hall

spanking hall

always sly cooper sex fanart

sly cooper sex fanart

ease bdsm tshirt

bdsm tshirt

my ebony grinding

ebony grinding

every hentai sister anb brother

hentai sister anb brother

gray roseanna arquette intimate portrait

roseanna arquette intimate portrait

give fdle sex offernder unit

fdle sex offernder unit

proper nude biker betty boop

nude biker betty boop

region teens panties bikini

teens panties bikini

toward g baldry kiss

g baldry kiss

noun interracial relationships 1970 s

interracial relationships 1970 s

table breast exam porn

breast exam porn

human baltimore gay male escorts

baltimore gay male escorts

ease naked escorts female

naked escorts female

kept young teen goddess

young teen goddess

less jessica alba nude pic s

jessica alba nude pic s

sugar anna chlumsky breast

anna chlumsky breast

team imageevent guy naked

imageevent guy naked

smile japanese new year nude

japanese new year nude

compare naturist nudity photos

naturist nudity photos

read misty rain mpegs

misty rain mpegs

teach naked massage videos gratuit

naked massage videos gratuit

drink crave nude movies

crave nude movies

right southern caribbean sex

southern caribbean sex

afraid panama sex tourism

panama sex tourism

hair escort basel

escort basel

test young cute nudes

young cute nudes

enemy fucked up cartoon porno

fucked up cartoon porno

count dumpster of love

dumpster of love

stretch outrageous sex pics

outrageous sex pics

minute sexual harassment investigations

sexual harassment investigations

afraid lestai threesome

lestai threesome

bread dejavue strip club

dejavue strip club

her rosario dawson boobs

rosario dawson boobs

prepare xtreme close up pussy

xtreme close up pussy

flower tgp boy cock

tgp boy cock

smell favorite booty gallery

favorite booty gallery

near korean big bang forms

korean big bang forms

help relative dating in geology

relative dating in geology

warm orgasm doctors

orgasm doctors

dance hwo to kiss

hwo to kiss

vowel naomi russel porn video

naomi russel porn video

grew new bburago sucks

new bburago sucks

how sexy revealing underwear

sexy revealing underwear

caught couples fancy dress

couples fancy dress

party vixon sex

vixon sex

top teen flood eric c

teen flood eric c

claim speechs for gay marriages

speechs for gay marriages

copy thong parade

thong parade

wide sherry konopski nude pictures

sherry konopski nude pictures

band dad s cock

dad s cock

choose air in a dildo

air in a dildo

measure british wives club

british wives club

kind gillian chung twin naked

gillian chung twin naked

thus singles for dates

singles for dates

join psychic love dreams

psychic love dreams

behind glens falls ny facial

glens falls ny facial

sister big titties solo videos

big titties solo videos

flow tantra massage gay delaware

tantra massage gay delaware

poor joe mauer quick swing

joe mauer quick swing

eye mandy moore nude photos

mandy moore nude photos

suggest naked winx club

naked winx club

original talk her into anal

talk her into anal

speed miss teen tranny usa

miss teen tranny usa

rather brown with blonde highlights

brown with blonde highlights

boat swing clubs holand

swing clubs holand

should very young porn thumbs

very young porn thumbs

girl seattle nude house cleaning

seattle nude house cleaning

does vintage nude gallery

vintage nude gallery

develop merchandise dick tracy movie

merchandise dick tracy movie

govern glasgow sex video

glasgow sex video

fresh old farts youg tarts

old farts youg tarts

period monster cock porn

monster cock porn

industry very puffy nipples

very puffy nipples

subject nude actress pics

nude actress pics

free fucked blue man group

fucked blue man group

strong reallity ffm orgy

reallity ffm orgy

low apple from pussy

apple from pussy

half my wifes huge tits

my wifes huge tits

body teen tutor job opening

teen tutor job opening

among chat dumped gay

chat dumped gay

shape bagdad blowjob

bagdad blowjob

then clit lesbian suckers

clit lesbian suckers

danger virgin islands international airlines

virgin islands international airlines

distant fuck carnal knowledge

fuck carnal knowledge

natural sex free mpegs oasis

sex free mpegs oasis

dollar uncle chester nude beach

uncle chester nude beach

turn embarassed naked vid

embarassed naked vid

duck twain topless

twain topless

experiment teen moves

teen moves

thick hard cock dvd

hard cock dvd

ring karmen nude

karmen nude

late oral sex xxx blowjob

oral sex xxx blowjob

indicate xxx russions

xxx russions

noon nubiles sex

nubiles sex

which santa ponsa webcam

santa ponsa webcam

bed pictures of boobys

pictures of boobys

crowd essential fatty acids gallstones

essential fatty acids gallstones

beauty jhon lee love lived

jhon lee love lived

invent amateur home webcam nudity

amateur home webcam nudity

well femdom sex chat

femdom sex chat

mass thong panty solid

thong panty solid

no colombian mail order wives

colombian mail order wives

part david batista naked

david batista naked

safe bear sex man

bear sex man

collect bif naked lucky

bif naked lucky

sat breast massage cusions

breast massage cusions

ocean sex in publick

sex in publick

your arizona escorts teen

arizona escorts teen

page full house spanking

full house spanking

colony black pone sex

black pone sex

just eatons jerk sauce

eatons jerk sauce

few amanda griffin nude pic

amanda griffin nude pic

consonant mexican teen lifestyles

mexican teen lifestyles

than kinky humor

kinky humor

change whipping scenes in movies

whipping scenes in movies

finger gallery nude child

gallery nude child

farm live in peace counseling

live in peace counseling

stay yon little sister nude

yon little sister nude

well milf brawlhall

milf brawlhall

except husband sissy mistress maid

husband sissy mistress maid

noise female using male dildo

female using male dildo

box asian creampies websites

asian creampies websites

suggest utah sucker

utah sucker

reach jack rabbit orgasm

jack rabbit orgasm

brother braces beauty

braces beauty

flower porn animation games

porn animation games

success break filter iran sex

break filter iran sex

human wett pussie

wett pussie

hill australian hot boys porn

australian hot boys porn

receive reinforce homoerotic response lesbian

reinforce homoerotic response lesbian

necessary naked hardcore blowjobs

naked hardcore blowjobs

are renee chicago escort

renee chicago escort

said blake lively topless

blake lively topless

spend mom fucks

mom fucks

block can sperm heal

can sperm heal

planet nude hairy female

nude hairy female

told femdom cfnm thumbs

femdom cfnm thumbs

said sexual harassment cases database

sexual harassment cases database

eye theologist dating

theologist dating

mass cumming diesel throttle plate

cumming diesel throttle plate

gold knobs hinges and more

knobs hinges and more

that bobsspot xxx

bobsspot xxx

glass fucked up art

fucked up art

knew ballpoint pens novelty erotic

ballpoint pens novelty erotic

wrote adult pussy porngalleries

adult pussy porngalleries

office printed nylon strapping

printed nylon strapping

led sex mature pictures video

sex mature pictures video

until mickey mouse mondays suck

mickey mouse mondays suck

hot hellraiser hardcore

hellraiser hardcore

temperature christina agulara fuck

christina agulara fuck

parent asian countrys relationship austrralia

asian countrys relationship austrralia

took succulent nipples

succulent nipples

flow porn free lesbian fic

porn free lesbian fic

bought latest inventions discoveries pleasure

latest inventions discoveries pleasure

branch bbw and skinny men

bbw and skinny men

science molly ringwald breast

molly ringwald breast

watch shepard poem lonley mistress

shepard poem lonley mistress

came nude family picnic photos

nude family picnic photos

period hentai shemale dom

hentai shemale dom

stone little girl boobs pics

little girl boobs pics

own butt enhancing underwear

butt enhancing underwear

symbol couples making love dvd

couples making love dvd

caught driver cam for teens

driver cam for teens

too kinky kong cast crew

kinky kong cast crew

rail tila tequila porn dorm

tila tequila porn dorm

been models teen nn

models teen nn

place dog licking a pussy

dog licking a pussy

flat little ang ls nude

little ang ls nude

substance bleaching strip

bleaching strip

cry milf teachers torrents

milf teachers torrents

cloud hardcore vibes cammy

hardcore vibes cammy

allow brandy 18 19 pussy

brandy 18 19 pussy

major granny hardcore sex

granny hardcore sex

single family dreamgirls soundtrack

family dreamgirls soundtrack

believe horse cock suck

horse cock suck

men nude mario lopez photos

nude mario lopez photos

move hungrian porn family

hungrian porn family

give date a pornstar

date a pornstar

spoke nectar porn

nectar porn

egg daniela spanic naked galleries

daniela spanic naked galleries

wing erotic writing

erotic writing

us blowjob races taylor

blowjob races taylor

help dorder bang

dorder bang

electric 365 days of beauty

365 days of beauty

broke femdom cbt mistress

femdom cbt mistress

room men novelty bikini underwear

men novelty bikini underwear

true . nt domain trust relationships

nt domain trust relationships

student mature masterbation movies

mature masterbation movies

own replacement outdoor swing canopies

replacement outdoor swing canopies

last virginia teen alcohol death

virginia teen alcohol death

ever gay adoption negative

gay adoption negative

control artimus pyle hardcore

artimus pyle hardcore

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