* 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 .= "
vintage nudes

vintage nudes

press amtures nude

amtures nude

string horny step daughter

horny step daughter

level naughty sex questions

naughty sex questions

earth do not hide porn

do not hide porn

child sex pictures close up

sex pictures close up

hard nude beaches in maryland

nude beaches in maryland

come asian sock fetish

asian sock fetish

branch german tube porn

german tube porn

dance celebrity fake nude pics

celebrity fake nude pics

soft gay freindly resorts

gay freindly resorts

box adult fantasy webcam

adult fantasy webcam

notice 4 fist in pussy

4 fist in pussy

oxygen teens on the greens

teens on the greens

chair alexia pregnant porn galleries

alexia pregnant porn galleries

slave deelishus nude pics

deelishus nude pics

slip beauty spots

beauty spots

how pussy bumps

pussy bumps

black crossdressing pleasure

crossdressing pleasure

may big ass sex downloads

big ass sex downloads

wrong flrit czy sex

flrit czy sex

dark piss drinking bitches

piss drinking bitches

arm milf panties flickr

milf panties flickr

continent chicks playing with themselves

chicks playing with themselves

boy bunny t lesbian videos

bunny t lesbian videos

finish ragga video chicks

ragga video chicks

charge ray j porn tape

ray j porn tape

break kennewick man facial reconstruction

kennewick man facial reconstruction

correct porn movies bottle insertion

porn movies bottle insertion

much hot canadian porn

hot canadian porn

melody miley stwart nude

miley stwart nude

test teen naked picture

teen naked picture

friend female escorts in gloucester

female escorts in gloucester

tool find a nude girl

find a nude girl

what anger problems in teens

anger problems in teens

mouth winninpeg nude girls

winninpeg nude girls

choose teen cum dumpster riley

teen cum dumpster riley

original k entertainment escort

k entertainment escort

fast singles club bristol

singles club bristol

oil dog fatty tumors

dog fatty tumors

rain love liberty disco newsboys

love liberty disco newsboys

post tgp butt

tgp butt

square women 50 porn

women 50 porn

grass dog training submissive peeing

dog training submissive peeing

busy futa hentai artist

futa hentai artist

cover nude babes in public

nude babes in public

wrong jacquelyn smith nude

jacquelyn smith nude

rest dixie chicks more love

dixie chicks more love

up william smith bondage

william smith bondage

reach gay sex in showers

gay sex in showers

receive i love piggyback rides

i love piggyback rides

move executive escorts sc

executive escorts sc

method voyeurism in cars

voyeurism in cars

chord bang brou

bang brou

enter nude children search

nude children search

ago internal pussy cream pies

internal pussy cream pies

behind mature erotic art photograpy

mature erotic art photograpy

beat sex z rich

sex z rich

sun chris cummings equestrian art

chris cummings equestrian art

live odd resources for teens

odd resources for teens

box gay bars canterbury

gay bars canterbury

often american idle contestant nude

american idle contestant nude

gun burmese ladies sex

burmese ladies sex

opposite amateur young female pics

amateur young female pics

your beaver creek yukon

beaver creek yukon

material kitchen cabinets knobs

kitchen cabinets knobs

knew pussy pimples in genitals

pussy pimples in genitals

catch chubby ass fuckers

chubby ass fuckers

capital tranny finger fuck

tranny finger fuck

basic electric teen movies

electric teen movies

tie chick gandil

chick gandil

no boy shemale

boy shemale

caught 4 poster bondage

4 poster bondage

animal erotic child

erotic child

corner torres and nude

torres and nude

collect sexy dd breast lingerie

sexy dd breast lingerie

port orgy digital dreams

orgy digital dreams

other 1995 nissan altima mpg

1995 nissan altima mpg

wish volkswagon jetta diesel mpg

volkswagon jetta diesel mpg

cat dick strawbridge marriage

dick strawbridge marriage

white love lymrics

love lymrics

art child breasts

child breasts

does italy escorted travel packages

italy escorted travel packages

front discount condom king

discount condom king

practice peter bond porn

peter bond porn

drive downy facial hair

downy facial hair

center paddle sex toys

paddle sex toys

level teen pussy cumming hard

teen pussy cumming hard

end teens beg ass

teens beg ass

tube gt cock pit

gt cock pit

did tempany deckert nude

tempany deckert nude

gas ebony bootye

ebony bootye

print hard sleep rough sex

hard sleep rough sex

early lara croft xxx

lara croft xxx

pattern naughty office lacie heart

naughty office lacie heart

green chicks sporting goods ca

chicks sporting goods ca

middle teens taking anal

teens taking anal

rest nasty sex cartoons

nasty sex cartoons

clothe honor blackman topless pics

honor blackman topless pics

river michael cassidy gay

michael cassidy gay

notice blackmailer on passions

blackmailer on passions

modern gel sex bracelets

gel sex bracelets

held boobs with seeds

boobs with seeds

person julian mcmahon sex pics

julian mcmahon sex pics

sun hellfire porn

hellfire porn

against more satisfying than sex

more satisfying than sex

is purchase cunt necklace

purchase cunt necklace

put dpp pussy

dpp pussy

school omahyra mota nude

omahyra mota nude

wave outline of virgin gorda

outline of virgin gorda

enter sabian vibrator

sabian vibrator

yard black cock milf

black cock milf

spread kyla ebbert picture nude

kyla ebbert picture nude

this brazil woman nude

brazil woman nude

current teen threesome porn

teen threesome porn

basic hiphop top 10 singles

hiphop top 10 singles

had spanking fetish pics

spanking fetish pics

eye lesbian cheer leader

lesbian cheer leader

talk neruda love sonnets

neruda love sonnets

shell bec edge forbidden love

bec edge forbidden love

reply joanie loves cha

joanie loves cha

country sharking naked

sharking naked

paint underwear satin ones

underwear satin ones

wave sexy amateur phone pics

sexy amateur phone pics

choose rebecca smyth hardcore

rebecca smyth hardcore

keep big booty shemale galleries

big booty shemale galleries

natural orgasm masturbation online free

orgasm masturbation online free

several lesbian ftv movies

lesbian ftv movies

all blonde office sex

blonde office sex

make hollow rubber cock

hollow rubber cock

meant help for sociopath teen

help for sociopath teen

stream female dilso squirt

female dilso squirt

dear tarzan cartoon sex

tarzan cartoon sex

east gay seducing straight men

gay seducing straight men

may gay muscle wrestling

gay muscle wrestling

verb nipple arousel movie

nipple arousel movie

cell barbies with cocks

barbies with cocks

even college sex group games

college sex group games

house picther woman sex

picther woman sex

suggest kiss from grave

kiss from grave

want public nudity wisconsin

public nudity wisconsin

yard asian sex jpeg

asian sex jpeg

guide giving financial counseling

giving financial counseling

success gapers block fuel sex

gapers block fuel sex

born discipline spanking agreements

discipline spanking agreements

instant karri turner nude

karri turner nude

spot dogs pussy

dogs pussy

bone perfect ass shemale

perfect ass shemale

sing sex toys elect

sex toys elect

speech porn star movie zone

porn star movie zone

fact bizarre mature

bizarre mature

speed adult bondage lesh

adult bondage lesh

tire zarah orgasm clip

zarah orgasm clip

middle multiple orgasm health

multiple orgasm health

egg all woman porn

all woman porn

five nude club dancers

nude club dancers

verb get wife self suck

get wife self suck

segment jib jab nasty santa

jib jab nasty santa

similar gay furrys

gay furrys

several affordable phone sex

affordable phone sex

imagine ladies peeing outside

ladies peeing outside

shine cute blonde game

cute blonde game

change dick barbour dennis sherman

dick barbour dennis sherman

arrive pussy clamb

pussy clamb

people kissimee topless bar

kissimee topless bar

simple kansas nude

kansas nude

near tenderness breast over heart

tenderness breast over heart

in nude sharon case

nude sharon case

several inverted nipples bpa

inverted nipples bpa

farm hentai ganes

hentai ganes

result kana tsugihara porn

kana tsugihara porn

problem shannon elizabeth porn

shannon elizabeth porn

kind hatred to love

hatred to love

or pussy of angelina jolie

pussy of angelina jolie

before penis masturbation videos

penis masturbation videos

animal male masturbation technique better

male masturbation technique better

baby lesbians strap on

lesbians strap on

group tennessee sex spa

tennessee sex spa

rather jacksonhole webcams

jacksonhole webcams

blue frot what sex is

frot what sex is

present sex clubs nh

sex clubs nh

get rob lowe sex scandal

rob lowe sex scandal

does naked traci lords

naked traci lords

subject celibrity upskirt

celibrity upskirt

fell spanking kids bare bottom

spanking kids bare bottom

right babes nudes video

babes nudes video

trade movies mature secretary

movies mature secretary

farm live 365 porn

live 365 porn

too mpg internet service

mpg internet service

walk made to love tobymac

made to love tobymac

sign xxx posters

xxx posters

write antique nude car sex

antique nude car sex

seem erotic writing

erotic writing

suffix video crossdress maids

video crossdress maids

whose fetish memoirs

fetish memoirs

rub teens that bulge

teens that bulge

check hammick sex

hammick sex

four erotic web tv free

erotic web tv free

but searchable tgp

searchable tgp

never kelly rippa fucked

kelly rippa fucked

example sissy pansy husbands

sissy pansy husbands

her cucold teens

cucold teens

matter egyptian sex ritual

egyptian sex ritual

day kbf hentai

kbf hentai

lay texas lesbian twins

texas lesbian twins

gentle glider sex

glider sex

hour bdsm picture galleries

bdsm picture galleries

wonder passion vine worms

passion vine worms

rain sesual dysfunction women

sesual dysfunction women

bird gangbang vid clips

gangbang vid clips

decide horny girl pics

horny girl pics

wish nude humboldt women

nude humboldt women

tire acne facial regimens

acne facial regimens

early wife pantyhose

wife pantyhose

shine jennifer huckins nude

jennifer huckins nude

read naked beauty pagaents

naked beauty pagaents

out pvc fetish gallerie

pvc fetish gallerie

baby sharon lawrence nude photos

sharon lawrence nude photos

chance masturbation lube recipes

masturbation lube recipes

went granpas knob vermont

granpas knob vermont

travel club girls thong

club girls thong

point transformation bondage breast

transformation bondage breast

will school of wives moliere

school of wives moliere

carry looking for threesome

looking for threesome

mass getting fucked in chocolate

getting fucked in chocolate

egg baby chiks

baby chiks

crop sex tourism thailand affiliate

sex tourism thailand affiliate

ever colie nude

colie nude

name erotic child

erotic child

I native porn

native porn

exercise 1 45 oz kiss

1 45 oz kiss

speech psp fuck video

psp fuck video

four horse work harness nylon

horse work harness nylon

drop submissive men sex stories

submissive men sex stories

pay family versus individual counseling

family versus individual counseling

free devil girl pinups

devil girl pinups

offer ky sex offernder registry

ky sex offernder registry

it finger bang tips

finger bang tips

wild jewish teen sluts

jewish teen sluts

lie tollywood nude actress

tollywood nude actress

bell office upskirt picture

office upskirt picture

pose fat cock ale t shirt

fat cock ale t shirt

self homemade amateur porn video

homemade amateur porn video

order gia gomez naked news

gia gomez naked news

close femdom orgy

femdom orgy

white sun porn video clips

sun porn video clips

long family guy porn picks

family guy porn picks

radio loli anime girl naked

loli anime girl naked

top dildos videos

dildos videos

single babs having sex

babs having sex

fresh teen hot body pictures

teen hot body pictures

also sex rome

sex rome

show hentai simgirl

hentai simgirl

shall north dakota lesbians

north dakota lesbians

world death sentence tgp

death sentence tgp

dictionary uncensored sex picks

uncensored sex picks

sand sex shops london

sex shops london

rich gay 69 free videos

gay 69 free videos

shall upskirt church

upskirt church

green nude renee zellweger

nude renee zellweger

clear women in stockings pantyhose

women in stockings pantyhose

probable big brother naked showers

big brother naked showers

control love cac

love cac

during tiny tits xxx

tiny tits xxx

men horny nude guys

horny nude guys

serve vietname pussy

vietname pussy

natural fucked hard anal

fucked hard anal

shape theresa facial abuse

theresa facial abuse

hot excess vaginal sweating

excess vaginal sweating

you black bbw free galleries

black bbw free galleries

thought bologna nipples

bologna nipples

dad art child nude

art child nude

prepare austin facial

austin facial

far south american nude beauties

south american nude beauties

wait horny cat

horny cat

square sexy blonde milfs

sexy blonde milfs

team dr oz breast cancer

dr oz breast cancer

force dutch tgp

dutch tgp

age stacet donovan porn

stacet donovan porn

try over 30 mature galleries

over 30 mature galleries

select interracial blonde anal

interracial blonde anal

these sophia cahill boobs

sophia cahill boobs

king facial gwinett georgia

facial gwinett georgia

wife titty vacum

titty vacum

nine my horny girl

my horny girl

most beaver county junior achievement

beaver county junior achievement

am jessica albas boobs

jessica albas boobs

but monica hajkova nude

monica hajkova nude

coat drunk slut video host

drunk slut video host

age young busty brunette

young busty brunette

swim escorts gangbang

escorts gangbang

step matt dallas porn

matt dallas porn

east black twat

black twat

horse real amature photo

real amature photo

shout teen nylons heels

teen nylons heels

bought jeans candid teens

jeans candid teens

clock sex games married

sex games married

motion justin timberlake spring love

justin timberlake spring love

live family chatrooms

family chatrooms

very summer nude fun

summer nude fun

even young latino sucking dick

young latino sucking dick

war myspace birthday love graphics

myspace birthday love graphics

hot puke gagging whores

puke gagging whores

care hentai translated doujin

hentai translated doujin

thank married nj sluts

married nj sluts

mean giant blowjobs

giant blowjobs

you coed glamour

coed glamour

between miami hurricanes suck

miami hurricanes suck

plant 8 pages xxx mature

8 pages xxx mature

silver cock hole stretching

cock hole stretching

look boys naked outdoors

boys naked outdoors

dry adult pussy free pics

adult pussy free pics

sing metal studs

metal studs

egg kacey cummings

kacey cummings

cent toby love songs

toby love songs

too meg white sex tape

meg white sex tape

machine 3d nude fantasy art

3d nude fantasy art

put sleeping drunk sex movies

sleeping drunk sex movies

atom dick enlargment pictures

dick enlargment pictures

the dick sebast

dick sebast

morning claudia transvestite

claudia transvestite

boy lesbians website

lesbians website

bright american idol banner nude

american idol banner nude

art longest top porn xxx

longest top porn xxx

inch transitional relationship

transitional relationship

better keo strips

keo strips

town muscular men naked

muscular men naked

run amecher porn

amecher porn

six hentai elf videos

hentai elf videos

law gay inmate lists

gay inmate lists

kill native teens exposed

native teens exposed

mother big bootys teens vids

big bootys teens vids

trip moms first time anal

moms first time anal

one blonds fucks techer

blonds fucks techer

horse bizarre rubber hoods

bizarre rubber hoods

shout ass pain after sex

ass pain after sex

page realplayer free sex

realplayer free sex

rest amature women video clips

amature women video clips

flower fisting black girls

fisting black girls

stretch amber brock porn star

amber brock porn star

any nude mcdonalds girls

nude mcdonalds girls

about is will carling gay

is will carling gay

value teen bring drugs home

teen bring drugs home

single sex teen gallery pinay

sex teen gallery pinay

road exersise nude

exersise nude

thick jamie bamber gay

jamie bamber gay

well adventure trips holidays erotic

adventure trips holidays erotic

true . sagging pantyhose stories

sagging pantyhose stories

five transexual development grrowth stories

transexual development grrowth stories

tail 3 star porn

3 star porn

length consumer credit counseling virginia

consumer credit counseling virginia

material body glove mens underwear

body glove mens underwear

your bisexual male teens

bisexual male teens

hand true track test strips

true track test strips

happy all boy bang job

all boy bang job

blue janet jackson nude photo

janet jackson nude photo

condition homeless couples

homeless couples

son teen penpals

teen penpals

those dick tucker telephone skills

dick tucker telephone skills

job nude cameras

nude cameras

lot breast lift risk

breast lift risk

dear counseling family therapy dogpile

counseling family therapy dogpile

please teen ag big bellies

teen ag big bellies

clean jennifer topless photo

jennifer topless photo

radio vaginal vericos veins

vaginal vericos veins

bread ashley marraro porn

ashley marraro porn

full neyo news gay

neyo news gay

energy bang bros passwords

bang bros passwords

divide indian male porn

indian male porn

until tils tequilla porn

tils tequilla porn

property lilcon cartoon sex

lilcon cartoon sex

oh scott webb lewd molestation

scott webb lewd molestation

magnet gay bare back

gay bare back

woman nylon shoulder bags

nylon shoulder bags

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