1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-11-21 19:01:36 +03:00
Commit Graph

1120 Commits

Author SHA1 Message Date
e5ddb3c91b Update strtable_ru.stb 2020-03-19 14:35:39 +03:00
6e508e3048 Update strtable_ru.stb 2020-03-19 14:19:04 +03:00
5e4c6ef681 Update strtable_ru.stb 2020-03-19 13:54:10 +03:00
c5fd4a4711 Update strtable_ru.stb 2020-03-19 13:32:52 +03:00
247bb3db09 Update strtable_ru.stb 2020-03-19 13:11:02 +03:00
f556f0449b Update strtable_ru.stb 2020-03-19 12:07:38 +03:00
37998eee7e Update strtable_ru.stb 2020-02-07 18:45:53 +03:00
8f3e1051c9 Update strtable_ru.stb 2020-01-21 17:26:00 +03:00
74529ebf15 Update strtable_ru.stb 2019-12-02 06:21:33 +03:00
2691764ca9 Update strtable_ru.stb 2019-11-29 07:48:17 +03:00
d14f044577 Update strtable_ru.stb 2019-11-25 17:32:30 +03:00
982513e2a0 Update strtable_ru.stb 2019-11-25 17:24:59 +03:00
c397172ae6 Update strtable_ru.stb 2019-11-25 16:40:16 +03:00
860d80f4fa Update strtable_ru.stb 2019-11-25 14:30:13 +03:00
55eb133c1f Update strtable_ru.stb 2019-11-25 13:45:24 +03:00
5e09f38f0a Update strtable_ru.stb 2019-11-24 22:48:34 +03:00
37ea799ca6 Update strtable_ru.stb 2019-11-24 20:11:13 +03:00
421778dc62 Update strtable_ru.stb 2019-11-24 19:40:12 +03:00
9749301e89 Update strtable_ru.stb 2019-11-24 01:45:57 +03:00
9c66fff31c Update strtable_ru.stb 2019-11-21 08:39:38 +03:00
00a513f0f3 Update strtable_ru.stb 2019-11-21 08:37:51 +03:00
b9186152bb Update strtable_ru.stb 2019-11-20 17:59:46 +03:00
2200aabe17 Update strtable_ru.stb 2019-11-20 17:50:57 +03:00
890ba8ba18 Update strtable_ru.stb 2019-11-20 16:38:13 +03:00
5fcd91c390 Update strtable_ru.stb 2019-11-16 21:42:06 +03:00
adb2e0bbbf Update strtable_ru.stb 2019-11-16 20:51:15 +03:00
b4693ab973 Update strtable_ru.stb 2019-11-16 19:44:57 +03:00
f7f1675f6c Update strtable_ru.stb 2019-11-13 17:39:59 +03:00
2a48f85636 Update strtable_ru.stb 2019-11-11 22:29:48 +03:00
3e487bb196 Update strtable_ru.stb 2019-11-11 21:25:46 +03:00
a136957dfc Update strtable_ru.stb 2019-11-10 19:46:36 +03:00
6d9f78ff48 Update strtable_ru.stb 2019-11-10 15:02:16 +03:00
73bacbad2d Update strtable_ru.stb 2019-11-10 14:11:45 +03:00
ec67ec6f5b Update strtable_ru.stb 2019-11-07 17:15:12 +03:00
faaf7e3531 Update strtable_ru.stb 2019-11-07 14:29:55 +03:00
a0fa4ac1ad Update strtable_ru.stb 2019-11-07 11:59:08 +03:00
e2e8562035 Update strtable_ru.stb 2019-11-02 00:03:00 +03:00
faaad016d9 Update strtable_ru.stb 2019-10-28 17:40:21 +03:00
b78bb4f9d1 Update strtable_ru.stb 2019-10-28 16:16:08 +03:00
9c767d7367 Update strtable_ru.stb 2019-10-28 14:11:23 +03:00
f8cafc7844 Update strtable_ru.stb 2019-10-28 13:04:41 +03:00
08181a3520 Create strtable_ru.stb 2019-10-28 12:21:26 +03:00
4da4f3f5c3 Merge pull request #1 from SoftEtherVPN/master
new
2019-10-28 12:20:02 +03:00
cc65b49014 Create strtable_ru.stb 2019-10-28 12:19:37 +03:00
fd73baa06d Delete strtable_ru.stb 2019-10-28 12:17:14 +03:00
dce351ab3b Update strtable_ru.stb 2019-10-28 12:11:44 +03:00
1e835e7ec2 Merge PR #1020: Proto_OpenVPN.c: improve OvsProcessData(), fix out-of-bounds access found by Coverity 2019-10-27 09:37:11 +01:00
5d73cd878f Proto_OpenVPN.c: improve OvsProcessData(), fix out-of-bounds access found by Coverity
Coverity Scan detected an out-of-bounds access issue: OvsProcessData() checked whether the payload size was bigger than the size of the buffer, instead of checking whether the entire packet size (payload size + 2 bytes) was, resulting in an out-of-bounds access in case the payload size is bigger than 1998.

This commit also improves the variable names, the comments and adds two Debug() lines.
2019-10-27 09:01:56 +01:00
7349c4b16a Merge PR #1018: Proto_OpenVPN.c: fix segmentation fault in OvsProceccRecvPacket() 2019-10-26 00:53:27 +02:00
16bde47763 Proto_OpenVPN.c: fix segmentation fault in OvsProceccRecvPacket()
OvsDecrypt() returns 0 when it fails, resulting in "size" rolling over with an end result of 4294967292.

This commit fixes the issue by checking whether "size" is greater than sizeof(UINT) before performing the subtraction.
2019-10-26 00:36:07 +02:00