安全學習入侵檢測 蜜罐打卡第十五天

2021-09-25 20:00:14 字數 1301 閱讀 3179

本文為蘇尚武老師運維安全課程課程筆記

useradd cowrie

passwd cowrie

yum install -y git python-virtualenv bzip2-devel libffi-devel vim net-tools mysql-devel

yum groupinstall "development tools"

git clone

建立虛擬環境

virtualenv -p python2.7 cowrie-env

source cowrie-env/bin/activate

pip install -r requirements.txt

cp cowrie.cfg.dist cowrie.cfg

chown -r cowrie /opt/cowrie/

修改系統ssh埠

vim /etc/ssh/sshd_config

#port 22為port 222

修改蜜罐埠

cowrie.cfg檔案修改

listen_port = 2222

配置firewalld防火牆

firewall-cmd --permanent --add-port=222/tcp

firewall-cmd --zone=public --add-masquerade --permanent

firewall-cmd --zone=public --add-forward-port=port=22:proto=tcp:toport=2222 --permanent

firewall-cmd --permanent --list-all

firewall-cmd --reload

systemctl restart sshd

需要在蜜罐中配置mysql資料庫

. cowrie-env/bin/activate

pip install mysql-python

匯入/opt/cowrie/docs/sql/mysql.sql

修改配置檔案/etc/cowrie.cfg

[output_mysql]

enabled = true

host = localhost

database = cowrie

username = cowrie

password = root123…

port = 3306

ARTS打卡第十五周

algorithm leetcode 933.最近的請求次數 寫乙個 recentcounter 類來計算最近的請求。它只有乙個方法 ping int t 其中 t 代表以毫秒為單位的某個時間。返回從 3000 毫秒前到現在的 ping 數。任何處於 t 3000,t 時間範圍之內的 ping 都將...

第十五周學習筆記

配分函式z z theta z 是概率分布的歸一化因子,一些概率模型中可以被設計成無需計算歸一化常數,而有些則必須直面計算歸一化因子的問題 p x 1z p x p x theta dfrac hat x theta p x z 1 p x 1.對數似然梯度 通過最大似然學習無向模型特別困難的原因在...

Scala學習第十五彈 對映

乙個經典的程式設計師的名言是 如果只能有一種資料結構,那就用雜湊表吧。雜湊表,更籠統的說 對映是最靈活的資料結構之一,在scala中使用對映十分簡單 對映是鍵 值對對偶的集合。scala中有個通俗的叫法 元組 n個物件的聚集,並不一定是相同型別的。構造對映cla ss.d efau lt m apl...