上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 30 下一页
摘要: Certificates can be encoded as: Binary files ASCII (base64)files Common file extensions in use are: .DER .PEM (Privacy Enhanced Electron Mail) .CRT .C 阅读全文
posted @ 2020-09-22 17:24 fndefbwefsowpvqfx 阅读(244) 评论(0) 推荐(0) 编辑
摘要: http://www.steves-internet-guide.com/ssl-certificates-explained/ In this tutorial we will look: TLS and SSL Public and Private keys Why we need certif 阅读全文
posted @ 2020-09-22 16:49 fndefbwefsowpvqfx 阅读(194) 评论(0) 推荐(0) 编辑
摘要: https://www.grc.com/fingerprints.htm 对比网站证书的fingerprint 阅读全文
posted @ 2020-09-22 15:52 fndefbwefsowpvqfx 阅读(144) 评论(0) 推荐(0) 编辑
摘要: https://wiki.openssl.org/index.php/Command_Line_Utilities Base64 Encoding Strings For simple string encoding, you can use "here string" syntax with th 阅读全文
posted @ 2020-09-22 14:20 fndefbwefsowpvqfx 阅读(186) 评论(0) 推荐(0) 编辑
摘要: curl -k https:/www.test.com -v –-key key.pem –-cacert ca.pem –-cert client.pem -k allows insecure connections,makes everything here insecure PKI – Pub 阅读全文
posted @ 2020-09-22 13:57 fndefbwefsowpvqfx 阅读(177) 评论(0) 推荐(0) 编辑
摘要: curl -k https:/www.test.com -v –-key key.pem –-cacert ca.pem –-cert client.pem -k allows insecure connections,makes everything here insecure 阅读全文
posted @ 2020-09-22 13:25 fndefbwefsowpvqfx 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 检测主机 nmap www.baidu.com Nmap scan report for www.baidu.com (61.135.169.121) Host is up (0.0069s latency). Other addresses for www.baidu.com (not scann 阅读全文
posted @ 2020-09-22 11:43 fndefbwefsowpvqfx 阅读(108) 评论(0) 推荐(0) 编辑
摘要: curl --request POST --basic --user uername:pwd -H @header.json --data @body.json basic auth --basic 从文件中读取header, body curl --request POST --basic --u 阅读全文
posted @ 2020-09-22 11:37 fndefbwefsowpvqfx 阅读(459) 评论(0) 推荐(0) 编辑
摘要: @startmindmap skinparam defaultFontName "Sarasa Mono SC" skinparam backgroundColor #1e1e1e skinparam roundcorner 1 !$cFontColor= "#f4f4f4" !$cFontSize 阅读全文
posted @ 2020-09-18 13:29 fndefbwefsowpvqfx 阅读(136) 评论(0) 推荐(0) 编辑
摘要: http://latexcolor.com/ https://files.cnblogs.com/files/Searchor/latexColor.zip LaTeX Color SwatchColor nameHex Triplet R G B LaTeX Air Force blue #5D8 阅读全文
posted @ 2020-09-18 12:59 fndefbwefsowpvqfx 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 生成SVG java -jar plantuml.jar -tsvg -charset UTF-8 *.pu 其它选项 java -jar plantuml.jar -help Usage: java -jar plantuml.jar [options] -gui (to execute the 阅读全文
posted @ 2020-09-18 12:36 fndefbwefsowpvqfx 阅读(165) 评论(0) 推荐(0) 编辑
摘要: @startmindmap skinparam defaultFontName "Sarasa Mono SC" skinparam backgroundColor #1e1e1e skinparam roundcorner 1 skinparam maxmessagesize 60 <style> 阅读全文
posted @ 2020-09-18 11:49 fndefbwefsowpvqfx 阅读(144) 评论(0) 推荐(0) 编辑
摘要: https://github.com/plantuml/plantuml/blob/master/skin/plantuml.skin root { FontName SansSerif HyperLinkColor blue FontColor black FontSize 14 FontStyl 阅读全文
posted @ 2020-09-18 11:06 fndefbwefsowpvqfx 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 禁止对@进行特殊处理,当做splat 操作 就是加上引号 curl --request POST -H "@cheader.txt" --form "pushfile=@path/to/data.zip" 127.0.0.1:3000/uploadfile 获取指定网卡的IPV4地址 使用ipcon 阅读全文
posted @ 2020-09-16 15:44 fndefbwefsowpvqfx 阅读(132) 评论(0) 推荐(0) 编辑
摘要: http://tool.chinaz.com/dns/?type=1&host=download.visualstudio.microsoft.com&ip= C:\Windows\System32\drivers\etc\hosts 111.111.222.333 download.visuals 阅读全文
posted @ 2020-09-15 21:06 fndefbwefsowpvqfx 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 安装ssh服务 sudo apt-get install openssh-server 启动服务 /etc/init.d/ssh start 重启服务 /etc/init.d/ssh restart service sshd restart systemctl restart sshd.servic 阅读全文
posted @ 2020-09-14 10:07 fndefbwefsowpvqfx 阅读(479) 评论(0) 推荐(0) 编辑
摘要: NFS server install sudo apt install nfs-kernel-server start sudo systemctl start nfs-kernel-server.service 创建共享文件夹 $ sudo mkdir -p /mnt/nfs_share 修改共享 阅读全文
posted @ 2020-09-11 10:20 fndefbwefsowpvqfx 阅读(421) 评论(0) 推荐(0) 编辑
摘要: CHMOD is used to change permissions of a file. PERMISSION COMMAND U G W rwx rwx rwx chmod 777 filename rwx rwx r-x chmod 775 filename rwx r-x r-x chmo 阅读全文
posted @ 2020-09-06 10:25 fndefbwefsowpvqfx 阅读(132) 评论(0) 推荐(0) 编辑
摘要: /etc/docker/daemon.json # vim /etc/docker/daemon.json { "registry-mirrors": ["https://registry.docker-cn.com"] } systemctl restart docker.service Dock 阅读全文
posted @ 2020-09-04 13:32 fndefbwefsowpvqfx 阅读(138) 评论(0) 推荐(0) 编辑
摘要: https://github.com/microsoft/winget-cli Chocolatey Install: First, ensure that you are using an administrative shell - you can also install as a non-a 阅读全文
posted @ 2020-09-02 11:41 fndefbwefsowpvqfx 阅读(202) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 30 下一页