欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

開源WAF防火墻“JanusecApplicationGateway”搭建

開源 WAF防火墻“Janusec Application Gateway” 搭建

10年積累的做網(wǎng)站、網(wǎng)站建設(shè)經(jīng)驗(yàn),可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有老河口免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。

0x01 介紹Janusec Application Gateway

Janusec Application Gateway,一種應(yīng)用程序安全解決方案,提供WAF(Web應(yīng)用程序防火墻),統(tǒng)一Web管理門戶,私鑰保護(hù),Web路由和可擴(kuò)展負(fù)載平衡。使用Janusec,您可以構(gòu)建安全且可伸縮的應(yīng)用程序。

主要特點(diǎn)

  • WAF(Web應(yīng)用程序防火墻),阻止SQL注入,跨站點(diǎn)腳本,敏感數(shù)據(jù)泄漏,CC***等。

  • 集團(tuán)政策(與多個(gè)支票點(diǎn)合作)

  • CAPTCHA支持

  • 統(tǒng)一Web管理

  • HTTPS支持,無需代理。

  • 使用私鑰加密存儲(chǔ)進(jìn)行證書保護(hù)

  • 可擴(kuò)展的體系結(jié)構(gòu),負(fù)載平衡和多節(jié)點(diǎn)支持

開源 WAF防火墻“Janusec Application Gateway” 搭建

開源 WAF防火墻“Janusec Application Gateway” 搭建

開源 WAF防火墻“Janusec Application Gateway” 搭建

0x02 環(huán)境介紹及安裝準(zhǔn)備

     1  系統(tǒng)要求:

節(jié)點(diǎn)操作系統(tǒng)數(shù)據(jù)庫
主節(jié)點(diǎn)CentOS/RHEL 7, 或 Debian 9, x86_64PostgreSQL 9.3 / 9.4 / 9.5 / 9.6 / 10

     2、安裝準(zhǔn)備

     2.1  系統(tǒng)  :Centos 7 x86 最小安裝;

開源 WAF防火墻“Janusec Application Gateway” 搭建

     2.2 更新 #yum update;

開源 WAF防火墻“Janusec Application Gateway” 搭建

     2.3 安裝PostgreSQL數(shù)據(jù)庫;

     2.3.1添加PostgreSQL數(shù)據(jù)庫源,yum安裝

     # yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm

開源 WAF防火墻“Janusec Application Gateway” 搭建

     #yum install postgresql10-server

開源 WAF防火墻“Janusec Application Gateway” 搭建

     #/usr/pgsql-10/bin/postgresql-10-setup initdb

開源 WAF防火墻“Janusec Application Gateway” 搭建

     #systemctl restart postgresql-10.service
     #su – postgres
     -bash-4.2$ psql    #進(jìn)入控制臺,創(chuàng)建用戶、庫;

開源 WAF防火墻“Janusec Application Gateway” 搭建

     postgres=# create user janusec with password ‘a(chǎn)bc789@.com’;
     postgres=# create database janusec owner janusec;
     postgres=# grant all privileges on database janusec to janusec;
     postgres=# \q
     exit

開源 WAF防火墻“Janusec Application Gateway” 搭建

 2.3.2 修改PostgreSQL認(rèn)證方式

     #vi /var/lib/pgsql/10/data/pg_hba.conf

     修改 pg_hba.conf 中這一行:

     host all all 127.0.0.1/32 md5

     #systemctl restart postgresql-10.service     #重啟 PostgreSQL 服務(wù)

     # systemctl enable postgresql-10.service     #添加啟動(dòng)服務(wù)

開源 WAF防火墻“Janusec Application Gateway” 搭建

0x03 Janusec安裝

     3.1 下載安裝包

     # cd~
     # wget https://www.janusec.com/download/janusec-latest.tar.gz
     # tar zxf ./janusec-latest.tar.gz

開源 WAF防火墻“Janusec Application Gateway” 搭建

     3.2 安裝(注意需要ROOT權(quán)限)

     安裝后的路徑為:/usr/local/janusec/

     #cd janusec-0.9.3
     #./install.sh

     選擇1. Master Node

開源 WAF防火墻“Janusec Application Gateway” 搭建

     3.3 修改數(shù)據(jù)庫連接配置

     #vi /usr/local/janusec/config.json

開源 WAF防火墻“Janusec Application Gateway” 搭建

     #systemctl start janusec.service                   #啟動(dòng)WAF 服務(wù)

     # systemctl enable janusec.service               #添加啟動(dòng)服務(wù)

開源 WAF防火墻“Janusec Application Gateway” 搭建

0x04 Janusec  測試

     打開Web瀏覽器,例如Chrome訪問

     http:// your_master_ip_address:9080 /

開源 WAF防火墻“Janusec Application Gateway” 搭建

開源 WAF防火墻“Janusec Application Gateway” 搭建

開源 WAF防火墻“Janusec Application Gateway” 搭建

開源 WAF防火墻“Janusec Application Gateway” 搭建

開源 WAF防火墻“Janusec Application Gateway” 搭建

開源 WAF防火墻“Janusec Application Gateway” 搭建

開源 WAF防火墻“Janusec Application Gateway” 搭建

開源 WAF防火墻“Janusec Application Gateway” 搭建

開源 WAF防火墻“Janusec Application Gateway” 搭建

開源 WAF防火墻“Janusec Application Gateway” 搭建

使用默認(rèn)用戶名admin和密碼登錄J@nusec123

注意:測試時(shí)可以關(guān)閉Centos 防火墻

參考官方文檔:https://www.janusec.com/documentation

項(xiàng)目github地址:https://github.com/Janusec/janusec

轉(zhuǎn)貼請注明轉(zhuǎn)自: https://www.security-#/

開源 WAF防火墻“Janusec Application Gateway” 搭建

分享標(biāo)題:開源WAF防火墻“JanusecApplicationGateway”搭建
URL鏈接:http://chinadenli.net/article22/jpspcc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供虛擬主機(jī)網(wǎng)站制作微信公眾號品牌網(wǎng)站建設(shè)網(wǎng)站營銷用戶體驗(yàn)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)