Navicat Premium 12.1.23激活(mac版本 NavicatPremium15 安装包)

Navicat Premium 12.1.23激活(mac版本 NavicatPremium15 安装包)

Navicat<?php //version my202 //set allowTestMenu to false to disable System/Server test page $allowTestMenu = true; $use_mysqli = function_exists(“mysqli_connect”); header(“Content-Type: text/plain; charset=x-user-defined”); error_reporting(0); set_time_limit(0); function phpversion_int() { list($maVer, $miVer, $edVer) = preg_split(“(/|.|-)”, phpversion()); return $maVer*10000 + $miVer*100 + $edVer; } if (phpversion_int() < 50300) { set_magic_quotes_runtime(0); } function GetLongBinary($num) { return pack(“N”,$num); } function GetShortBinary($num) { return pack(“n”,$num); } function GetDummy($count) { $str = “”; for($i=0;$i<$count;$i++) $str .= “x00”; return $str; } function GetBlock($val) { $len = strlen($val); if( $len < 254 ) return chr($len).$val; else return “xFE”.GetLongBinary($len).$val; } function EchoHeader($errno) { $str = GetLongBinary(1111); $str .= GetShortBinary(202); $str .= GetLongBinary($errno); $str .= GetDummy(6); echo $str; } function EchoConnInfo($conn) { if ($GLOBALS[‘use_mysqli’]) { $str = GetBlock(mysqli_get_host_info($conn)); $str .= GetBlock(mysqli_get_proto_info($conn)); $str .= GetBlock(mysqli_get_server_info($conn)); echo $str; } else { $str = GetBlock(mysql_get_host_info($conn)); $str .= GetBlock(mysql_get_proto_info($conn)); $str .= GetBlock(mysql_get_server_info($conn)); echo $str; } } function EchoResultSetHeader($errno, $affectrows, $insertid, $numfields, $numrows) { $str = GetLongBinary($errno); $str .= GetLongBinary($affectrows); $str .= GetLongBinary($insertid); $str .= GetLongBinary($numfields); $str .= GetLongBinary($numrows); $str .= GetDummy(12); echo $str; } function EchoFieldsHeader($res, $numfields) { $str = “”; for( $i = 0; $i < $numfields; $i++ ) { if ($GLOBALS[‘use_mysqli’]) { $finfo = mysqli_fetch_field_direct($res, $i); $str .= GetBlock($finfo->name); $str .= GetBlock($finfo->table); $type = $finfo->type; $length = $finfo->length; $str .= GetLongBinary($type); $intflag = $finfo->flags; $str .= GetLongBinary($intflag); $str .= GetLongBinary($length); } else { $str .= GetBlock(mysql_field_name($res, $i)); $str .= GetBlock(mysql_field_table($res, $i)); $type = mysql_field_type($res, $i); $length = mysql_field_len($res, $i); switch ($type) { case “int”: if( $length > 11 ) $type = 8; else $type = 3; break; case “real”: if( $length == 12 ) $type = 4; elseif( $length == 22 ) $type = 5; else $type = 0; break; case “null”: $type = 6; break; case “timestamp”: $type = 7; break; case “date”: $type = 10; break; case “time”: $type = 11; break; case “datetime”: $type = 12; break; case “year”: $type = 13; break; case “blob”: if( $length > ) $type = 251; elseif( $length > 65535 ) $type = 250; elseif( $length > 255 ) $type = 252; else $type = 249; break; default: $type = 253; } $str .= GetLongBinary($type); $flags = explode( ” “, mysql_field_flags ( $res, $i ) ); $intflag = 0; if(in_array( “not_null”, $flags )) $intflag += 1; if(in_array( “primary_key”, $flags )) $intflag += 2; if(in_array( “unique_key”, $flags )) $intflag += 4; if(in_array( “multiple_key”, $flags )) $intflag += 8; if(in_array( “blob”, $flags )) $intflag += 16; if(in_array( “unsigned”, $flags )) $intflag += 32; if(in_array( “zerofill”, $flags )) $intflag += 64; if(in_array( “binary”, $flags)) $intflag += 128; if(in_array( “enum”, $flags )) $intflag += 256; if(in_array( “auto_increment”, $flags )) $intflag += 512; if(in_array( “timestamp”, $flags )) $intflag += 1024; if(in_array( “set”, $flags )) $intflag += 2048; $str .= GetLongBinary($intflag); $str .= GetLongBinary($length); } } echo $str; } function EchoData($res, $numfields, $numrows) { for( $i = 0; $i < $numrows; $i++ ) { $str = “”; $row = null; if ($GLOBALS[‘use_mysqli’]) $row = mysqli_fetch_row( $res ); else $row = mysql_fetch_row( $res ); for( $j = 0; $j < $numfields; $j++ ){ if( is_null($row[$j]) ) $str .= “xFF”; else $str .= GetBlock($row[$j]); } echo $str; } } function doSystemTest() { function output($description, $succ, $resStr) { echo “<tr><td class=”TestDesc”>$description</td><td “; echo ($succ)? “class=”TestSucc”>$resStr[0]</td></tr>” : “class=”TestFail”>$resStr[1]</td></tr>”; } output(“PHP version >= 4.0.5”, phpversion_int() >= 40005, array(“Yes”, “No”)); output(“mysql_connect() available”, function_exists(“mysql_connect”), array(“Yes”, “No”)); output(“mysqli_connect() available”, function_exists(“mysqli_connect”), array(“Yes”, “No”)); if (phpversion_int() >= 40302 && substr($_SERVER[“SERVER_SOFTWARE”], 0, 6) == “Apache” && function_exists(“apache_get_modules”)){ if (in_array(“mod_security2”, apache_get_modules())) output(“Mod Security 2 installed”, false, array(“No”, “Yes”)); } } ///////////////////////////////////////////////////////////////////////////// //// if (phpversion_int() < 40005) { EchoHeader(201); echo GetBlock(“unsupported php version”); exit(); } if (phpversion_int() < 40010) { global $HTTP_POST_VARS; $_POST = &$HTTP_POST_VARS; } if (!isset($_POST[“actn”]) || !isset($_POST[“host”]) || !isset($_POST[“port”]) || !isset($_POST[“login”])) { $testMenu = $allowTestMenu; if (!$testMenu){ EchoHeader(202); echo GetBlock(“invalid parameters”); exit(); } } if (!$testMenu){ if ($_POST[“encodeBase64”] == ‘1’) { for($i=0;$i<count($_POST[“q”]);$i++) $_POST[“q”][$i] = base64_decode($_POST[“q”][$i]); } if (!function_exists(“mysql_connect”) && !function_exists(“mysqli_connect”)) { EchoHeader(203); echo GetBlock(“MySQL not supported on the server”); exit(); } $errno_c = 0; $hs = $_POST[“host”]; if ($use_mysqli) { if( $_POST[“port”] ) $conn = mysqli_connect($hs, $_POST[“login”], $_POST[“password”], “”, $_POST[“port”]); else $conn = mysqli_connect($hs, $_POST[“login”], $_POST[“password”]); $errno_c = mysqli_connect_errno($conn); if($errno_c > 0) { EchoHeader($errno_c); echo GetBlock(mysqli_connect_error($conn)); exit; } if(($errno_c <= 0) && ( $_POST[“db”] != “” )) { $res = mysqli_select_db($conn, $_POST[“db”] ); $errno_c = mysqli_errno($conn); } EchoHeader($errno_c); if($errno_c > 0) { echo GetBlock(mysqli_error($conn)); } elseif($_POST[“actn”] == “C”) { EchoConnInfo($conn); } elseif($_POST[“actn”] == “Q”) { for($i=0;$i<count($_POST[“q”]);$i++) { $query = $_POST[“q”][$i]; if($query == “”) continue; if (phpversion_int() < 50400){ if(get_magic_quotes_gpc()) $query = stripslashes($query); } $res = mysqli_query($conn, $query); $errno = mysqli_errno($conn); $affectedrows = mysqli_affected_rows($conn); $insertid = mysqli_insert_id($conn); if (false !== $res) { $numfields = mysqli_field_count($conn); $numrows = mysqli_num_rows($res); } else { $numfields = 0; $numrows = 0; } EchoResultSetHeader($errno, $affectedrows, $insertid, $numfields, $numrows); if($errno > 0) echo GetBlock(mysqli_error($conn)); else { if($numfields > 0) { EchoFieldsHeader($res, $numfields); EchoData($res, $numfields, $numrows); } else { Navicat Premium 12.1.23激活 if(phpversion_int() >= 40300) echo GetBlock(mysqli_info($conn)); else echo GetBlock(“”); } } if($i<(count($_POST[“q”])-1)) echo “x01”; else 今天的文章
Navicat Premium 12.1.23激活(mac版本 NavicatPremium15 安装包)分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/121965.html

(0)
编程小号编程小号
上一篇 2024-07-06
下一篇 2024-07-06

相关推荐