You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

327 lines
15 KiB

<?php
if( ! defined( 'DATALIFEENGINE' ) ) {
die( "Hacking attempt!" );
}
require_once SYSTEM_DIR . '/classes/parse.class.php';
$parse = new ParseFilter( );
$parse->safe_mode = true;
$parse->allow_url = false;
$parse->allow_image = false;
$stopregistration = FALSE;
if( isset( $_REQUEST['doaction'] ) ) $doaction = $_REQUEST['doaction']; else $doaction = "";
$config['reg_group'] = intval( $config['reg_group'] ) ? intval( $config['reg_group'] ) : 4;
function check_reg($name, $email, $password1, $password2, $sec_code = 1, $sec_code_session = 1) {
global $lang, $db, $banned_info;
$stop = "";
if( $sec_code != $sec_code_session or ! $sec_code_session ) $stop .= $lang['reg_err_19'];
if( $password1 != $password2 ) $stop .= $lang['reg_err_1'];
if( strlen( $password1 ) < 6 ) $stop .= $lang['reg_err_2'];
if( strlen( $name ) > 20 ) $stop .= $lang['reg_err_3'];
if( preg_match( "/[\||\'|\<|\>|\[|\]|\"|\!|\?|\$|\@|\/|\\\|\&\~\*\{\+]/", $name ) ) $stop .= $lang['reg_err_4'];
if( empty( $email ) OR strlen( $email ) > 50 OR @count(explode("@", $email)) != 2) $stop .= $lang['reg_err_6'];
if( $name == "" ) $stop .= $lang['reg_err_7'];
if (strpos( strtolower ($name) , '.php' ) !== false) $stop .= $lang['reg_err_4'];
if( count( $banned_info['name'] ) ) foreach ( $banned_info['name'] as $banned ) {
$banned['name'] = str_replace( '\*', '.*', preg_quote( $banned['name'], "#" ) );
if( $banned['name'] and preg_match( "#^{$banned['name']}$#i", $name ) ) {
if( $banned['descr'] ) {
$lang['reg_err_21'] = str_replace( "{descr}", $lang['reg_err_22'], $lang['reg_err_21'] );
$lang['reg_err_21'] = str_replace( "{descr}", $banned['descr'], $lang['reg_err_21'] );
} else
$lang['reg_err_21'] = str_replace( "{descr}", "", $lang['reg_err_21'] );
$stop .= $lang['reg_err_21'];
}
}
if( count( $banned_info['email'] ) ) foreach ( $banned_info['email'] as $banned ) {
$banned['email'] = str_replace( '\*', '.*', preg_quote( $banned['email'], "#" ) );
if( $banned['email'] and preg_match( "#^{$banned['email']}$#i", $email ) ) {
if( $banned['descr'] ) {
$lang['reg_err_23'] = str_replace( "{descr}", $lang['reg_err_22'], $lang['reg_err_23'] );
$lang['reg_err_23'] = str_replace( "{descr}", $banned['descr'], $lang['reg_err_23'] );
} else
$lang['reg_err_23'] = str_replace( "{descr}", "", $lang['reg_err_23'] );
$stop .= $lang['reg_err_23'];
}
}
if( $stop == "" ) {
$replace_word = array ('e' => '[e<><65>]', 'r' => '[r<>]', 't' => '[t<>]', 'y' => '[y<>]', 'u' => '[u<>]', 'i' => '[i1l!]', 'o' => '[o<>0]', 'p' => '[p<>]', 'a' => '[a<>]', 's' => '[s5]', 'w' => 'w', 'q' => 'q', 'd' => 'd', 'f' => 'f', 'g' => '[g<>]', 'h' => '[h<>]', 'j' => 'j', 'k' => '[k<>]', 'l' => '[l1i!]', 'z' => 'z', 'x' => '[x<>%]', 'c' => '[c<>]', 'v' => '[vu<76>]', 'b' => '[b<><62>]', 'n' => '[n<><6E>]', 'm' => '[m<>]', '<27>' => '[<5B><>u]', '<27>' => '<27>', '<27>' => '[<5B>y]', '<27>' => '[<5B>e<EFBFBD>]', '<27>' => '[<5B>h]', '<27>' => '[<5B>r]', '<27>' => '[<5B>w<EFBFBD>]', '<27>' => '[<5B>w<EFBFBD>]', '<27>' => '[<5B>3<EFBFBD>]', '<27>' => '[<5B>x%]', '<27>' => '[<5B><>]', '<27>' => '<27>', '<27>' => '(<28>|<7C>[i1l!]?)', '<27>' => '[<5B>b]', '<27>' => '[<5B>a]', '<27>' => '[<5B>n]', '<27>' => '[<5B>p]', '<27>' => '[<5B>o0]', '<27>' => '[<5B>n]', '<27>' => '<27>', '<27>' => '<27>', '<27>' => '[<5B>3<EFBFBD>]', '<27>' => '[<5B>]', '<27>' => '[<5B>4]', '<27>' => '[<5B>c]', '<27>' => '[<5B>m]', '<27>' => '[<5B>u<EFBFBD>]', '<27>' => '[<5B>t]', '<27>' => '[<5B>b]', '<27>' => '[<5B>6]', '<27>' => '(<28>|[!1il][o<>0])', '<27>' => '[<5B><>e]', '1' => '[1il!]', '2' => '2', '3' => '[3<><33>]', '4' => '[4<>]', '5' => '[5s]', '6' => '[6<>]', '7' => '7', '8' => '8', '9' => '9', '0' => '[0<>o]', '_' => '_', '#' => '#', '%' => '[%x]', '^' => '[^~]', '(' => '[(]', ')' => '[)]', '=' => '=', '.' => '[.]', '-' => '-' );
$name = strtolower( $name );
$search_name = strtr( $name, $replace_word );
$row = $db->super_query( "SELECT COUNT(*) as count FROM " . USERPREFIX . "_users WHERE email = '$email' OR LOWER(name) REGEXP '[[:<:]]{$search_name}[[:>:]]' OR name = '$name'" );
if( $row['count'] ) $stop .= $lang['reg_err_8'];
}
return $stop;
}
if( isset( $_POST['submit_reg'] ) ) {
if( $config['allow_sec_code'] == "yes" ) {
$sec_code = $_POST['sec_code'];
$sec_code_session = ($_SESSION['sec_code_session'] != '') ? $_SESSION['sec_code_session'] : false;
} else {
$sec_code = 1;
$sec_code_session = 1;
}
$password1 = $_POST['password1'];
$password2 = $_POST['password2'];
$name = $db->safesql( $parse->process( htmlspecialchars( trim( $_POST['name'] ) ) ) );
$name = preg_replace('#\s+#i', ' ', $name);
$not_allow_symbol = array ("\x22", "\x60", "\t", '\n', '\r', "\n", "\r", '\\', ",", "/", "<EFBFBD>", "#", ";", ":", "~", "[", "]", "{", "}", ")", "(", "*", "^", "%", "$", "<", ">", "?", "!", '"', "'", " " );
$email = $db->safesql(trim( str_replace( $not_allow_symbol, '', strip_tags( stripslashes( $_POST['email'] ) ) ) ) );
$reg_error = check_reg( $name, $email, $password1, $password2, $sec_code, $sec_code_session );
if( ! $reg_error ) {
if( $config['registration_type'] ) {
include_once SYSTEM_DIR . '/classes/mail.class.php';
$mail = new dle_mail( $config );
$row = $db->super_query( "SELECT template FROM " . PREFIX . "_email where name='reg_mail' LIMIT 0,1" );
$row['template'] = stripslashes( $row['template'] );
$idlink = rawurlencode( base64_encode( $name . "||" . $email . "||" . md5( $password1 ) . "||" . md5( sha1( $name . $email . DBHOST . DBNAME . $config['key'] ) ) ) );
$row['template'] = str_replace( "{%username%}", $name, $row['template'] );
$row['template'] = str_replace( "{%validationlink%}", $config['http_home_url'] . "index.php?do=register&doaction=validating&id=" . $idlink, $row['template'] );
$row['template'] = str_replace( "{%password%}", $password1, $row['template'] );
$mail->send( $email, $lang['reg_subj'], $row['template'] );
if( $mail->send_error ) msgbox( $lang['all_info'], $mail->smtp_msg );
else msgbox( $lang['reg_vhead'], $lang['reg_vtext'] );
$_SESSION['sec_code_session'] = false;
$stopregistration = TRUE;
} else {
$doaction = "validating";
$_REQUEST['id'] = rawurlencode( base64_encode( $name . "||" . $email . "||" . md5( $password1 ) . "||" . md5( sha1( $name . $email . DBHOST . DBNAME . $config['key'] ) ) ) );
}
} else {
msgbox( $lang['reg_err_11'], "<ul>" . $reg_error . "</ul>" );
}
}
if( $doaction != "validating" and ! $stopregistration ) {
$tpl->load_template( 'registration.tpl' );
$tpl->set( '[registration]', "" );
$tpl->set( '[/registration]', "" );
$tpl->set_block( "'\\[validation\\](.*?)\\[/validation\\]'si", "" );
$path = parse_url( $config['http_home_url'] );
$tpl->set( '[sec_code]', "" );
$tpl->set( '[/sec_code]', "" );
$tpl->set( '{reg_code}', "<span id=\"dle-captcha\"><a onclick=\"reload(); return false;\" href=\"#\"><img src=\"" . $path['path'] . "system/modules/antibot.php\" alt=\"{$lang['sec_image']}\" border=\"0\" /></a></span>" );
$tpl->copy_template = "<form method=\"post\" name=\"registration\" onsubmit=\"if (!check_reg_daten()) {return false;};\" id=\"registration\" action=\"" . $config['http_home_url'] . "index.php?do=register\">\n" . $tpl->copy_template . "
<input name=\"submit_reg\" type=\"hidden\" id=\"submit_reg\" value=\"submit_reg\" />
</form>";
$tpl->copy_template .= <<<HTML
<script language='javascript' type="text/javascript">
<!--
function reload () {
var rndval = new Date().getTime();
document.getElementById('dle-captcha').innerHTML = '<a onclick="reload(); return false;" href="#"><img src="{$path['path']}system/modules/antibot.php?rndval=' + rndval + '" border="0" width="120" height="50" alt="" /></a>';
};
function check_reg_daten () {
if(document.forms.registration.name.value == '') {
alert('{$lang['reg_err_30']}');return false;
}
if(document.forms.registration.password1.value.length < 6) {
alert('{$lang['reg_err_31']}');return false;
}
if(document.forms.registration.password1.value != document.forms.registration.password2.value) {
alert('{$lang['reg_err_32']}');return false;
}
if(document.forms.registration.email.value == '') {
alert('{$lang['reg_err_33']}');return false;
}
if(document.forms.registration.email.value == '') {
alert('{$lang['reg_err_33']}');return false;
}
return true;
};
//-->
</script>
HTML;
$tpl->compile( 'content' );
$tpl->clear();
}
if( isset( $_POST['submit_val'] ) ) {
$fullname = $db->safesql( $parse->process( $_POST['fullname'] ) );
$land = $db->safesql( $parse->process( $_POST['land'] ) );
$icq = intval( str_replace("-", "", $_POST['icq'] ) );
if( $icq < 1 ) $icq = "";
$skype = $db->safesql( $parse->process( $_POST['skype'] ) );
$info = $db->safesql( $parse->BB_Parse( $parse->process( $_POST['info'] ), false ) );
$image = $_FILES['image']['tmp_name'];
$image_name = $_FILES['image']['name'];
$image_size = $_FILES['image']['size'];
$image_name = str_replace( " ", "_", $image_name );
$img_name_arr = explode( ".", $image_name );
$type = totranslit( end( $img_name_arr ) );
if( stripos ( $image_name, "php" ) !== false ) die("Hacking attempt!");
$user_arr = explode( "||", base64_decode( @rawurldecode( $_POST['id'] ) ) );
if( $user_arr[0] == "" OR $user_arr[2]== "" ) die("Hacking attempt!");
$user = $db->safesql( trim( $user_arr[0] ) );
$email = $db->safesql( trim( $user_arr[1] ) );
$pass = md5( $user_arr[2] );
if( md5( sha1( $user . $email . DBHOST . DBNAME . $config['key'] ) ) != $user_arr[3] ) die( 'ID not valid!' );
if( preg_match( "/[\||\'|\<|\>|\[|\]|\"|\!|\?|\$|\@|\/|\\\|\&\~\*\{\+]/", $user ) ) die( 'USER not valid!' );
$row = $db->super_query( "SELECT * FROM " . USERPREFIX . "_users WHERE name = '$user' AND password='$pass'" );
if( !$row['user_id'] ) die("Access Denied!");
$db->free();
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
if( is_uploaded_file( $image ) and ! $stop ) {
if( intval( $user_group[$member_id['user_group']]['max_foto'] ) > 0 ) {
if( $image_size < ($config['max_ava_size'] * 1024) ) {
$allowed_extensions = array ("jpg", "png", "jpe", "jpeg", "gif" );
if( in_array( $type, $allowed_extensions ) AND $image_name ) {
include_once SYSTEM_DIR . '/classes/thumb.class.php';
$res = @move_uploaded_file( $image, ROOT_DIR . "/uploads/fotos/" . $row['user_id'] . "." . $type );
if( $res ) {
@chmod( ROOT_DIR . "/uploads/fotos/" . $row['user_id'] . "." . $type, 0666 );
$thumb = new thumbnail( ROOT_DIR . "/uploads/fotos/" . $row['user_id'] . "." . $type );
$thumb->size_auto( $user_group[$config['reg_group']]['max_foto'] );
$thumb->jpeg_quality( $config['jpeg_quality'] );
$thumb->save( ROOT_DIR . "/uploads/fotos/foto_" . $row['user_id'] . "." . $type );
@unlink( ROOT_DIR . "/uploads/fotos/" . $row['user_id'] . "." . $type );
$foto_name = "foto_" . $row['user_id'] . "." . $type;
$db->query( "UPDATE " . USERPREFIX . "_users set foto='$foto_name' where user_id='{$row['user_id']}'" );
} else $stop = $lang['reg_err_12'];
} else $stop = $lang['reg_err_13'];
} else $stop = $lang['news_err_16'];
} else $stop .= $lang['news_err_32'];
}
if( intval( $user_group[$member_id['user_group']]['max_info'] ) > 0 and strlen( $info ) > $user_group[$member_id['user_group']]['max_info'] ) $stop .= $lang['reg_err_14'];
if (preg_match ("/href|url|http|www|\.ru|\.com|\.net|\.info|\.org/i", $_POST['info'])) $stop .= $lang['news_err_url'];
if( strlen( $fullname ) > 100 ) $stop .= $lang['reg_err_15'];
if( strlen( $land ) > 100 ) $stop .= $lang['reg_err_16'];
if( strlen( $icq ) > 20 ) $stop .= $lang['reg_err_17'];
if( strlen( $skype ) > 32 ) $stop .= '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> Skype';
if ( preg_match( "/[\||\'|\<|\>|\"|\!|\]|\?|\$|\@|\/|\\\|\&\~\*\+]/", $skype ) ) {$stop .= '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Skype';}
if( $parse->not_allowed_tags ) $stop .= $lang['news_err_34'];
if ( preg_match( "/[\||\'|\<|\>|\"|\!|\]|\?|\$|\@|\/|\\\|\&\~\*\+]/", $fullname ) ) {$stop .= $lang['news_err_35'];}
if ( preg_match( "/[\||\'|\<|\>|\"|\!|\]|\?|\$|\@|\/|\\\|\&\~\*\+]/", $land ) ) {$stop .= $lang['news_err_36'];}
if( $stop ) {msgbox( $lang['reg_err_18'], $stop );
} else {
$db->query( "UPDATE " . USERPREFIX . "_users set fullname='$fullname', info='$info', land='$land', icq='$icq', skype='$skype' where user_id='{$row['user_id']}'" );
msgbox( $lang['reg_ok'], $lang['reg_ok_1'] );
$stopregistration = TRUE;
}
}
if( $doaction == "validating" AND !$stopregistration AND !$_POST['submit_val'] ) {
$user_arr = explode( "||", base64_decode( @rawurldecode( $_REQUEST['id'] ) ) );
$regpassword = md5( $user_arr[2] );
$name = trim( $db->safesql( htmlspecialchars( $parse->process( $user_arr[0] ) ) ) );
$not_allow_symbol = array ("\x22", "\x60", "\t", '\n', '\r', "\n", "\r", '\\', ",", "/", "<EFBFBD>", "#", ";", ":", "~", "[", "]", "{", "}", ")", "(", "*", "^", "%", "$", "<", ">", "?", "!", '"', "'", " " );
$email = $db->safesql(trim( str_replace( $not_allow_symbol, '', strip_tags( stripslashes( $user_arr[1] ) ) ) ) );
if( md5( sha1( $name . $email . DBHOST . DBNAME . $config['key'] ) ) != $user_arr[3] ) die( 'ID not valid!' );
$name = preg_replace('#\s+#i', ' ', $name);
$reg_error = check_reg( $name, $email, $regpassword, $regpassword );
if( $reg_error != "" ) {
msgbox( $lang['reg_err_11'], $reg_error );
$stopregistration = TRUE;
} else {
if( ($_REQUEST['step'] != 2) and $config['registration_type'] ) {
$stopregistration = TRUE;
$lang['confirm_ok'] = str_replace( '{email}', $email, $lang['confirm_ok'] );
$lang['confirm_ok'] = str_replace( '{login}', $name, $lang['confirm_ok'] );
msgbox( $lang['all_info'], $lang['confirm_ok'] . "<br /><br /><a href=\"" . $config['http_home_url'] . "index.php?do=register&doaction=validating&step=2&id=" . rawurlencode( $_REQUEST['id'] ) . "\">" . $lang['reg_next'] . "</a>" );
} else {
$add_time = time() + ($config['date_adjust'] * 60);
$_IP = $db->safesql( $_SERVER['REMOTE_ADDR'] );
if( intval( $config['reg_group'] ) < 3 ) $config['reg_group'] = 4;
$db->query( "INSERT INTO " . USERPREFIX . "_users (name, password, email, reg_date, lastdate, user_group, info, signature, favorites, logged_ip) VALUES ('$name', '$regpassword', '$email', '$add_time', '$add_time', '" . $config['reg_group'] . "', '', '', '', '" . $_IP . "')" );
$id = $db->insert_id();
set_cookie( "dle_user_id", $id, 365 );
set_cookie( "dle_password", $user_arr[2], 365 );
@session_register( 'dle_user_id' );
@session_register( 'dle_password' );
$_SESSION['dle_user_id'] = $id;
$_SESSION['dle_password'] = $user_arr[2];
}
}
}
if( $doaction == "validating" and ! $stopregistration ) {
$tpl->load_template( 'registration.tpl' );
$tpl->set( '[validation]', "" );
$tpl->set( '[/validation]', "" );
$tpl->set_block( "'\\[registration\\].*?\\[/registration\\]'si", "" );
$_REQUEST['id'] = htmlspecialchars( $_REQUEST['id'], ENT_QUOTES );
$tpl->copy_template = "<form method=\"post\" name=\"registration\" enctype=\"multipart/form-data\" action=\"" . $PHP_SELF . "\">\n" . $tpl->copy_template . "
<input name=\"submit_val\" type=\"hidden\" id=\"submit_val\" value=\"submit_val\" />
<input name=\"do\" type=\"hidden\" id=\"do\" value=\"register\" />
<input name=\"doaction\" type=\"hidden\" id=\"doaction\" value=\"validating\" />
<input name=\"id\" type=\"hidden\" id=\"id\" value=\"{$_REQUEST['id']}\" />
</form>";
$tpl->compile( 'content' );
$tpl->clear();
}
?>