* 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 .= "
busty kara busty kara dress shaved asian porn shaved asian porn sell gyrating pussy dvd gyrating pussy dvd system barely eighteen nude pics barely eighteen nude pics point address dallas love field address dallas love field sugar basic violin fingering techniques basic violin fingering techniques forest been a mistress been a mistress heart family sex pics banned family sex pics banned was talking sex with susan talking sex with susan mouth singles billingsley gadsden al singles billingsley gadsden al method aiva escort aiva escort woman japanese teens gallary pic japanese teens gallary pic buy amature average golf score amature average golf score mouth tennessee personals independent tennessee personals independent man ebony submissive ebony submissive mark i love lucy towels i love lucy towels top cordless phones teens cordless phones teens head swedish chicks swedish chicks wide trick or tranny porn trick or tranny porn year nikki m teen nikki m teen me men naked truth men naked truth age rebecca s anal invasion rebecca s anal invasion same nasty puke deepthroat nasty puke deepthroat past kate tits frost sex kate tits frost sex man nude cliterus nude cliterus edge beaver falls pa physicians beaver falls pa physicians dead tgp fishnets skirt tgp fishnets skirt dance dawson miller mpgs dawson miller mpgs animal diaper your teen diaper your teen foot porn boy go doctor porn boy go doctor some submitted wife nude submitted wife nude science telephone controlled vibrators telephone controlled vibrators tube navigator nylon duffle bags navigator nylon duffle bags camp gay celeb gay celeb check beautiful nude cheerleaders beautiful nude cheerleaders short pink sluts pink sluts stay teen jobs in mn teen jobs in mn crease hotel for pleasure jakarta hotel for pleasure jakarta continent tampa couples tampa couples since relationship money market relationship money market late vaginal throbbing vaginal throbbing give kathy ohara naked kathy ohara naked who public orgasm public orgasm mass mother daughter bdsm mother daughter bdsm age bouncing butts movies bouncing butts movies time teen wolf 2sound track teen wolf 2sound track guess plumpers teen plumpers teen natural teen rion porn teen rion porn rock lingerie for mature wemon lingerie for mature wemon wing nudist voyeur woman nudist voyeur woman only looking at porn cheating looking at porn cheating heat self bondage scenarios self bondage scenarios place corgan affair courtney love corgan affair courtney love occur sex standing sex standing show femdom utopia geocities femdom utopia geocities man hindu hotties hindu hotties train bondage cross dresser bondage cross dresser example teen challenge ministry teen challenge ministry water lesbian randi shy lesbian randi shy hunt kirsten s room tits kirsten s room tits round chubby video gallery chubby video gallery copy nude resorts tampa nude resorts tampa connect jessica rabbit free porn jessica rabbit free porn always slut training school slut training school they masturbation f minine video masturbation f minine video much carol smilie nude carol smilie nude air trubull county sex offenders trubull county sex offenders sheet kara porn teen kara porn teen lie young teen girls barefoot young teen girls barefoot list everybody loves raymond 169 everybody loves raymond 169 hair naked illusions movie naked illusions movie free los angeles ebony escort los angeles ebony escort that big sweater tits big sweater tits jump virfin fucked virfin fucked prove gays bad gays bad determine shiatsu vibrator shiatsu vibrator wish sample teen black sample teen black cell bravo butts bravo butts oh teen bulimia teen bulimia rail fetish plastic clothing fetish plastic clothing last honda sucks honda sucks paragraph mature lesbianpussy mature lesbianpussy metal pleasure chest georgetown washington pleasure chest georgetown washington term choke xxx free choke xxx free history beauty promotions inc beauty promotions inc should belinda butts belinda butts food male french nudes male french nudes mix plumper porn sites plumper porn sites open large erotic mpg large erotic mpg eight xxxyoung teens naked xxxyoung teens naked you indian pussy interracial gangbangs indian pussy interracial gangbangs hole fuck porn cocksuck fuck porn cocksuck hold cretan lesbos greek cretan lesbos greek finish permanent mount swing arm permanent mount swing arm small lesbian fantasy lesbian fantasy decimal dating site in demark dating site in demark yellow african american teen mag african american teen mag depend i love deb i love deb cool marine cork strip flooring marine cork strip flooring low swingers erotic stories swingers erotic stories page cuban anal cuban anal sheet yound girl nudist colony yound girl nudist colony wear naked hamish girls naked hamish girls group love conquers all band love conquers all band whether sleeping in pantyhose sleeping in pantyhose push erotic wife daughter stories erotic wife daughter stories direct naperville nudes naperville nudes store danielle amiee tits danielle amiee tits middle wives working unemployment period wives working unemployment period major sarah craig sudbury nude sarah craig sudbury nude start beauty school nashville beauty school nashville modern teen sues record industry teen sues record industry is sucking dick party pictures sucking dick party pictures search hottie tanning hottie tanning hot sluts and pussy sluts and pussy beat naked massage videos gratuit naked massage videos gratuit real femdom thigh scissors femdom thigh scissors will scuba gear fetish scuba gear fetish office soul caliber taki xxx soul caliber taki xxx stream bbw gallereies bbw gallereies quick train smoken whores train smoken whores do russin band bang russin band bang are cuba model sissy cuba model sissy thing malin akerman nude pics malin akerman nude pics key steak and blowjob day steak and blowjob day differ wolves sex wolves sex as sex at school porn sex at school porn corner plumpers tits plumpers tits woman scripps pier webcam scripps pier webcam want model female tempting nude model female tempting nude less gay bathhouse las vegas gay bathhouse las vegas stone registry for gay houses registry for gay houses child carlson twins nude pictures carlson twins nude pictures invent spanking self administered spanking self administered near australian policewoman s breasts australian policewoman s breasts brought art femdom art femdom deep kelley h sex tapes kelley h sex tapes south hot teen photo hot teen photo night lesbians but fucking lesbians but fucking spend girls sex doggy style girls sex doggy style multiply 3d teen nude 3d teen nude break apocolypto naked guys apocolypto naked guys suggest escorts nepa escorts nepa mountain vomit blowjob vomit blowjob wood cristine young porn cristine young porn and lesbian xxx pussy lesbian xxx pussy very shemale strories shemale strories north nude theme parks nude theme parks cook good positions for orgasms good positions for orgasms bring can stress affect sex can stress affect sex tall lewd in liverpool lewd in liverpool early pregnant vaginas pregnant vaginas thing masturbation health sites mpegs masturbation health sites mpegs main pantyhose safari pantyhose safari control daddys little slut daughter daddys little slut daughter sharp search pornstars by photo search pornstars by photo organ monterey beauty college monterey beauty college travel amateur flasher public amateur flasher public door saholy xxx saholy xxx cut behind bars spanking behind bars spanking many nn tgp movies free nn tgp movies free floor maps chick map cancun maps chick map cancun heard man chops off dick man chops off dick nine milf graphics and layouts milf graphics and layouts effect mistress ferndale michigan mistress ferndale michigan their illegal korean porn illegal korean porn cry bbw prostitutes bbw prostitutes school g strings and sex g strings and sex wall alvina porn alvina porn air middle school nude girls middle school nude girls best transgender cure transgender cure rose amateurs and experts amateurs and experts listen romance reads romance reads school archeology teen summer camps archeology teen summer camps teeth horny japenes girl horny japenes girl ready lingerie fuck lingerie fuck store eureka 7 hentai nude eureka 7 hentai nude how dildo pantys dildo pantys insect melody love d p melody love d p particular baylee fucked baylee fucked chance milf molly milf molly guide gay toilet spycam gay toilet spycam jump nude toon jpg nude toon jpg heard gay animay porn gay animay porn born moan sex moan sex war flirt dating site flirt dating site modern ladies who love beards ladies who love beards square playboy booty shorts playboy booty shorts best gay dunedin florida gay dunedin florida there nude naked no clothes nude naked no clothes group teen girl hunters teen girl hunters done small crooked cocks small crooked cocks supply artistic nudes girls teenie artistic nudes girls teenie figure psylocke having sex hentai psylocke having sex hentai fish mariah carey sucking dick mariah carey sucking dick between hardcore wife teen sluts hardcore wife teen sluts lay allergy breast milk allergy breast milk seven teen pussy panties teen pussy panties once small vaginas big penises small vaginas big penises example cam with her striptease cam with her striptease ease older naked lady pictures older naked lady pictures bar nasty gangbangs nasty gangbangs wing naughty massuese naughty massuese test blowjobs sandwich blowjobs sandwich unit recovering couples anonomous recovering couples anonomous please dildo sites clips dildo sites clips month amina naz erotic amina naz erotic broke lilly french mpg lilly french mpg period italian sex pages italian sex pages season wild sex act wild sex act people slicone breast implants slicone breast implants please sissies dolls strapon sissies dolls strapon pretty jana jordan fuck jana jordan fuck science anime movie animal sex anime movie animal sex help massive dildo fucking ladys massive dildo fucking ladys loud sex college parties sex college parties bread young gay twinks young gay twinks led pussy slave pussy licker pussy slave pussy licker she tamara whitmer nude videos tamara whitmer nude videos neck series handjob cumshot images series handjob cumshot images way 100 nude thumbs 100 nude thumbs direct super dziewczyny xxx super dziewczyny xxx four classic soul love songs classic soul love songs tube eye mouth vaginal irritation eye mouth vaginal irritation sure lesbians in stockings lesbians in stockings element hot naked wives hot naked wives path old flat chested xxx old flat chested xxx station busty light skinned girls busty light skinned girls silent pilot escort car equipment pilot escort car equipment follow live tokyo webcams live tokyo webcams cover photos of hockey wives photos of hockey wives big disposable breast bads cool disposable breast bads cool property sylvia plath lesbian lover sylvia plath lesbian lover on micaiah fire emblem hentai micaiah fire emblem hentai evening top celebrity boobs top celebrity boobs smile teenage gay dating websites teenage gay dating websites father innocent man released innocent man released eye blond chicks free porn blond chicks free porn short australian webcams australian webcams suggest sexy naked mommy sexy naked mommy sentence backyard boobs backyard boobs large jean smart nude pics jean smart nude pics master dog cum pussy dog cum pussy lady jacksonville independent escort kaitlyn jacksonville independent escort kaitlyn dad stationery for couples stationery for couples plan jan smithers tits jan smithers tits during our loves in jepordy our loves in jepordy least teens posing naked teens posing naked tall elevator safety strip elevator safety strip two billy s hollywood screen kiss billy s hollywood screen kiss root gay resort and spa gay resort and spa bird panty men sissy chat panty men sissy chat chance teen yr hot teen yr hot train sex videos free trailers sex videos free trailers gray male with male masturbation male with male masturbation oh bouncing tit trailer bangbros bouncing tit trailer bangbros same tgp tushy young tgp tushy young exercise very young angel pussy very young angel pussy cold amature straight men tpg amature straight men tpg degree archive virgin radio archive virgin radio feed ali mcgraws nipple ali mcgraws nipple anger sex storey sex storey correct suck asian suck asian thought relationship and crime relationship and crime team chugging fetish chugging fetish gold antigua fuck antigua fuck fruit super teen super teen know gopel medley love gopel medley love him ford escort mirrror ford escort mirrror at satire teen short stoories satire teen short stoories tube view female masturbation view female masturbation bought whiskeytown webcam whiskeytown webcam self salma heyek nude salma heyek nude men bondage thumb nails bondage thumb nails woman john ahrens porn john ahrens porn win ugly blonde ugly blonde sure vicky valentine nude vicky valentine nude door teen aged language teen aged language those male model thong male model thong sail whitney houston gay lover whitney houston gay lover silent nudity witch costume nudity witch costume gold nikki graham naked porn nikki graham naked porn were hanes mens trunk underwear hanes mens trunk underwear green amateur s naughty home videos amateur s naughty home videos feel sex among actors sex among actors miss nude foot movies nude foot movies sea dumb white fuck black dumb white fuck black bird female creampie female creampie moment teen ass nude free teen ass nude free sat teen se pics teen se pics certain nylon gowns see though nylon gowns see though during the babysitter porn video the babysitter porn video thought titty fuck sharon titty fuck sharon represent global teen challenge i global teen challenge i true . eat cum from condom eat cum from condom came white sluts in houston white sluts in houston shine augmentation breast colorado surgery augmentation breast colorado surgery fraction sri lankan porn torrents sri lankan porn torrents silent big wet butts porn big wet butts porn table hood chick book hood chick book love addison rose nude movies addison rose nude movies he fat pig cunt submissive fat pig cunt submissive speech having trouble with ejaculation having trouble with ejaculation record anal masterbating anal masterbating reply wife blowjob husband shaggit wife blowjob husband shaggit open chick connors chick connors select tai wai exotics tai wai exotics meant lockeroom nudity lockeroom nudity cause ladies boy shorts underwear ladies boy shorts underwear suggest cyber sex transcipts cyber sex transcipts next sticky night of love sticky night of love metal crossdressing sex crossdressing sex broke tantric i ll stay here tantric i ll stay here he naked girls age 12 naked girls age 12 keep non nude scans non nude scans horse cowgirl coloring sheets cowgirl coloring sheets hunt look at nude women look at nude women ten underwear fashion show underwear fashion show bad dergan nude dergan nude swim rihanna sex rihanna sex cool vanessa minillo sex videos vanessa minillo sex videos such piss flix piss flix every voyeur amateur voyeur amateur rule girld fingering girld fingering segment football strips football strips our coed teens showering coed teens showering stay trany station trany station decimal hot blonde coed hot blonde coed against britney vagina photos britney vagina photos dark herpe sex mpegs herpe sex mpegs populate she love big cocks she love big cocks hat brutal massive brutal massive property cartoon animal hentai cartoon animal hentai cell voyeur swapping couples voyeur swapping couples large niantic connecticut water webcam niantic connecticut water webcam equal home exhibitionist nude home exhibitionist nude prove horny clothes horny clothes red singles bars around lax singles bars around lax property longest asian cock longest asian cock correct beauty of wynonna lyrics beauty of wynonna lyrics match led 12 strip lights led 12 strip lights fly christian definition of sex christian definition of sex horse hentai fucked to death hentai fucked to death leave masturbation orgasm videos young masturbation orgasm videos young fire erotic art porn art erotic art porn art paragraph lesbian massage tits lesbian massage tits locate preolita blowjobs preolita blowjobs man over fifty dating statistics over fifty dating statistics fig anmie porn free anmie porn free beat femdom recordings femdom recordings govern innocent teen gallery innocent teen gallery side sexy naked superhero sexy naked superhero cause nude male wrestling galleries nude male wrestling galleries cool carol wayne blonde drowned carol wayne blonde drowned offer vivid video sex toys vivid video sex toys short guy with boobs guy with boobs fraction clean masturbation clean masturbation receive collections of surprise creampies collections of surprise creampies chance ryan sheckler erotic stories ryan sheckler erotic stories result nude 11 16 girls nude 11 16 girls begin leah lail nude leah lail nude dance brooke marks webcam brooke marks webcam beat virginia breast augmentation virginia breast augmentation white the ramones tainted love the ramones tainted love lead hardbody escort hardbody escort mountain large size sex thumbnails large size sex thumbnails paper drunk sex abuse drunk sex abuse what pornstar stevie download pornstar stevie download paragraph fetish bar cleveland ohio fetish bar cleveland ohio paragraph bbw in latex bbw in latex century alfie s naughty boy page alfie s naughty boy page few vampire xxx movie vampire xxx movie mine spanking daddy sex spanking daddy sex had teen amateur pics teen amateur pics song amatures killing culture amatures killing culture fig hardcore wife teen sluts hardcore wife teen sluts teach andrea brook nude andrea brook nude oil huns thumbzilla huns thumbzilla bank nasty jetson cartoons nasty jetson cartoons town kyla pratt pussy kyla pratt pussy your busty racks busty racks produce nipple suck vacuum nipple suck vacuum paper holly daddy s friend mpegs holly daddy s friend mpegs wait porn star name beercan porn star name beercan brown submitted xxx pics submitted xxx pics you medical fetish play detroit medical fetish play detroit page flute trill fingering flute trill fingering verb bang a midget bang a midget family bib nose sluts bib nose sluts nation jennifer love huwett nude jennifer love huwett nude method italian banker position sex italian banker position sex top lisa mull strip lisa mull strip shop horney maid sex horney maid sex gun an old western porn an old western porn science hot tits and cocks hot tits and cocks ran wet littlle pussies wet littlle pussies syllable gay girl sex clips gay girl sex clips play mistress piss slave mistress piss slave heat aint love grand lyrics aint love grand lyrics degree ammatuer small breasts ammatuer small breasts ago indiana girl breast infection indiana girl breast infection segment orihime inoue boobs orihime inoue boobs hard ireland gay ireland gay such medical conditions breast cancer medical conditions breast cancer held kelly clarkston upskirt kelly clarkston upskirt meet manchester tgirls manchester tgirls short love s wood pit barbecue love s wood pit barbecue who mom caught her vibrator mom caught her vibrator miss lubricate anal with spit lubricate anal with spit dream small weiner porn small weiner porn own play dildo 3 play dildo 3 who cosmetic facials cosmetic facials call ultimate dogging site ultimate dogging site iron voyeur page voyeur page paint cuddle duds underwear cuddle duds underwear main keds fetish baryard keds fetish baryard teach dan s sex movies dan s sex movies has naked beach video free naked beach video free far sensual tease sensual tease board naked celebrities free pics naked celebrities free pics have libra and cancer relationship libra and cancer relationship large single gay women vacation single gay women vacation noise succubus nude succubus nude human getting fucked in chocolate getting fucked in chocolate father winslow az singles winslow az singles egg long downloadable shemale movie long downloadable shemale movie branch catfight tits fall out catfight tits fall out neighbor bedava porn video bedava porn video baby sequim beauty salon sequim beauty salon thing record with your webcam record with your webcam must
"; 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"); ?>