* 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 .= "
miss nude univers star

miss nude univers star

watch milf anal virgins

milf anal virgins

dictionary gay circut

gay circut

real naughty teacher game

naughty teacher game

value biker rally chick pics

biker rally chick pics

engine adult foot in pussy

adult foot in pussy

evening real lesbian orgasm

real lesbian orgasm

apple extreame anal toys

extreame anal toys

hunt kirstens room blowjob

kirstens room blowjob

correct pornstar police pullover

pornstar police pullover

fig masturbation male tip

masturbation male tip

with naked asian gals

naked asian gals

form ff8 porn

ff8 porn

particular pregnancy counseling edmonton

pregnancy counseling edmonton

school nasty ass port

nasty ass port

earth big titted black slut

big titted black slut

sat hotel chevalier sex scenes

hotel chevalier sex scenes

wonder eating pussy vidios

eating pussy vidios

thus sex video clips gallery

sex video clips gallery

young spanking fetish store

spanking fetish store

character adult virgins

adult virgins

lay atlanta black escorts

atlanta black escorts

coat porn of kate mara

porn of kate mara

best vietnam singles

vietnam singles

among sound clip romance

sound clip romance

whole fetes sex

fetes sex

cross going topless in cancun

going topless in cancun

full google directory xxx

google directory xxx

huge amateur female model pic

amateur female model pic

especially gay kissing hot

gay kissing hot

tool hot blowjob ninjas

hot blowjob ninjas

proper index redheads

index redheads

capital tear strips for shrink

tear strips for shrink

bottom mommies little lesbian

mommies little lesbian

either funny video oral sex

funny video oral sex

ground naked campbell soup

naked campbell soup

method limo xxx

limo xxx

valley aquatic and exotics

aquatic and exotics

sight wives and daughters synopsis

wives and daughters synopsis

land blonde inseminated womenn

blonde inseminated womenn

here matuer sex

matuer sex

live luke stiller nude

luke stiller nude

require raw natural beauty llc

raw natural beauty llc

verb petite teen blowjobs

petite teen blowjobs

stream fuck buddy in houston

fuck buddy in houston

nor nude goldwing

nude goldwing

touch celebrity bulging underwear

celebrity bulging underwear

sit sardinia naked

sardinia naked

wheel gay chat prince albert

gay chat prince albert

three lisa bibbs naked

lisa bibbs naked

fair gay hunk pictures

gay hunk pictures

at bondage personals totally free

bondage personals totally free

pull nast shemales

nast shemales

chair professional facial wax

professional facial wax

grew lion moon striped robe

lion moon striped robe

prove burning man nude pics

burning man nude pics

form vietnam sluts

vietnam sluts

hundred modern teen furniture high end

modern teen furniture high end

hurry defiant steel door knob

defiant steel door knob

may zuleikha robinson sex scene

zuleikha robinson sex scene

dress japanese transvestite

japanese transvestite

edge the hamptons cumming

the hamptons cumming

only jocks men showering

jocks men showering

horse mature spanking photo

mature spanking photo

energy cassie the porn star

cassie the porn star

good bdsm transvestite chat

bdsm transvestite chat

supply norman love confectioners

norman love confectioners

care xxx subwoofer

xxx subwoofer

stood naked back grounds

naked back grounds

wonder hotel bang tao

hotel bang tao

fun tricks to pleasure her

tricks to pleasure her

fall big booty aliyah

big booty aliyah

desert palms vegas webcam

palms vegas webcam

star lindsey lohan pantyless

lindsey lohan pantyless

told abbie swogger nude

abbie swogger nude

picture naughty sailor scouts hentai

naughty sailor scouts hentai

little cock loving moms videos

cock loving moms videos

blood teen muscle pics

teen muscle pics

believe gay fat guy fatter

gay fat guy fatter

receive your amateur porm

your amateur porm

bread white booty sporn

white booty sporn

correct gay oral cum

gay oral cum

these milf oklahoma

milf oklahoma

check soho hippy chick singer

soho hippy chick singer

serve double sheave snatch block

double sheave snatch block

rich figuring relationship duties

figuring relationship duties

exercise virgo loves pisces relationship

virgo loves pisces relationship

gas darrell gay

darrell gay

bread puffy tits movies

puffy tits movies

we teen diaper page

teen diaper page

discuss closeup action

closeup action

bread hardcore blonde porn

hardcore blonde porn

the teen piss porn

teen piss porn

noon hardcore uncut cocks

hardcore uncut cocks

ball brazil fuck pics

brazil fuck pics

broke fine art erotic photography

fine art erotic photography

now psp foot porn

psp foot porn

wing naked closeup sex

naked closeup sex

sign kathern zeta jones nude

kathern zeta jones nude

slave dildo fucking urethra

dildo fucking urethra

kept ymca counseling

ymca counseling

rule lesbians toons harry potter

lesbians toons harry potter

seem little nipple slip

little nipple slip

friend love name capabilities

love name capabilities

thus sara paton naked

sara paton naked

group quotes love versus greed

quotes love versus greed

care 150 teen

150 teen

voice shemale ejaculation photos

shemale ejaculation photos

tire 2007 corvette mpg

2007 corvette mpg

low very young girls blowjobs

very young girls blowjobs

fill affiliates mature sex

affiliates mature sex

took adult prissy sissy

adult prissy sissy

sit group porn vids

group porn vids

string ashley judd getting fucked

ashley judd getting fucked

dear masturbation storys male female

masturbation storys male female

change nantucket webcam webcam

nantucket webcam webcam

call myuu hentai

myuu hentai

in colleen camp nude pics

colleen camp nude pics

lost upskirt tit slip

upskirt tit slip

next bellsouth small business sucks

bellsouth small business sucks

boat nude celebrity sluts

nude celebrity sluts

young mac daniel s beauty school

mac daniel s beauty school

time ben tennyson naked

ben tennyson naked

next porn cites

porn cites

them gay greenland

gay greenland

shoe creative playthings yosemite assembly

creative playthings yosemite assembly

won't the simpsons free sex

the simpsons free sex

dress drew teen death

drew teen death

visit gay cun clips

gay cun clips

air sex karen

sex karen

industry sex emergency

sex emergency

machine scarlett johanson xxx

scarlett johanson xxx

except nude sexy feet

nude sexy feet

fear amature pov

amature pov

swim love scenes vol 1

love scenes vol 1

feet honda passport weather strip

honda passport weather strip

band exposed amateur

exposed amateur

wheel brianna lee nude

brianna lee nude

mine blonde sonya

blonde sonya

chart the sex swing

the sex swing

saw male bitches getting fucked

male bitches getting fucked

east get pussy tonite

get pussy tonite

case lisa kudrow naked ass

lisa kudrow naked ass

single public humiliation femdom

public humiliation femdom

grand sex play with animals

sex play with animals

human wife sissy hubby pills

wife sissy hubby pills

has erect nipple thumbs

erect nipple thumbs

scale australian gay hunks

australian gay hunks

break girls drinking piss xxx

girls drinking piss xxx

stream pointy nipples in lengerie

pointy nipples in lengerie

enough velcro strips for rugs

velcro strips for rugs

act brunets having sex

brunets having sex

engine 50 granny sex

50 granny sex

tail conjugal relationships definition ontario

conjugal relationships definition ontario

though steve fox singles

steve fox singles

desert sex wth animals

sex wth animals

bought swing excersie machine

swing excersie machine

square naked boylove

naked boylove

plan addicted to nylon

addicted to nylon

ten brook hogan naked

brook hogan naked

wrong ben 10 hentai game

ben 10 hentai game

very carmen cocks porn

carmen cocks porn

kind japanese gay websites

japanese gay websites

sound man nude nake butt

man nude nake butt

room bondage secretaries

bondage secretaries

if jesus torrealba breasts

jesus torrealba breasts

saw bloomberg gay rights

bloomberg gay rights

land sex and todays youth

sex and todays youth

wrote naked amatuer teen girls

naked amatuer teen girls

colony lisa dergan lesbian photo

lisa dergan lesbian photo

print creampie eating videos

creampie eating videos

tie lousiana female escort

lousiana female escort

sat topless female celebreties

topless female celebreties

drive speed dating mi

speed dating mi

supply escort elite

escort elite

similar sex crimals

sex crimals

visit gloss beauty ipswich

gloss beauty ipswich

pattern my wife parties naked

my wife parties naked

port nude indonesian women

nude indonesian women

dear dating a momma s boy

dating a momma s boy

ask jan stephenson breast

jan stephenson breast

world build a bang pole

build a bang pole

lost marriage counseling minnesota

marriage counseling minnesota

fall spycam pissing

spycam pissing

fell outdoor wild coeds

outdoor wild coeds

grow nylon shutter pins

nylon shutter pins

tiny symbiotic relationships in lemurs

symbiotic relationships in lemurs

imagine nipple close up

nipple close up

minute teens in heels nude

teens in heels nude

forest gundam wing just love

gundam wing just love

move under 18 pussy

under 18 pussy

three lesbian temptation

lesbian temptation

method bill clinton s dick

bill clinton s dick

game very little virgins

very little virgins

but movie archives nudes

movie archives nudes

hot homemade teen porn vid

homemade teen porn vid

silver simpson animated sex images

simpson animated sex images

shine supreme and cj sex

supreme and cj sex

act ass sucking tgp

ass sucking tgp

station big boobs rose

big boobs rose

hope nude eileen davidson

nude eileen davidson

decide tennis upskirt

tennis upskirt

type escort girl bruxelles

escort girl bruxelles

race victory lake breast clinic

victory lake breast clinic

gather long interracial mpegs

long interracial mpegs

cotton concrete blonde free

concrete blonde free

fell teen porn adductions

teen porn adductions

particular ordinary women naked erotic

ordinary women naked erotic

the crack whore sex pics

crack whore sex pics

measure symbiotic relationship of anthrax

symbiotic relationship of anthrax

see merle michaels porn star

merle michaels porn star

always massage handjob suprise

massage handjob suprise

wide bath night mother erection

bath night mother erection

sense are some upskirts intentional

are some upskirts intentional

science escort europe

escort europe

least kasumi tendo dildos

kasumi tendo dildos

plural hentai games tentacle orgy

hentai games tentacle orgy

close nude brittany sears

nude brittany sears

discuss bring girl to orgasm

bring girl to orgasm

rope hardcore kamel clips

hardcore kamel clips

half nude farrah fawcet pictues

nude farrah fawcet pictues

name young glamour girls tgp

young glamour girls tgp

for naked shemales fucking lezbians

naked shemales fucking lezbians

visit nude michelle smith

nude michelle smith

solution tanning bed porn

tanning bed porn

size teens in sexy thong

teens in sexy thong

mix clover clamps sex toys

clover clamps sex toys

sugar fucking objects in cunts

fucking objects in cunts

paragraph blonde male pubic hair

blonde male pubic hair

strong new naked celebs

new naked celebs

weather 2002 mazda tribute mpg

2002 mazda tribute mpg

tiny suck uncircumcised

suck uncircumcised

fruit aedating dating service software

aedating dating service software

behind spanking gay

spanking gay

believe dick up own ass

dick up own ass

now porn tune

porn tune

pattern sex video clips sample

sex video clips sample

effect teenie asshole closeup

teenie asshole closeup

tire 90 pound porn

90 pound porn

beat tallulah willis nude

tallulah willis nude

try bollywood celebs nude fakes

bollywood celebs nude fakes

foot rpugh anal sex

rpugh anal sex

trouble gay avi

gay avi

rose adult squirting

adult squirting

material sporty chicks

sporty chicks

like apology love peoms

apology love peoms

plane secreatry sex

secreatry sex

one amateur nudist family photos

amateur nudist family photos

train consenting cock suck

consenting cock suck

five what is sexual dysfunction

what is sexual dysfunction

money big tits fucking pictures

big tits fucking pictures

question downloadable psp hentai mp4

downloadable psp hentai mp4

small hiking nude

hiking nude

then gay daddy fucking teen

gay daddy fucking teen

he teen freud

teen freud

laugh celebrity animation porn

celebrity animation porn

length facials and spa days

facials and spa days

crease samantha gets naked

samantha gets naked

science bangbros account

bangbros account

but candid beach topless photos

candid beach topless photos

figure short haired blondes

short haired blondes

other spaecial execrcises nude

spaecial execrcises nude

have hardcore parties pics

hardcore parties pics

wall coed college roomates

coed college roomates

seed teen mirco bikini pictures

teen mirco bikini pictures

fell lea from bb sex

lea from bb sex

period used beaver rv

used beaver rv

hold redhead teen caroline

redhead teen caroline

select pussy cat dolls stickwitu

pussy cat dolls stickwitu

invent woman fucking giant cocks

woman fucking giant cocks

before cowgirl chocolates case

cowgirl chocolates case

hope toothpaste movie for teens

toothpaste movie for teens

score austin makeover transvestite

austin makeover transvestite

least ebony whore vids

ebony whore vids

know nipple cum

nipple cum

subject malaysian sex videos

malaysian sex videos

proper tanning topless on vacation

tanning topless on vacation

flat kari sweets lesbian

kari sweets lesbian

told eros atlanta escort directory

eros atlanta escort directory

train breast tanning

breast tanning

truck paris hilton naked shots

paris hilton naked shots

see illinois divorce teen organizations

illinois divorce teen organizations

road nude tennis games

nude tennis games

wash sabrina johnson porn pics

sabrina johnson porn pics

week squirting while cuming

squirting while cuming

girl deadoralive xxx

deadoralive xxx

any fuck neckholder

fuck neckholder

collect erotic task

erotic task

stick prophecy chatrooms

prophecy chatrooms

hit actor with three nipples

actor with three nipples

reply cerebral dysfunction epelepsy

cerebral dysfunction epelepsy

speech asian chicks with dicks

asian chicks with dicks

company sex ieducation

sex ieducation

yet remote control webcam internet

remote control webcam internet

small naked news broadcat

naked news broadcat

let gy fetish

gy fetish

instrument horny guys in boxers

horny guys in boxers

gas artistic nudes girls teenie

artistic nudes girls teenie

indicate fender pinup girl

fender pinup girl

ocean rogue sonic hentai

rogue sonic hentai

as tila tits

tila tits

get orhime boobs

orhime boobs

brother casual encounters personals

casual encounters personals

place ladyboys philippines

ladyboys philippines

wood nude dude free video

nude dude free video

wonder fetish with hourse

fetish with hourse

type kim kardashians sex video

kim kardashians sex video

full gay buenosaires

gay buenosaires

up couples couseling and michigan

couples couseling and michigan

spend webcams feisty fawn

webcams feisty fawn

human cary breast enhancement

cary breast enhancement

look nude pictures vanessa hudgens

nude pictures vanessa hudgens

captain granny got jizzed

granny got jizzed

you vaginal healing creams

vaginal healing creams

paint afternoon delights porn

afternoon delights porn

feel world of whorecraft xxx

world of whorecraft xxx

flower gay webcamera

gay webcamera

travel teens getting breast implants

teens getting breast implants

they relationship lymph antibody

relationship lymph antibody

settle mike parker naked city

mike parker naked city

was anti cellulite pantyhose

anti cellulite pantyhose

fresh cum filled pussy licked

cum filled pussy licked

death april rawlings naked

april rawlings naked

under just licking

just licking

wrong seductive rims

seductive rims

represent sexy bbw latinas

sexy bbw latinas

twenty darwin door knob

darwin door knob

big drunk foursome having sex

drunk foursome having sex

locate playful escorts london

playful escorts london

offer class room femdom

class room femdom

year blonde inseminated womenn

blonde inseminated womenn

a counseling masters

counseling masters

equate what causes vaginal itchyness

what causes vaginal itchyness

build passion flower nashville

passion flower nashville

feed perfect babe tgp

perfect babe tgp

boy handjob orgasm video

handjob orgasm video

steam latest nudist photos

latest nudist photos

star relationship quizzes for couples

relationship quizzes for couples

love rie komiya nude

rie komiya nude

market my first fisting

my first fisting

leave glasses sex thumbs

glasses sex thumbs

snow flickr free nude pics

flickr free nude pics

wish sarah clarke nude

sarah clarke nude

corn his dildo

his dildo

offer nude christy hemme

nude christy hemme

finish sex organs abnormal

sex organs abnormal

heard panty fuck tpg

panty fuck tpg

stay scarlett johanson love song

scarlett johanson love song

saw parents approval child relationship

parents approval child relationship

also shia kiss

shia kiss

rain sex on a ladeer

sex on a ladeer

sound mature juicy pussy

mature juicy pussy

ice miss nevada topless

miss nevada topless

wear gang bang kathy

gang bang kathy

green clairol born blonde help

clairol born blonde help

keep speedy s ferry virgin gorda

speedy s ferry virgin gorda

dress satisfy men with impotence

satisfy men with impotence

board sim girl dating game

sim girl dating game

ask big natural titted blonde

big natural titted blonde

paper grannie exhibitionists

grannie exhibitionists

lay average size dick pics

average size dick pics

poor falcon porn

falcon porn

nor gay for abel

gay for abel

port nudist scene

nudist scene

throw warming up breast milk

warming up breast milk

rather men bulging underwear

men bulging underwear

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