2019年5月24日 星期五

nikto 安裝及使用

#安裝
>pkg install perl5
>pkg install git
>git clone https://github.com/sullo/nikto.git Nikto2

#更新
>cd Nikto2
>git pull

#使用
>cd Nikto2/program

##掃描https
>perl nikto.pl -h https://123.edu.tw/ -ssl
##掃描http
>perl nikto.pl -h http://123.edu.tw/
##掃描特定資料夾
>perl nikto.pl -h http://123.edu.tw/billing/

2019年1月25日 星期五

chatterbot 從0.8.7升級到1.0.0遇到的狀況處理

原來0.8.7的用法

'import_path' : 'chatterbot.logic.LowConfidenceAdapter',
'threshold' : 0, //0.0-1.0
'default_response' : '很抱歉,我聽不懂您的問題。'


1.0.0的時候拿掉了LowConfidenceAdapter,所以改成
'import_path' : 'chatterbot.logic.BestMatch',
'maximum_similarity_threshold' : 0, //0.0-1.0
'default_response' : '很抱歉,我聽不懂您的問題。'

**如果沒有設定maximum_similarity_threshold的話,預設值是0.95