我有一些空闲时间,我正在考虑选择一个新项目来娱乐。我是一名大学生,每年我们都会举办在线推介比赛。我想为这个距现在大约 9 个月的音高比赛创建一个项目。问题是该项目需要非常高的安全性并且竞争非常激烈。
我需要做的事情: 1. 存储 HIPAA 或 ePHI (.pdf|.gif|.jpg|.doc) 2. 强大的访问控制 3. 支持大量用户和文件(100 万+) 4. 完整审计报告(哦 ePhi,你真痛苦) 5. 加密
建议的解决方案
0) 将 Web 应用程序放在防火墙后面的安全专用服务器上
1) 将文件存储在一个名为“secure_files/”的文件中,然后使用 mod_rewrite 限制对该目录的访问。
类似的东西:
#Removes access to the secure_files folder by users.
RewriteCond %{REQUEST_URI} ^secure_files.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
如果用户有权限,则使用 php 脚本打开文件。那么我可以使用:
------
-SQL
------
------
- create files table
-----
CREATE TABLE `files` (
id INT NOT NULL AUTO_INCREMENT,
file_name VARCHAR(50) NOT NULL,
PRIMARY KEY('id')
);
------
- create files table
-----
CREATE TABLE `privileges` (
uesr_id INT NOT NULL,
file_id INT NOT NULL,
);
------
- create users table
-----
CREATE TABLE `users` (
id INT NOT NULL AUTO_INCREMENT,
name VARCHAR(20) NOT NULL,
email VARCHAR(50) NOT NULL,
password CHAR(40) NOT NULL,
PRIMARY KEY('id')
);
<?php
public function get_user_files($filename)
{
//this is set during login
$user_id = $this->session->userdata('user_id');
//check to see if the user has privileges to access the file and gets the file name
$query = $this->db->join('privileges','privileges.id = files.id')
->select('files.file_name')
->where('privileges.user_id',$user_id)
->where('files.file_name',$file_name)
->limit(1)
->get('files');
$file = $query->row()->files.file_name;
if($file)
{
//user has privileges to access the file so include it
$handle = fopen($file, "rb");
$data['file'] = fread($handle, filesize($file));
fclose($handle);
}
$this->load->view('files',$data);
}
?>
2) 使用 CI 会话类将“用户”添加到会话中。
控制器检查是否设置了会话:
<?php
public function __construct()
{
parent::__construct();
if($this->secure(array('userType' => 'user')) == FALSE)
{
$this->session->set_flashdata('flashError', 'You must be logged into a valid user account to access this section.');
$this->session->sess_destroy();
redirect('login');
}
}
function secure($options = array())
{
$userType = $this->session->userdata('userType');
if(is_array($options['userType']))
{
foreach($options['userType'] as $optionUserType)
{
if($optionUserType == $userType) return true;
}
}
else
{
if($userType == $options['userType']) return true;
}
return false;
}
?>
3)在多个网络服务器之间轮换。我从来没有这样做过,所以我不知道该怎么做。我不知道如何处理多个数据库服务器。有什么想法/建议吗?
4) 使用 Oracle Enterprise Standard 数据库审计。我希望我可以使用 MySQL,但我找不到任何审计支持。我可以使用 MySQL 并使用 PITA。有没有人在 MySQL 中使用过时间点架构 (PITA)?你能分享你的经验吗?
5)所以很明显我可以用单向加盐散列来散列密码。但是我需要加密一切吗?另外,我根本看不到 AES_ENCRYPT(str,key_str) 如何提高安全性。我想这可能会阻止管理员查看数据库?我可以/应该加密“secure_files/”文件夹中的所有内容吗?我可以只使用像 BitLocker 这样的全盘加密吗?
基本上我可以用php和CI实现网上银行级别的安全吗?除了毫无价值的“你的白痴去付钱给专家,因为你什么都不知道”的建议之外,你还能提出任何其他建议吗?
感谢您花时间阅读本文。
从 Redux Auth 采用
关于单向哈希。我说加密的错误。我通常会做类似的事情:
salt_length = '9'; } 公共函数哈希($password = false){ $salt_length = $this->salt_length; if ($password === false) { return false; } $salt = $this->salt(); $密码= $盐。substr(hash('sha256',$salt . $password), 0, -$salt_length); 返回$密码;} 私有函数 salt() { return substr(md5(uniqid(rand(), true)), 0, $this->salt_length); } } ?>