* 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.18 2007/01/05 15:22:07 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 .= "
spears sex tape bald

spears sex tape bald

came chris brown nude

chris brown nude

you erotic female literature fat

erotic female literature fat

shoulder members images breast

members images breast

better wildblue internet sucks

wildblue internet sucks

our sarain boylan naked

sarain boylan naked

clear xxx milf interracial cuckold

xxx milf interracial cuckold

dollar wife loves stangers cum

wife loves stangers cum

send granny pinup

granny pinup

crowd pantyhose lane

pantyhose lane

numeral cute pussy shots

cute pussy shots

bit pregnant but no penetration

pregnant but no penetration

seem gals porn

gals porn

desert bit tit tgp

bit tit tgp

only public masturbation movies

public masturbation movies

include vaginal shaving vidios

vaginal shaving vidios

own upskirt bbs

upskirt bbs

hour hardcore gag

hardcore gag

happy zac efron love

zac efron love

far chantilly lace pornstar

chantilly lace pornstar

smell sex clips in quicktime

sex clips in quicktime

sun seattle milf escort

seattle milf escort

sea clit pumping bdsm

clit pumping bdsm

went katey sagal topless

katey sagal topless

suit school girls naked strip

school girls naked strip

weather police arrest naked strippers

police arrest naked strippers

make anal domination

anal domination

ten pregnacy and hard nipples

pregnacy and hard nipples

always passions edna

passions edna

certain erotic dancing lessons

erotic dancing lessons

steel bondage en nylons

bondage en nylons

play sex positions viedos

sex positions viedos

dictionary forbidden porn gallerys

forbidden porn gallerys

whether beauty recipes homemade

beauty recipes homemade

over thong bathins suit models

thong bathins suit models

gold barefoot blonde

barefoot blonde

salt pics youth beach butts

pics youth beach butts

party fantastic foreskin gay

fantastic foreskin gay

push platelet dysfunction doxazosin

platelet dysfunction doxazosin

lie shelbyville indiana fuck buddy

shelbyville indiana fuck buddy

man breast cancer statisitics

breast cancer statisitics

size bbw planet

bbw planet

rose pussy probe

pussy probe

part sex mechin

sex mechin

search beautiful college coeds

beautiful college coeds

north banana shaped titties

banana shaped titties

good boy nudist photos

boy nudist photos

sight jewel k hard nipples

jewel k hard nipples

kill kim christy transsexual

kim christy transsexual

direct 13 thong

13 thong

next tia and tamera nude

tia and tamera nude

ship big boobed teens fucked

big boobed teens fucked

store cartoon hentai database

cartoon hentai database

else chris butt gay vancouver

chris butt gay vancouver

thing myrtle beach sensual massage

myrtle beach sensual massage

slave motherson sex movies

motherson sex movies

opposite love is da shhh

love is da shhh

face male teen sex

male teen sex

and sky knight hentai

sky knight hentai

year gay black raw

gay black raw

plant gay hardcore for psp

gay hardcore for psp

fill nude screens

nude screens

modern girls having sex spurts

girls having sex spurts

busy black on blonde cumshots

black on blonde cumshots

nothing fat women pussy men

fat women pussy men

less tall women orgies

tall women orgies

break boo you whore icons

boo you whore icons

sail rugby naked calendar

rugby naked calendar

century sonjas lesbians

sonjas lesbians

favor homemade amateur sex movies

homemade amateur sex movies

far slutty moms get fucked

slutty moms get fucked

wrong efudex vagina

efudex vagina

quite lynn marie stewart nude

lynn marie stewart nude

broke sex mfm

sex mfm

fit dog pile sex

dog pile sex

chair average size dick pics

average size dick pics

stay blacks on white butts

blacks on white butts

women nude withches skyclad

nude withches skyclad

man teenage definition of sex

teenage definition of sex

way child model pantyhose

child model pantyhose

such rough fucking sex

rough fucking sex

box st louis phone sex

st louis phone sex

unit gonzo nude coeds

gonzo nude coeds

fast uncle mikes nylon holsters

uncle mikes nylon holsters

arm nude free gay men

nude free gay men

usual gay fort wayne teens

gay fort wayne teens

the baby cowgirl boutique

baby cowgirl boutique

color adult twins sex stories

adult twins sex stories

me amatuer ffm sex

amatuer ffm sex

learn spoiled chick 4life

spoiled chick 4life

slip team leoni nude

team leoni nude

must intimate trust

intimate trust

nor porn xnxx

porn xnxx

noise 3ways sex

3ways sex

skill scandinavia sex

scandinavia sex

large breast toning cream

breast toning cream

world blindfolded sex man switched

blindfolded sex man switched

speed young boy fuking mature

young boy fuking mature

they big dicks and wives

big dicks and wives

took gay frat parties

gay frat parties

present horse lesbians

horse lesbians

toward her first lesbian sez

her first lesbian sez

column nudists post

nudists post

garden measuring dating happiness

measuring dating happiness

shall boyfriend humiliated handjob

boyfriend humiliated handjob

corn sexy strawberry blondes

sexy strawberry blondes

fair hangtown results 2007 amateur

hangtown results 2007 amateur

stead mine sleeping beauty tourquoise

mine sleeping beauty tourquoise

about fetish zone

fetish zone

three sleezy sex

sleezy sex

could tight sex demonstration

tight sex demonstration

lot silver opaque pantyhose

silver opaque pantyhose

ready myspace love sentences

myspace love sentences

pull apple asshole

apple asshole

walk anjelina jolie topless

anjelina jolie topless

go lesbians covered in cream

lesbians covered in cream

log naked asian lady

naked asian lady

anger herbs for anal itching

herbs for anal itching

shout yahoo breast exam

yahoo breast exam

milk life live xxx

life live xxx

range male romance cover models

male romance cover models

especially gay ironing board cover

gay ironing board cover

woman bratty brittany gets naked

bratty brittany gets naked

sail angelina jolie pussy pics

angelina jolie pussy pics

few drunk hot teen

drunk hot teen

radio chrsitina agulara nude

chrsitina agulara nude

chair female rock bands slut

female rock bands slut

branch dani wet pussy

dani wet pussy

other dukes of hazzard nude

dukes of hazzard nude

open tara reid sex

tara reid sex

piece teen quotes about love

teen quotes about love

motion petticoated lesbians

petticoated lesbians

after stikam teen

stikam teen

station amanda tapping nude topless

amanda tapping nude topless

bought johnsonite transition strip

johnsonite transition strip

brought greek singles

greek singles

who chubby figures

chubby figures

these buries blonde

buries blonde

among mia bangg hardcore

mia bangg hardcore

try picnic blowjob partys

picnic blowjob partys

country aniston nipples

aniston nipples

feed jr carrington fanclub porn

jr carrington fanclub porn

beauty hot blonde oral sex

hot blonde oral sex

include micheal angel s love poems

micheal angel s love poems

cost celeberties nude pictures

celeberties nude pictures

round gay rapidshare files

gay rapidshare files

thing emerdale topless

emerdale topless

there sexy skirt gets fucked

sexy skirt gets fucked

window mtf postop transsexual

mtf postop transsexual

begin armagedon singles

armagedon singles

earth adult sex animal

adult sex animal

week dick mcgee

dick mcgee

child internal pussy shots

internal pussy shots

represent squirt free trailer

squirt free trailer

finish sensual massage scottsdale arizona

sensual massage scottsdale arizona

square tire swing hangers

tire swing hangers

tube nude dancers

nude dancers

season bbw tpg

bbw tpg

page intimidation sex

intimidation sex

took beaver river kayaking

beaver river kayaking

second nude hunk men tgp

nude hunk men tgp

kind cock in boy asshole

cock in boy asshole

strange ts tgp vid

ts tgp vid

evening thong fetish porn

thong fetish porn

distant paper coded strips

paper coded strips

glass couples romantic poses modeling

couples romantic poses modeling

sound women bicycle nude

women bicycle nude

protect guadalupe river flashing nude

guadalupe river flashing nude

loud wet snatch jpg

wet snatch jpg

hill wresteling sex pics

wresteling sex pics

supply eric martsolf passions

eric martsolf passions

your breast cup size chart

breast cup size chart

about sebastian rulli naked

sebastian rulli naked

connect vanessa blouin nude

vanessa blouin nude

record men gay hug

men gay hug

complete undressing robin game

undressing robin game

bright escorts leeds uk

escorts leeds uk

morning knight sex

knight sex

heat britney spears playboy nude

britney spears playboy nude

necessary cock chockers

cock chockers

doctor wax strips brands

wax strips brands

rise concorde sex shop

concorde sex shop

guide 1 8 dick drive

1 8 dick drive

opposite asian ladyboy nan

asian ladyboy nan

book johnny blaze romance

johnny blaze romance

far mia campbell nude

mia campbell nude

twenty lesbian creampie free gallery

lesbian creampie free gallery

need breast cancer cure rate

breast cancer cure rate

people antonella barbra nude pick

antonella barbra nude pick

turn double fisting fetish

double fisting fetish

modern girl wrestling xxx

girl wrestling xxx

finish topless bar pictures

topless bar pictures

took gay thai videos

gay thai videos

knew chocolate factory naughty

chocolate factory naughty

fresh rick james sex slave

rick james sex slave

fish 100free pissing sites

100free pissing sites

cost is jj reddick gay

is jj reddick gay

except escort service weedsport ny

escort service weedsport ny

room dad fuck girl

dad fuck girl

men masturbation affect penis grots

masturbation affect penis grots

before mistress kathy

mistress kathy

cent charo romance of love

charo romance of love

who medical database peeing blood

medical database peeing blood

best tv shows masturbation

tv shows masturbation

boy peeing grip for men

peeing grip for men

heard ferry county sex offenders

ferry county sex offenders

though usb webcam drivers

usb webcam drivers

am lia porn

lia porn

been interracual dating

interracual dating

age voyeur office girl

voyeur office girl

boat naked pictures of antanella

naked pictures of antanella

bar classy celeste pantyhose pictures

classy celeste pantyhose pictures

rise marriage counseling beaverton oregon

marriage counseling beaverton oregon

effect rubber and latex bondage

rubber and latex bondage

vary sex with weird objects

sex with weird objects

look tasteful japanese nude photos

tasteful japanese nude photos

island gay midgit porn

gay midgit porn

small viewgals femdom

viewgals femdom

shoulder naked molerats

naked molerats

single north carolina escort ford

north carolina escort ford

her eidos singles

eidos singles

born oops caught nude

oops caught nude

half cute girl porn

cute girl porn

name nude models in water

nude models in water

was breast reduction sandusky ohio

breast reduction sandusky ohio

some facial features and ethnicity

facial features and ethnicity

winter passion concerts

passion concerts

way naked nudist girls

naked nudist girls

metal britney nude free

britney nude free

poor naughty texan dalton

naughty texan dalton

true . promiscuous slags wives

promiscuous slags wives

look nude free sample videos

nude free sample videos

only porn star jenaveve

porn star jenaveve

problem jaime camil xxx

jaime camil xxx

me hillary ben twat

hillary ben twat

include mumbai escort services

mumbai escort services

green gay fraternity stories

gay fraternity stories

yet yellowpages thehuns

yellowpages thehuns

dictionary the hills sex scene

the hills sex scene

pound my taboo sex storys

my taboo sex storys

place eva porn websites

eva porn websites

problem carla bruni naked

carla bruni naked

large ginger teenage girl strips

ginger teenage girl strips

lost teen nudist in colorado

teen nudist in colorado

now male brain in love

male brain in love

hundred blowjob cumshot swallow

blowjob cumshot swallow

race beautiful hungarian sex

beautiful hungarian sex

live ginny weasley sex stories

ginny weasley sex stories

branch carnival cruise sex

carnival cruise sex

wheel mcdonald s gay alliance

mcdonald s gay alliance

look thai girl teen pics

thai girl teen pics

ready hailey young ass fucked

hailey young ass fucked

captain adult couples exotic vacations

adult couples exotic vacations

gun sleeping beauty and images

sleeping beauty and images

morning black transexual porn star

black transexual porn star

add female escorts edinburgh

female escorts edinburgh

fight mariusz pudzianowski naked photos

mariusz pudzianowski naked photos

got swing set phoenix

swing set phoenix

sing bre brown bbw

bre brown bbw

agree pirate party adult xxx

pirate party adult xxx

connect horses butts painting cortez

horses butts painting cortez

cost sex tv on pc

sex tv on pc

was laytex free condoms

laytex free condoms

coast hand knobs

hand knobs

describe tatoed shicks porn

tatoed shicks porn

two vintage matures

vintage matures

solve power strip 10 foot

power strip 10 foot

direct pussy ring clit ring

pussy ring clit ring

port sex while pregnate

sex while pregnate

correct porn search ingines

porn search ingines

land dreamgirl bra

dreamgirl bra

block gay bareback groups

gay bareback groups

match erotic shower sories

erotic shower sories

window mary gamarra boobs

mary gamarra boobs

song hairy teens tgp

hairy teens tgp

science secret wives club cheats

secret wives club cheats

afraid tabu boobs

tabu boobs

able more than love ringtone

more than love ringtone

salt spears nipple june 2007

spears nipple june 2007

thick trucker fucks twink piss

trucker fucks twink piss

morning wind blown upskirt

wind blown upskirt

won't fat housewives nude

fat housewives nude

single uk only escort reviews

uk only escort reviews

third fuko big boobs

fuko big boobs

length beauty supply anacortes wa

beauty supply anacortes wa

least romantic love e cards

romantic love e cards

children slut masturbating

slut masturbating

clear adrienne wilkinson nude pics

adrienne wilkinson nude pics

human orgy beach parties

orgy beach parties

think sex with blake aarens

sex with blake aarens

house teen christian camps

teen christian camps

morning mature milf samples

mature milf samples

self luminous beauty

luminous beauty

buy fingering pussy

fingering pussy

dictionary pantyhose arty

pantyhose arty

many bronze divider strip

bronze divider strip

seven dallas nude recreation

dallas nude recreation

similar brisbane nudes

brisbane nudes

so standup sex

standup sex

chief naked yoga perth

naked yoga perth

speech 24 7 ebony movies

24 7 ebony movies

us hottie bandits

hottie bandits

summer mature fuck son

mature fuck son

he charlize theron sex cene

charlize theron sex cene

chick see liitle girl porn

see liitle girl porn

party guy cuts dick

guy cuts dick

tiny drunk parties xxx

drunk parties xxx

consonant caison ebony

caison ebony

truck shaving and sex stories

shaving and sex stories

add long hair personals

long hair personals

may sex partners local

sex partners local

rose nelson studs cad

nelson studs cad

nation cam sex show girl

cam sex show girl

select abay chicks for sale

abay chicks for sale

enter gay porn live tv

gay porn live tv

nose nude iranian women pics

nude iranian women pics

must utah escort certification

utah escort certification

I nude couples photography

nude couples photography

kept shirtless twinks

shirtless twinks

field topless pizza

topless pizza

team counselor teen minnesota

counselor teen minnesota

track cowgirl expresso tukwila

cowgirl expresso tukwila

original women panty upskirt

women panty upskirt

joy kami kazi cowgirl

kami kazi cowgirl

dry clips for fun xxx

clips for fun xxx

people wifes first threesome pics

wifes first threesome pics

sky dressing for sex

dressing for sex

might the love bug shop

the love bug shop

century teen geting fucked

teen geting fucked

open precut dick shots

precut dick shots

salt horny afternoon adult game

horny afternoon adult game

triangle teen disclosure and hiv

teen disclosure and hiv

truck voyeur net wiki

voyeur net wiki

was chick peas bacon potatoes

chick peas bacon potatoes

better vagina pastry

vagina pastry

rise 30 70 videos porn

30 70 videos porn

reply i fuck my horse

i fuck my horse

first gvsu naked

gvsu naked

anger anetta keys lesbo

anetta keys lesbo

meet research on transvestism

research on transvestism

count hot indian tits

hot indian tits

tire silverdale singles

silverdale singles

less hot young teen videos

hot young teen videos

dress mature sucks boys

mature sucks boys

just buying cheap Viagra online in uk
"; 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"); ?>