V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  dingyaguang117  ›  全部回复第 7 页 / 共 74 页
回复总数  1466
1 ... 3  4  5  6  7  8  9  10  11  12 ... 74  
2022-09-03 00:43:52 +08:00
回复了 wenzaiquan199 创建的主题 问与答 为安全问题,早上公司热烈讨论
@twl007 为什么我看到最高赞的回答恰恰是支持我的观点的 😂

This is an old question, but I felt the need to provide my opinion on this important matter. There is so much misinformation here

The OP never mentioned sending the password in clear over HTTP - only HTTPS, yet many seem to be responding to the question of sending a password over HTTP for some reason. That said:

I believe passwords should never be retained (let alone transmitted) in plain text. That means not kept on disk, or even in memory.

People responding here seem to think HTTPS is a silver bullet, which it is not. It certainly helps greatly however, and should be used in any authenticated session.

There is really no need to know what an original password is. All that is required is a reliable way to generate (and reliably re-generate) an authentication "key" based on the original text chosen by the user. In an ideal world this text should immediately generate a "key" by salting then irreversibly hashing it using an intentionally slow hash-algorithm (like bcrypt, to prevent Brute-force). Said salt should be unique to the user credential being generated. This "key" will be what your systems use as a password. This way if your systems ever get compromised in the future, these credentials will only ever be useful against your own organisation, and nowhere else where the user has been lazy and used the same password.
2022-09-02 13:38:12 +08:00
回复了 wenzaiquan199 创建的主题 问与答 为安全问题,早上公司热烈讨论
@twl007 要是 HTTPS 就够了要那么多安全等级标准干什么,一个标准就够了
2022-09-02 13:34:59 +08:00
回复了 wenzaiquan199 创建的主题 问与答 为安全问题,早上公司热烈讨论
@twl007 拦截篡改你也得知道改哪儿才行。
2022-09-02 09:19:18 +08:00
回复了 fox0001 创建的主题 Linux [请教]是否能够不分发私钥,实现多人共享 ssh 验证?
@fox0001 jumpserver 就挺好
2022-09-02 08:55:50 +08:00
回复了 fox0001 创建的主题 Linux [请教]是否能够不分发私钥,实现多人共享 ssh 验证?
有一些开源的跳板机系统,权限管理带 webui 的
2022-09-02 08:48:49 +08:00
回复了 wenzaiquan199 创建的主题 问与答 为安全问题,早上公司热烈讨论
@Chihaya0824 只需要套一层非对称加密就行。因为 HTTPS / TLS 中验证公钥是基于证书链的,在不受信任的电脑上会很容易被中间人攻击。但是自己分发公钥就不一样了,可以固定写在源码里,也可以单独下发。别人想中间人攻击得改你的源码(下发响应),无疑是增加难度的。 使用标准 HTTPS 别人一旦针对 HTTTPS 做中间人,所有网站都跑不掉。你自己专有的加密逻辑,工攻击者需要专门针对你的代码逻辑进行攻击。

具体实践可以参考微博登录,就是使用了 RSA 加密后传输。
2022-09-02 00:47:15 +08:00
回复了 dzdh 创建的主题 Go 编程语言 在 TLS 上 Go 比 Nginx 厉害这么多吗?
Qps 相差 40 倍,带宽却几乎差不多。顺着这个往下查就行了
2022-09-01 23:53:01 +08:00
回复了 wenzaiquan199 创建的主题 问与答 为安全问题,早上公司热烈讨论
这楼真能看出程序员平均水平…
2022-09-01 23:51:32 +08:00
回复了 wenzaiquan199 创建的主题 问与答 为安全问题,早上公司热烈讨论
@twl007 囧 无言以对 不想反驳了
2022-09-01 23:49:04 +08:00
回复了 wenzaiquan199 创建的主题 问与答 为安全问题,早上公司热烈讨论
@Chihaya0824 想怎么分发就怎么分发呀,HTTPS 基于 tls 就能替代 tls 了?
2022-08-31 23:51:46 +08:00
回复了 wenzaiquan199 创建的主题 问与答 为安全问题,早上公司热烈讨论
`我网上搜了搜,觉得前端目前拿不出什么方案加密比 https 安全`

-- 没搜到非对称加密方案?
2022-08-21 20:30:21 +08:00
回复了 youliabc 创建的主题 北京 说说北京的三甲医院
如果是急诊可以快,你这种不是很急只能等着了
2022-08-11 23:04:06 +08:00
回复了 voidmnwzp 创建的主题 程序员 手写 api 文档写得想跑路了
stoplight 了解一下
2022-08-05 19:47:01 +08:00
回复了 nutting 创建的主题 程序员 swagger yaml 手写?
推荐 stoplight 客户端
2022-08-02 11:45:37 +08:00
回复了 dingyaguang117 创建的主题 问与答 如何降低 webpack 打包时的内存占用
@IvanLi127 测试 加 SWAP 可行,目前没再挂过了
2022-08-01 21:28:56 +08:00
回复了 dingyaguang117 创建的主题 问与答 如何降低 webpack 打包时的内存占用
@makelove 我试试你的
2022-08-01 21:28:42 +08:00
回复了 dingyaguang117 创建的主题 问与答 如何降低 webpack 打包时的内存占用
@makelove 加了 2g 实际跑到 2.9G 不知道为啥没生效
2022-08-01 20:45:04 +08:00
回复了 dingyaguang117 创建的主题 问与答 如何降低 webpack 打包时的内存占用
PS:机器本身 8G , 还跑了 Jenkins 占 1-3G 左右。每次挂的其实不是 node 进程,而是 Jenkins 。 观察到内存一大飙起来 Jenkins 先挂了,导致构建也失败了。 也不知道为啥杀进程策略每次都是先杀 Jenkins 。Jenkins 重启之后刚开始内存还不大,这时候立即构建一次一般能成功。
2022-08-01 20:42:22 +08:00
回复了 dingyaguang117 创建的主题 问与答 如何降低 webpack 打包时的内存占用
@rabbbit 只有一个呢.. 怎么分析是 构建哪个库 的问题?删掉一些依赖 试试?
2022-08-01 20:41:32 +08:00
回复了 dingyaguang117 创建的主题 问与答 如何降低 webpack 打包时的内存占用
@ragnaroks 页面不多,感觉可能是 引用了一些巨型组件: monaco 这种
1 ... 3  4  5  6  7  8  9  10  11  12 ... 74  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2268 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 26ms · UTC 16:10 · PVG 00:10 · LAX 08:10 · JFK 11:10
Developed with CodeLauncher
♥ Do have faith in what you're doing.