gpt4 book ai didi

javascript - 如何保护聊天消息免受中间人攻击(PHP、JavaScript)

转载 作者:行者123 更新时间:2023-12-03 11:32:05 25 4
gpt4 key购买 nike

我目前正在为我的网站开发聊天系统。我不知道如何保护消息的完整性。我目前正在通过

chat.class.php

class Chat{
private $config;
private $randomJSONrpc;
private $MySQL;

function __construct($config = 'chat.config.json') {
$this->config = $config;
unset($config);
if(file_exists($this->config)) {
$config = json_decode(file_get_contents($this->config), false);
$config->configfile = $this->config;
$this->config = $config;
unset($config);
} else {
$this->error('Configtest');
}

require_once 'jsonrpc.class.php';
$jsonrpc = new JsonRpcClient('https://api.random.org/json-rpc/1/invoke');
$this->randomJSONrpc = $jsonrpc;
unset($jsonrpc);

$this->MySQL = $this->database();
}

private function database() {
if($this->config->salt == 'random') {
$random = $this->random(8, 'string');
$this->config->salt = $random;
$file = $this->config->configfile;
unset($this->config->configfile);
file_put_contents($file, json_encode($this->config));
}
$mysql_function = $this->config->drivers->mysql;
if($mysql_function == 'mysqli') {
$connection = new MySqLi($this->config->mysql->host, $this->config->mysql->user, $this->config->mysql->password, $this->config->mysql->database)or $this->error('MySQL connection', mysqli_error());
return $connection;
} else {
error('MySQLi connection driver');
}
}

public function hash($input, $algo = 'blowfish') {
if($algo == 'blowfish') {
$hash_algo = '$2a';
$cost = '$10';
} elseif($algo == 'md5') {
$hash_algo = '$1';
$cost = '';
} else {
$this->error('Algo availibility check', 'chat.class.php#class:Chat->hash('.$input.', '.$algo.')');
}
$salt = substr(sha1($this->config->salt),0,22);
return crypt($input, $hash_algo.$cost.'$'.$salt);
}

public function random($length, $address = 'string') {
$jsonrpc = $this->randomJSONrpc;
if($address == 'string') {
$params = new stdClass;
$params->apiKey = $this->config->RANDOMapiKey;
$params->n = 1;
$params->length = $length;
$params->characters = 'abcdefghijklmnopqrstuvwxyz1234567890';
$params->replacement = true;
$data = $jsonrpc->generateStrings($params);
return $data->random->data[0];
} else {
$this->error('JSON-RPC address test');
}
}

public function readNewMessages() {
return 'dev.testing';
}

private function error($test, $extrainfo = false, $status = false) {
if($status == false AND $extrainfo == false) {
die($test.': <span style="color: red;">FAILED</span><br />'.PHP_EOL);
} elseif($status != false AND $extrainfo == false) {
echo $test.': <span style="color: green;">OK</span><br />'.PHP_EOL;
} elseif($status == false AND $extrainfo != false) {
die($test.': <span style="color: red;">FAILED('.$extrainfo.')</span><br />'.PHP_EOL);
} elseif($status != false AND $extrainfo != false) {
echo $test.': <span style="color: green;">OK('.$extrainfo.')</span><br />'.PHP_EOL;
}
}
}
?>

chat.php 应该检索新帖子

<?php
header('Content-Type: application/json');
include 'chat.class.php';
$chat = new Chat();
if(session_id()) {
session_close();
}

$i = 1;
$message = null;
while(!$message) {
sleep(1);
$data = $chat->readNewMessages();
$i++;
}
$response = array('data' => $data, 'itnegrity' => //here I wondered how to save the integrity. );
echo json_encode($message);
?>

我有三样东西,我可能会用到。

  1. MD5 哈希我的消息
  2. 使用 SSL
  3. 通过客户端生成的密码对消息进行加密,该密码会使用用户密码加密发送到服务器,并使用用户密码加密发送回服务器。

该应用程序仍在开发中,无法运行。我想使用长轮询从服务器检索消息或心跳。

最佳答案

选项 #1 本身并不是答案,任何人都可以进行哈希处理,包括攻击者。

如果不使用 SSL,MITM 可以更改客户端上的代码。只是也许您可以在没有 SSL 的情况下使用消息身份验证代码交换 XML 编码的消息(如选项#3 中所示),但我想知道通过 SSL 您会得到什么; SSL非常可能更加高效并且安全。

所以最后 - 通常情况下 - 如果客户端是浏览器,您就只剩下 SSL。这就是选项#2。

关于javascript - 如何保护聊天消息免受中间人攻击(PHP、JavaScript),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26693227/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com