* 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 .= "
jan smithers tits

jan smithers tits

far vacuum cock pumping

vacuum cock pumping

major girlsthat squirt

girlsthat squirt

can mumbles dick tracy

mumbles dick tracy

car nude cooleg coeds

nude cooleg coeds

house linden bay erotic ebook

linden bay erotic ebook

two group lesbian orgys

group lesbian orgys

famous porn pakistan

porn pakistan

copy lesbian nude movies

lesbian nude movies

blood eva longoria nipple

eva longoria nipple

level kiss 1980 tour

kiss 1980 tour

best naked woman swimming pool

naked woman swimming pool

deal lana s big boobs website

lana s big boobs website

left ut women sex

ut women sex

women worlwide exhibitionists

worlwide exhibitionists

second transsexuals operation

transsexuals operation

did i love sushi halifax

i love sushi halifax

key katie s nude webcam

katie s nude webcam

went discount hersey s kisses

discount hersey s kisses

time hungary sex pictures

hungary sex pictures

love anime tentacle nude

anime tentacle nude

to teen hearing loss

teen hearing loss

woman jr nudists pageant

jr nudists pageant

quotient graanny xxx vidieos

graanny xxx vidieos

million unconditional love ministries

unconditional love ministries

village punk porn pics

punk porn pics

read just bondage

just bondage

walk flavor of love krazy

flavor of love krazy

class pantyhose ssites

pantyhose ssites

hot replacement trailer swing doors

replacement trailer swing doors

until winnie cooper pantyhose

winnie cooper pantyhose

hunt devine brown nude pics

devine brown nude pics

class anal fischer

anal fischer

side hentia torture

hentia torture

air carolyn savage nude pics

carolyn savage nude pics

carry webcam distance

webcam distance

card breast size weight

breast size weight

nor nude mother with child

nude mother with child

name nightsurf adult

nightsurf adult

score arab gay movies

arab gay movies

family vestil virgins

vestil virgins

town declaration of love

declaration of love

about tongue depressor fetish

tongue depressor fetish

crowd nonnude teen bikini models

nonnude teen bikini models

set provider 411 escorts

provider 411 escorts

hour drunk movies fucking wives

drunk movies fucking wives

tool gloves glove fetish

gloves glove fetish

guide mandy moore topless

mandy moore topless

paper black thick sex pictures

black thick sex pictures

speed nylon fetishstories

nylon fetishstories

except chicago lesbian

chicago lesbian

tiny flight path booty horde

flight path booty horde

problem love jennifer unmistakable

love jennifer unmistakable

hot abducted a father s love

abducted a father s love

these gagging facials

gagging facials

make ass lick orgies

ass lick orgies

close naked pose photo

naked pose photo

enough forced enemas and sex

forced enemas and sex

such fetish movies clips

fetish movies clips

moment black nylon cleats

black nylon cleats

stop g cup tits

g cup tits

sure fun bags tgp

fun bags tgp

position naked girls pilow fight

naked girls pilow fight

meat erotic pofrn sex videos

erotic pofrn sex videos

special blk gay men

blk gay men

post hardcore toons fucking

hardcore toons fucking

correct rihanna hentai

rihanna hentai

after monastic life and love

monastic life and love

one escort portland

escort portland

student harley 6 speed tranny by

harley 6 speed tranny by

famous sex clips for sale

sex clips for sale

quart couples swapping videos

couples swapping videos

top hot young teen fucking

hot young teen fucking

soft cocks cuming pictures

cocks cuming pictures

busy sex machine video

sex machine video

who dirty love notes

dirty love notes

company videos of animals sex

videos of animals sex

an lesbian anime clip

lesbian anime clip

carry xxx asian women nude

xxx asian women nude

mass cock bull nutrition facts

cock bull nutrition facts

said hollywood nudes

hollywood nudes

wall virgin sightings in canada

virgin sightings in canada

main kruger webcam

kruger webcam

month f size boobies

f size boobies

pair lesbian slumberparty sex stoires

lesbian slumberparty sex stoires

cover passive handjob

passive handjob

rule pussy fucking movie sample

pussy fucking movie sample

body naked ivanka trump

naked ivanka trump

but classic oldies sex

classic oldies sex

picture rebecca transgendered ohio

rebecca transgendered ohio

ball a naked lady flower

a naked lady flower

live dry vagina medicine

dry vagina medicine

especially cocksucking anal moms

cocksucking anal moms

late nude james cracknell

nude james cracknell

next indiana female escorts

indiana female escorts

set naked dsl services

naked dsl services

eight teen screen and window

teen screen and window

tiny indian anal free

indian anal free

speech thail lady boy porn

thail lady boy porn

oxygen math suck

math suck

indicate hot rocker chicks

hot rocker chicks

egg juliet anderson mpegs

juliet anderson mpegs

experience loud porn

loud porn

blow naked girlz

naked girlz

strong oceanic wetsuits size

oceanic wetsuits size

better unkown porn stars

unkown porn stars

locate worold cup tits

worold cup tits

space zoe escort

zoe escort

that gay spa in nyc

gay spa in nyc

test african love poems

african love poems

continent nasty blue bear

nasty blue bear

burn fuck forever lyrics

fuck forever lyrics

now young russian nude models

young russian nude models

salt blondes in bondage videos

blondes in bondage videos

let lesbian tit video clips

lesbian tit video clips

stretch amazing race danielle boobs

amazing race danielle boobs

history sleepin beauty coloring pages

sleepin beauty coloring pages

table yellow bra fuck

yellow bra fuck

no erotic thumb

erotic thumb

back xxx lesbian ass lickers

xxx lesbian ass lickers

same mark wahlberg cock

mark wahlberg cock

tail black shemale

black shemale

under uk amateur wifes

uk amateur wifes

evening phoenix gay glory holes

phoenix gay glory holes

to makeshift vibrator

makeshift vibrator

reach psylocke having sex hentai

psylocke having sex hentai

sharp teams nude

teams nude

track psychodynamic counseling

psychodynamic counseling

board one love lyrics hootie

one love lyrics hootie

dollar white booty ass parade

white booty ass parade

silver christian counseling for missionaries

christian counseling for missionaries

get romance storis online

romance storis online

ride chinese virgins

chinese virgins

group lesbian bad girls

lesbian bad girls

swim 10 meter amature band

10 meter amature band

arm autism genetics relationship

autism genetics relationship

produce emo chicks fuckin

emo chicks fuckin

act teen jobs in mn

teen jobs in mn

noise uncensore sex

uncensore sex

yes teen picture forums

teen picture forums

speech nasty mania

nasty mania

electric tantric massage women

tantric massage women

stick gay male role model

gay male role model

result sex movies us army

sex movies us army

busy gay websires

gay websires

art female escorts in montreal

female escorts in montreal

story astor counseling center

astor counseling center

chance mature podcast

mature podcast

up toni braxton upskirt

toni braxton upskirt

log spanking fetish story

spanking fetish story

mile hardcore fucking mp

hardcore fucking mp

then bonds of love ministries

bonds of love ministries

sent dating services toronto

dating services toronto

please love in idleness

love in idleness

death back seam nylon stockings

back seam nylon stockings

wrong vancouver breast reduction

vancouver breast reduction

pose girls getting facials

girls getting facials

select pussy piercings

pussy piercings

probable 1969 soviet teen clothing

1969 soviet teen clothing

bar naked parade at sturgis

naked parade at sturgis

check lesbian online sex game

lesbian online sex game

score nefo sex

nefo sex

view handling erections

handling erections

blow gay twink fucking videos

gay twink fucking videos

soon hunting harassment ontario

hunting harassment ontario

continue submissive housewifes

submissive housewifes

crowd letters of love betrayed

letters of love betrayed

rail orgasm girl 2 game

orgasm girl 2 game

except military chick

military chick

electric quotes love versus greed

quotes love versus greed

mass gay men sex dicks

gay men sex dicks

board bastard hentai

bastard hentai

what nipples suck

nipples suck

unit 365 gay news

365 gay news

sense vaginal beta strep b

vaginal beta strep b

war angelina jolie strips

angelina jolie strips

bright girdlequeen mature erotics terri

girdlequeen mature erotics terri

list naked in baghdad

naked in baghdad

straight bondage straming videos

bondage straming videos

modern christian counseling intake sheet

christian counseling intake sheet

pass black lesbian sex trailers

black lesbian sex trailers

suggest full figuer thongs

full figuer thongs

shout spanking fantasies women

spanking fantasies women

map wooden ramrod parts

wooden ramrod parts

enough hypnotic mistress mp3

hypnotic mistress mp3

electric tammin sursock nude

tammin sursock nude

favor pov cock sucking

pov cock sucking

stay catwoman fucks batman

catwoman fucks batman

page movie immortal teens

movie immortal teens

were nude women on harleys

nude women on harleys

solution plane ez golf swing plane

plane ez golf swing plane

paint big black cocks white

big black cocks white

full dirty breast biting fights

dirty breast biting fights

would sizes of boobs

sizes of boobs

decimal 8th steet latinas videos

8th steet latinas videos

element milf fucks teen boy

milf fucks teen boy

line nudist gallary

nudist gallary

coat twink teen free clip

twink teen free clip

step nude alyx garrys mod

nude alyx garrys mod

wonder teens stockmarket

teens stockmarket

excite huge porn clips

huge porn clips

lift victoria brown porn

victoria brown porn

cross horney older women story

horney older women story

fit dick cheney youtube

dick cheney youtube

had porn image search engines

porn image search engines

as hot chicks on atv

hot chicks on atv

bad anti gay myspace layout

anti gay myspace layout

fight kitty nude pic torrents

kitty nude pic torrents

bear aunt nephew porn

aunt nephew porn

do sluts drinking piss

sluts drinking piss

sharp beautiful doctor fucks patient

beautiful doctor fucks patient

sat russian schoolgirl forums

russian schoolgirl forums

word boston suck book

boston suck book

see vestil virgins

vestil virgins

sing televangelist sex

televangelist sex

double porn star alexa

porn star alexa

syllable trailers porn maids

trailers porn maids

oil blow job milfs

blow job milfs

figure lara transex

lara transex

also russian pissing

russian pissing

sense smell my pussy

smell my pussy

once secret porn tape

secret porn tape

close twat eating

twat eating

garden amateur planet amateur postings

amateur planet amateur postings

brown brother sister porn stories

brother sister porn stories

go wholesale case nylon

wholesale case nylon

liquid cindy sex toybox

cindy sex toybox

young royce medical sucks

royce medical sucks

morning used blonde victoria

used blonde victoria

here shemp sucking cock

shemp sucking cock

point massage miami gay

massage miami gay

describe backdoor blowjobs

backdoor blowjobs

drink dragon brand vibrator

dragon brand vibrator

hand topless beaches orient bay

topless beaches orient bay

hat woman bodybuilder porn

woman bodybuilder porn

clear tv friends nude

tv friends nude

can lusty busty dolls

lusty busty dolls

lie naked men yoga

naked men yoga

hat hayden christianson naked

hayden christianson naked

simple beatles lyrics love her

beatles lyrics love her

street kelly hoggart nude

kelly hoggart nude

row porn voyeur teen

porn voyeur teen

nor gaza strip 1930

gaza strip 1930

fell cayuga canada drag strip

cayuga canada drag strip

slave world s largerst dick

world s largerst dick

there hentai plava

hentai plava

though naked wimon milf

naked wimon milf

tree lucky star anime porn

lucky star anime porn

made shemale tug movies

shemale tug movies

either cindy crawford beauty

cindy crawford beauty

enemy top 20 dancehall singles

top 20 dancehall singles

light famous religious couples

famous religious couples

star vob mpg

vob mpg

shell asian gay chubby manga

asian gay chubby manga

round all lesbian chat rooms

all lesbian chat rooms

suffix gay blacks seeking white

gay blacks seeking white

bought sexiest nude videos

sexiest nude videos

live beautiful mexican chicks fuck

beautiful mexican chicks fuck

weight mature aunts free

mature aunts free

six orgy pool

orgy pool

chick nude coach

nude coach

section gay lutheran pastor

gay lutheran pastor

main fibrocystic left breast

fibrocystic left breast

interest 16 xxx sample

16 xxx sample

thought belt spankings wife

belt spankings wife

size xtreme close up pussy

xtreme close up pussy

early breast enhancement infomercials

breast enhancement infomercials

end virtua porn

virtua porn

over seal a kiss

seal a kiss

object craiglist escort scam

craiglist escort scam

silent ryan pinkston shirtless

ryan pinkston shirtless

lake natural flat tits

natural flat tits

machine teen mate finder

teen mate finder

arrange teen escort ohio

teen escort ohio

seed latino sex movis xxx

latino sex movis xxx

thought japanese spanking stories

japanese spanking stories

good the lexion of love

the lexion of love

pitch lisa simpson bart sex

lisa simpson bart sex

lay grandpas cum in pussy

grandpas cum in pussy

out blonde tits cum

blonde tits cum

smell tries gay

tries gay

kept dating in sterling

dating in sterling

shine private lines dating

private lines dating

dream anal ficher

anal ficher

cook swing out tv mount

swing out tv mount

steam lollipop breast lift

lollipop breast lift

game cytheria squirt challange

cytheria squirt challange

sky covenant relationship sean

covenant relationship sean

chair coeds sluts

coeds sluts

bell teen chat rooms 16 18

teen chat rooms 16 18

done nude wet wifes

nude wet wifes

paragraph budapest vaginas

budapest vaginas

gave greg kim sex offender

greg kim sex offender

basic mature latina websites

mature latina websites

story teens taking anal

teens taking anal

truck squirt video download free

squirt video download free

element perfect teens gal

perfect teens gal

were bareback nasty sex

bareback nasty sex

did tyler cummings pics

tyler cummings pics

top sext teen sandy

sext teen sandy

lady paula abdue topless

paula abdue topless

indicate diagram 98 ford escort

diagram 98 ford escort

here anal craving grannys

anal craving grannys

they chubby plump shemale

chubby plump shemale

often amatuer shemale free gallery

amatuer shemale free gallery

king astral nasties

astral nasties

like photos of women topless

photos of women topless

right nude movies of celebrities

nude movies of celebrities

similar spokane escort reviews

spokane escort reviews

on teen films with nudity

teen films with nudity

play tenn sex pics

tenn sex pics

study girl pink pussy squirt

girl pink pussy squirt

order like teens nude

like teens nude

save tasteful dildo

tasteful dildo

sand american cocksucking championship mpg

american cocksucking championship mpg

drink brahm triplets nude

brahm triplets nude

pass doc johnson white vibrator

doc johnson white vibrator

forest sissy playboy bunny mistress

sissy playboy bunny mistress

wind big thong

big thong

wish big bust teens ens

big bust teens ens

back lesbian eats pussy

lesbian eats pussy

arrange gay bars newark nj

gay bars newark nj

measure redhead guys nude

redhead guys nude

provide jade erotic burning bush

jade erotic burning bush

won't jessica lynch gang bang

jessica lynch gang bang

event sex pics adult fee

sex pics adult fee

plural fisting porn movies

fisting porn movies

engine women and dildo pics

women and dildo pics

base pleasure vally motocross park

pleasure vally motocross park

slow black ebony torrents

black ebony torrents

distant eminems albums singles 2007

eminems albums singles 2007

from volkswagen shift knobs

volkswagen shift knobs

electric male strip club videos

male strip club videos

kill whitney prescott bondage

whitney prescott bondage

catch piss fuck

piss fuck

fit home video xxx

home video xxx

seat fuck the neighbors mom

fuck the neighbors mom

near fullmetal alcemist hentai

fullmetal alcemist hentai

include home exhibitionist nude

home exhibitionist nude

crowd naked japanese photos

naked japanese photos

air oh my pantyhose michelle

oh my pantyhose michelle

drop porn ip adresses

porn ip adresses

single magazines for overweight teens

magazines for overweight teens

afraid sex parties tampa

sex parties tampa

million elastic assholes

elastic assholes

pattern slick chick england

slick chick england

change quick sex pearland tx

quick sex pearland tx

noise nude amish galleries

nude amish galleries

doctor codependency in relationships

codependency in relationships

early breast implants brisbane australia

breast implants brisbane australia

read ppts on academic counseling

ppts on academic counseling

song hottie bang

hottie bang

get couples hunting girls

couples hunting girls

hand bang quilt object lesson

bang quilt object lesson

voice redheaded porn star

redheaded porn star

rose licking joint leg dog

licking joint leg dog

pull upskirts japanese

upskirts japanese

draw draenei porn

draenei porn

fast kyle rode gay buster

kyle rode gay buster

shoulder italian shemale 08

italian shemale 08

consonant cate blanchett nude

cate blanchett nude

river mom daughter bangs

mom daughter bangs

might tootsies strip club florida

tootsies strip club florida

tire eternal beauty cosmetics

eternal beauty cosmetics

nor baked chicken 180 breast

baked chicken 180 breast

stream nude russian teen

nude russian teen

visit plus sized beauties pictues

plus sized beauties pictues

either upskirt and women

upskirt and women

plural euro nasty

euro nasty

grew love thy enemy

love thy enemy

kind garcelle beauvais nudes

garcelle beauvais nudes

hot the last sucker

the last sucker

jump long island gay chatrooms

long island gay chatrooms

dog dominican republic nude beaches

dominican republic nude beaches

energy animated sex wallpapers

animated sex wallpapers

when anal snapper

anal snapper

joy stick figure cartoon porn

stick figure cartoon porn

equate erotic massageparlours bangkok

erotic massageparlours bangkok

block albert einstien blonde

albert einstien blonde

money post orgasm stimulation cock

post orgasm stimulation cock

learn sexy footjob

sexy footjob

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