Example #1
0
function VerifyAccessRight($api_id, $rights)
{
    if (!check_right($rights, $api_id)) {
        throw new IAuthException('not auth' . $rights . $api_id);
    }
    //die('test');
}
              <td width="282">&nbsp;</td>
            </tr>
          </table>            
          </td>
          <td width="139" align="center" valign="top" class="td-right"><table width="140" border="1" cellspacing="0" cellpadding="0">
            <tr>
              <th width="129" background="img_mian/bgcolor2.gif" scope="col">ÃÒ¡ÒÃ</th>
            </tr>
            <tr>
              <td class="td-left">&nbsp; - <a href="med_report.php">Ã.¤ÇÒÁ¼Ô´¾ÅÒ´·Ò§ÂÒ</a><br>
			<?php 
    $aright = array("ADMIN", "Risk_Review");
    $aright2 = array("Risk_Review");
    $right = access_right($ip_Log);
    //echo "Access".$right;
    if (check_right($right, $aright) !== 2 or check_right($right, $aright2) !== 1) {
        print "&nbsp; - ÍغѵԡÒóì/¢éÍÃéͧàÃÕ¹<br>";
    } else {
        //print"&nbsp; - ÃÒ¡ÒÃÍغѵԡÒóì<br>";
        print "&nbsp; - <a href=\"risk_report_form.php\">ÍغѵԡÒóì/¢éÍÃéͧàÃÕ¹</a><br>";
    }
    ?>
			  
                &nbsp; - <a href="#closeform">»Ô´Ë¹éÒµèÒ§</a> <br>
				</td>
            </tr>
          </table><br>
<!--counter -->
            <p align="center"><br><b><font color="gold">¤Ø³à¢éÒÁÒ˹éÒ¹Õé ¤¹·Õè :: <br><marquee direction="up" height="18" width="50" scrolldelay="500"  bgcolor="#FF0000"><u>
			  <?php 
    //check file
          <td width="139" align="center" valign="top" class="td-right"><table width="140" border="1" cellspacing="0" cellpadding="0">
            <tr>
              <th width="129" background="img_mian/bgcolor2.gif" scope="col">��¡��</th>
            </tr>
            <tr>
              <td class="td-left">
			  <?php 
    $aright = array("ADMIN", "Risk_Review");
    $aright2 = array("Risk_Review");
    //$right=access_right($ip_Log);//echo "Access".$right;
    if ($online) {
        $right = access_right($ip_Log);
    } else {
        $right = $_SESSION["right"];
    }
    if (check_right($right, $aright) !== 2 and check_right($right, $aright2) !== 1) {
        print "&nbsp; - ��¡���غѵԡ�ó�<br>";
    } else {
        print "&nbsp; - <a href=\"risk_report_review.php?ip_Log={$_SESSION['ip_Log']}\">��¡���غѵԡ�ó�</a><br>";
    }
    ?>
			  
                &nbsp; - <a href="#closeform">�Դ˹�ҵ�ҧ</a> <br>
				</td>
            </tr>
          </table>
          <br>
<!--counter -->
            <p align="center"><b><font color="gold">�س�����˹�ҹ�� ����� :: <br><marquee direction="up" height="18" width="50" scrolldelay="500"  bgcolor="#FF0000"><u>
			  <?php 
    //check file
Example #4
0
function oauth_check()
{
    if (!empty($_POST['noauth'])) {
        return $_POST['noauth'];
    }
    /*################ 从Header中提取参数 ################*/
    if (function_exists('apache_request_headers')) {
        $headers = getallheaders();
        if (empty($headers['Authorization'])) {
            die('need header Authorization');
        }
        $oauth_params = $headers['Authorization'];
    } else {
        if (empty($_SERVER['HTTP_AUTHORIZATION'])) {
            die('need header Authorization');
        }
        $oauth_params = $_SERVER['HTTP_AUTHORIZATION'];
    }
    $oauth_arr_tmp = explode(',', $oauth_params);
    $sig = '';
    $oauth_array = array();
    foreach ($oauth_arr_tmp as $str_tmp) {
        $pos = strpos($str_tmp, '=');
        $val_tmp = rawurldecode(substr($str_tmp, $pos + 2, strlen($str_tmp) - $pos - 3));
        $key_tmp = rawurldecode(substr($str_tmp, 0, $pos));
        if ($key_tmp == 'oauth_signature') {
            $sig = rawurldecode($val_tmp);
        } else {
            $oauth_array[$key_tmp] = rawurldecode($val_tmp);
        }
    }
    //print_r($oauth_array);
    /*################ 检查oauth数组中的参数是否合法 ################*/
    if ($sig == '') {
        die('缺少签名');
    }
    if (empty($oauth_array['oauth_nonce'])) {
        die('缺少nonce');
    }
    if (empty($oauth_array['oauth_timestamp'])) {
        die('缺少时间戳');
    }
    if (empty($oauth_array['oauth_signature_method'])) {
        die('缺少签名方法');
    }
    if (empty($oauth_array['oauth_consumer_key'])) {
        die('缺少app_key');
    }
    if (empty($oauth_array['oauth_version'])) {
        die('缺少认证版本');
    }
    if (empty($oauth_array['oauth_token'])) {
        die('缺少access_token');
    }
    /*################ 过滤1-时间戳 ################*/
    $their_time = $oauth_array['oauth_timestamp'];
    $now = time();
    /* echo $their_time . '<br>'; */
    /* echo $now . '<br>'; */
    if ($their_time <= $now - 480 || $their_time >= $now + 480) {
        die("时间与服务器不同步");
    }
    /*################ 检查oauth数组中的参数是否合法 ################*/
    if (strlen($sig) <= 10) {
        die('非法的签名');
    }
    $tobechecked = $oauth_array['oauth_consumer_key'];
    if (!preg_match("/^[a-fA-F0-9]{40}\$/", $tobechecked)) {
        die('非法的consumer_key');
    }
    $tobechecked = $oauth_array['oauth_token'];
    if (!preg_match("/^[a-fA-F0-9]{40}\$/", $tobechecked)) {
        die('非法的token');
    }
    $tobechecked = $oauth_array['oauth_nonce'];
    if (!preg_match("/^[a-fA-F0-9]{16}\$/", $tobechecked)) {
        die('非法的nonce');
    }
    /* if ($oauth_array['oauth_signature_method']!='HMAC-SHA1') die ('不支持的签名方式'); */
    if ($oauth_array['oauth_version'] != '1.0') {
        die('不支持的版本');
    }
    if ($oauth_array['oauth_signature_method'] != 'HMAC-SHA1' && $oauth_array['oauth_signature_method'] != 'MD5') {
        die('不支持的签名方式');
    }
    /*################ 设定参数 ################*/
    $method = "POST";
    $url_path = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['SCRIPT_NAME'];
    $app_consumer_key = $oauth_array['oauth_consumer_key'];
    $access_token = $oauth_array['oauth_token'];
    /* echo $app_consumer_key . '<br />'; */
    /* echo $access_token; */
    $con = mysql_connect(OAUTH_DB_DOMAIN, OAUTH_DB_USER, OAUTH_DB_PASSWD);
    if (!$con) {
        $con = mysql_error();
    }
    mysql_select_db(OAUTH_DB_DB);
    $sql = "SELECT user_id,app_secret,app_info.app_id,token_right,request_token,request_secret,access_secret FROM app_info,token_info WHERE app_key='{$app_consumer_key}' and access_token='{$access_token}' and app_info.app_id=token_info.app_id";
    $tmp = mysql_query($sql);
    echo mysql_error();
    $sql_result = mysql_fetch_array($tmp);
    if ($sql_result == '') {
        die("应用不存在!");
    }
    /* print_r( $sql_result ); */
    /* echo '<br />'; */
    $app_consumer_secret = $sql_result['app_secret'];
    $request_token = $sql_result['request_token'];
    $request_secret = $sql_result['request_secret'];
    //echo 'app_secret: ' . $app_consumer_secret . '<br />';
    $access_secret = $sql_result['access_secret'];
    $app_id = $sql_result['app_id'];
    $params = array_merge($oauth_array, $_POST, $_GET);
    $right = $sql_result['token_right'];
    $user_id = $sql_result['user_id'];
    /*################ 生成BASE String ################*/
    $base_str = strtoupper($method) . '&' . rawurlencode($url_path) . '&';
    ksort($params);
    $str_tmp = '';
    foreach ($params as $key => $val) {
        $str_tmp .= "{$key}={$val}&";
    }
    $base_str .= rawurlencode(substr($str_tmp, 0, strlen($str_tmp) - 1));
    /* 删去最后多出来的一个'&' */
    //echo $base_str;
    /*################ 检查签名 ################*/
    $secret = $app_consumer_key . '&' . $app_consumer_secret . '&' . $request_token . '&' . $request_secret . '&' . $access_token . '&' . $access_secret;
    /* $sign = hash_hmac ( "sha1", $base_str, $secret, true ); */
    /* $sign = base64_encode ( $sign ); */
    $sign = signature($oauth_array['oauth_signature_method'], $base_str, $secret);
    /* echo $sign ."\n"; */
    /* echo $sig  ."\n"; */
    /* echo '<br />secret on server = ' . $secret; */
    /* echo '<br />'; */
    if (strcmp($sig, $sign) != 0) {
        die("签名不匹配!");
    }
    /*################ 过滤2:重放攻击 ################*/
    $app_token = $oauth_array['oauth_consumer_key'];
    $acc_token = $oauth_array['oauth_token'];
    $nonce = $oauth_array['oauth_nonce'];
    $time = $oauth_array['oauth_timestamp'];
    //echo $token . '<br /><br />' . $nonce .'<br /><br />' . $time;
    $sql = "SELECT app_key FROM token_nonce WHERE app_key='{$app_token}' and token='{$acc_token}' and token_type='access' and nonce='{$nonce}' and create_t='{$time}'";
    $sql_tmp = mysql_query($sql);
    $sql_result = mysql_fetch_array($sql_tmp);
    if ($sql_result != '') {
        die("重复请求!");
    }
    /*-----------------  记录请求以备查询重放攻击  -----------------*/
    $t_stamp = date('Y-m-d H:i:s', $time);
    $sql = "INSERT INTO token_nonce (app_key,token,token_type,nonce,create_t) VALUES('{$app_token}','{$acc_token}','access','{$nonce}','{$t_stamp}')";
    mysql_query($sql);
    mysql_close($con);
    /*################ 生成数据并返回 ################*/
    include_once 'api_info.php';
    /* $api_nums=array( */
    /*     'getallthings'=>1, */
    /*     'getnotification'=>2, */
    /*     'getmessages'=>3, */
    /*     'getpersonmessages'=>4, */
    /*     'getfriendslist'=>6, */
    /*     'getuserinfo'=>7, */
    /*     'getuserthings'=>8, */
    /*     'getusertopics'=>9, */
    /*     'getmygroups'=>10, */
    /*     'gethotgroups'=>11, */
    /*     'getrecommendgroups'=>12, */
    /*     'gettopics'=>13, */
    /*     'topicreply'=>14, */
    /*     'gettherecoding'=>16, */
    /*     'gettherecodingreply'=>17, */
    /*     'getbloglist'=>18, */
    /*     'gettheblog'=>19, */
    /*     'getblogreplylist'=>20, */
    /*     'gettheshare'=>24, */
    /*     'getsharereplylist'=>25, */
    /*     'getthetopic'=>0, */
    /*     'addnews'=>31, */
    /*     'addmessage'=>32, */
    /*     'addblog'=>33, */
    /*     'addtopic'=>34, */
    /*     'addshare'=>35, */
    /*     'addnewsreply'=>36, */
    /*     'addblogreply'=>37, */
    /*     'addtopicreply'=>38, */
    /*     'addsharereply'=>39, */
    /*     'deleteblog'=>40, */
    /*     'deletecomment'=>41, */
    /*     'deletefriend'=>0, */
    /*     'deletenews'=>42, */
    /*     'deletetopic'=>0 */
    /*     ); */
    /* 以下两个函数用于将api权限信息从数据库压缩存储模式转换为可验证的模式。 */
    function myhex2bin($mychar)
    {
        switch ($mychar) {
            case '0':
                return '0000';
            case '1':
                return '0001';
            case '2':
                return '0010';
            case '3':
                return '0011';
            case '4':
                return '0100';
            case '5':
                return '0101';
            case '6':
                return '0110';
            case '7':
                return '0111';
            case '8':
                return '1000';
            case '9':
                return '1001';
            case 'a':
                return '1010';
            case 'b':
                return '1011';
            case 'c':
                return '1100';
            case 'd':
                return '1101';
            case 'e':
                return '1110';
            case 'f':
                return '1111';
        }
    }
    function check_right($stored_right, $api_num)
    {
        $tmp_str = '';
        $len = strlen($stored_right);
        for ($ii = 0; $ii <= $len; $ii++) {
            $tmp_char = $stored_right[$ii];
            $tmp_str .= myhex2bin($tmp_char);
        }
        if ($tmp_str[$api_num - 1] == 1) {
            return true;
        } else {
            return false;
        }
    }
    preg_match("/\\/do_.+\\.php\$/", $_SERVER['SCRIPT_NAME'], $match);
    $api_string = substr($match[0], 4, strlen($match[0]) - 8);
    $api_id = $api_nums[$api_string];
    if ($api_id == null) {
        die('不存在的api' . $api_string);
    }
    $result = check_right($right, $api_id);
    if ($result == false) {
        die('用户未授权,您无法使用该api');
    }
    return $user_id;
}
Example #5
0
        echo "&nbsp;&nbsp;&nbsp;<img src=\"img_mian/collapsed.gif\" width=5 height=5>&nbsp;Change Password";
    }
    //cc
    ?>
</td>
                        </tr>
                        <?php 
    //protect by change user in program by online$aright=array("ADMIN","Risk_Review");
    $aright = array("ADMIN", "Risk_Review");
    if ($online) {
        $right = access_right($ip_Log);
    } else {
        $right = $_SESSION["right"];
    }
    //if(isset($_SESSION["right"])){$right=$_SESSION["right"];}else{$right=access_right($ip_Log);} //not work change user in program
    if (check_right($right, $aright) == 2) {
        echo "<tr><td align='left'>\n";
        echo "&nbsp;&nbsp;&nbsp;<img src=\"img_mian/collapsed.gif\" width=5 height=5>&nbsp;<a href=\"#risk_set_user.php\">Set Risk User</a>";
        echo "</td><td>&nbsp;</td></tr>\n";
    }
    //cc
    ?>
                       
                        <tr>
                          <td height="52" align="center"><span class="headtable"><img src="img_mian/menu_new/aboutas.gif" width="150" height="36" border="0" usemap="#Map"></span></td>
                        </tr>
                      </table></td>
                      <td width="398" align="left" valign="top" class="headtable"><table width="397" border="0" cellspacing="0" cellpadding="0">
                          <tr>
                            <td width="10" height="24" background="img_mian/bgcolor.gif ">&nbsp;</td>
                            <td width="378" background="img_mian/bgcolor.gif ">&nbsp; <img src="img_mian/mail.gif" width="16" height="16" align="absmiddle"> <strong><font color="#000000">����</font></strong> </td>
Example #6
0
</head>
<body>
<?php 
if (!$_SESSION["ip_Log"] and !Check_Online(get_ip())) {
    //check  ->off line
    echo "<META HTTP-EQUIV='REFRESH' CONTENT='0;  URL=index.php'>";
} else {
    //on line
    if ($_SESSION["user_type"] == "online" and !Check_Onlines()) {
        echo "<META HTTP-EQUIV='REFRESH' CONTENT='0;  URL=index.php'>";
    }
    $key_word = $_GET['keyword'];
    $vn = $_GET['vn'];
    $hn = $_GET['hn'];
    $aright = array("ADMIN", "DOCTOR", "SCREEN", "View_EMR");
    if (check_right($_SESSION["right"], $aright) == 0) {
        echo "<META HTTP-EQUIV='REFRESH' CONTENT='0;  URL=pttype_service.php?pt_search={$hn}'>";
    }
    if ($vn == "" and $year_come == "") {
        $sqlVn = "select  an, vn, regdate from ipt where hn='{$hn}'  order by vn  desc limit 1 ";
        $result = mysql_db_query($DBName, $sqlVn) or die("�������ö���͡������������" . mysql_error());
        $rs = mysql_fetch_array($result);
        $vn = $rs["vn"];
        $an = $rs["an"];
        $datevst = $rs["regdate"];
    } elseif ($vn == "" and $year_come != "") {
        $sqlVn = "select  an,vn, regdate from ipt where hn='{$hn}' and regdate between '{$year_come}-01-01' and '{$year_come}-12-31' order by vn  desc limit 1 ";
        $result = mysql_db_query($DBName, $sqlVn) or die("�������ö���͡������������" . mysql_error());
        $rs = mysql_fetch_array($result);
        $an = $rs["an"];
        $vn = $rs["vn"];
Example #7
0
<?php 
//set theme
print "<link href='css/{$Theme}.css' rel='stylesheet' type='text/css'>";
?>
</head>

<body><br>
<?php 
if ($_SESSION["user_type"] == "online" and !Check_Onlines()) {
    echo "<META HTTP-EQUIV='REFRESH' CONTENT='0;  URL=index.php'>";
}
$ip = get_ip();
//func get ip from computer
$online = Check_Online($ip);
//func check online
if (!check_right($_SESSION["right"], "ADMIN")) {
    //not admin
    echo "<center><h2><font color=red>·èÒ¹äÁèÁÕÊÔ·¸Ôãªé§Ò¹Ë¹éÒ¹Õé</font></h2></center>";
    //session_unregister("ip_Log","permission");
    echo "<META HTTP-EQUIV='REFRESH' CONTENT='1;  URL=index.php'>";
} else {
    //admin ok
    ?>
<form action="nagment_pwd.php" method="post" name="fcpwd">
<table width="280" height="89" border="0" align="center" cellpadding="0" cellspacing="0" class="bd-external">
  <tr>
    <td width="300"><table width="280" border="0" align="center" cellpadding="1" cellspacing="3">
          <tr align="center" bgcolor="#0099FF"> 
            <td colspan="3" class="headmenu">Managment User ÊÓËÃѺ Web Servive</td>
          </tr>
          <tr> 
Example #8
0
 if ($action == NULL)
   $action='read';

 // SWITCH sur l'action (CRUD)
 switch($action)
 {
   case 'create':
     create_site($id_site);
   break;
   case 'read':
     read_sites();
   break;
   case 'update':
     update_site($id_site);
   break;
   case 'delete':
     delete_site($id_site);
   break;
   case 'right':
     check_right($id_site);
   break;
   default:
      read_sites();
   break;
 }
// fin de l'affichage de la colonne de droite
echo "</td></tr></table>\n";
?>
</body>
</html>