* 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 .= "
shemale horses porn movies

shemale horses porn movies

could reviews xxx

reviews xxx

course the vagina dialogues

the vagina dialogues

foot libra man and romance

libra man and romance

like young girls showering

young girls showering

tube portman nude scene

portman nude scene

on perfect ass and tits

perfect ass and tits

stone blak cocks

blak cocks

poem girls breasts naked

girls breasts naked

sharp cleveland sensual massage

cleveland sensual massage

say great big tits torrent

great big tits torrent

division ebony bbws

ebony bbws

new daughter mom sex

daughter mom sex

probable syndi sunrise nude

syndi sunrise nude

for all good spanking stories

all good spanking stories

human edmonton oilers wives

edmonton oilers wives

equate spanking porno clips

spanking porno clips

problem hot sluts pics thumbs

hot sluts pics thumbs

when asian pornstar lana

asian pornstar lana

section real female orgasm vids

real female orgasm vids

glad women s support underwear

women s support underwear

trade hpv friendly sex

hpv friendly sex

corn infant bunny booties

infant bunny booties

continue mom wants abig cock

mom wants abig cock

point rebecca mcfarland nude

rebecca mcfarland nude

listen oral sex orgasm guide

oral sex orgasm guide

certain enbrel and vaginal infections

enbrel and vaginal infections

where ups women nude

ups women nude

wife vhs nude fetish

vhs nude fetish

game rosemary stott naked

rosemary stott naked

thus hot pussies getting fucked

hot pussies getting fucked

where young horny colombian hos

young horny colombian hos

bad kelly clarson nude

kelly clarson nude

compare british porn siteas

british porn siteas

tail busty older woman

busty older woman

force artist jenny oliver dick

artist jenny oliver dick

money lum hentai

lum hentai

late group masturbation picks

group masturbation picks

metal anal pleasure techniques

anal pleasure techniques

lady romance country music

romance country music

shore anniston kisses cox

anniston kisses cox

big gagging action

gagging action

molecule artist dick baerman

artist dick baerman

line singles dance wisconsin

singles dance wisconsin

try ethnic women nude picture

ethnic women nude picture

found slave naked

slave naked

as little angels teen

little angels teen

company her loose pussy

her loose pussy

week use condom get std

use condom get std

character personals definition tv

personals definition tv

wind mistress toilet slaves

mistress toilet slaves

event animal hentai tube

animal hentai tube

wind hidden cams sex free

hidden cams sex free

measure phoenix az strip bar

phoenix az strip bar

dark aubrey escort

aubrey escort

raise ashley xxx free

ashley xxx free

determine american dogging videos

american dogging videos

operate mistress kroft

mistress kroft

wire ufo pants nylon

ufo pants nylon

up need femal for blowjob

need femal for blowjob

also hot cheerleaders naked videos

hot cheerleaders naked videos

please gay military passs

gay military passs

seven jeni miller nude

jeni miller nude

eight thong pammy

thong pammy

except nancy pelosi breasts

nancy pelosi breasts

fraction alliance fetish

alliance fetish

head nazis sex crimes

nazis sex crimes

cow hot hairy bears naked

hot hairy bears naked

hope ebooks hentai

ebooks hentai

bell horny goat weed dosage

horny goat weed dosage

rope old fashioned pinups

old fashioned pinups

process mature swinger vids

mature swinger vids

subject sex oasis

sex oasis

cent cbt rope training cock

cbt rope training cock

sleep mature fucking stories

mature fucking stories

music teens with big cocks

teens with big cocks

west mr cameltoe ginger

mr cameltoe ginger

over dads with twinks

dads with twinks

view myrtle beach strip bars

myrtle beach strip bars

light naked teen tpg

naked teen tpg

opposite upskirt on city streets

upskirt on city streets

of intimate percussion soundtracks

intimate percussion soundtracks

among ameatuer couples fcuk clips

ameatuer couples fcuk clips

view ceramic painted knobs

ceramic painted knobs

bring kim jagtiani nude

kim jagtiani nude

late rhubarb cream tarts

rhubarb cream tarts

wife college girls threesome

college girls threesome

party orgasm tv asian show

orgasm tv asian show

large amature straightguys

amature straightguys

two bend her over fuck

bend her over fuck

floor women sex fluid released

women sex fluid released

leave i love you poems

i love you poems

chance teen ass upskirt pics

teen ass upskirt pics

floor white facial hair

white facial hair

few naked news dogpile

naked news dogpile

radio soapy massage sex

soapy massage sex

finish phone sex australia

phone sex australia

work sex education porn lesson

sex education porn lesson

complete little boys first orgasm

little boys first orgasm

follow sable nude playboy

sable nude playboy

family fat mpegs

fat mpegs

post mom enjoyed spanking me

mom enjoyed spanking me

here unshaved pussy pictures

unshaved pussy pictures

made mexico lesbian

mexico lesbian

smell rachael weisz naked

rachael weisz naked

plain boulder minister gay

boulder minister gay

gold bigger chicks

bigger chicks

wild indian dildo

indian dildo

else nude beaches minnesota

nude beaches minnesota

operate gay cum movies

gay cum movies

instrument pretty mature brunette babe

pretty mature brunette babe

key nipple slips videos

nipple slips videos

shine gia sommers anal

gia sommers anal

stood nude fat black women

nude fat black women

interest sexy amature videos australia

sexy amature videos australia

tube naked women plumbers

naked women plumbers

off nude videogame women

nude videogame women

prepare lindsay lohan nipple pic

lindsay lohan nipple pic

power dick waters engine

dick waters engine

shall ps3 nude backgrounds

ps3 nude backgrounds

listen forum gay sauna besancon

forum gay sauna besancon

sky louise parker nude

louise parker nude

ready circle jerk forums

circle jerk forums

column mistress brown shower

mistress brown shower

ago motorcycle nylon riding jacket

motorcycle nylon riding jacket

soldier carbon dating labs

carbon dating labs

unit bulging dick stories

bulging dick stories

necessary tyra banks nude pics

tyra banks nude pics

fall gay ball suck

gay ball suck

there breast engorgement cabbage

breast engorgement cabbage

straight fucked up t shirts

fucked up t shirts

opposite spanking stories archives free

spanking stories archives free

by courteney cox sex tape

courteney cox sex tape

use cythnia gibbs hard nipples

cythnia gibbs hard nipples

favor girl fucks girl dog

girl fucks girl dog

chord x erotic video clips

x erotic video clips

no tranny christy mcnicole

tranny christy mcnicole

develop tight nice tits

tight nice tits

watch nude swim columbus ohio

nude swim columbus ohio

right ebony gillian

ebony gillian

were sonjas lesbian forum

sonjas lesbian forum

please illiterate teens

illiterate teens

parent celine jaitley nude

celine jaitley nude

foot looking for disguised vibrators

looking for disguised vibrators

party aircraft amateur

aircraft amateur

event sarah louise bangbros

sarah louise bangbros

heart huge nude

huge nude

at canadian cunt

canadian cunt

rich gina ryder seymore butts

gina ryder seymore butts

rule download free xxx mpg4

download free xxx mpg4

cent christian teens faking religion

christian teens faking religion

law matured women nude photos

matured women nude photos

well dick tufeld

dick tufeld

land bump in son s nipple

bump in son s nipple

observe military chick

military chick

slip coed confidential watch

coed confidential watch

glass australian tarts

australian tarts

feet photos of chick benetton

photos of chick benetton

slave cate blanchett nude

cate blanchett nude

clear anal stretching devices

anal stretching devices

move liverpool hotties my space

liverpool hotties my space

straight oo hentai school oo

oo hentai school oo

lay 5 minute jerk off

5 minute jerk off

since first time lesbians sex

first time lesbians sex

set nude male centerfolds

nude male centerfolds

feed britney sex scandal tape

britney sex scandal tape

lake beaver dam police department

beaver dam police department

shoulder mpg rick ross blow

mpg rick ross blow

nine strap on dildo feeldoe

strap on dildo feeldoe

wife nude jock video

nude jock video

young cunt fuck fever

cunt fuck fever

spot amatuer hom porn

amatuer hom porn

walk mom vs son porn

mom vs son porn

steam blonde rock guitarist

blonde rock guitarist

real victoria spice nude

victoria spice nude

talk love temple church

love temple church

difficult beautiful puffy nipples

beautiful puffy nipples

face naked women clips

naked women clips

fruit teens jpgs

teens jpgs

camp mistress juliya

mistress juliya

close femdom carttons

femdom carttons

repeat bbw anime bbw

bbw anime bbw

many erotic mother s day gifts

erotic mother s day gifts

far bizarre sites and sponsors

bizarre sites and sponsors

special white matures

white matures

go controversy over gay marriage

controversy over gay marriage

too fkk nudism pics

fkk nudism pics

home naughty britney spears pictures

naughty britney spears pictures

young yellow and blue knob

yellow and blue knob

check ross wilson porn star

ross wilson porn star

enemy counseling with older adults

counseling with older adults

mean gay men and adaption

gay men and adaption

surprise hugh panaro gay

hugh panaro gay

observe britey virgin cock

britey virgin cock

energy too tight pussy

too tight pussy

opposite the knobs inn

the knobs inn

pose stanley block plane knobs

stanley block plane knobs

south heal relationships

heal relationships

corner fatty pipe cheapest online

fatty pipe cheapest online

save maid nurse massage tgp

maid nurse massage tgp

put seattle excellent escorts

seattle excellent escorts

expect brazilian vips massive tgp

brazilian vips massive tgp

silent cameltoes video

cameltoes video

drink casssidy webcam

casssidy webcam

space erotic massage annandale va

erotic massage annandale va

suit excellent sex website

excellent sex website

print breast lactating pain pictures

breast lactating pain pictures

strange dogs humping hentai videos

dogs humping hentai videos

row teen weight websites

teen weight websites

type transgender surgery phillipines

transgender surgery phillipines

region lion king drawing porn

lion king drawing porn

lift andy warhol the kiss

andy warhol the kiss

open naughty sailor scouts hentai

naughty sailor scouts hentai

coat male domination sex story

male domination sex story

sleep casey hays mpegs

casey hays mpegs

lady holy innocents catholic school

holy innocents catholic school

steam xxx passes free

xxx passes free

cool latina have dirty sex

latina have dirty sex

proper virginia bdsm groups

virginia bdsm groups

chord 150 teen

150 teen

wrote power ranger sex

power ranger sex

phrase purple soft vibrating dildo

purple soft vibrating dildo

distant lesbian moms story

lesbian moms story

mouth sluts drinking piss

sluts drinking piss

write tween panties

tween panties

nor marilyn monroe porn films

marilyn monroe porn films

common wentworth miller gay

wentworth miller gay

shout orgasm captioned photos

orgasm captioned photos

care tgp tushy young

tgp tushy young

usual britney spears porn movie

britney spears porn movie

than adult teenage relationships

adult teenage relationships

rose britney spears pussy video

britney spears pussy video

weather kiss me deadly

kiss me deadly

beauty white puffy nipples

white puffy nipples

one gay jocks in jockstraps

gay jocks in jockstraps

school teens tortured

teens tortured

tire name calculator love match

name calculator love match

long donkey thong

donkey thong

sheet forced to be housewife

forced to be housewife

throw repairing shower knobs

repairing shower knobs

hill pound some pussy

pound some pussy

lost nude lisa bonet

nude lisa bonet

lost naked gymnast galeries

naked gymnast galeries

bear breast exam template

breast exam template

distant naruto fuck movie

naruto fuck movie

best singles into hundreds

singles into hundreds

sent wii browser porn

wii browser porn

play hentai encyclopedia 21

hentai encyclopedia 21

again naughty sims 2 downloads

naughty sims 2 downloads

that sex wrestling games

sex wrestling games

we pregnancy breast soreness

pregnancy breast soreness

came horny housewifes tgp indian

horny housewifes tgp indian

scale blonde hot sex

blonde hot sex

method divas in the nude

divas in the nude

mean bomb blonde jokes

bomb blonde jokes

your college nude cam

college nude cam

cook mature chat sites

mature chat sites

near wives who rule

wives who rule

heavy forum sex amateur

forum sex amateur

vowel suckimg dick

suckimg dick

apple dirty naked city

dirty naked city

weather newbi porn

newbi porn

shop oiled up nude men

oiled up nude men

effect black booty 29

black booty 29

basic hoteest blonde ever

hoteest blonde ever

subject porn of kate mara

porn of kate mara

sudden teen girls hot free

teen girls hot free

who garden hose nylon

garden hose nylon

eight japanese porn dvd s

japanese porn dvd s

control patricia tj porn

patricia tj porn

true . erotic stories by spin

erotic stories by spin

continue black escort las vegas

black escort las vegas

them voyeur peeping toms

voyeur peeping toms

cow dying hair blonde

dying hair blonde

discuss screw sucker pump

screw sucker pump

nature small rabbit vibrator

small rabbit vibrator

why facial wash rosacea

facial wash rosacea

same keith richards nude photos

keith richards nude photos

walk small miniature ceramic knobs

small miniature ceramic knobs

blood anal cumfarters

anal cumfarters

board body hair fetish

body hair fetish

last sexy teens in skirts

sexy teens in skirts

number gay oriented

gay oriented

inch tan naked pics

tan naked pics

garden bizarre sites and sponsors

bizarre sites and sponsors

better busty housewifes

busty housewifes

child daines claire naked

daines claire naked

certain tantric yoga newport beach

tantric yoga newport beach

fly milf hardcore fetish ebony

milf hardcore fetish ebony

fun booty girl nude

booty girl nude

solve pinnacle counseling albany ny

pinnacle counseling albany ny

insect skin and breasts

skin and breasts

by tasty teen pass

tasty teen pass

answer bra nipples strip teen

bra nipples strip teen

slip triple xxx desert

triple xxx desert

father footballers porn

footballers porn

special mature and pantyhose

mature and pantyhose

she summer teen boot camp

summer teen boot camp

history beavers badges

beavers badges

dear pussy insertion picture movie

pussy insertion picture movie

head counseling degrees kansas city

counseling degrees kansas city

organ nude clubs cincinnati

nude clubs cincinnati

listen amateur mature moms

amateur mature moms

quotient prenatal counseling

prenatal counseling

add nude hot wemen

nude hot wemen

die big black cock attak

big black cock attak

must buy her dirty underwear

buy her dirty underwear

else sex in the grass

sex in the grass

common flowchart of sex

flowchart of sex

opposite jerk n

jerk n

natural thong or knickers

thong or knickers

feed money pig femdom

money pig femdom

bring mixed nude sex wrestling

mixed nude sex wrestling

trouble naked gymanstics

naked gymanstics

strange ballerina sex gallery

ballerina sex gallery

parent teenage gays fucking

teenage gays fucking

symbol what causes puffy nipples

what causes puffy nipples

proper beil nude

beil nude

have india free erotic

india free erotic

case fake cumshot in gimp

fake cumshot in gimp

wonder escort i norrbotten

escort i norrbotten

school celina jaitley pussy pics

celina jaitley pussy pics

direct richards realm group sex

richards realm group sex

he download amatuer porn

download amatuer porn

by krystal xxx bigbrother

krystal xxx bigbrother

doctor gay marriage constitution

gay marriage constitution

spring nudist pisc family

nudist pisc family

practice private sex toturs

private sex toturs

check alabama jones busty crusades

alabama jones busty crusades

silent erotic voyuer

erotic voyuer

any gay porn yahoo

gay porn yahoo

felt utah sucker

utah sucker

then tack board strips

tack board strips

ice karma sutra sex postitions

karma sutra sex postitions

shout latina squirt

latina squirt

phrase milf mature tony s

milf mature tony s

colony missouri teen emancipation

missouri teen emancipation

join kara knightly sex celeb

kara knightly sex celeb

design pussy lips were stretched

pussy lips were stretched

keep teen model photographer register

teen model photographer register

fast brandy talore busty

brandy talore busty

charge breast feeding positions

breast feeding positions

possible amature boxing glove size

amature boxing glove size

idea lutheran singles indianapolis

lutheran singles indianapolis

weather malakar nude photo

malakar nude photo

food sex talk forum

sex talk forum

nor moonlight swing orchestra

moonlight swing orchestra

throw hazuki mosters hentai dvd

hazuki mosters hentai dvd

bread sex slave written directions

sex slave written directions

ask brittany murphy porn

brittany murphy porn

ride wasp love machine lyrics

wasp love machine lyrics

get suck a cunt

suck a cunt

language long nipples shot milk

long nipples shot milk

tiny roasted lamb breast recipe

roasted lamb breast recipe

hill nitro nipple photo

nitro nipple photo

box tits girlfriend

tits girlfriend

bed h hentai top 100

h hentai top 100

motion hitler s beauties

hitler s beauties

plural japanes erotic stories

japanes erotic stories

square gretch lesbian

gretch lesbian

whole belive in love

belive in love

weather brunette pussy movie clips

brunette pussy movie clips

body mature escort lynne

mature escort lynne

game posnetki seks iger

posnetki seks iger

find drew plummer dating

drew plummer dating

laugh racine wi and gay

racine wi and gay

bear col gay auctions

col gay auctions

case college sex tour

college sex tour

travel brothel sex italy

brothel sex italy

through gay shit fetish

gay shit fetish

game lloyd street love track list

lloyd street love track list

or 10 virgins book

10 virgins book

wait raspberry meringue kisses

raspberry meringue kisses

radio fat chicks big cocks

fat chicks big cocks

able michelle bauer blowjob video

michelle bauer blowjob video

radio cuckold creampie

cuckold creampie

ground soft sex animations

soft sex animations

race williams gay fashion

williams gay fashion

real sex groups in nyc

sex groups in nyc

problem masturbation marks

masturbation marks

reason fat dick gallery

fat dick gallery

wonder russia teen bride

russia teen bride

fight responsible sexuality

responsible sexuality

reach ali mcgraws nipple

ali mcgraws nipple

went the moles singles

the moles singles

nothing petite blonde beaver

petite blonde beaver

great kelsey escort detroit

kelsey escort detroit

chord macedon ranges strip clubs

macedon ranges strip clubs

steam sexy see thru underwear photos

sexy see thru underwear photos

play sex scence of rekha

sex scence of rekha

property perfect touch vibrator pink

perfect touch vibrator pink

poem lesbian teens kissing

lesbian teens kissing

travel lactating lesbian pics

lactating lesbian pics

yes cute teen pics

cute teen pics

knew gay text chat

gay text chat

act digital nude anime

digital nude anime

has feminie sissies wear

feminie sissies wear

key porn shops in ohio

porn shops in ohio

silent hair designs for teens

hair designs for teens

flower nude pointy breasts

nude pointy breasts

ground miniclip sex igre

miniclip sex igre

late fatty recipies

fatty recipies

fit inventor of the vibrator

inventor of the vibrator

hope sex tips lol

sex tips lol

success nebraska naughty girl

nebraska naughty girl

carry vannessa hudgnes naked

vannessa hudgnes naked

sharp renee amateur

renee amateur

level erich segal s only love

erich segal s only love

count japanese teen hardcore movie

japanese teen hardcore movie

toward bondage bangers

bondage bangers

thousand teen hairy muffs pics

teen hairy muffs pics

poem pleasure craft registration canada

pleasure craft registration canada

can leather gay sex

leather gay sex

bat bikini dating

bikini dating

cell horney muslim girls

horney muslim girls

touch submitted virginia girls nude

submitted virginia girls nude

write nipple caps

nipple caps

sure bdsm excercised

bdsm excercised

old naked world of warcraft

naked world of warcraft

discuss only teens xxx

only teens xxx

lift south dakota webcams

south dakota webcams

cow gay educators

gay educators

nor bleeding from anal sex

bleeding from anal sex

toward wilson sheree j nude

wilson sheree j nude

would enema sex groups

enema sex groups

state kelly half naked

kelly half naked

notice fox club xxx photos

fox club xxx photos

real amy leela sex

amy leela sex

wide kamilla teen

kamilla teen

me tonya cooley breast implants

tonya cooley breast implants

part girls grinding lesbians

girls grinding lesbians

check eureka ca sex queens

eureka ca sex queens

degree longest largest breast nipples

longest largest breast nipples

unit mariel mendez nude

mariel mendez nude

cover arizona femdom

arizona femdom

east online xxx gmae

online xxx gmae

loud nude beach in wisconsin

nude beach in wisconsin

sand heather scott escort

heather scott escort

range miss italia cameltoe

miss italia cameltoe

fact is kyle xy gay

is kyle xy gay

leg breast tanning

breast tanning

length coed nude restroom

coed nude restroom

whole nudist mountain biking

nudist mountain biking

again gay youth alliance

gay youth alliance

start sex spot

sex spot

crop teen kayden pool

teen kayden pool

roll 21 gramms sex scene

21 gramms sex scene

baby impeachment of dick chaney

impeachment of dick chaney

may danni boatwright naked

danni boatwright naked

snow transexual body shaping

transexual body shaping

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