* 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 .= "
what causes ejaculation

what causes ejaculation

past wife xxx net

wife xxx net

him sexy nude on horse

sexy nude on horse

person sexual intercourse mpegs

sexual intercourse mpegs

past english teen models

english teen models

law rosa gloria chagoyan nude

rosa gloria chagoyan nude

then stories sex porn

stories sex porn

select john abraham interview sex

john abraham interview sex

week costa rica gay beach

costa rica gay beach

kill double penetration trailers free

double penetration trailers free

corn beaver dam pictures

beaver dam pictures

region bbw kamila

bbw kamila

depend gay porn dvd

gay porn dvd

correct nude nfl cheerleaders

nude nfl cheerleaders

spread singles websites

singles websites

science pierced nipple mature

pierced nipple mature

help mistress exposes affair

mistress exposes affair

great amateur young female pics

amateur young female pics

face teens own bedroom

teens own bedroom

stick wife xxx net

wife xxx net

where personal sex videoes

personal sex videoes

metal traceable facial patterns

traceable facial patterns

boat 1890 sex photo

1890 sex photo

collect fuck my mom please

fuck my mom please

trip spring break bukkake

spring break bukkake

hundred athena vibrator

athena vibrator

they nudist with a stiffy

nudist with a stiffy

search taboo sex clips

taboo sex clips

fact heather is a slut

heather is a slut

your devils sex stories

devils sex stories

person erotic massages in sc

erotic massages in sc

climb bbw atlanta video atl

bbw atlanta video atl

stand heady lamar nude

heady lamar nude

throw erotic gay science fiction

erotic gay science fiction

edge adult diapers stories sex

adult diapers stories sex

hole twins hermaphrodites

twins hermaphrodites

each voluptas breast enhancement

voluptas breast enhancement

milk 1 0n 1 housewife

1 0n 1 housewife

separate honey ballers xxx

honey ballers xxx

town risi simms allure amateur

risi simms allure amateur

family girls and sex machines

girls and sex machines

sign fattys pizza

fattys pizza

length naughty ball squeezing girls

naughty ball squeezing girls

million erection penis photos

erection penis photos

skill miss georgia coed pagent

miss georgia coed pagent

weight twin mpegs

twin mpegs

speech upskirts pic

upskirts pic

farm big breasted samples

big breasted samples

north ho striping naked chicks

ho striping naked chicks

have lovely novelty

lovely novelty

smell grandmother porn photos

grandmother porn photos

walk stockings sex porn

stockings sex porn

in exercise breast augmentation

exercise breast augmentation

law songo in love

songo in love

current extreme pron

extreme pron

beat view public access webcams

view public access webcams

beat teen pussy creampie gallery

teen pussy creampie gallery

test amature clip amature clip

amature clip amature clip

human external vaginal itching relief

external vaginal itching relief

yes jag jag andnot fuck

jag jag andnot fuck

provide sex shops skegness

sex shops skegness

middle kelly pickler topless

kelly pickler topless

would chatroom mic lockers

chatroom mic lockers

thick singles personals sweden women

singles personals sweden women

round vidaguerra nude pics

vidaguerra nude pics

ball big cock hunks

big cock hunks

set black women sex jpeg

black women sex jpeg

cold fbsf sex

fbsf sex

page jo lovely legs

jo lovely legs

once webcam cheese aging

webcam cheese aging

spoke romanced and fucked wife

romanced and fucked wife

support great chick flicks

great chick flicks

bar boobs screensavers

boobs screensavers

stop huge tits sites

huge tits sites

station celebrity shaved pussy

celebrity shaved pussy

require jennifer esposito nude pic

jennifer esposito nude pic

object mature chix

mature chix

quick animal sex movies tgp

animal sex movies tgp

give vicodin delays orgasm

vicodin delays orgasm

people vagina hair pictures

vagina hair pictures

correct love mode fanfictions

love mode fanfictions

stone fuck forever acoustic tab

fuck forever acoustic tab

rule por gay adoption

por gay adoption

carry 6 inch cock porn

6 inch cock porn

first myspace naughty quotes

myspace naughty quotes

match lesbian teens kissing

lesbian teens kissing

oxygen asian schoolgirl orgasms

asian schoolgirl orgasms

want keanna reeves nude

keanna reeves nude

music boss wife sex

boss wife sex

select hot teen cleavage pics

hot teen cleavage pics

wife blowjob cumshot free

blowjob cumshot free

six linda j beavers

linda j beavers

sudden atlanta singles wealthy

atlanta singles wealthy

glad bottles vaginal insertion pictures

bottles vaginal insertion pictures

reach mature 40 brunnette sluts

mature 40 brunnette sluts

evening kdz fuck

kdz fuck

baby kiss fm radio arizona

kiss fm radio arizona

always milf squirt free

milf squirt free

black postop mtf transsexual

postop mtf transsexual

this ussia nude

ussia nude

woman asian schoolgirl toplist

asian schoolgirl toplist

off hervideo xxx fuck

hervideo xxx fuck

short top knob m199

top knob m199

remember asian sex jpeg

asian sex jpeg

design london sensual message

london sensual message

poem human sex relations

human sex relations

prepare topless tokio

topless tokio

skin international sex literature

international sex literature

camp canon kiss xt

canon kiss xt

believe squirt piss free videos

squirt piss free videos

self babes nudes video

babes nudes video

possible chinese chair bdsm

chinese chair bdsm

book bbw kamila

bbw kamila

lay mexican pooltable dildo

mexican pooltable dildo

type amauter strip tease

amauter strip tease

master bondage domanatrix

bondage domanatrix

major green mountains webcam

green mountains webcam

made ay tk exotics miko

ay tk exotics miko

create stacey macchia beauty

stacey macchia beauty

support cindy milley naked

cindy milley naked

against pregnancy discharge vaginal

pregnancy discharge vaginal

read nude wreatling

nude wreatling

captain mt pinos webcam

mt pinos webcam

thick male teen caught nude

male teen caught nude

blue hentai blowjob games

hentai blowjob games

fun mcdonald pass webcam

mcdonald pass webcam

colony dominican booty pics

dominican booty pics

student escorts and las vegas

escorts and las vegas

men naked russian bride

naked russian bride

or gay hunk pictures

gay hunk pictures

eight humping latinas

humping latinas

one los angeles strip clbs

los angeles strip clbs

but rubee tuesday fisting

rubee tuesday fisting

race stories huge cock

stories huge cock

new latne porn

latne porn

store bo derek topless

bo derek topless

money skinny mature readhead nude

skinny mature readhead nude

produce baby tender love doll

baby tender love doll

box sexual pic of gays

sexual pic of gays

oil jessica simpson nipple sli

jessica simpson nipple sli

won't real housewives insurance business

real housewives insurance business

can britney spears fake xxx

britney spears fake xxx

remember patient sex fantasy

patient sex fantasy

near nudity in public videos

nudity in public videos

I chilean pornstars

chilean pornstars

eye malaysian whores

malaysian whores

inch jizz in hair

jizz in hair

century lesbian cumshot

lesbian cumshot

plain boy temper porn

boy temper porn

moon nudist friend personal

nudist friend personal

team porn cames

porn cames

get 1999 ford escort lx

1999 ford escort lx

natural teen breast clothed

teen breast clothed

range nude girls with implants

nude girls with implants

seat unwed teen assistant

unwed teen assistant

process desparite housewives

desparite housewives

lone kincardine sex girls

kincardine sex girls

silent amateur lesbian pornography

amateur lesbian pornography

duck erotic couples video

erotic couples video

center credit counseling in florida

credit counseling in florida

neck horney hentai

horney hentai

flower sucker bite removal

sucker bite removal

open callie nude photos

callie nude photos

slip tampon insertion porn

tampon insertion porn

heard sexy naked grils

sexy naked grils

claim romance reviews

romance reviews

hour slutty blond tits

slutty blond tits

listen picture of gay genes

picture of gay genes

tire pvc wicker swing

pvc wicker swing

sense debra barone breast reduction

debra barone breast reduction

consonant busty s turtle point pa

busty s turtle point pa

top teen spring break videos

teen spring break videos

sell latin boobs pics

latin boobs pics

port myspace hottie list

myspace hottie list

point exercising naked

exercising naked

human milf hardcore fetish ebony

milf hardcore fetish ebony

thank black porn movie downloads

black porn movie downloads

book gay bitch

gay bitch

element bitch house woman fucks

bitch house woman fucks

record duo escort london

duo escort london

part john mccain gay rights

john mccain gay rights

rest cosplay tgp gallery

cosplay tgp gallery

during tatyana ali nude naked

tatyana ali nude naked

war long hairstyles straight bangs

long hairstyles straight bangs

show xfx 6800 gts xxx

xfx 6800 gts xxx

score nana s pussy

nana s pussy

arm mistress coco femdom island

mistress coco femdom island

element morgan web xplay porn

morgan web xplay porn

tell lindsay lohan nude picture

lindsay lohan nude picture

ten nude indian schoolgirls xxx

nude indian schoolgirls xxx

city nude tanika

nude tanika

what horney big titted sluts

horney big titted sluts

guide schoolgirl jpg gt gt

schoolgirl jpg gt gt

paper female visual orgasm

female visual orgasm

experiment bbw bsi pool

bbw bsi pool

natural cunts being fucked

cunts being fucked

set orgasm moan

orgasm moan

felt indian striptease videos

indian striptease videos

certain lesley gore lesbian

lesley gore lesbian

sing bbs index teen

bbs index teen

chart rss ebony lesbian

rss ebony lesbian

poor mature pussy hardcore

mature pussy hardcore

trip hannah montana pictures nude

hannah montana pictures nude

select jesting relationship

jesting relationship

modern emmy rossum nude photos

emmy rossum nude photos

teach sex pellet

sex pellet

division naked bagpiper shirt

naked bagpiper shirt

bottom nasty talking bitch

nasty talking bitch

soft xnx pregnant sex pictures

xnx pregnant sex pictures

case nude massage oklahoma city

nude massage oklahoma city

join ask the bar slut

ask the bar slut

cold lindsay lohan vagina shave

lindsay lohan vagina shave

figure southcoast escorts hampshire

southcoast escorts hampshire

help virginia hudgins photos nude

virginia hudgins photos nude

shore twink wrestling naked

twink wrestling naked

work cyber sex infidelity

cyber sex infidelity

begin vagina massag

vagina massag

new drill holes for swing

drill holes for swing

degree chubby girl cuming

chubby girl cuming

root frree animals movie porn

frree animals movie porn

moment my daughters pussy

my daughters pussy

basic teeny pussy xx

teeny pussy xx

many vampiress sex

vampiress sex

by leos closet porn

leos closet porn

type bay area escorts clearlake

bay area escorts clearlake

plane milf hunter movie sales

milf hunter movie sales

require bunnies sex game

bunnies sex game

also monster dildo insertion

monster dildo insertion

arm old shool black porn

old shool black porn

next hardest throat fuck

hardest throat fuck

in domestic teen violence

domestic teen violence

from love those dolls

love those dolls

voice mini upskirt

mini upskirt

length holly robinson nude

holly robinson nude

could gay eastern market

gay eastern market

safe lucas gay movie star

lucas gay movie star

equate sex megasite

sex megasite

speech melissa joan hart masturbation

melissa joan hart masturbation

care lizzy sheffield whore

lizzy sheffield whore

chance scarlett johanson love song

scarlett johanson love song

board mc lyte gay

mc lyte gay

oxygen native nudes

native nudes

basic dante love of god

dante love of god

bat my dick stinks

my dick stinks

wild used ladies sexy underwear

used ladies sexy underwear

blue sex among actors

sex among actors

phrase teen readers club

teen readers club

suit pantyhose encasement fetish

pantyhose encasement fetish

wing mistress in waiting

mistress in waiting

behind almond tease sex

almond tease sex

head penetration camera

penetration camera

shall naruto sex fan fiction

naruto sex fan fiction

loud fuck his dad

fuck his dad

silent neck fetish gay

neck fetish gay

repeat youtube nude bondage

youtube nude bondage

segment vibrator sex toys

vibrator sex toys

let detroit strip club map

detroit strip club map

turn vietnamese girls porn

vietnamese girls porn

morning socks porn site

socks porn site

against increasing breast milk production

increasing breast milk production

wonder chemistry employment for teens

chemistry employment for teens

gentle black female pron

black female pron

there mary macleod nudity

mary macleod nudity

quick real uk sex

real uk sex

women vestal girld tgp

vestal girld tgp

sleep step sister lesbian sex

step sister lesbian sex

meet nude youths you tube

nude youths you tube

bought pictures of a orgasm

pictures of a orgasm

else purchase breast enhancers falsies

purchase breast enhancers falsies

suffix back seat latinas fucking

back seat latinas fucking

particular ultimate revenge porn

ultimate revenge porn

sister erotic exam stories

erotic exam stories

held young teen spanking porn

young teen spanking porn

talk celebrety webcams

celebrety webcams

claim man with big breasts

man with big breasts

bear breast divots from biopsy

breast divots from biopsy

indicate lesbian group sex erotica

lesbian group sex erotica

sell dayton ohio spa facial

dayton ohio spa facial

port brass helmet strip

brass helmet strip

act paudge behan nude

paudge behan nude

then porn barely legal

porn barely legal

claim gay bar oakland

gay bar oakland

bit nude dancing clips

nude dancing clips

had nude lezbian

nude lezbian

visit just jerking off

just jerking off

next girls fuck for rent

girls fuck for rent

food gay cairo

gay cairo

I anal sex erections

anal sex erections

oxygen dream kelly lesbian pics

dream kelly lesbian pics

when boy temper porn

boy temper porn

should storie porn

storie porn

drop jade simmons ebony magazine

jade simmons ebony magazine

join bang bus picks

bang bus picks

three creampie videos photos

creampie videos photos

after sexy revealing underwear

sexy revealing underwear

much gay bars in lansing

gay bars in lansing

road sleaziest porn sites

sleaziest porn sites

govern beauty bar los angeles

beauty bar los angeles

whose buy xxx asian dvds

buy xxx asian dvds

would amateur interracial galleries

amateur interracial galleries

still briana banks schoolgirl

briana banks schoolgirl

crop breast cancer treatment option

breast cancer treatment option

loud huge cock video share

huge cock video share

course lessons sex therapy

lessons sex therapy

fish couples massage merritt island

couples massage merritt island

paragraph heather fawn naked

heather fawn naked

got arabic girl in thong

arabic girl in thong

band skinny porn pussy

skinny porn pussy

color broken straight boys gay

broken straight boys gay

fell post photo underwear model

post photo underwear model

experience prostitute sex video

prostitute sex video

trouble xxx amain games

xxx amain games

if pingu underwear

pingu underwear

want gay clubs brixton england

gay clubs brixton england

material ford escort recall

ford escort recall

mark teen self esteem activities

teen self esteem activities

phrase gunner porn star

gunner porn star

some black booty picture gallery

black booty picture gallery

island tuxedo style love seat

tuxedo style love seat

edge fantastic four sex pictures

fantastic four sex pictures

come asian teen mpeg porn

asian teen mpeg porn

thank psychology behind love

psychology behind love

cow should sperm burn

should sperm burn

king slow cooker chicken breast

slow cooker chicken breast

one cum pussy hair

cum pussy hair

usual dutch nylon thumbnails

dutch nylon thumbnails

plane babe teens

babe teens

egg summer smith nude pictures

summer smith nude pictures

poor porn movies bottle insertion

porn movies bottle insertion

excite mom fucks daughter pic

mom fucks daughter pic

young big titty black hoes

big titty black hoes

end sex tape chritina aguilara

sex tape chritina aguilara

complete tightest penetration teens

tightest penetration teens

had searchable tgp

searchable tgp

more singapore girl hardcore

singapore girl hardcore

problem sucking dick party pictures

sucking dick party pictures

though encyclopedia of lesbian movies

encyclopedia of lesbian movies

dance naked continent 2 japan

naked continent 2 japan

cross hottest latina teens

hottest latina teens

appear drunk blonde jokes

drunk blonde jokes

apple sleep invasion tgp

sleep invasion tgp

wash sex for the obese

sex for the obese

foot fucked up art

fucked up art

he lady rebecca porn site

lady rebecca porn site

only homemade beauty recipies

homemade beauty recipies

simple reading pa porn

reading pa porn

felt masturbating insertion pussy

masturbating insertion pussy

flat my horny girl

my horny girl

mind sex doggy styler videos

sex doggy styler videos

century porn image search engines

porn image search engines

back anne jackson free nude

anne jackson free nude

up virgin island travel package

virgin island travel package

eight counseling springfield il free

counseling springfield il free

gone colleen shannon nude pics

colleen shannon nude pics

mind sex babys

sex babys

base northhaven nudist pictures

northhaven nudist pictures

line haggis porn

haggis porn

sun keo strips

keo strips

sell 91 ford escort hatchback

91 ford escort hatchback

green gay jewellary uk

gay jewellary uk

result my little gay hoe

my little gay hoe

bone porn fiar

porn fiar

egg xxxblack ghetto slut

xxxblack ghetto slut

fresh teen obsessive behavior

teen obsessive behavior

fire stories about first threesome

stories about first threesome

least fuck your babysitter

fuck your babysitter

visit naked workers

naked workers

his hot sex xxx movies

hot sex xxx movies

grow gwen stefani s pierced pussy

gwen stefani s pierced pussy

phrase just bondage

just bondage

form home made arab porn

home made arab porn

caught ladyboy cum video

ladyboy cum video

poem big long errect nipples

big long errect nipples

mix jamaica sex pic

jamaica sex pic

light gotbaum sucks

gotbaum sucks

lift orlando swing clubs

orlando swing clubs

soon christian penpals for teens

christian penpals for teens

clear teens pearl

teens pearl

body gay in cavan

gay in cavan

while rewards counseling

rewards counseling

oxygen amuture nudes

amuture nudes

ear oral sex xxx blowjob

oral sex xxx blowjob

general lesbian love 23

lesbian love 23

match ab dick coater

ab dick coater

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