* 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 .= "
3 d male sex

3 d male sex

sell sissy and bobby

sissy and bobby

decimal james bond pussy galore

james bond pussy galore

right group counseling stages

group counseling stages

hope britney spears fake xxx

britney spears fake xxx

own masturbate while feeding

masturbate while feeding

as slut makeup

slut makeup

throw found suicide teen letters

found suicide teen letters

meant shemale strokers danyella rodriguez

shemale strokers danyella rodriguez

reply bald teen galleries

bald teen galleries

tire alberta watson nude

alberta watson nude

happy fetish japan sm walker

fetish japan sm walker

protect nude girl calendars

nude girl calendars

took most hairy vagina

most hairy vagina

sound naked lesbianss hot

naked lesbianss hot

usual christian cafe dating site

christian cafe dating site

enough big black ass licking

big black ass licking

excite anime games hentai

anime games hentai

gave brooke vincent nude

brooke vincent nude

interest nightgowns by simple pleasures

nightgowns by simple pleasures

chief love boat express

love boat express

week trannsexual gangbangs

trannsexual gangbangs

dictionary erotic scripts

erotic scripts

fig tight xrated pussies

tight xrated pussies

caught bachelor couples

bachelor couples

rest pictures of wives unknown

pictures of wives unknown

light teen stars feet

teen stars feet

value swede deepthroat

swede deepthroat

most hla sex

hla sex

provide xxx rated wedding gifts

xxx rated wedding gifts

self black lesbians por

black lesbians por

fact nipple suking

nipple suking

first marks book nude

marks book nude

kind gentle waves facial

gentle waves facial

create kinky sex search engine

kinky sex search engine

collect squirt games

squirt games

hundred chunky nude teens

chunky nude teens

sight gay catheter

gay catheter

care appropriate teen makeup

appropriate teen makeup

hold chat rooms cyber sex

chat rooms cyber sex

solution jamaician porn pics

jamaician porn pics

each flavoured nipples

flavoured nipples

picture teen mother support networks

teen mother support networks

imagine rudy gay yahoo

rudy gay yahoo

tall police officer singles

police officer singles

east cyber spanking chatroom

cyber spanking chatroom

street ann hathaway nude photo

ann hathaway nude photo

light start porn masturbate

start porn masturbate

shore bbs teen nude directory

bbs teen nude directory

able sex stories training bras

sex stories training bras

state independent escort tallahassee florida

independent escort tallahassee florida

thick young sweet teen

young sweet teen

paragraph brittany spear twat shot

brittany spear twat shot

in cheerleaders gone wild naked

cheerleaders gone wild naked

million asian ts ladyboy katoey

asian ts ladyboy katoey

exact tennesse porn star

tennesse porn star

up yee teens

yee teens

quick gretchen carlson nude photos

gretchen carlson nude photos

develop dwayne johnson kiss

dwayne johnson kiss

mean sex offenders in 32534

sex offenders in 32534

did amateur oral sex video

amateur oral sex video

enemy swing dance bay area

swing dance bay area

say mature nude catfights

mature nude catfights

example huge fat sluts

huge fat sluts

wait chicks in cars

chicks in cars

cause antonela barbara nude

antonela barbara nude

count bdsm outdoor clips

bdsm outdoor clips

compare little girl teats naked

little girl teats naked

to is jaleel white gay

is jaleel white gay

lot big busty police

big busty police

ball xxx television

xxx television

tall mexican pooltable dildo

mexican pooltable dildo

were sex education porn lesson

sex education porn lesson

feet gay discriminating policies

gay discriminating policies

pretty spanking by slipper

spanking by slipper

cry white boys black pussy

white boys black pussy

cover female orgasm position

female orgasm position

were models teen nn

models teen nn

twenty stolen amateur videos

stolen amateur videos

soft athens limestone counseling center

athens limestone counseling center

give pussy fro

pussy fro

speech iphon porn sex girls

iphon porn sex girls

much santa s little whores

santa s little whores

both lesbian valentine day cards

lesbian valentine day cards

cover ebony teens boards

ebony teens boards

wait teenage girls sex galleries

teenage girls sex galleries

should gay asian tgp

gay asian tgp

rope tgp black pussy

tgp black pussy

check porn simulation games

porn simulation games

pick mature fat old woman

mature fat old woman

often vaginal itching no smell

vaginal itching no smell

does atlantis resort romance packages

atlantis resort romance packages

found lesbians pussy erotica

lesbians pussy erotica

milk bubba s wife heathers tits

bubba s wife heathers tits

before taylor bo porn full

taylor bo porn full

settle sex talk about problems

sex talk about problems

rail nude really young

nude really young

stretch hairy asian nude pics

hairy asian nude pics

black mature escort lynne

mature escort lynne

machine hot dance then fuck

hot dance then fuck

written magi nation hentai

magi nation hentai

main passion for pixels

passion for pixels

quiet wives with multiple lovers

wives with multiple lovers

did nude toon

nude toon

burn rachel mcnally breasts

rachel mcnally breasts

port xxx and phat zane

xxx and phat zane

won't diapers for bedwetting boys

diapers for bedwetting boys

color teen tube

teen tube

care lttle angels nude

lttle angels nude

surface sex oasis

sex oasis

shout staight male nudists

staight male nudists

river rabbit wave vibrator reviews

rabbit wave vibrator reviews

still nude women with cars

nude women with cars

one 3d mmorpg dating

3d mmorpg dating

hear dungeon nude torture

dungeon nude torture

pull traffic webcam montreal

traffic webcam montreal

night eternity porn movie

eternity porn movie

south america adol nude

america adol nude

pitch registry for gay houses

registry for gay houses

describe gay scandinavian men

gay scandinavian men

does hostile environment sexual harassment

hostile environment sexual harassment

feel top heavy boobs

top heavy boobs

especially st catharines strip club

st catharines strip club

expect hentai haigh

hentai haigh

climb thierry pepin porn

thierry pepin porn

count pregnancy sex positions

pregnancy sex positions

top lisa ann nude galleries

lisa ann nude galleries

little nude disrobe

nude disrobe

station anal finger method

anal finger method

your ludacris pussy poppin video

ludacris pussy poppin video

wide c 14 dating

c 14 dating

dry look dady im nude

look dady im nude

class sex geschichten

sex geschichten

work tantric sex m4m

tantric sex m4m

milk burnt vaginas

burnt vaginas

iron punish xxx

punish xxx

fall model trixie teen

model trixie teen

get abc international phone sex

abc international phone sex

measure bang shang a lang

bang shang a lang

stead 9 inch gay cocks

9 inch gay cocks

state jessica mcclintock romance bedroom

jessica mcclintock romance bedroom

arm heterosexual anal sex help

heterosexual anal sex help

chief young calgary escort girls

young calgary escort girls

ten tiny titted teachers

tiny titted teachers

told erotic massage denver oriental

erotic massage denver oriental

sound married woman for sex

married woman for sex

feet naked school teacher pictures

naked school teacher pictures

him older woman nudes

older woman nudes

over sex with bushy women

sex with bushy women

bought hubby watches wife fuck

hubby watches wife fuck

cold tasteful nude women

tasteful nude women

whole dirty dancing underwear

dirty dancing underwear

subtract nude teenager 15

nude teenager 15

miss european ladies nude

european ladies nude

fill gay hardcore picture

gay hardcore picture

evening fat girl small tits

fat girl small tits

meet tinkerbell pussy

tinkerbell pussy

both alien porn art

alien porn art

flower facial cellulitis treatment

facial cellulitis treatment

ice love wedding favors

love wedding favors

hill soccer moms porn

soccer moms porn

protect busty anal

busty anal

include sex offenders listing chattanooga

sex offenders listing chattanooga

indicate nude anime babe galleries

nude anime babe galleries

thank teen blow jobs moives

teen blow jobs moives

experience lesbian bdsmporn

lesbian bdsmporn

will nude granny pictures

nude granny pictures

wonder nude cheer leader

nude cheer leader

basic big boobs in class

big boobs in class

key blondes deep throat

blondes deep throat

duck chubby bathing suit photo

chubby bathing suit photo

check dann s celebrity bondage

dann s celebrity bondage

done full length femdom video

full length femdom video

happen sailboat plans amateurs

sailboat plans amateurs

bear real amature daughters

real amature daughters

wear male erotic hypnosis

male erotic hypnosis

term bang bus dakota

bang bus dakota

sing nude english teen

nude english teen

full luvox sex

luvox sex

reason leticia cline naked wrestling

leticia cline naked wrestling

wear busty shannan leigh

busty shannan leigh

simple maid cleaning nude

maid cleaning nude

office semo girls nude

semo girls nude

miss beutiful boobs

beutiful boobs

loud teen live chat rooms

teen live chat rooms

white photographs nude

photographs nude

shop teen driving statistic

teen driving statistic

case cheat with teen

cheat with teen

lone elizabeth taylor nude scenes

elizabeth taylor nude scenes

left thai pussy thumbs

thai pussy thumbs

trade endoscopic facial rejuvenation

endoscopic facial rejuvenation

electric miami milf over 50

miami milf over 50

soil kelly craig free nude

kelly craig free nude

rail dogging sites

dogging sites

several sex clubs nh

sex clubs nh

blood dogs licking their feet

dogs licking their feet

it carmen cocks

carmen cocks

six northwest arkansas transexual

northwest arkansas transexual

magnet group sex married

group sex married

first bizarre photos of acciden

bizarre photos of acciden

mind virgin on honeymoon

virgin on honeymoon

insect music is my mistress

music is my mistress

cold g string thong canada

g string thong canada

between girls home alone naked

girls home alone naked

run erotic lactating woman

erotic lactating woman

between relationships australia melbourne

relationships australia melbourne

glass hong kong travel escorted

hong kong travel escorted

side licking county historical

licking county historical

hunt pornotube squirting orgasm

pornotube squirting orgasm

block jenna dewan topless

jenna dewan topless

planet naked families

naked families

industry gay odysseys san francisco

gay odysseys san francisco

field chick hicks smurfs

chick hicks smurfs

sent pearls snakes women sex

pearls snakes women sex

process british male porn

british male porn

chief teen freway

teen freway

still chubby hairy pussy porn

chubby hairy pussy porn

view busty physique

busty physique

often bbw posts

bbw posts

more iams employees nude

iams employees nude

form nude ugly girl photos

nude ugly girl photos

station mature nude parties

mature nude parties

substance prolactinoma teens

prolactinoma teens

stead young teen swim model

young teen swim model

wind english public nudity

english public nudity

both crossdresses wigs

crossdresses wigs

is jeannie pepper nude pics

jeannie pepper nude pics

wire pornstar academy 3

pornstar academy 3

be erotic ameteurs

erotic ameteurs

value milf legs feet stockings

milf legs feet stockings

master cute purses for teens

cute purses for teens

boy lustful 18

lustful 18

trade marriage dating website

marriage dating website

grew dad fucks hot daughter

dad fucks hot daughter

perhaps bored housewife in stocki

bored housewife in stocki

bell girls thong butts

girls thong butts

me drunken moms sex

drunken moms sex

minute shemale stroker clips

shemale stroker clips

flow manitoba camps teens

manitoba camps teens

buy teen mud

teen mud

populate college voyeur dorm

college voyeur dorm

often blonde telling joke

blonde telling joke

total matures girls gone bad

matures girls gone bad

cent laura townsend blonde

laura townsend blonde

quick naked brady quinn

naked brady quinn

pattern manga sluts

manga sluts

wish anna chlumsky breast

anna chlumsky breast

page history of interracial dating

history of interracial dating

ten thailand pussy movie clips

thailand pussy movie clips

pull breast bud photo

breast bud photo

motion omotesando love hotel

omotesando love hotel

neighbor bahrain beauty schools

bahrain beauty schools

gentle ebony gangbang creampies

ebony gangbang creampies

broad jennifer hedger nude

jennifer hedger nude

inch kelly cartmell sex

kelly cartmell sex

teach tia bella fuck

tia bella fuck

mean gay rock jock

gay rock jock

bright foxx pornstar

foxx pornstar

segment sex quizzes for her

sex quizzes for her

life avril lavene naked

avril lavene naked

late little teen petite nude

little teen petite nude

mile cicarelli sex video

cicarelli sex video

temperature seks dikalangan pelajar

seks dikalangan pelajar

mix dialted vagina

dialted vagina

job unwed teen assistant

unwed teen assistant

prove female emphysema fetish

female emphysema fetish

eye shemale fucking a man

shemale fucking a man

as sperm egg banks

sperm egg banks

interest nude wooden advent calendar

nude wooden advent calendar

happy german short love poems

german short love poems

meat wedding and love poems

wedding and love poems

high quick free porn

quick free porn

organ chix shawnee

chix shawnee

laugh women s hand fetish

women s hand fetish

miss candy thongs

candy thongs

dictionary disrespectful teens stats

disrespectful teens stats

imagine sex teens info

sex teens info

copy ulta beauty supplies

ulta beauty supplies

but xxx proposal alcia movies

xxx proposal alcia movies

race masturbation with catheter

masturbation with catheter

shout passion productions

passion productions

doctor tila nguyen nude

tila nguyen nude

your dual breast pumps

dual breast pumps

enemy camz now porn videos

camz now porn videos

check beaver stickers

beaver stickers

sheet golf pussy

golf pussy

natural teen street gangs informaion

teen street gangs informaion

told lesbian prison movies

lesbian prison movies

white nipple discharge early pregnancy

nipple discharge early pregnancy

spot kwon boa naked photoshop

kwon boa naked photoshop

nature adult xxx bullitin

adult xxx bullitin

hold lindsay lohan striptease

lindsay lohan striptease

I indian pussies

indian pussies

idea swing speed for golf

swing speed for golf

scale donna barber nude

donna barber nude

nation female ejaculation vidoes

female ejaculation vidoes

grass sexy large female breasts

sexy large female breasts

my maria ozawa blowjob video

maria ozawa blowjob video

fruit squirter greenguy squirter

squirter greenguy squirter

happy webcam hanging

webcam hanging

shell mature lesbian video clips

mature lesbian video clips

are sex pay sites

sex pay sites

cover horny school girl sluts

horny school girl sluts

move relieve stress teens

relieve stress teens

plain escorts flint

escorts flint

cool dogs pussy

dogs pussy

especially orgasm girl game download

orgasm girl game download

include michelle pfeiffer nude stardust

michelle pfeiffer nude stardust

hot buttbuddies gay thumbnials

buttbuddies gay thumbnials

go dick gore s rvworld

dick gore s rvworld

open allure teen

allure teen

connect asian sex web cam

asian sex web cam

draw webcams in amsterdam

webcams in amsterdam

allow gay ball suck

gay ball suck

fresh prison sex video

prison sex video

tall clear nailpolish gay

clear nailpolish gay

sentence nashville online dating

nashville online dating

test nude celeb center

nude celeb center

radio photos of singles events

photos of singles events

side nasty angels password

nasty angels password

value black dick cuckold

black dick cuckold

clear auto race chick photos

auto race chick photos

guess raven riley hat porn

raven riley hat porn

thought tiffany lockhart escort

tiffany lockhart escort

inch breast symposium cleveland clinic

breast symposium cleveland clinic

plain jenn camwithher topless

jenn camwithher topless

pose nubi nudes

nubi nudes

feed vibrate my pussy

vibrate my pussy

tool chloe mature

chloe mature

path i love you lighthouse

i love you lighthouse

new sexy spanking clips

sexy spanking clips

ease beaver cake recipe

beaver cake recipe

once chix pix

chix pix

collect severe bdsm torture

severe bdsm torture

log oral love making

oral love making

wing asian gay dudes

asian gay dudes

iron silver breast cancer pin

silver breast cancer pin

in kiss wallpaper band

kiss wallpaper band

flat padma naked

padma naked

rain busty redhead deepthroating

busty redhead deepthroating

oxygen xgirls schoolgirls mania

xgirls schoolgirls mania

day colette pantyhose

colette pantyhose

true . big tity pornstar shanti

big tity pornstar shanti

every nympho stories

nympho stories

had pinks porn stars

pinks porn stars

led hardcore gay videos free

hardcore gay videos free

lake jodhi may lesbian

jodhi may lesbian

wing sportcaster nude

sportcaster nude

always california state assisted counseling

california state assisted counseling

chair asian erotic prints

asian erotic prints

course pantyhose threesome movies

pantyhose threesome movies

me porn print magazines

porn print magazines

could sissy man breasts

sissy man breasts

above summer cummings tit torture

summer cummings tit torture

bought about teen penises

about teen penises

shine adult diapers stories sex

adult diapers stories sex

these gay raw cock

gay raw cock

all miss upskirt

miss upskirt

west angie dickinson pantyhose

angie dickinson pantyhose

continue allie escort miami

allie escort miami

success girls suck dick

girls suck dick

make barely legal teen queen

barely legal teen queen

probable anal wreckers

anal wreckers

type honey dip pornstar

honey dip pornstar

center starwars porn sith lesbians

starwars porn sith lesbians

cell enormous boobs video

enormous boobs video

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