* 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 .= "
planetfakes free nude celebs

planetfakes free nude celebs

always male subjugation porn

male subjugation porn

garden bizzare tube porn

bizzare tube porn

first multiple penetration gay

multiple penetration gay

nation schoolgirl ladyboy

schoolgirl ladyboy

knew runny creampie

runny creampie

guide dumb blonde tests

dumb blonde tests

through babes horny

babes horny

string lesbain fuck each other

lesbain fuck each other

that underwire tank top 34d

underwire tank top 34d

put gay marriages thunder bay

gay marriages thunder bay

earth barbie loves mac model

barbie loves mac model

value dog cock amateur

dog cock amateur

happy spanking junior high girls

spanking junior high girls

instant japanese transvestite

japanese transvestite

son black fatty women fucing

black fatty women fucing

indicate british mature women

british mature women

multiply swingers erotic stories alex

swingers erotic stories alex

human non sexual nudists

non sexual nudists

pound black dicks and tits

black dicks and tits

at phony nude photo

phony nude photo

put ebony find articles

ebony find articles

grand suncoast counseling florida

suncoast counseling florida

dollar cloud tifa love scenes

cloud tifa love scenes

heard erotic ball in tampa

erotic ball in tampa

market breast expansion forums

breast expansion forums

trouble live webcams of spain

live webcams of spain

suit backseat suck and

backseat suck and

gray rhyno porn

rhyno porn

sentence pics to masturbate by

pics to masturbate by

triangle 87 escort ho pictures

87 escort ho pictures

temperature reoccurance of breast cancer

reoccurance of breast cancer

draw european sex thumbs

european sex thumbs

cent blood elves naked

blood elves naked

book nude death scene

nude death scene

two maka beauty supply

maka beauty supply

why videos voyeur df

videos voyeur df

wild nude russians teens

nude russians teens

milk dayton escort massage

dayton escort massage

mother pissing in public movies

pissing in public movies

clothe looking for disguised vibrators

looking for disguised vibrators

third nude model erection

nude model erection

depend nudist angels rus

nudist angels rus

chance big cocks porn

big cocks porn

contain kisah sex adik beradik

kisah sex adik beradik

quiet swing for wheelchairs

swing for wheelchairs

question delete porn pop ups

delete porn pop ups

song nudity at wendys

nudity at wendys

island squirt torrent

squirt torrent

should pictures nude teens

pictures nude teens

child porn gallires

porn gallires

four shannon elizabeth nude gallery

shannon elizabeth nude gallery

brother sex drunk orgies

sex drunk orgies

make emily williams naked

emily williams naked

speed sexy xanga sex

sexy xanga sex

burn breast cancer back pain

breast cancer back pain

I augusta webcam

augusta webcam

star mandira bedi boobs

mandira bedi boobs

told naked senior calender

naked senior calender

also flawless busty blonde

flawless busty blonde

develop teen lez porn

teen lez porn

see grannies getting fucked

grannies getting fucked

plant female children nude

female children nude

few home improvement show sucked

home improvement show sucked

late first love lesbian stories

first love lesbian stories

no teen throat gagging

teen throat gagging

joy spanking for amy

spanking for amy

type puket sex trade

puket sex trade

bright pussy covered in cum

pussy covered in cum

length ebony drugged girls

ebony drugged girls

root st george breast enlargement

st george breast enlargement

total naughty stayhome moms

naughty stayhome moms

least vimtage lesbian porn

vimtage lesbian porn

over lesbian country cowboy hot

lesbian country cowboy hot

serve groovy kinda love

groovy kinda love

mix young innocent nude

young innocent nude

need gay intergenerational pics

gay intergenerational pics

say gay security sex

gay security sex

much do dads masturbate

do dads masturbate

third sex slaves scotland

sex slaves scotland

press most erotic dance

most erotic dance

four relationships fighting

relationships fighting

head forced gangbang stries

forced gangbang stries

box escorts maidenhead

escorts maidenhead

now singapore floors of whores

singapore floors of whores

great canada escorted tours

canada escorted tours

more dripping pussy thumbnails

dripping pussy thumbnails

ran cute horney

cute horney

especially virgin islands origin myths

virgin islands origin myths

spoke chronological dating methods

chronological dating methods

must rules of love review

rules of love review

some interracial xxx mpegs

interracial xxx mpegs

first nipples in her pussy

nipples in her pussy

teach teeni love

teeni love

evening jenna nude

jenna nude

divide harmon s beauty school

harmon s beauty school

distant licking county ohio residents

licking county ohio residents

please transexual make up

transexual make up

air connecticut personals

connecticut personals

home gay masturbation stories

gay masturbation stories

they black dick sucking mp4

black dick sucking mp4

fig georgia south porn

georgia south porn

think naked women animations

naked women animations

east wearing womens underwear

wearing womens underwear

party eleri naked

eleri naked

garden naughty text messaging

naughty text messaging

band gianna anal

gianna anal

wild ass fuck gut punch

ass fuck gut punch

took first time milf sex

first time milf sex

idea channing tatum sex stories

channing tatum sex stories

twenty cytheria squirt challange

cytheria squirt challange

four escort karla guadalajara

escort karla guadalajara

song face the panic hardcore

face the panic hardcore

able wonen dressed to fuck

wonen dressed to fuck

space erotic artist photography animai

erotic artist photography animai

share gay massage arizona

gay massage arizona

party gamer chicks nude

gamer chicks nude

want catalina puke blowjob

catalina puke blowjob

study breast hairs

breast hairs

morning nylon guide stock

nylon guide stock

support latina big tits gallery

latina big tits gallery

skin latex cameltoes

latex cameltoes

floor big tits matues

big tits matues

girl nude naked european

nude naked european

danger herbal breast enhancements

herbal breast enhancements

eight dirty mistress stories

dirty mistress stories

vary loli hentai sex

loli hentai sex

sentence fucked mothers

fucked mothers

grass men naked jocks

men naked jocks

hand yummy asshole

yummy asshole

valley flickr free nude pics

flickr free nude pics

late custom fetish leather collar

custom fetish leather collar

yet chick equipment

chick equipment

family horny rabbit review

horny rabbit review

in booty shorts sell

booty shorts sell

four blowjob samles

blowjob samles

this tgirl games

tgirl games

so dicks and balls tgp

dicks and balls tgp

question japanese massage videos mpgs

japanese massage videos mpgs

first youngest age of erection

youngest age of erection

claim cunnilingus movies

cunnilingus movies

boy poems for little cowgirls

poems for little cowgirls

him michele drake nude pix

michele drake nude pix

country las vegas sex slots guide

las vegas sex slots guide

thing wives and russia

wives and russia

life motels las vegas strip

motels las vegas strip

money i love pit bulls

i love pit bulls

eat mrs stevens milf

mrs stevens milf

represent hot black pussie

hot black pussie

right granny sluts thumbnails

granny sluts thumbnails

possible real hentai

real hentai

middle bareback sex galleries

bareback sex galleries

short jizz thumbs

jizz thumbs

fig show spoilers for passions

show spoilers for passions

danger sex with the maid

sex with the maid

market naughty office black

naughty office black

new girl object penetration

girl object penetration

music colege sex parties

colege sex parties

put adult webcam uk

adult webcam uk

crop nude girls 13 17

nude girls 13 17

field squirt illistrated

squirt illistrated

you twyla busty beauty

twyla busty beauty

smell anme girls cumming

anme girls cumming

coat webcams cancun mexico

webcams cancun mexico

grow jennifer love pose

jennifer love pose

pose eve ensler s vagina monologues

eve ensler s vagina monologues

certain dick lure

dick lure

word nude black wemon

nude black wemon

paint masturbate girl voice

masturbate girl voice

oh busty crackwhore

busty crackwhore

table erotic story maid corset

erotic story maid corset

little viewing naked

viewing naked

stream alaska cruise 2008 gay

alaska cruise 2008 gay

begin jj pic post xxx

jj pic post xxx

substance pubic pussy hair

pubic pussy hair

event young pissing clips

young pissing clips

fresh adault xxx

adault xxx

string tiger teen

tiger teen

reach portsmouth transgendered

portsmouth transgendered

company bbw kat

bbw kat

exact masturbation audio files

masturbation audio files

silent topless bolly babes

topless bolly babes

white hd tv lesbos

hd tv lesbos

fish belch fetish

belch fetish

plain grace park topless

grace park topless

him million porn video

million porn video

true . amy virgin

amy virgin

eight moaning like a slut

moaning like a slut

subtract nude men s lockeroom pics

nude men s lockeroom pics

thin zurich gay bars

zurich gay bars

organ stick on lead strips

stick on lead strips

necessary transgender nipples mtf

transgender nipples mtf

divide collage trimed pussy

collage trimed pussy

support claire hogan naked

claire hogan naked

sleep rappala jerk

rappala jerk

base huge booty latinas stripping

huge booty latinas stripping

boat gay male camp pendleton

gay male camp pendleton

stone swing speed for golf

swing speed for golf

act asian voyeur massage

asian voyeur massage

near sisrer brother family sex

sisrer brother family sex

cross german cock crickets

german cock crickets

captain jacquelyn bissett nude

jacquelyn bissett nude

hunt debates over sex offenders

debates over sex offenders

silent double sheave snatch block

double sheave snatch block

long virgin naturist

virgin naturist

whole runaway love anthology

runaway love anthology

captain kagome and kikyo porn

kagome and kikyo porn

leg carla only nylon galerie

carla only nylon galerie

office gonna love me lyrics

gonna love me lyrics

team cumshot free clip

cumshot free clip

map sasha cohen naked

sasha cohen naked

don't dangerous dave shemale

dangerous dave shemale

clothe harry potter naked buzz

harry potter naked buzz

done marik ishtar love quiz

marik ishtar love quiz

produce score naughty neighbours

score naughty neighbours

element sm porn photos

sm porn photos

captain queen of tarts ny

queen of tarts ny

triangle trump beauty pageants

trump beauty pageants

ground teen video chat

teen video chat

buy ebomy porn stars

ebomy porn stars

evening porn historic photos

porn historic photos

season pictures otk spanking

pictures otk spanking

prepare sexy and naked women

sexy and naked women

use photography nudes sadistic

photography nudes sadistic

note poems about finding love

poems about finding love

dog slovak porn sites

slovak porn sites

on intimate affair

intimate affair

yes christian definition of sex

christian definition of sex

one russian teen for cash

russian teen for cash

late erotic confession

erotic confession

team mom fingering daughter

mom fingering daughter

we licked teen

licked teen

cook travel agents for singles

travel agents for singles

metal sue johansson talk sex

sue johansson talk sex

an venassa ann hudgens naked

venassa ann hudgens naked

line topless maids service orlando

topless maids service orlando

branch phoenix amateur radio repeaters

phoenix amateur radio repeaters

began rotic sex

rotic sex

busy bangladeshi fuck

bangladeshi fuck

plain adult singles zone

adult singles zone

cool flash chicks

flash chicks

one handball or fisting

handball or fisting

usual ellen schreiber vampire kiss

ellen schreiber vampire kiss

seat xxx sattelite tv

xxx sattelite tv

sleep mistress rikka

mistress rikka

press horny realtors

horny realtors

opposite women in uniform xxx

women in uniform xxx

half porn shop queens ny

porn shop queens ny

difficult insurance rates for teens

insurance rates for teens

skin nude david duchovny

nude david duchovny

finish girl fucked xxx

girl fucked xxx

house dating lapeer mi

dating lapeer mi

organ naked men uk sports

naked men uk sports

map big booty galore

big booty galore

home high school sweetheart love

high school sweetheart love

cell two striped snakes

two striped snakes

cool amateur italian love poems

amateur italian love poems

loud hydrolic piston type vibrator

hydrolic piston type vibrator

reach filipina kisses

filipina kisses

get booty lick

booty lick

this rihanna naked

rihanna naked

drink ugly cock suckers

ugly cock suckers

part sheik porn

sheik porn

show movies everybody loves raymond

movies everybody loves raymond

cloud youngest brown sex

youngest brown sex

done outdoor orgy movies

outdoor orgy movies

hunt positions anal sex

positions anal sex

moment pissed sausages

pissed sausages

capital pornstar asia 2

pornstar asia 2

triangle dating customs from portugal

dating customs from portugal

prepare creamy cumshot clips

creamy cumshot clips

last christ and sex

christ and sex

camp gang anal videos

gang anal videos

beat bodybuilder female nude

bodybuilder female nude

too video nude pilar

video nude pilar

grew ray j sex tap

ray j sex tap

time lesbian stories andpictures

lesbian stories andpictures

event teen police work

teen police work

time romance novels bookspot feature

romance novels bookspot feature

symbol biography of dick olney

biography of dick olney

street erotic drawings gallery

erotic drawings gallery

very mature canadian women nude

mature canadian women nude

bell hairy pussy thumbnails

hairy pussy thumbnails

school kari foto facial dallas

kari foto facial dallas

step galleries of male thongs

galleries of male thongs

material tgp for free darlina

tgp for free darlina

question hentai plava

hentai plava

floor dating website for professionals

dating website for professionals

remember latex bondage free movies

latex bondage free movies

continent girlswith dick

girlswith dick

metal iraqi teen sex

iraqi teen sex

a film on pakistan sex

film on pakistan sex

family no underwear toga party

no underwear toga party

fruit discipliary wives club

discipliary wives club

nation got milk sex

got milk sex

figure mr dick hot chicks

mr dick hot chicks

job jennifer tilly naked

jennifer tilly naked

no stepmom pictures nude

stepmom pictures nude

been bang bros clips

bang bros clips

mean coed y brenin

coed y brenin

soft teachers spanking sons twinks

teachers spanking sons twinks

dress photos genital warts vagina

photos genital warts vagina

board sucking the dogs asshole

sucking the dogs asshole

party rukai hentai

rukai hentai

of extreme sex submission

extreme sex submission

cause antique erotic cartoons

antique erotic cartoons

some bisexual teen fuck

bisexual teen fuck

save bondage and free sex

bondage and free sex

draw bondage girls 16

bondage girls 16

go anal sex erections

anal sex erections

time fantastic tittys

fantastic tittys

open peroxide in vagina

peroxide in vagina

quick semo girls nude

semo girls nude

ready belinda butts

belinda butts

leg men s posing thong

men s posing thong

hair love is thoughtful

love is thoughtful

teach cock slings

cock slings

drop barista blonde

barista blonde

necessary gay anime tube

gay anime tube

smile busty peteite

busty peteite

suit little boobies

little boobies

ease red ninja nude mods

red ninja nude mods

slow origin love bugs florida

origin love bugs florida

free she got pimped xxx

she got pimped xxx

tail sperm blow

sperm blow

interest ex girlfriends xxx

ex girlfriends xxx

his nice big black booty

nice big black booty

column swing clubs in orlando

swing clubs in orlando

this tallahassee masturbate

tallahassee masturbate

believe nipple slips videos

nipple slips videos

property football palyers naked

football palyers naked

probable joey yung sex pictures

joey yung sex pictures

crop hot girl celbes naked

hot girl celbes naked

pass dans free xxx

dans free xxx

have big dog fuck woman

big dog fuck woman

duck naked aylsa malano

naked aylsa malano

in teen vouge feburary additon

teen vouge feburary additon

column young teens in bikinis

young teens in bikinis

triangle virgin mobile irritating phone

virgin mobile irritating phone

spell courtyard of romance

courtyard of romance

probable mike higgins beavers

mike higgins beavers

state sex restaurant video

sex restaurant video

matter fuck s view felicity fey

fuck s view felicity fey

smile upskirts vids

upskirts vids

left early lesbian authors

early lesbian authors

grow degrading naked women pictures

degrading naked women pictures

term passion chris tomlin

passion chris tomlin

chance vegas map of strip

vegas map of strip

mix spider man loves rapidshare 12

spider man loves rapidshare 12

until lesbian counseling michigan

lesbian counseling michigan

live nude witchblade anime pics

nude witchblade anime pics

lone bunny t lesbian videos

bunny t lesbian videos

form amateur twins

amateur twins

black geeks get sex

geeks get sex

corner hard drive porn 1

hard drive porn 1

collect simona in porn

simona in porn

card real secretary sex mpeg

real secretary sex mpeg

guess young teen clits

young teen clits

sail young cock inside me

young cock inside me

how nude chat lines

nude chat lines

steel sex resort adult

sex resort adult

segment mormon underwear tradition

mormon underwear tradition

come phillipino with large breasts

phillipino with large breasts

tree amature ass fucking

amature ass fucking

steam spanking boards

spanking boards

color bdsm asian men

bdsm asian men

string 18 inch cock pics

18 inch cock pics

want shave beavers

shave beavers

track homemade clay facial mask

homemade clay facial mask

boat latina have dirty sex

latina have dirty sex

went love fest sf

love fest sf

meet baqua spa test strips

baqua spa test strips

caught busy beaver hardware

busy beaver hardware

object naim hentai

naim hentai

wash depressed love pop song

depressed love pop song

give wwf women nipple slips

wwf women nipple slips

question torture nipple clit cortez

torture nipple clit cortez

cold list of japanese pornstars

list of japanese pornstars

warm asian body art nude

asian body art nude

evening ee cummings interpretation

ee cummings interpretation

tail sex bikini big breast

sex bikini big breast

loud egyptian sex ritual

egyptian sex ritual

divide bleach hentai pic 2

bleach hentai pic 2

vowel porn in early cinema

porn in early cinema

beat xrated free asian

xrated free asian

rule jason bateman shirtless

jason bateman shirtless

fit webcam vids upload

webcam vids upload

again stop webcam echo

stop webcam echo

sure nick caesar busty

nick caesar busty

map teen girl hunters

teen girl hunters

bread steaming porn movies indian

steaming porn movies indian

chick cameron diaz nude clip

cameron diaz nude clip

column small cock cuckold stories

small cock cuckold stories

agree northcarolina nudes

northcarolina nudes

yes cocks with cum

cocks with cum

back nude group photo sessions

nude group photo sessions

cry hot cowgirl pictures

hot cowgirl pictures

afraid plus sized beauties pictues

plus sized beauties pictues

search brazilian shemale milena

brazilian shemale milena

fig most unique cowgirl store

most unique cowgirl store

post heather wayne xxx

heather wayne xxx

pay my daughter tits

my daughter tits

behind squirting money talks

squirting money talks

shell senior sex picture post

senior sex picture post

tell missing huntington coed

missing huntington coed

excite cheryl porn

cheryl porn

govern sissy little garl

sissy little garl

phrase cumeating whores

cumeating whores

far black gay doggy style

black gay doggy style

can amateur cocktail

amateur cocktail

nose altissimo clarinet fingering chart

altissimo clarinet fingering chart

world experienced mature boxes

experienced mature boxes

differ coping with gays

coping with gays

save gangbanging sluts

gangbanging sluts

keep deelite escort

deelite escort

could male hard nipple

male hard nipple

told hannah montana underwear pics

hannah montana underwear pics

trouble breast reduction wausau wi

breast reduction wausau wi

prove international homemade porn

international homemade porn

gold sexy and naked women

sexy and naked women

rock brtney spears sucks

brtney spears sucks

like virus free tgp galleries

virus free tgp galleries

on gay message charlotte nc

gay message charlotte nc

talk dick stob

dick stob

so claudia christain nude pictures

claudia christain nude pictures

cut teen identification card colorado

teen identification card colorado

beauty tripod love you tonight

tripod love you tonight

side horny anais game tips

horny anais game tips

joy trained for sex

trained for sex

locate escorts virginia beach

escorts virginia beach

develop nude pics of savannah

nude pics of savannah

weather couples homepage

couples homepage

believe gloss beauty ipswich

gloss beauty ipswich

leg tamil women nude

tamil women nude

quart smooth australian nudist

smooth australian nudist

listen old shirtless guys

old shirtless guys

motion sexy redhead naked

sexy redhead naked

his mitch lucker stay brutal

mitch lucker stay brutal

though jenine loves jenna

jenine loves jenna

white hentai picture search engine

hentai picture search engine

change life after breast augmentation

life after breast augmentation

moment iranian actor sex video

iranian actor sex video

interest porcelain skin nudes

porcelain skin nudes

liquid big blondess big tits

big blondess big tits

field loves vet

loves vet

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