- New VERSION 1.0.2

- Add a CHANGELOG
- Add note to webfilter.c
- CHANGELOG and VERSION now included in release packages.
This commit is contained in:
basil00
2012-12-25 18:26:23 +08:00
parent 700f91e7fb
commit 89bf2fb622
5 changed files with 22 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
WinDivert 1.0.0
- First release of WinDivert 1.0
WinDivert 1.0.1
- Fixed stack overflow bug in 32bit versions of the driver.
WinDivert 1.0.2
- WinDivert now requires Administrator privileges in order to access
(as opposed to just install) the WinDivert device.
+2 -2
View File
@@ -22,7 +22,7 @@ need to intercept and modify packets, then WinDivert is for you.
The features of WinDivert include:
- packet interception, sniffing, or dropping modes
- fully supports loopback (localhost) traffic
- support for loopback (localhost) traffic
- full IPv6 support
- network layer
- simple and powerful API
@@ -131,7 +131,7 @@ For further information, or bug reports, please contact
The homepage for WinDivert is
http://reqrypt.org/divert.html
http://reqrypt.org/windivert.html
The source code for WinDivert is hosted by GitHub at
+1 -1
View File
@@ -1 +1 @@
1.0.1
1.0.2
+8
View File
@@ -444,6 +444,14 @@ memory_error:
/*
* Attempt to parse a URL and match it with the blacklist.
*
* BUG:
* - This function makes several assumptions about HTTP requests, such as:
* 1) The URL will be contained within one packet;
* 2) The HTTP request begins at a packet boundary;
* 3) The Host header immediately follows the GET/POST line.
* Some browsers, such as Internet Explorer, violate these assumptions
* and therefore matching will not work.
*/
static BOOL BlackListPayloadMatch(PBLACKLIST blacklist, char *data, UINT16 len)
{
+4
View File
@@ -36,8 +36,12 @@ do
mkdir -p $INSTALL
echo "\tcopy $INSTALL/README..."
cp README $INSTALL
echo "\tcopy $INSTALL/CHANGELOG..."
cp CHANGELOG $INSTALL
echo "\tcopy $INSTALL/LICENSE..."
cp LICENSE $INSTALL
echo "\tcopy $INSTALL/VERSION..."
cp VERSION $INSTALL
echo "\tmake $INSTALL/include..."
mkdir -p $INSTALL/include
echo "\tcopy $INSTALL/include/divert.h..."