aboutsummaryrefslogtreecommitdiffstats
path: root/check-certificates
blob: 240dd8b168472a6d12e7df032133dc18def0456f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!rsc
# RouterOS script: check-certificates
# Copyright (c) 2013-2018 Christian Hesse <mail@eworm.de>
#
# check for certificate validity

:global "identity";
:global "email-general-to";
:global "email-general-cc";

:local months ("jan","feb","mar","apr","may","jun","jul","aug","sep","oct","nov","dec");

:local currentdate [ / system clock get date ];

:local currentmonthstr [ :pick $currentdate 0 3 ];
:local currentday [ :pick $currentdate 4 6 ];
:local currentyear [ :pick $currentdate 7 11 ];
:local currentmonth ([ :find $months $currentmonthstr -1 ] + 1);
:local currentstamp ($currentyear * 365 + $currentmonth * 30 + $currentday);

:foreach cert in=[ / certificate find where !revoked ] do={
  :local certname [ / certificate get $cert name ];
  :local invaliddate [ / certificate get $cert invalid-after ];

  :if ([ :len $invaliddate ] > 0) do={
    :local invalidmonthstr [ :pick $invaliddate 0 3 ];
    :local invalidday [ :pick $invaliddate 4 6 ];
    :local invalidyear [ :pick $invaliddate 7 11 ];
    :local invalidmonth ([ :find $months $invalidmonthstr -1 ] + 1);
    :local invalidstamp ($invalidyear * 365 + invalidmonth * 30 + invalidday);

    :local remaining ($invalidstamp - $currentstamp);

    :if ($remaining < 15) do={
      :local commonname [ / certificate get $cert common-name ];
      :local fingerprint [ / certificate get $cert fingerprint ];
      :local invalidbefore [ / certificate get $cert invalid-before ];
      :local invalidafter [ / certificate get $cert invalid-after ];
      / tool e-mail send to=$"email-general-to" cc=$"email-general-cc" \
        subject=("[" . $identity . "] Certificate warning!") \
        body=("A certificate on " . $identity . " is about to expire.\n\n" . \
          "Certificate Name: " . $certname . "\n" . \
          "Common Name:      " . $commonname . "\n" . \
          "Fingerprint:      " . $fingerprint . "\n" . \
          "Validity:         " . $invalidbefore . " to " . $invalidafter);
      :log warning ("A certificate is about to expire within " . $remaining . " days: " . $certname);
    } else={
      :log debug ("The certificate " . $certname . " expires in " . $remaining . " days.");
    }
  } else={
    :log debug ("The certificate " . $certname . " is just a template.");
  }
}