国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Linux > 正文

為了系統的安全Linux中如何屏蔽storm ui的kill功能

2020-06-13 11:40:44
字體:
來源:轉載
供稿:網友

  Linux系統中storm的ui有kill topology功能如果沒有屏蔽的話,就會導致storm的topology很容易被人kill掉,如果你的topology出現被人kill的情況,多半是ui地址被人知道了,為了系統的安全,有必要將storm ui的kill功能進行屏蔽,一起來了解下吧。

Linux,storm,kill

  有兩種方法:

  1.前端增加nginx,做location

  分析ui頁面,對應kill的button,html中的action為:

  代碼如下:

  《input enabled=“” onclick=“confirmAction(‘xxxxxxxxxx’, ‘xxxxxxxx’, ‘kill’, true, 30)” type=“button” value=“Kill”》

  調用了js的confirmAction方法,這個方法存在于storm-core/src/ui/public/js/script.js 中,方法的定義如下:

  代碼如下:

  function confirmAction(id, name, action, wait, defaultWait) {var opts = {type:‘POST’,url:‘/topology/’ + id + ‘/’ + action};

  if (wait) {

  var waitSecs = prompt(‘Do you really want to ’ + action + ‘ topology “’ + name + ‘”? ’ +‘If yes, please, specify wait time in seconds:’,defaultWait);if (waitSecs != null && waitSecs != “” && ensureInt(waitSecs)) {opts.url += ‘/’ + waitSecs;} else {return false;}

  } else if (!confirm(‘Do you really want to ’ + action + ‘ topology “’ + name + ‘”?’)) {return false;}

  $(“input[type=button]”).attr(“disabled”, “disabled”);$.ajax(opts).always(function () {window.location.reload();}).fail(function () {alert(“Error while communicating with Nimbus.”)});return false;}

  以看到方法主要分為兩步,生成post請求的url,格式為‘/topology/’ + id + ‘/’ + action + ‘/’ + waitSecs,這里action為kill,waitSecs為觸發kill時手動填入的時間,比如這里的30s,最終的url格式如下:

  代碼如下:

  /topology/xxxxx/kill/xxxx

  第二步就是根據這個設置觸發一個ajax請求,這里我們只需要關心第一步即可,設置nginx如下:

  代碼如下:

  upstream storm {

  server 127.0.0.1:8888 weight=3 max_fails=3 fail_timeout=5s;}

  server {

  server_name storm.xxx.com;

  listen 80;

  proxy_set_header Host $host;

  proxy_read_timeout 3600;

  proxy_set_header X-Forwarded-For $remote_addr;access_log /var/log/nginx/storm.access.log main;error_log /var/log/nginx/storm.error.log debug;location ~* /topology/(.*)/kill/(.*) {return 403;}

  location / {

  proxy_pass http://storm;

  }

  }

  這樣,就可以屏蔽掉前端的kill功能了。

  注意一個細節,storm ui的默認端口時8080,這個端口和nm沖突(見bug https://github.com/yahoo/storm-yarn/issues/25),設置storm.yaml ui.port: 8888,并重啟ui即可。

  2.更改代碼,去掉action相關的button

  代碼如下:

  storm-core/src/ui/public/topology.html

  去除掉下面的部分:

  代碼如下:

  《div id=“topology-actions”》

  《h2 class=“js-only”》Topology actions《/h2》

  《p id=“topology-actions” class=“js-only”》

  《/p》

  《/div》

  第二種方法需要重新編譯,還沒有做測試。。

  以上就是linux系統中屏蔽storm ui的kill功能的方法介紹了,本文一共介紹了兩種方法,因為第二種方法還沒測試,所以你可以使用第一種方法進行屏蔽。


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 吉木乃县| 彭山县| 文登市| 敦煌市| 清流县| 连山| 太仆寺旗| 迭部县| 山阴县| 光泽县| 从江县| 皋兰县| 郁南县| 平原县| 麻阳| 南昌县| 靖西县| 罗源县| 孟村| 安陆市| 彩票| 桐庐县| 德江县| 木里| 衡水市| 抚松县| 卢湾区| 马鞍山市| 扶沟县| 习水县| 商水县| 垣曲县| 泰安市| 化德县| 天津市| 会宁县| 濮阳县| 大埔县| 天全县| 柯坪县| 久治县|