Skip to content

Commit

Permalink
update 2021年09月13日 15:21:17
Browse files Browse the repository at this point in the history
  • Loading branch information
No-Github committed Sep 13, 2021
1 parent 35b6d0a commit ddea1cf
Show file tree
Hide file tree
Showing 47 changed files with 710 additions and 256 deletions.
136 changes: 0 additions & 136 deletions 1earn/Develop/Web/Speed-Web.md

This file was deleted.

2 changes: 1 addition & 1 deletion 1earn/Develop/可视化/gnuplot/gnuplot学习笔记.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ reset

**空格分隔**
```
Plot 'data.txt'
plot 'data.txt'
```

**逗号分隔**
Expand Down
2 changes: 1 addition & 1 deletion 1earn/Integrated/Linux/Speed-Linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -1274,7 +1274,7 @@ curl -C - O https://wordpress.org/latest.zip # 恢复之前的下载
aria2c http://releases.ubuntu.com/18.10/ubuntu-18.10-desktop-amd64.iso.torrent # 下载磁力链接
aria2c -i downloadurls.txt # 下载文件中的 url
aria2c -c http://releases.ubuntu.com/18.10/ubuntu-18.10-desktop-amd64.iso.torrent # 恢复之前的下载
aria2c max-download-limit=100K http://releases.ubuntu.com/disco/ubuntu-19.04-desktop-amd64.iso.torrent # 设置最大速度限制
aria2c -max-download-limit=100K http://releases.ubuntu.com/disco/ubuntu-19.04-desktop-amd64.iso.torrent # 设置最大速度限制
```

### bt
Expand Down
20 changes: 20 additions & 0 deletions 1earn/Integrated/Linux/笔记/工具.md
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,26 @@ apt install zbar-tools
zbarimg xxx.png
```

**montage**

> 将多个小图片拼成一张图
```bash
apt install imagemagick

montage xxx.jpg -tile 8x15 -geometry 200x100+0+0 output.jpg
```

**gaps**

> 修复、还原图片
```bash
gaps --image=output.jpg --generations=40 --population=120 --size=100

gaps -image=flag.jpg -generations=50 -population=120 -size=50
```

---

## 提高生产力
Expand Down
2 changes: 1 addition & 1 deletion 1earn/Integrated/Windows/Secure-Win.md
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ WindowsServer 2012及更高版本使用了引入了一个名为“Protected User
可以通过执行以下PowerShell命令将帐户添加到“受保护的用户”组中:
```
Add-ADGroupMember Identity 'Protected Users' Members administrator
Add-ADGroupMember -Identity 'Protected Users' -Members administrator
```
**Credential Guard**
Expand Down
2 changes: 1 addition & 1 deletion 1earn/Integrated/Windows/笔记/认证.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ NTLMv1 和 NTLMv2 的加密因素都是 NTLM Hash,而最显著的区别就是
![](../../../../assets/img/Integrated/Windows/笔记/认证/36.png)
- 发送 LM NTLM 响应: 客户端使用 LM 和 NTLM 身份验证,而决不会使用 NTLMv2 会话安全;域控制器接受 LM、NTLM 和 NTLMv2 身份验证。
- 发送 LM & NTLM 如果协商一致,则使用 NTLMv2 会话安全: 客户端使用 LM 和 NTLM 身份验证,并且在服务器支持时使用 NTLMv2 会话安全;域控制器接受 LM、NTLM 和 NTLMv2 身份验证。
- 发送 LM & NTLM - 如果协商一致,则使用 NTLMv2 会话安全: 客户端使用 LM 和 NTLM 身份验证,并且在服务器支持时使用 NTLMv2 会话安全;域控制器接受 LM、NTLM 和 NTLMv2 身份验证。
- 仅发送 NTLM 响应: 客户端仅使用 NTLM 身份验证,并且在服务器支持时使用 NTLMv2 会话安全;域控制器接受 LM、NTLM 和 NTLMv2 身份验证。
- 仅发送 NTLMv2 响应: 客户端仅使用 NTLMv2 身份验证,并且在服务器支持时使用 NTLMv2 会话安全;域控制器接受 LM、NTLM 和 NTLMv2 身份验证。
- 仅发送 NTLMv2 响应\拒绝 LM: 客户端仅使用 NTLMv2 身份验证,并且在服务器支持时使用 NTLMv2 会话安全;域控制器拒绝 LM (仅接受 NTLM 和 NTLMv2 身份验证)。
Expand Down
Loading

0 comments on commit ddea1cf

Please sign in to comment.