AngularJS 使用$sce控制代碼安全檢查

因爲瀏覽器都有同源加載策略,不能加載不一樣域下的文件、也不能使用不合要求的協議好比file進行訪問。javascript

在angularJs中爲了不安全漏洞,一些ng-src或者ng-include都會進行安全校驗,所以經常會遇到一個iframe中的ng-src沒法使用。html

什麼是SCE

SCE,即strict contextual escaping,個人理解是 嚴格的上下文隔離 ...翻譯的可能不許確,可是經過字面理解,應該是angularjs嚴格的控制上下文訪問。java

因爲angular默認是開啓SCE的,所以也就是說默認會決絕一些不安全的行爲,好比你使用了某個第三方的腳本或者庫、加載了一段html等等。angularjs

這樣作確實是安全了,避免一些跨站XSS,可是有時候咱們本身想要加載特定的文件,這時候怎麼辦呢?web

此時能夠經過$sce服務把一些地址變成安全的、受權的連接...簡單地說,就像告訴門衛,這個陌生人實際上是個人好朋友,很值得信賴,沒必要攔截它!api

經常使用的方法有:瀏覽器

$sce.trustAs(type,name);
$sce.trustAsHtml(value);
$sce.trustAsUrl(value);
$sce.trustAsResourceUrl(value);
$sce.trustAsJs(value);

其中後面的幾個都是基於第一個api使用的,好比trsutAsUrl其實調用的是trsutAs($sce.URL,"xxxx");安全

其中type可選的值爲:app

$sce.HTML
$sce.CSS
$sce.URL //a標籤中的href , img標籤中的src
$sce.RESOURCE_URL //ng-include,src或者ngSrc,好比iframe或者Object
$sce.JS

來自官網的例子:ng-bind-html

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <script src="http://apps.bdimg.com/libs/angular.js/1.2.16/angular.min.js"></script>
</head>
<body ng-app="mySceApp">
    <div ng-controller="AppController">
      <i ng-bind-html="explicitlyTrustedHtml" id="explicitlyTrustedHtml"></i>
    </div>
    <script type="text/javascript">
        angular.module('mySceApp',[])
        .controller('AppController', ['$scope', '$sce',
          function($scope, $sce) {
            $scope.explicitlyTrustedHtml = $sce.trustAsHtml(
                '<span onmouseover="this.textContent=&quot;Explicitly trusted HTML bypasses ' +
                'sanitization.&quot;">Hover over this text.</span>');
          }]);
    </script>
</body>
</html>

實際工做中的例子:ng-src連接

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <script src="http://apps.bdimg.com/libs/angular.js/1.2.16/angular.min.js"></script>
</head>
<body ng-app="mySceApp">
<div ng-controller="AppController">
    <iframe width="100%" height="100%" seamless frameborder="0" ng-src="{{trustSrc}}"></iframe>
</div>
    <script type="text/javascript">
        angular.module('mySceApp',[])
        .controller('AppController', ['$scope','$sce',function($scope,$sce) {
            $scope.trustSrc = $sce.trustAs($sce.RESOURCE_URL,"http://fanyi.youdao.com/");
            // $scope.trustSrc = $sce.trustAsResourceUrl("http://fanyi.youdao.com/");//等同於這個方法
          }]);
    </script>
</body>
</html>

參考

【1】angular源碼分析:angular中入境檢察官$sceless

【2】野獸的 Angular 學習 - - sce和sce和sceDelegate

【3】$sce官方手冊

相關文章
相關標籤/搜索