File tree 4 files changed +2544
-3177
lines changed
security/myattackers-ipsets/ipset
4 files changed +2544
-3177
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ extend-ignore-re = [
27
27
" ;ba'" ,
28
28
" /bin/\\ (ba\\ )\\ ?sh" ,
29
29
" -MISSy" ,
30
+ " -passin " ,
30
31
" Full HD" ,
31
32
" for VDISK in hd sd" ,
32
33
" \\ ^fpr:::::::::" ,
Original file line number Diff line number Diff line change @@ -17,3 +17,19 @@ Installing an S/MIME Personal Certificate for signing emails.
17
17
- Delete certificate from Windows
18
18
19
19
Displaying certificate: ` openssl pkcs12 -in certificate.pfx `
20
+
21
+ ## Add intermediate certificate to PKCS #12
22
+
23
+ ``` bash
24
+ openssl pkcs12 -in pkcs12-from-Sectigo.p12 -out temp.p12 -nodes \
25
+ -passin pass:${PASSWORD} -passout pass:${PASSWORD}
26
+ openssl pkcs12 -export -in temp.p12 -out viktor-szepe-net.pfx -certfile Sectigo-intermediate.pem \
27
+ -passin pass:${PASSWORD} -passout pass:${PASSWORD}
28
+ rm temp.p12
29
+ ```
30
+
31
+ ## View PKCS #7 signature
32
+
33
+ - Copy BASE64 encoded signature from email to smime.p7s.b64
34
+ - Decode signature: ` base64 -d <smime.p7s.b64 >smime.p7s `
35
+ - ` openssl pkcs7 -inform DER -in smime.p7s -print_certs -text `
Original file line number Diff line number Diff line change 1
1
# Node.js from NodeSource
2
2
# https://nodejs.org/en/about/releases/
3
- deb https://deb.nodesource.com/node_18 .x buster main
4
- #K: wget -qO- https://deb.nodesource.com/gpgkey/nodesource.gpg.key | gpg --yes --dearmor --output /etc/apt/trusted.gpg.d/nodesource.gpg
3
+ deb https://deb.nodesource.com/node_22 .x nodistro main
4
+ #K: wget -qO- https://deb.nodesource.com/gpgkey/nodesource-repo .gpg.key | gpg --yes --dearmor --output /etc/apt/trusted.gpg.d/nodesource.gpg
5
5
#M: https://github.com/nodesource/distributions/blob/master/README.md#debmanual
You can’t perform that action at this time.
0 commit comments