2019/01/23

朋友介紹這個 Wayk Now
超方便的




2019/01/19

昨天收到來自 Let's Encrypt 的 mail

Hello,

**Action is required to prevent your Let's Encrypt certificate renewals from breaking.**

Your Let’s Encrypt client used ACME TLS-SNI-01 domain validation to issue a certificate in the past 60 days.

TLS-SNI-01 validation is reaching end-of-life and will stop working on **February 13th, 2019.**

You need to update your ACME client to use an alternative validation method (HTTP-01, DNS-01 or TLS-ALPN-01) before this date or your certificate renewals will break and existing certificates will start to expire.

我是使用certbot來更新

原來的指令是

/usr/bin/certbot renew

預設就是使用 TLS-SNI-01

所以要把指令改成

/usr/bin/certbot --preferred-challenges http-01 renew


2019/01/11

最近有台電腦中毒
在snort造成三百多萬筆的log

TOTAL        ip_src
3019640    192.168.101.56

導致web的管理介面開啟緩慢
於是想說來清理一下
碰到几個問題

首先用sql下指令
半小時大約只能delete 2百多筆
醬可能要搞到天荒地老

再來想說不然匯出 用 shell處理完再匯入
用grep直接當掉
只能用sed
可是用sed的速度比sql快不了多少

最後解決的方式是
先把發生當天的資料全砍了

delete from event where timestamp like '2019-01-07%';

再清理一次
快多了

無法查看此摘要。請 按這裡查看文章。