找回密码
 注册
【阿里云】2核2G云新老同享 99元/年,续费同价华为云精选云产品特惠做网站就用糖果主机Jtti,新加坡服务器,美国服务器,香港服务器
查看: 763|回复: 7

sablog-x的安装文件install的分析

[复制链接]
发表于 2007 年 1 月 29 日 22:39:49 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

×

  1. <?php
  2. error_reporting(7);
  3. define('SABLOG_ROOT', TRUE);
  4. ob_start();
  5. //ob_start() 输出缓存
  6. // 允许程序在 register_globals = off 的环境下工作
  7. //function_exists()检查函数是否存在支持
  8. //ini_get()获取配置文件php.ini的某选项的值,替换函数get_cfg_var();
  9. //addslashes -- 使用反斜线引用字符串
  10. //
  11. //extract(addslashes($_POST)); --处理POST表单
  12. //把客户端<FORM METHOD="POST"...>表单中的变量名取出来。
  13. //
  14. //extract(addslashes($_GET)); --处理GET表单
  15. //把客户端<FORM METHOD="GET"...>表单中的变量名取出来。
  16. //譬如变量$_POST['不良倾向'];
  17. //extract后
  18. //该变量就成为$不良倾向;

  19. if (function_exists('ini_get')) {
  20. $onoff = ini_get('register_globals');
  21. } else {
  22. $onoff = get_cfg_var('register_globals');
  23. }
  24. if ($onoff != 1) {
  25. @extract($_POST, EXTR_SKIP);
  26. @extract($_GET, EXTR_SKIP);
  27. }
  28. // stripslashes_array去除转义字符
  29. //intval -- 获取变量的整数值
  30. //is_string
  31. //is_array
  32. function stripslashes_array(&$array) {
  33. while(list($key,$var) = each($array)) {
  34.   if ($key != 'argc' && $key != 'argv' && (strtoupper($key) != $key || ''.intval($key) == "$key")) {
  35.    if (is_string($var)) {
  36.     $array[$key] = stripslashes($var);
  37.    }
  38.    if (is_array($var))  {
  39.     $array[$key] = stripslashes_array($var);
  40.    }
  41.   }
  42. }
  43. return $array;
  44. }
  45. // get_magic_quotes_gpc() 判断 magic_quotes_gpc 状态
  46. if (get_magic_quotes_gpc()) {
  47.     $_GET = stripslashes_array($_GET);
  48.     $_POST = stripslashes_array($_POST);
  49. }
  50. //set_magic_quotes_runtime(0);
  51. //set_magic_quotes_runtime是用来设置PHP 环境配置的变量 magic_quotes_runtime 值。
  52. //0-关闭 1-打开
  53. //
  54. //程序中检测状态用get_magic_quotes_runtime,返回 0 表示关闭本功能;返回 1 表示本功能打开。若 magic_quotes_runtime 打开时,所有外部引入的数据库资料或者文件等等都会自动转为含有反斜线溢出字符的资料。
  55. //当你的数据中有一些
  56. //\
  57. //"
  58. //'
  59. //这样的字符要写入到数据库里面,又想不被过滤掉的时候,它就很有用,会在这些字符前加上\
  60. //
  61. //中国\地大物博"哈哈"
  62. //
  63. //中国\\地大物博"哈哈\
  64. set_magic_quotes_runtime(0);
  65. $step = (isset($_GET['step'])) ? $_GET['step'] : $_POST['step'];
  66. $php_self = $_SERVER['PHP_SELF'] ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
  67. $dbcharset = 'utf8';
  68. $configfile = '../admin/config.php';

  69. $sqlfile = 'install.sql';
  70. if(!is_readable($sqlfile)) {
  71. exit('数据库文件不存在或者读取失败');
  72. }
  73. //fopen(文件,权限)
  74. //fread()读取
  75. //fclose()关闭
  76. //is_readable()判断是否存在或者是否能读
  77. //file_exists()文件是否存在
  78. //is_writeable()是否可写?
  79. $fp = fopen($sqlfile, 'rb');
  80. $sql = fread($fp, 2048000);
  81. fclose($fp);
  82. ?>
  83. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  84. <html xmlns="http://www.w3.org/1999/xhtml">
  85. <head>
  86. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  87. <title>SaBlog-X安装脚本</title>
  88. <link href="install.css" rel="stylesheet" type="text/css" />
  89. </head>
  90. <body>
  91. <div id="main">
  92.   <form method="post" action="<?php echo $php_self;?>">
  93.     <p class="title">SaBlog-X V1.2安装向导</p>
  94.     <hr noshade="noshade" />
  95.     <?php
  96. if (empty($step) || $step == '1') {
  97. ?>
  98.     <p class="title">第一步:安装须知</p>
  99.     <p>欢迎使用 SaBlog-X V1.2,中本脚本将帮助您将程序完整地安装在您的服务器内。请您先确认以下安装配置: </p>
  100.     <ul>
  101.       <li>MySQL 主机名称/IP 地址 </li>
  102.       <li>MySQL 用户名和密码 </li>
  103.       <li>MySQL 数据库名称 (如果没有创建新数据库的权限) </li>
  104.       <li>./admin/backupdata 目录权限为 0777 (*nix系统) </li>
  105.       <li>./attachments 目录权限为 0777 (*nix系统) </li>
  106.       <li>./admin/config.php 文件权限为 0777 (*nix系统) </li>
  107.       <li>./cache 目录权限为 0777 (*nix系统) </li>
  108.       <li>./templates 及此文件夹下的所有文件(夹)权限为 0777 (*nix系统) - <strong>强烈不推荐</strong></li>
  109.     </ul>
  110.     <p>如果您无法确认以上的配置信息, 请与您的服务商联系, 我们无法为您提供任何帮助.</p>
  111.     <hr noshade="noshade" />
  112.     <p align="right">
  113.       <input type="hidden" name="step" value="2" />
  114.       <input class="formbutton" type="submit" value="下一步" />
  115.     </p>
  116.     <?php
  117. } elseif ($step == '2') {

  118. $exist_error = FALSE;
  119. $write_error = FALSE;
  120. if (file_exists($configfile)) {
  121.   $fileexists = result(1, 0);
  122. } else {
  123.   $fileexists = result(0, 0);
  124.   $exist_error = TRUE;
  125. }
  126. if (is_writeable($configfile)) {
  127.   $filewriteable = result(1, 0);
  128. } else {
  129.   $filewriteable = result(0, 0);
  130.   $write_error = TRUE;
  131. }
  132. if ($exist_error) {
  133.   $config_info = 'config.php 文件不存在, 无法继续.';
  134. } elseif($write_error) {
  135.   $config_info = '安装向导无法写入配置文件, 请修改配置文件权限.';
  136. }
  137. ?>
  138.     <p class="title">第二步:配置数据库信息</p>
  139.     <p>config.php 存在检查 <?php echo $fileexists;?></p>
  140.     <p>config.php 可写检查 <?php echo $filewriteable;?></p>
  141. <?php
  142. if ($config_info) {
  143. ?>
  144.     <p><?php echo $config_info;?></p>
  145.     <hr noshade="noshade" />
  146.     <p align="right">
  147.       <input class="formbutton" type="button" value="上一步" onclick="history.back(1)" />
  148.     </p>
  149. <?php
  150. } else {
  151. ?>
  152.     <hr noshade="noshade" />
  153.     <table width="100%" border="0" cellspacing="0" cellpadding="4">
  154.       <tr>
  155.         <td width="30%" nowrap>服务器地址:</td>
  156.         <td><input type="text" value="" name="servername" class="formfield" style="width:150px"> 一般是 localhost</td>
  157.       </tr>
  158.       <tr>
  159.         <td width="30%" nowrap>数据库名:</td>
  160.         <td><input type="text" value="" name="dbname" class="formfield" style="width:150px"></td>
  161.       </tr>
  162.       <tr>
  163.         <td width="30%" nowrap>数据库用户名:</td>
  164.         <td><input type="text" value="" name="dbusername" class="formfield" style="width:150px"></td>
  165.       </tr>
  166.       <tr>
  167.         <td width="30%" nowrap>数据库用户密码:</td>
  168.         <td><input type="password" value="" name="dbpassword" class="formfield" style="width:150px"></td>
  169.       </tr>
  170.       <tr>
  171.         <td width="30%" nowrap>数据表前缀:</td>
  172.         <td><input type="text" value="" name="db_prefix" class="formfield" style="width:150px"> 不填则默认是 sablog_</td>
  173.       </tr>
  174.       <tr>
  175.         <td width="30%" nowrap>密匙:</td>
  176.         <td><input type="text" value="" name="dellog_pass" class="formfield" style="width:150px"></td>
  177.       </tr>
  178.       <tr>
  179.         <td colspan="2">要删除后台的管理记录以及登陆记录, 以及各种危险操作, 必须输入此密匙.</td>
  180.       </tr>
  181.     </table>
  182.     <p> </p>
  183.     <p>如果您无法确认以上的配置信息, 请与您的服务商联系, 我们无法为您提供任何帮助.</p>
  184.     <hr noshade="noshade" />
  185.     <p align="right">
  186.       <input type="hidden" name="step" value="3" />
  187.       <input class="formbutton" type="submit" value="下一步" />
  188.     </p>
  189.     <?php
  190. }
  191. } elseif ($step == '3') {
  192. if(trim($_POST['dbname']) == "" || trim($_POST['servername']) == "" || trim($_POST['dbusername']) == "" || trim($_POST['dellog_pass'] == "")){
  193. ?>
  194. <p>请返回并确认所有选项均已填写.</p>
  195.     <hr noshade="noshade" />
  196.     <p align="right">
  197.       <input class="formbutton" type="button" value="上一步" onclick="history.back(1)" />
  198.     </p>
  199. <?php
  200. } else {
  201. ?>
  202.     <p class="title">第三步:设置管理员账号</p>
  203. <?php
  204.   if(is_writeable($configfile)) {
  205.             //trim()除去字符串两端的空格 、rtrim()去除尾部空格 itrim ()去除首部空格;str_replace()去除字符串中间空格
  206.    $servername = trim($_POST['servername']);
  207.    $dbusername = trim($_POST['dbusername']);
  208.    $dbpassword = trim($_POST['dbpassword']);
  209.    $dbname = trim($_POST['dbname']);
  210.    $db_prefix = trim($_POST['db_prefix']);
  211.    $dellog_pass = trim($_POST['dellog_pass']);
  212.    $db_prefix = $db_prefix ? $db_prefix : 'sablog_';

  213.    $fp = @fopen($configfile, 'r');
  214.    $filecontent = @fread($fp, @filesize($configfile));
  215.    @fclose($fp);

  216.             //preg_replace(正则匹配的源字符串,替换后新字符串,所在文件名) 替换函数.注意正则表示
  217.    $filecontent = preg_replace("/[$]servername\s*\=\s*["'].*?["']/is", "\$servername = '$servername'", $filecontent);
  218.    $filecontent = preg_replace("/[$]dbusername\s*\=\s*["'].*?["']/is", "\$dbusername = '$dbusername'", $filecontent);
  219.    $filecontent = preg_replace("/[$]dbpassword\s*\=\s*["'].*?["']/is", "\$dbpassword = '$dbpassword'", $filecontent);
  220.    $filecontent = preg_replace("/[$]dbname\s*\=\s*["'].*?["']/is", "\$dbname = '$dbname'", $filecontent);
  221.    $filecontent = preg_replace("/[$]db_prefix\s*\=\s*["'].*?["']/is", "\$db_prefix = '$db_prefix'", $filecontent);
  222.    $filecontent = preg_replace("/[$]dellog_pass\s*\=\s*["'].*?["']/is", "\$dellog_pass = '$dellog_pass'", $filecontent);

  223.    $fp = @fopen($configfile, 'w');
  224.    @fwrite($fp, trim($filecontent));
  225.    @fclose($fp);

  226.   }

  227.   include ($configfile);
  228.   include ('../include/func_db_mysql.php');
  229.   $DB = new DB_MySQL;

  230.   $DB->connect($servername, $dbusername, $dbpassword, $dbname, $usepconnect);
  231.   unset($servername, $dbusername, $dbpassword, $usepconnect);

  232.   $msg = '';
  233.   $quit = FALSE;
  234.   $curr_os = PHP_OS;
  235.   $curr_php_version = PHP_VERSION;
  236.   if($curr_php_version < '4.0.6') {
  237.    $msg .= "<font color="#FF0000">您的PHP版本低于4.0.6, 无法使用 SaBlog-X</font><br />";
  238.    $quit = TRUE;
  239.   }

复制代码

[ 本帖最后由 大虫 于 2007-1-29 22:41 编辑 ]
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
 楼主| 发表于 2007 年 1 月 29 日 22:40:31 | 显示全部楼层
【腾讯云】2核2G云服务器新老同享 99元/年,续费同价
  1.    
  2.   $query = $DB->query("SELECT VERSION()");
  3.   $curr_mysql_version = $DB->result($query, 0);
  4.   if($curr_mysql_version < '3.23') {
  5.    $msg .= "<font color="#FF0000">您的MySQL版本低于3.23, 由于程序没有经过此平台的测试, 建议您换 MySQL4 的数据库服务器.</font><br />";
  6.    $quit = TRUE;
  7.   }

  8.   if(strstr($db_prefix, '.')) {
  9.    $msg .= "<font color="#FF0000">您指定的数据表前缀包含点字符,请返回修改.</font><br />";
  10.    $quit = TRUE;
  11.   }

  12.   $DB->select_db($dbname);
  13.   if($DB->geterrdesc()) {
  14.    if(mysql_get_server_info() > '4.1') {
  15.     $DB->query("CREATE DATABASE $dbname DEFAULT CHARACTER SET $dbcharset");
  16.    } else {
  17.     $DB->query("CREATE DATABASE $dbname");
  18.    }
  19.    if($DB->geterrdesc()) {
  20.     $msg .= "<font color="#FF0000">指定的数据库不存在, 系统也无法自动建立, 无法安装 SaBlog-X.</font><br />";
  21.     $quit = TRUE;
  22.    } else {
  23.     $DB->select_db($dbname);
  24.     $msg .= "成功建立指定数据库<br />";
  25.    }
  26.   }

  27.   $query - $DB->query("SELECT COUNT(*) FROM ".$db_prefix."settings", 'SILENT');
  28.   if(!$DB->geterrdesc()) {
  29.    $msg .= "<font color="#FF0000">数据库中已经安装过 SaBlog-X, 继续安装会清空原有数据.</font><br />";
  30.    $alert = " onclick="return confirm('继续安装会清空全部原有数据, 您确定要继续吗?');"";
  31.   } else {
  32.    $alert = '';
  33.   }

  34.   if($quit) {
  35.    $msg .= "<font color="#FF0000">由于您目录属性或服务器配置原因, 无法继续安装 SaBlog-X, 请仔细阅读安装说明.</font>";
  36.   } else {
  37.    $msg .= "您的服务器可以安装和使用 SaBlog-X, 请进入下一步安装.";
  38.   }
  39.   if ($msg) {
  40.    echo "<p>".$msg."</p>";
  41.   }
  42.   if($quit) {
  43. ?>
  44.     <p align="right">
  45.       <input type="button" value="重新执行此步骤" onclick="javascript: window.location=('install.php?step=environment');"> <input type="button" value="退出" onclick="javascript: window.close();">
  46.     </p>
  47. <?
  48.   } else {
  49. ?>
  50.     <p>&nbsp; ;</p>
  51.     <table width="100%" border="0" cellspacing="0" cellpadding="4">
  52.       <tr>
  53.         <td width="30%" nowrap>用户名:</td>
  54.         <td><input type="text" value="" name="username" class="formfield" style="width:150px"></td>
  55.       </tr>
  56.       <tr>
  57.         <td width="30%" nowrap>昵称:</td>
  58.         <td><input type="text" value="" name="nickname" class="formfield" style="width:150px"> 可选</td>
  59.       </tr>
  60.       <tr>
  61.         <td width="30%" nowrap>密码:</td>
  62.         <td><input type="password" value="" name="password" class="formfield" style="width:150px"></td>
  63.       </tr>
  64.       <tr>
  65.         <td width="30%" nowrap>确认密码:</td>
  66.         <td><input type="password" value="" name="comfirpassword" class="formfield" style="width:150px"></td>
  67.       </tr>
  68.     </table>
  69.     <p>&nbsp; ;</p>
  70.     <hr noshade="noshade" />
  71.     <p align="right">
  72.       <input type="hidden" name="step" value="4" />
  73.       <input class="formbutton" type="submit" value="下一步" <?php echo $alert;?> />
  74.     </p>
  75. <?php
  76.   }
  77. }
  78. } elseif ($step == '4') {
  79. //addslashes()自动将字符串的'等符号加上转义符.注意:该函数无法阻拦;号的注入
  80. $username = addslashes(trim($_POST['username']));
  81. $nickname = addslashes(trim($_POST['nickname']));
  82. $password = addslashes(trim($_POST['password']));
  83. $comfirpassword = addslashes(trim($_POST['comfirpassword']));
  84. ?>
  85.     <p class="title">第四步:检查信息合法性</p>
  86. <?php
  87.     if (trim($_POST['username']) == "" || trim($_POST['password']) == "" || trim($_POST['comfirpassword']) == "") {
  88.   $msg = "<p>请返回并输入所有必填选项, 请返回重新输入.</p>";
  89.   $quit = TRUE;
  90.     } elseif (strlen($_POST['password']) < 8) {
  91.   $msg = "<p>从系统的安全角度考虑, 密码长度不能少于8字节, 请返回重新输入.</p>";
  92.   $quit = TRUE;
  93. } elseif ($_POST['password'] != $_POST['comfirpassword']) {
  94.   $msg = "<p>两个输入的密码不相同, 请返回重新输入.</p>";
  95.   $quit = TRUE;
  96.     } else {
  97.   $msg = "<p>检查信息合法性... 成功</p>";
  98.   $quit = FALSE;
  99. }
  100. if ($quit) {
  101.   echo $msg;
  102. ?>
  103.     <hr noshade="noshade" />
  104.     <p align="right">
  105.       <input class="formbutton" type="button" value="上一步" onclick="history.back(1)" />
  106.     </p>
  107. <?php
  108. } else {
  109.   echo $msg;
  110. ?>
  111.     <p>&nbsp; ;</p>
  112.     <p>用户名: <?php echo $username;?><input type="hidden" name="username" value="<?php echo $username;?>" /></p>
  113. <?php
  114. if ($nickname) {
  115. ?>
  116.     <p>昵称: <?php echo $nickname;?><input type="hidden" name="nickname" value="<?php echo $nickname;?>" /></p>
  117. <?php
  118. }
  119. ?>
  120.     <p>密码: <?php echo $password;?><input type="hidden" name="password" value="<?php echo $password;?>" /></p>
  121.     <p>&nbsp; ;</p>
  122.     <p>核对无误后点击下一步开始导入数据.</p>
  123.     <hr noshade="noshade" />
  124.     <p align="right">
  125.       <input type="hidden" name="step" value="5" />
  126.       <input class="formbutton" type="submit" value="下一步" />
  127.     </p>
  128. <?php
  129. }
  130. } elseif ($step == '5') {
  131. $username = addslashes(trim($_POST['username']));
  132. $nickname = addslashes(trim($_POST['nickname']));
  133. $password = addslashes(trim($_POST['password']));
  134. ?>
  135.     <p class="title">第五步:导入数据</p>
  136. <p>
  137. <?php
  138. include ($configfile);
  139. include ('../include/func_db_mysql.php');

  140. $DB = new DB_MySQL;
  141. $DB->connect($servername, $dbusername, $dbpassword, $dbname, $usepconnect);
  142. unset($servername, $dbusername, $dbpassword, $usepconnect);

  143. runquery($sql);

  144. $DB->query("INSERT INTO ".$db_prefix."admin (username, nickname, password, allowarticle, allowattachment, allowcache, allowcategory, allowcomment, allowconfigurate, allowdatabase, allowlinks, allowlog, allowtags, allowtemplate, allowtrackback, allowuser) VALUES ('".$username."', '".$nickname."', '".md5($password)."', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1')");
  145. ?>
  146.     </p>
  147.     <p>共创建了<?php echo $tablenum;?>个数据表.</p>
  148.     <hr noshade="noshade" />
  149.     <p>安装程序已经顺利执行完毕,请尽快删除整个 install 目录,以免被他人恶意利用。</p>
  150.     <p>感谢您使用Sa系列Web应用程序.</p>
  151.     <p>&nbsp; ;</p>
  152.     <p>用户名: <?php echo $username;?></p>
  153.     <p>密码: <?php echo $password;?></p>
  154.     <p>&nbsp; ;</p>
  155.     <p><a href="../">点击这里进入首页</a><br /><a href="../admin/admincp.php">点击这里进入后台</a></p>
  156.     <hr noshade="noshade" />
  157.     <p align="right"><a href="http://www.4ngel.net">Welcome to Security Angel Team</a></p>
  158. <?php
  159. }
  160. ?>
  161.   </form>
  162. </div>
  163. <strong>Powered by SaBlog-X 1.2 (C) 2003-2005 Security Angel Team</strong>
  164. </body>
  165. </html>
  166. <?php

  167. function result($result = 1, $output = 1) {
  168. if($result) {
  169.   $text = '... <font color="#0000EE">Yes</font><br />';
  170.   if(!$output) {
  171.    return $text;
  172.   }
  173.   echo $text;
  174. } else {
  175.   $text = '... <font color="#FF0000">No</font><br />';
  176.   if(!$output) {
  177.    return $text;
  178.   }
  179.   echo $text;
  180. }
  181. }

  182. function runquery($sql) {
  183. global $dbcharset, $db_prefix, $DB, $tablenum;

  184. //    str_replace(代替换字符串,替换字符串,字符串):将所有的代替换字符串替换成新的。
  185. // 返回:替换后的字符串
  186. //  
  187. // explode--使用一个字符串分割另一个字符串
  188. //  描述
  189. //  array explode ( string separator, string string [, int limit] )
  190. //  此函数返回由字符串组成的数组,每个元素都是 string 的一个子串,它们被字符串 separator 作为边界点分割出来。如果设置了 limit 参数,则返回的数组包含最多 limit 个元素,而最后那个元素将包含 string 的剩余部分。
  191. //
  192. //  如果 separator 为空字符串(""),explode() 将返回 FALSE。如果 separator 所包含的值在 string 中找不到,那么 explode() 将返回包含 string 单个元素的数组。
  193. //
  194. //  如果 limit 参数是负数,则返回除了最后的 limit 个元素外的所有元素。
  195. //  substr(字符串,起始位,末位);截取字符串
  196. $sql = str_replace("\r", "\n", str_replace(' sablog_', ' '.$db_prefix, $sql));
  197. $ret = array();
  198. $num = 0;
  199. foreach(explode(";\n", trim($sql)) as $query) {
  200.   $queries = explode("\n", trim($query));
  201.   foreach($queries as $query) {
  202.    $ret[$num] .= $query[0] == '#' ? '' : $query;
  203.   }
  204.   $num++;
  205. }
  206. unset($sql);

  207. foreach($ret as $query) {
  208.   $query = trim($query);
  209.   if($query) {
  210.    if(substr($query, 0, 12) == 'CREATE TABLE') {
  211.     $name = preg_replace("/CREATE TABLE ([a-z0-9_]+) .*/is", "\\1", $query);
  212.     echo '创建表 '.$name.' ... <font color="#0000EE">成功</font><br />';
  213.     $DB->query(createtable($query, $dbcharset));
  214.     $tablenum++;
  215.    } else {
  216.     $DB->query($query);
  217.    }
  218.   }
  219. }
  220. }

  221. //strtoupper() Make a string uppercase
  222. function createtable($sql, $dbcharset) {
  223. $type = strtoupper(preg_replace("/^\s*CREATE TABLE\s+.+\s+\(.+?\).*(ENGINE|TYPE)\s*=\s*([a-z]+?).*$/isU", "\\2", $sql));
  224. $type = in_array($type, array('MYISAM', 'HEAP')) ? $type : 'MYISAM';
  225. return preg_replace("/^\s*(CREATE TABLE\s+.+\s+\(.+?\)).*$/isU", "\\1", $sql).
  226.   (mysql_get_server_info() > '4.1' ? " ENGINE=$type DEFAULT CHARSET=$dbcharset" : " TYPE=$type");
  227. }

  228. ?>
复制代码
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2007 年 1 月 29 日 22:54:04 | 显示全部楼层
sax的后台看着恐怖,眼都花了。
准备学习UI。。。。
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2007 年 1 月 30 日 03:41:30 | 显示全部楼层

回复 #3 esnak 的帖子

-_-!!!!牛就一嗰字吖...........
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2007 年 1 月 30 日 04:51:45 | 显示全部楼层
我看不懂哪里有漏洞
偶想拜师学习PHP
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2007 年 1 月 30 日 10:10:58 | 显示全部楼层
为什么sablog转帖都不会自动整理,像其它blog帖上去就好了?
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2007 年 1 月 30 日 11:47:57 | 显示全部楼层
【腾讯云】2核2G云服务器新老同享 99元/年,续费同价
原帖由 nuet 于 2007-1-30 04:51 发表
我看不懂哪里有漏洞
偶想拜师学习PHP


大虫没搞安全检测,只是分析源代码!
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

 楼主| 发表于 2007 年 1 月 30 日 11:57:37 | 显示全部楼层
原帖由 伤心♂oO○ 于 2007-1-30 11:47 发表


大虫没搞安全检测,只是分析源代码!


呵呵。
bingo
说对了
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|小黑屋|金光论坛

GMT+8, 2024 年 11 月 17 日 14:19 , Processed in 0.025450 second(s), 21 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表