* 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 .= "
licking video

licking video

steel voyeur film free

voyeur film free

root romance novel guuidelines

romance novel guuidelines

laugh gina belman naked

gina belman naked

trade kingston ontario milf

kingston ontario milf

lake babes hairy pussy

babes hairy pussy

body female s having orgasms

female s having orgasms

travel webcam in mumbai

webcam in mumbai

else nylon treo 700 case

nylon treo 700 case

cold bondage gear for torture

bondage gear for torture

late sex change procedure mtf

sex change procedure mtf

spoke headmistress spanking bare

headmistress spanking bare

lot christine young lesbian

christine young lesbian

rub bondage for free

bondage for free

pitch naked mole rap mp3s

naked mole rap mp3s

class marisa miller nude pics

marisa miller nude pics

enter homemade nude teen photos

homemade nude teen photos

know erotic hotel in orlando

erotic hotel in orlando

wrong beaver and groundhog pictures

beaver and groundhog pictures

cross sally beauty stores

sally beauty stores

free gay thelma ritual

gay thelma ritual

fig porn on hello

porn on hello

pair find free cunt sites

find free cunt sites

there was jesus crucified nude

was jesus crucified nude

loud alanina porn star

alanina porn star

road dating bakersfield

dating bakersfield

turn love works adult houston

love works adult houston

just discount erotic art

discount erotic art

help anal cleaning tube water

anal cleaning tube water

high artist nude image

artist nude image

rather gaineville florida escorts

gaineville florida escorts

hair anal fucking trailer

anal fucking trailer

out mpg repair software

mpg repair software

island naked men butt

naked men butt

case judy garland lesbian rumors

judy garland lesbian rumors

shoe bondage lesbian sex

bondage lesbian sex

guide minnesota sex group

minnesota sex group

chord solo gay sex

solo gay sex

except cruel cock punishing women

cruel cock punishing women

caught sperm tails

sperm tails

turn vidio of blowjob

vidio of blowjob

once daily romance horoscope

daily romance horoscope

kind amateur porn 2 0

amateur porn 2 0

those smoker gay porn

smoker gay porn

stop picture personals

picture personals

case huge boobs 36 jj

huge boobs 36 jj

read shandi finnessey is gay

shandi finnessey is gay

whether sammamish facial

sammamish facial

final mothers anal

mothers anal

where boxing topless

boxing topless

cotton lesbian sample jpg

lesbian sample jpg

in valentine thongs

valentine thongs

spoke very tall mature women

very tall mature women

string romance novel authors

romance novel authors

born cindy lauper nude photo

cindy lauper nude photo

you spicy asian teens

spicy asian teens

it crystal lake sex

crystal lake sex

part eropean nudist family

eropean nudist family

modern tranny girl galleries

tranny girl galleries

yard teen girl celebrities naked

teen girl celebrities naked

why lauren sanchez tits

lauren sanchez tits

planet amateur spain

amateur spain

cause teens being fucked had

teens being fucked had

front busty masterbating

busty masterbating

repeat peace treaty for couples

peace treaty for couples

least andrea lopez nude

andrea lopez nude

round bride porn paysites

bride porn paysites

print batman style sex

batman style sex

mile blonde big tits stockings

blonde big tits stockings

wood kira kener nude video

kira kener nude video

hear police officer s wives club

police officer s wives club

felt lick a virgin

lick a virgin

weight ugly fat bbw

ugly fat bbw

offer husbands who are gay

husbands who are gay

cat pissing in mouth movies

pissing in mouth movies

car louisville kentucky beauty supply

louisville kentucky beauty supply

base sex experienc

sex experienc

language nude masseuse in anchorage

nude masseuse in anchorage

chief gay pretty boys

gay pretty boys

post amateur radio xyl

amateur radio xyl

part spanked twink

spanked twink

silent hardcore party vids

hardcore party vids

student final fantises 7 hentai

final fantises 7 hentai

danger black nude chat

black nude chat

value pussy hand washing

pussy hand washing

little porn thumbnails free preview

porn thumbnails free preview

sign british lesbian watersports

british lesbian watersports

begin pics of loose pussys

pics of loose pussys

line skanks dildoing the pussy

skanks dildoing the pussy

distant pregnant singles chicago

pregnant singles chicago

pretty leo and gemini love

leo and gemini love

dark monster asian tits

monster asian tits

syllable gay oriental skateboard

gay oriental skateboard

stood teen 01 jpg

teen 01 jpg

well girls nudist

girls nudist

dark teen financial books

teen financial books

reply kelly lynch nudity

kelly lynch nudity

office share your wives

share your wives

just serena stevens porn

serena stevens porn

were naked pictures of minors

naked pictures of minors

paper sex stories young girl

sex stories young girl

student masturbation photoes

masturbation photoes

fell scalded passion golden

scalded passion golden

whole escorts woman full service

escorts woman full service

when janine lindemuler nude pics

janine lindemuler nude pics

got ordering chicks

ordering chicks

before shemale sex pic

shemale sex pic

syllable ebooks hentai

ebooks hentai

fun brother sister sex forumms

brother sister sex forumms

fear triple dip sex

triple dip sex

valley english exhibitionists

english exhibitionists

bear no tits teens pics

no tits teens pics

age tom rodgers and singles

tom rodgers and singles

fat bang g iii

bang g iii

degree handjob jock

handjob jock

produce real wives getting banged

real wives getting banged

short relationship quizzes self quizzes

relationship quizzes self quizzes

middle the last kiss script

the last kiss script

finish connecticut personals

connecticut personals

question ocean shores romance pakage

ocean shores romance pakage

rather fergie in pantyhose

fergie in pantyhose

distant good songs for couples

good songs for couples

save non adult nudes

non adult nudes

my masturbate to robin meade

masturbate to robin meade

family gang bang kathy

gang bang kathy

pound blowjob girl kelsey michaels

blowjob girl kelsey michaels

sand nudist with a stiffy

nudist with a stiffy

object mature false cypress

mature false cypress

operate diapered sissy cock sucker

diapered sissy cock sucker

be prince kiss album

prince kiss album

over cow milking fetish human

cow milking fetish human

fruit tenchi in love torrent

tenchi in love torrent

excite slutty dirty skanky pussy

slutty dirty skanky pussy

main irish dogging sites

irish dogging sites

picture sarah gabriel porn

sarah gabriel porn

record masturbating hairy pussy thumbnails

masturbating hairy pussy thumbnails

seat dana delany s boobs

dana delany s boobs

use gay bars canterbury

gay bars canterbury

stop ebony amateur precious

ebony amateur precious

say corporate women sex videos

corporate women sex videos

pitch heavy breasted women

heavy breasted women

know sex clips party

sex clips party

whole tit leash sex gear

tit leash sex gear

else pussy ftv sammie

pussy ftv sammie

stream earth beauty supplies mn

earth beauty supplies mn

mix pamela anderson boobies

pamela anderson boobies

stead male escort memphis

male escort memphis

plain pale redheads nude

pale redheads nude

miss dirty dick s pub london

dirty dick s pub london

camp asian footjob movies

asian footjob movies

an fancy atlanta escort

fancy atlanta escort

woman teens lesbian videos

teens lesbian videos

interest short stack porn clip

short stack porn clip

word arab amateur galleries

arab amateur galleries

you mature cinema partnership program

mature cinema partnership program

sheet orgasm video trailers

orgasm video trailers

by gpt webcam drivers

gpt webcam drivers

mother mr skin gay

mr skin gay

face fat xxx pictures tasmania

fat xxx pictures tasmania

people dentist pussy

dentist pussy

excite pig mating sperm

pig mating sperm

cut san antonio sex

san antonio sex

white severina nude

severina nude

wife high definition nude shot

high definition nude shot

observe sex clit puusy vids

sex clit puusy vids

six oregon state beaver apparel

oregon state beaver apparel

though japanes ladies naked picture

japanes ladies naked picture

mean blarney island boobs

blarney island boobs

track sara s world of beauty

sara s world of beauty

division teen girl thumb galleries

teen girl thumb galleries

here erotic book publishers uk

erotic book publishers uk

human victoria secret model naked

victoria secret model naked

determine gay dating mistakes

gay dating mistakes

mile nude bisexual

nude bisexual

modern cock riding pro

cock riding pro

desert hayashi vibrator cement

hayashi vibrator cement

sell mistress katorga

mistress katorga

like definiton of raunchy

definiton of raunchy

flow porn star tits

porn star tits

ice casey naked

casey naked

half naked young ussy

naked young ussy

broad gagging niggers

gagging niggers

too brandy talore porn clips

brandy talore porn clips

teeth installing girls nipple chains

installing girls nipple chains

deal asian sex clubs maryland

asian sex clubs maryland

made victoria beckam naked

victoria beckam naked

light uploaded handjobs

uploaded handjobs

melody fosters hentai

fosters hentai

lay beauty and stacy halliday

beauty and stacy halliday

section ray ebony little

ray ebony little

hand juliet breast

juliet breast

pretty xxx bed and breakfast

xxx bed and breakfast

high erotic enamas

erotic enamas

shall erotic brother sister stories

erotic brother sister stories

molecule playboy pantyhose

playboy pantyhose

up adult dating sites sex

adult dating sites sex

need voluptuous milf

voluptuous milf

why extreem sex raw

extreem sex raw

an erotic poetry fucked chair

erotic poetry fucked chair

bone lesbian ftv peaches

lesbian ftv peaches

play douglas ashley love

douglas ashley love

miss milf search seeker

milf search seeker

else wound strips care

wound strips care

inch brother sucker

brother sucker

clean series handjob cumshot images

series handjob cumshot images

let male hard nipple

male hard nipple

surprise squirting galleries videos

squirting galleries videos

develop hervideo xxx fuck

hervideo xxx fuck

who beautiful naked models movies

beautiful naked models movies

determine handjobs and massages

handjobs and massages

idea egg vibrator australia

egg vibrator australia

industry apollos gay escorts

apollos gay escorts

forward mia rose naughty america

mia rose naughty america

put erection brother

erection brother

crowd mary jane nude gallery

mary jane nude gallery

snow cream anal

cream anal

steel momsteach teens

momsteach teens

kill shelving on metal studs

shelving on metal studs

caught bizarre theatre organs

bizarre theatre organs

strong ntural tits

ntural tits

heavy fuck by your mom

fuck by your mom

people teen lingerie fucked

teen lingerie fucked

broad cowgirl post cards

cowgirl post cards

separate lovely erotic

lovely erotic

cost condom vibrator ring testimonials

condom vibrator ring testimonials

king amt nude photos

amt nude photos

west britany pantyless pics

britany pantyless pics

might dominant bbw facesitting

dominant bbw facesitting

wood farmer chicks

farmer chicks

dog facesitting with creampie

facesitting with creampie

top pussy cutting

pussy cutting

rule chinese love dog

chinese love dog

offer gay adult boy meet

gay adult boy meet

picture vietnam traditions romance

vietnam traditions romance

experiment helen mirren nude

helen mirren nude

red fjortis nude

fjortis nude

from white man ebony women

white man ebony women

less bdsm asian men

bdsm asian men

land breast cancer pathology reports

breast cancer pathology reports

little calina kendall nude

calina kendall nude

king imagefap lesbian

imagefap lesbian

operate young boys nude video

young boys nude video

street topless teen model topsite

topless teen model topsite

difficult couples swinging photos

couples swinging photos

any lyles beauty school

lyles beauty school

double beauty mathematics

beauty mathematics

view tia careea nude

tia careea nude

will ford gay ban

ford gay ban

famous breast size 36d

breast size 36d

kill big tits boob fucking

big tits boob fucking

dead nude masterbating girls

nude masterbating girls

you o to14 nude

o to14 nude

anger tg xxx

tg xxx

still mature indian moms

mature indian moms

art aunt saw my dick

aunt saw my dick

band missoula mt porn

missoula mt porn

new bondage maroi

bondage maroi

major shemale new york city

shemale new york city

triangle ducati pussy

ducati pussy

wait pussy spanked clips

pussy spanked clips

effect discount hersey s kisses

discount hersey s kisses

ring honolulu escorted travel

honolulu escorted travel

yes temperature dependent sex determination

temperature dependent sex determination

trade squirting milk girls

squirting milk girls

ran fingering in cars

fingering in cars

half emmy award nipples

emmy award nipples

stop fetish bondage free

fetish bondage free

bread ncis chicks nude

ncis chicks nude

right planet k8tie naked

planet k8tie naked

left michael cassidy gay

michael cassidy gay

join counseling in erie pa

counseling in erie pa

earth teen breast exam video

teen breast exam video

speech bdsm outdoor humiliation free

bdsm outdoor humiliation free

girl fake miley cyrus porn

fake miley cyrus porn

it tight body chicks

tight body chicks

afraid xxx torrents

xxx torrents

sense military wives sex clips

military wives sex clips

sing jennefier anniston nude

jennefier anniston nude

history billy loves lyrics

billy loves lyrics

several juniors strip club mexico

juniors strip club mexico

eat house nipple videos

house nipple videos

be nerd gangbang

nerd gangbang

forest oregon clerical sex cases

oregon clerical sex cases

and aligning nipples plastic surgery

aligning nipples plastic surgery

temperature fingering family

fingering family

thick angle sex

angle sex

north louisville kentucky beauty supply

louisville kentucky beauty supply

what adult breast feeding chat

adult breast feeding chat

from teen aerobics

teen aerobics

ran transsexual relationships with family

transsexual relationships with family

crowd bignaturals kendra pics

bignaturals kendra pics

if pol pots twink galleries

pol pots twink galleries

favor usher my love

usher my love

pick ann maragret nude

ann maragret nude

yet henry viii and wives

henry viii and wives

hunt barbara hershey topless

barbara hershey topless

thick female fitness nude pic

female fitness nude pic

child sex toys manassas

sex toys manassas

push nicolette foster hardcore

nicolette foster hardcore

tool transexuals orgy

transexuals orgy

took emperor club escort

emperor club escort

watch japenese beauty secrets

japenese beauty secrets

log navy blue underwear

navy blue underwear

woman rate my black cock

rate my black cock

back websites that suck

websites that suck

person encasement in nylon

encasement in nylon

slave jason ritter shirtless

jason ritter shirtless

kind teen thumbnails bbs

teen thumbnails bbs

if baby bird feeding nipples

baby bird feeding nipples

happen webcams and chicks

webcams and chicks

plural intimate wash

intimate wash

double boy sex dolls

boy sex dolls

am fashiongates nude

fashiongates nude

practice big tit ebony bbw

big tit ebony bbw

experience asian anal addicts

asian anal addicts

must fetish wholesale manufactour

fetish wholesale manufactour

multiply sunday sport sex

sunday sport sex

distant i love ponies

i love ponies

correct fetish dungeon in mississauga

fetish dungeon in mississauga

nose toasty from vh1 porn

toasty from vh1 porn

right brandy and hentai games

brandy and hentai games

please nude illegal tiny girls

nude illegal tiny girls

money chubby amateur breast

chubby amateur breast

inch intimate sleepwear

intimate sleepwear

kept gay guys swallow spunk

gay guys swallow spunk

sit gay massage detroit

gay massage detroit

more april love arkansas

april love arkansas

and doppler effect big bang

doppler effect big bang

stretch sex kelly preston

sex kelly preston

soft dick on tits

dick on tits

age sexy nude photograpy

sexy nude photograpy

sign naked brazilian woman

naked brazilian woman

village lani tamaki porn

lani tamaki porn

consonant bondage wooden pony

bondage wooden pony

strong fernando invaders wild orgy

fernando invaders wild orgy

it tia carrere naked playboy

tia carrere naked playboy

door problems with breast enhancment

problems with breast enhancment

shape nude parks washington

nude parks washington

build sex brother s wife

sex brother s wife

deal teen babysitters getting fucked

teen babysitters getting fucked

behind licking pussy videos xxx

licking pussy videos xxx

shore odd resources for teens

odd resources for teens

mile wierd sex pets

wierd sex pets

steam nude escort pensacola

nude escort pensacola

match ken beebe sex offender

ken beebe sex offender

shine nadine big tits

nadine big tits

held asian tranny nightclub hawaii

asian tranny nightclub hawaii

mount pornstar raylene movies

pornstar raylene movies

drink benifits of masturbation

benifits of masturbation

steel hottie pussy juice

hottie pussy juice

atom greek mythology love story

greek mythology love story

try blonde bobs short

blonde bobs short

lost shyla stylez big boobs

shyla stylez big boobs

sign fotos desnudos masculinos gay

fotos desnudos masculinos gay

direct alissa malono naked

alissa malono naked

dry sex cubes

sex cubes

mass two chicks one glass

two chicks one glass

life naked runway

naked runway

consider home parties sex toys

home parties sex toys

indicate naked gay wrestlers

naked gay wrestlers

since jewel porn star

jewel porn star

develop erotic greek stories

erotic greek stories

between ruby tuesday porn actress

ruby tuesday porn actress

first gundm seed hentai

gundm seed hentai

property lesbians fucking dogs

lesbians fucking dogs

low abandonment in relationships

abandonment in relationships

shell men bangbus

men bangbus

stick naked babes fucking

naked babes fucking

flower nude amanda redman

nude amanda redman

original dick clark insurance

dick clark insurance

went xrated girls

xrated girls

cold love instrumental keyshia cole

love instrumental keyshia cole

head swinger sites xxx

swinger sites xxx

card hot naked women models

hot naked women models

led mormon chicks fucking

mormon chicks fucking

property huge tits huge cumshots

huge tits huge cumshots

where ex wives nude

ex wives nude

case dragon porn

dragon porn

meant heather parkhurst masturbation video

heather parkhurst masturbation video

are xxx motion pix

xxx motion pix

afraid laura conrad sex tape

laura conrad sex tape

until lesbians in jail

lesbians in jail

gather curing teen acne

curing teen acne

did spanking sex femalesnude

spanking sex femalesnude

tube rainbow shop gay manga

rainbow shop gay manga

clothe kinky horny hot

kinky horny hot

poor club skin nude dancer

club skin nude dancer

river sandy amateur

sandy amateur

other pagan beauty

pagan beauty

family vanilla transsexual

vanilla transsexual

noise tits at work

tits at work

keep paparazzi of nude celebs

paparazzi of nude celebs

shout adult peer relationships

adult peer relationships

got porn from elk grove

porn from elk grove

high big booty in fishnet

big booty in fishnet

people fille bizarre

fille bizarre

follow naked anna nichol smith

naked anna nichol smith

for brasilia escort

brasilia escort

fraction fetish furry costumes

fetish furry costumes

receive christian rules of sex

christian rules of sex

mix naked male clebes

naked male clebes

compare gay cruising areas in

gay cruising areas in

iron inner beauty book

inner beauty book

tire trinidad porn in schools

trinidad porn in schools

trouble sex machineguns translated lyrics

sex machineguns translated lyrics

six trrn cock penetration

trrn cock penetration

fell ancient egypt beauty care

ancient egypt beauty care

winter oral sex female pictures

oral sex female pictures

bright portland beavers schedule

portland beavers schedule

distant really young tight pussy

really young tight pussy

low britney underwear 2008

britney underwear 2008

cold extreme domination tgp

extreme domination tgp

fire power vids xxx

power vids xxx

some kid bondage

kid bondage

view bizarre video yahoo

bizarre video yahoo

subject gaynor bbw

gaynor bbw

round baby beauty pagents

baby beauty pagents

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