php会员系统有哪些安全功能

发布于 2024-11-27 17:34:06 字数 124 浏览 2 评论 0原文

正如标题所说,基于 php 的会员系统最常见的安全功能是什么。我知道一些:

  • mysql注入
  • 安全连接
  • 加密密码和其他敏感数据。

还有什么?

just like the title says, what are the most common security features of a php based membership system. A few I know:

  • mysql injections
  • secured connection
  • encrypted password(s) and other sensitive data.

What else?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

人疚 2024-12-04 17:34:06

身份验证!=授权是我想到的另一种方式。

Authentication != Authorization is another one that comes to mind.

如果没有 2024-12-04 17:34:06

可以在这里找到详细的攻击列表:
https://www.owasp.org/index.php/Category:攻击

一些方法:

  • 滥用代码功能(错误编码)
  • 数据结构攻击
  • 嵌入恶意代码(XSS)
  • 利用身份验证
  • 注入
  • 路径遍历攻击(include($_GET['file']))
  • 协议操纵
  • 资源耗尽 (DOS/DDOS)
  • 资源操纵
  • 嗅探攻击
  • 欺骗 (COOKIES)

An extensive list of attacks can be found here:
https://www.owasp.org/index.php/Category:Attack

Some methods:

  • Abuse of Code Functionality (Bad Coding)
  • Data Structure Attacks
  • Embedding Malicious Code (XSS)
  • Exploitation of Authentications
  • Injections
  • Path Traversal Attacks (include($_GET['file']))
  • Protocol Manipulation
  • Resource Depletion (DOS/DDOS)
  • Resource Manipulation
  • Sniffing Attacks
  • Spoofing (COOKIES)
迷爱 2024-12-04 17:34:06

其他一些需要考虑的事情:

  • 会话安全(会话变量如何设置?某人的会话 ID 会被盗吗? 会话固定可能吗?)
  • 您的表单是否受到XSS
  • 你们是否有任何机制来防止暴力攻击,例如在 X 次尝试失败后锁定 IP 地址?您是否需要跟踪谁登录了给定帐户? (例如,如果您的网站仅由居住在美国的人运行,如果有人从东南亚的 IP 地址登录管理员帐户,您是否应该收到通知?)

Some other things to think about:

  • Session security (How are session variables set? Can someone's session ID be stolen? Is session fixation possible?)
  • Are your forms protected against XSS?
  • Do you have any mechanism to prevent brute-force attacks, like locking out an IP address after X failed attempts? Do you need to keep track of who logs into a given account? (e.g., should you be notified if someone logs into an administrator account from an IP address in southeast Asia if your site is run solely by people who live in the US?)
扮仙女 2024-12-04 17:34:06

最低密码要求是绝对必要的。另外,使用某种类型的验证码。

Minimal password requirements are a definite must. Also, use some type of CAPTCHA.

岁吢 2024-12-04 17:34:06

以下链接显示了一些重要的安全问题:

链接

Here is a link that shows some important security issues:

link

删除→记忆 2024-12-04 17:34:06

不一定是安全功能,但系统的用户体验不应该令人困惑。大多数用户都见过uname/pword 登录表单,有些用户见过OAuth/OpenId。除此之外,你进入了一个需要确保你的意图明确的世界。

Not necessarily a security feature, but the user experience of the system should not be confusing. Most users have seen the uname/pword login form and some have seen OAuth/OpenId. Beyond that you enter a world where you need to ensure your intentions are clear.

寂寞清仓 2024-12-04 17:34:06

我列出了这里最常见的安全问题:流行的PHP CMS的历史安全缺陷?

它缺乏授权!=身份验证问题barfon回答,所有反垃圾邮件保护您应该有,而且我确定还有一些我现在想不到的其他事情。

I made a small list of the most usual security problem seen in here : Historical security flaws of popular PHP CMS's?

It lacks the authorization != authentication problem barfon answered, all the anti spam protection you should have and I'm sure some other things I can't think of right now.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文