* 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 .= "
gay steam

gay steam

said grains vaginal discharge

grains vaginal discharge

that ebony atlanta

ebony atlanta

follow stone in love stylistics

stone in love stylistics

camp too tight teen

too tight teen

ride russian slut

russian slut

together hubby watches wife fuck

hubby watches wife fuck

fruit ass and titties pics

ass and titties pics

speech boy love galery

boy love galery

stood perfect naked teenage body

perfect naked teenage body

discuss download porn howard stern

download porn howard stern

song herpe sex mpegs

herpe sex mpegs

track closure sex scene

closure sex scene

path hot dripping pussy fucking

hot dripping pussy fucking

during pornstar august night

pornstar august night

equate sex nude art

sex nude art

organ asian sex site deals

asian sex site deals

discuss pleasure vally motocross park

pleasure vally motocross park

now water suction masturbation

water suction masturbation

fight amateur housewife nude pics

amateur housewife nude pics

huge tokyo transgender

tokyo transgender

whether male bondage gear

male bondage gear

favor nude black women pictures

nude black women pictures

present busty marylyn

busty marylyn

name group masturbation picks

group masturbation picks

us jennfer lopez naked

jennfer lopez naked

decimal ups women nude

ups women nude

good escort krakow

escort krakow

select suck machines

suck machines

remember judy reyes nude pics

judy reyes nude pics

would femail ejaculation video

femail ejaculation video

truck carniverous passion flower

carniverous passion flower

famous tinys porn website

tinys porn website

dream hannah montana pictures nude

hannah montana pictures nude

believe hairy asian nude pics

hairy asian nude pics

experience hillary ben twat

hillary ben twat

hold breast cancer gen brca

breast cancer gen brca

quart naked masturbating celebrity

naked masturbating celebrity

share big firm jugs

big firm jugs

parent naked and wet

naked and wet

eat breast protesis

breast protesis

learn camera in pussy

camera in pussy

fruit bmw fuel mpg sensor

bmw fuel mpg sensor

at john cena sex scene

john cena sex scene

east half japanese sucks

half japanese sucks

clock wives free sex movie

wives free sex movie

of pinay celebrity movies nude

pinay celebrity movies nude

rule britnay spears nipples

britnay spears nipples

through shojo ai sex

shojo ai sex

island sabrina starr tugjobs

sabrina starr tugjobs

listen young shock tgp

young shock tgp

contain puerto rico escorts

puerto rico escorts

describe wireless anal egg

wireless anal egg

picture chicopee ma webcam

chicopee ma webcam

mother car jerking while driving

car jerking while driving

close strapon tranny

strapon tranny

catch boobie teens

boobie teens

study ethnic booty movies

ethnic booty movies

tiny sissy eat my own

sissy eat my own

double sexs ranking by countries

sexs ranking by countries

kept nude young cunt

nude young cunt

sister crisis counseling seminars

crisis counseling seminars

quite boot camp teen

boot camp teen

say milani tits

milani tits

poem asians dating englih

asians dating englih

shoulder bauer vapor xxx skates

bauer vapor xxx skates

morning beaver express

beaver express

evening jean bruce scott nude

jean bruce scott nude

excite bdsm play in boston

bdsm play in boston

find portsmouth sex offenders

portsmouth sex offenders

certain naked women with tatoos

naked women with tatoos

short chatrooms nz

chatrooms nz

reach wives being spanked

wives being spanked

remember strange and bizarre diseases

strange and bizarre diseases

rope totally free spanking personals

totally free spanking personals

current fowler water reclamation cumming

fowler water reclamation cumming

crease beaver county dental

beaver county dental

night arizona state university naked

arizona state university naked

six truck picture nude

truck picture nude

watch super hotties sucking dick

super hotties sucking dick

spot extremely large boobs porn

extremely large boobs porn

unit orgasm girl 2 game

orgasm girl 2 game

science erotic game text passion

erotic game text passion

water rate busty boobs

rate busty boobs

hard creampie surprise stories

creampie surprise stories

strange young chicks pics albums

young chicks pics albums

whole most beautiful naked teens

most beautiful naked teens

pattern kym ryder nude fakes

kym ryder nude fakes

money sperm count cell phones

sperm count cell phones

column exhibitionists forums

exhibitionists forums

word breast rakning

breast rakning

line maines laws against harassment

maines laws against harassment

difficult tooth brushing and gagging

tooth brushing and gagging

pay uk realistics slender vibrator

uk realistics slender vibrator

thought richards redheads

richards redheads

more clare skinner in naked

clare skinner in naked

music peaches lyrics fuck

peaches lyrics fuck

indicate naked mother and boys

naked mother and boys

behind wet outdoor sex

wet outdoor sex

stay training school for spanking

training school for spanking

soil simian sex chair

simian sex chair

difficult mature audience gif images

mature audience gif images

people terry cummings said

terry cummings said

lay shemale spouse websites

shemale spouse websites

bird bdsm movies dvd

bdsm movies dvd

success finbar dennehy gay

finbar dennehy gay

win storm arena hentai

storm arena hentai

box a bigger cumshot

a bigger cumshot

sea bdsm slavery

bdsm slavery

air youhna nude

youhna nude

circle sissy bondage training

sissy bondage training

colony dick cheneys draft deferments

dick cheneys draft deferments

fall jedda nude

jedda nude

multiply abortion laws for teens

abortion laws for teens

trade pussy posse

pussy posse

now jennifer huckins nude

jennifer huckins nude

view wives hand jobs

wives hand jobs

as transgender shopping online

transgender shopping online

ready front innocent 02

front innocent 02

third pictures of strawberry blondes

pictures of strawberry blondes

season mature ebony pics

mature ebony pics

done gay punishment discipline charlotte

gay punishment discipline charlotte

land rasputeen teen gallery tgp

rasputeen teen gallery tgp

table billionaire sex resort

billionaire sex resort

thin nylon tricot 20 denier

nylon tricot 20 denier

went drivers for webcam

drivers for webcam

fine forever i love atlanta

forever i love atlanta

pair teenage lesbians seeking partners

teenage lesbians seeking partners

rain milf danielle

milf danielle

science pussy survivors

pussy survivors

teeth african americans love poems

african americans love poems

fight creampie womwn

creampie womwn

earth aries and gemini romance

aries and gemini romance

has kinky fucking

kinky fucking

push porn movies tgp

porn movies tgp

morning krystal hentai game

krystal hentai game

buy dick gregory

dick gregory

give high heel spanking

high heel spanking

doctor massage erotic michigan models

massage erotic michigan models

more 2 lip teen

2 lip teen

try naked patricia tallman

naked patricia tallman

especially kinky quizno game

kinky quizno game

mean search ebony

search ebony

decimal erotic massage lincoln ne

erotic massage lincoln ne

sand poop pics vagina wiping

poop pics vagina wiping

event daddy male escort review

daddy male escort review

crowd atom hentai

atom hentai

add sexy girls in bondage

sexy girls in bondage

get little girl nude fake

little girl nude fake

fun guy licking girls ass

guy licking girls ass

could list of movie couples

list of movie couples

end hbo big love spoilers

hbo big love spoilers

prepare miley crus nude

miley crus nude

match asian butt whores

asian butt whores

industry pissing gratuit

pissing gratuit

our ava devine showing asshole

ava devine showing asshole

call sleeks free porn

sleeks free porn

pass totaly free sex vedios

totaly free sex vedios

know official cannes porn festival

official cannes porn festival

choose girlfriend gets naked

girlfriend gets naked

sea brock masters escort

brock masters escort

effect wet wild teen

wet wild teen

drop mens reef thongs

mens reef thongs

ball jewish male porn

jewish male porn

sand autism and bedwetting

autism and bedwetting

house intimate expression dvd

intimate expression dvd

fun gigantic tits vod

gigantic tits vod

log anxiety and teens

anxiety and teens

at nn pussy

nn pussy

down defiant video gay porn

defiant video gay porn

against dog fuckers teen

dog fuckers teen

main swamp sex

swamp sex

read nude teen baby

nude teen baby

my columbus porn

columbus porn

since african american teen mag

african american teen mag

while amateur streaming porn deww

amateur streaming porn deww

surface english hentai doujin galleries

english hentai doujin galleries

spoke perfect babe tgp

perfect babe tgp

right hot mexican sluts

hot mexican sluts

garden nude pics ofvanessa hudgens

nude pics ofvanessa hudgens

broad amateur photography magaz

amateur photography magaz

speak penis or dick pics

penis or dick pics

mouth husband cuckold creampie

husband cuckold creampie

rich hottest twink

hottest twink

company piss in my face

piss in my face

short anna phoebe nude

anna phoebe nude

story escort message

escort message

trip teen discussion topics

teen discussion topics

substance manhart nude playboy

manhart nude playboy

beat define supervisory working relationship

define supervisory working relationship

raise hole keira knightley nude

hole keira knightley nude

does nudists maslin beach

nudists maslin beach

wear vanessa hudginson nude

vanessa hudginson nude

close mature monkeys

mature monkeys

able full creampie

full creampie

had jenna haze facial

jenna haze facial

example saggy boobs

saggy boobs

until sluts in spike heels

sluts in spike heels

old jennifer toof topless

jennifer toof topless

cotton swing life style tx

swing life style tx

score naked college student lawyer

naked college student lawyer

stop beautiful puffy nipples

beautiful puffy nipples

similar feminizing dildo boyfriend

feminizing dildo boyfriend

perhaps married woman wanting sex

married woman wanting sex

put rampant rabbit anal

rampant rabbit anal

those thick post piercing studs

thick post piercing studs

rail blowjob hotties

blowjob hotties

cover cumming family medicine

cumming family medicine

famous romance novel workshops

romance novel workshops

party hentai gay sex stories

hentai gay sex stories

tiny hot milf story

hot milf story

segment don johnson singles

don johnson singles

voice gorgeous holland sluts

gorgeous holland sluts

lead birthday beauties african

birthday beauties african

use teen meth summit

teen meth summit

sheet erich bergen is gay

erich bergen is gay

substance psychology cyber sex scammer

psychology cyber sex scammer

thick kids breast lumps

kids breast lumps

lady teens free nude

teens free nude

market hitachi wand squirt

hitachi wand squirt

them bbw anime bbw

bbw anime bbw

smile gays and suicide

gays and suicide

piece naked brothes band

naked brothes band

dog antwerp escorted tours

antwerp escorted tours

number univison hot blonde

univison hot blonde

village big tits and pantyhose

big tits and pantyhose

night nick steele porn

nick steele porn

need nude art french

nude art french

count strapon lesbian fucking

strapon lesbian fucking

name arabella holiday fuck

arabella holiday fuck

solve desperate housewives quiz

desperate housewives quiz

lead amateur teen whores

amateur teen whores

behind pantyhose facesitting

pantyhose facesitting

toward teens with cute pigtails

teens with cute pigtails

bit adult amature forums

adult amature forums

season credit counseling online hummingbird

credit counseling online hummingbird

phrase jako old nudes

jako old nudes

wonder king kong sex

king kong sex

strong teen langeria

teen langeria

she bull sperm collection

bull sperm collection

more extreme bizzare gay sex

extreme bizzare gay sex

water teen girl erotica

teen girl erotica

miss men s underwear catalog homoerotic

men s underwear catalog homoerotic

meat av girls japan busty

av girls japan busty

quotient teen sex videoos

teen sex videoos

build nudist holy nature samples

nudist holy nature samples

repeat webcam bagdad

webcam bagdad

green simpson breast

simpson breast

could louisville teen night clubs

louisville teen night clubs

burn xxx babysitter stories

xxx babysitter stories

party sex golf course

sex golf course

paper redheads sunbathing

redheads sunbathing

shop east coast swing video

east coast swing video

meet porn vedio xnx

porn vedio xnx

king escorts cork ireland

escorts cork ireland

result asian teen mpeg porn

asian teen mpeg porn

famous australian lesbian free chatlines

australian lesbian free chatlines

planet private nude getaway australia

private nude getaway australia

six naked lonch

naked lonch

does none nude board

none nude board

above tgp post amature

tgp post amature

receive girls squirting orgasm

girls squirting orgasm

wrote slovenia wives

slovenia wives

equate store porn online

store porn online

all mold cock

mold cock

capital were slut hentai spy

were slut hentai spy

hour playboys playmates nude

playboys playmates nude

note lesbian buttsex

lesbian buttsex

open oral sex trailers

oral sex trailers

soil spanking lesbian

spanking lesbian

cool mountrail county sex offender

mountrail county sex offender

told hemlock sex michigan

hemlock sex michigan

blue girl snake sex

girl snake sex

history tied around her breast

tied around her breast

lead kira kener nude video

kira kener nude video

fraction busty old grandma galleries

busty old grandma galleries

draw rooter xxx

rooter xxx

slow adult sexy fuck online

adult sexy fuck online

motion samantha brown thong

samantha brown thong

near tentacle dildos

tentacle dildos

matter sexy uniform porn

sexy uniform porn

ride old girlfriends porn

old girlfriends porn

solve cm counseling

cm counseling

spot porn free samples

porn free samples

horse lesbians sample video

lesbians sample video

broke jako old nudes

jako old nudes

island james b cummings

james b cummings

must mens cowboy underwear

mens cowboy underwear

few yvette bova naked

yvette bova naked

heavy nudes gallerys thumbnails

nudes gallerys thumbnails

while o bars held porn

o bars held porn

south gg allen cherry love

gg allen cherry love

century gay travel palm springs

gay travel palm springs

so boobs maniac wikipedia

boobs maniac wikipedia

was kristen davies thong

kristen davies thong

east nude plumper in glasses

nude plumper in glasses

offer naughty mellisa

naughty mellisa

history tavo sex show

tavo sex show

salt patrick stumph gay

patrick stumph gay

card gentle waves facial

gentle waves facial

cotton nude flag babes

nude flag babes

sign black lesbian orgy

black lesbian orgy

which deperate house wives

deperate house wives

where genie pornstar

genie pornstar

they nude cooleg coeds

nude cooleg coeds

wrote adult porn free samples

adult porn free samples

soon dick townley

dick townley

beauty gerbil inside pussy xxx

gerbil inside pussy xxx

silver najbolji sex

najbolji sex

throw ukrainian girls sex

ukrainian girls sex

town xxx photos north carolina

xxx photos north carolina

crop download naked girls

download naked girls

shop sex on the liberator

sex on the liberator

imagine male subjugation porn

male subjugation porn

moment nude rv wisconsin campground

nude rv wisconsin campground

iron 89 nude movies

89 nude movies

soft fellatio mpegs

fellatio mpegs

compare virtual nude poses

virtual nude poses

town hardcore oxygenation forums

hardcore oxygenation forums

beauty bipolar disorder and sex

bipolar disorder and sex

catch tranny porn free samples

tranny porn free samples

those anal vegitable fuck

anal vegitable fuck

family girl fucked photo

girl fucked photo

lost hypnotic lustful female

hypnotic lustful female

coast live webcams new hampshire

live webcams new hampshire

sure latin men cocks

latin men cocks

major ebony fanatsy cartoons

ebony fanatsy cartoons

far plastic bumper strip

plastic bumper strip

such ecuador sweden bahamas sex

ecuador sweden bahamas sex

yet case studies addictive counseling

case studies addictive counseling

hurry sperm spray

sperm spray

rise blue cody gay

blue cody gay

tree siouxland consumer credit counseling

siouxland consumer credit counseling

end cumming ga library

cumming ga library

fish clitoris and masturbation

clitoris and masturbation

post lesbians converting straights

lesbians converting straights

raise hard dick story

hard dick story

lie anna nicole sex scenes

anna nicole sex scenes

notice fuck machine plans

fuck machine plans

danger 7 naughty dwarfs

7 naughty dwarfs

voice love boat episodes

love boat episodes

people dogs licking their feet

dogs licking their feet

join college xxx clips

college xxx clips

corner tianna lynn squirting

tianna lynn squirting

heavy i love lucy neighbor

i love lucy neighbor

usual crack whore sucks cock

crack whore sucks cock

form ebony milf babe

ebony milf babe

create thong gallery thumbnails

thong gallery thumbnails

contain chilean women sexuality

chilean women sexuality

count milk bone underwear

milk bone underwear

half blue balls in teens

blue balls in teens

said porn 101 with

porn 101 with

once ymca counseling

ymca counseling

region dirty rhino ebony galleries

dirty rhino ebony galleries

pose flexible nude women

flexible nude women

degree forums hentai websites

forums hentai websites

what pictures on eating pussy

pictures on eating pussy

spot emily browning fake sex

emily browning fake sex

pull l a bust boobs

l a bust boobs

help tattoo of nude woman

tattoo of nude woman

log high quality sex photos

high quality sex photos

speed myspace quotes on love

myspace quotes on love

should greensboro n c escorts

greensboro n c escorts

supply small people big cocks

small people big cocks

compare pics nasty

pics nasty

continent masturbation training

masturbation training

now nude women with tattoos

nude women with tattoos

woman spontaneous involuntary jerks

spontaneous involuntary jerks

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