1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
// Copyright 2025 Dillution <[email protected]>.
//
// This file is part of DPIBreak.
//
// DPIBreak is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the
// Free Software Foundation, either version 3 of the License, or (at your
// option) any later version.
//
// DPIBreak is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
// for more details.
//
// You should have received a copy of the GNU General Public License
// along with DPIBreak. If not, see <https://www.gnu.org/licenses/>.
fn bytes_to_usize(bytes: &[u8], size: usize) -> Option<usize> {
Some(match size {
1 => bytes[0] as usize,
2 => u16::from_be_bytes(bytes.try_into().ok()?) as usize,
3 => {
((bytes[0] as usize) << 16)
| ((bytes[1] as usize) << 8)
| (bytes[2] as usize)
}
4 => u32::from_be_bytes(bytes.try_into().ok()?) as usize,
8 => u64::from_be_bytes(bytes.try_into().ok()?) as usize,
_ => return None,
})
}
struct TLSMsg<'a> {
ptr: usize,
payload: &'a [u8]
}
impl<'a> TLSMsg<'a> {
fn new(payload: &'a [u8]) -> Self {
Self { ptr: 0, payload }
}
fn pass(&mut self, size: usize) {
self.ptr += size;
}
fn get_bytes(&mut self, size: usize) -> Option<&'a [u8]> {
if size == 0 || self.ptr + size > self.payload.len() {
return None;
}
let end = self.ptr + size;
let ret = &self.payload[self.ptr..end];
self.ptr = end;
Some(ret)
}
fn get_uint(&mut self, size: usize) -> Option<usize> {
bytes_to_usize(self.get_bytes(size)?, size)
}
fn get_ptr(&self) -> usize {
self.ptr
}
}
pub fn is_client_hello(payload: &[u8]) -> bool {
let mut record = TLSMsg::new(payload);
if record.get_uint(1) != Some(22) { // type
return false; // not handshake
}
record.pass(2); // legacy_record_version
record.pass(2); // length
if record.get_ptr() >= payload.len() {
return false;
}
let fragment = &record.payload[record.get_ptr()..]; // fragment
if TLSMsg::new(fragment).get_uint(1) != Some(1) { // msg_type
return false; // not clienthello
}
true
}
|