Commit 830e7db 1 parent 011b6d4 commit 830e7db Copy full SHA for 830e7db
File tree 4 files changed +8
-4
lines changed
4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change
1
+ Version 1.4.3
2
+ -------------
3
+ * Fixed unbound `proto` variable error in Windows PyDivert error case
4
+
1
5
Version 1.4.2
2
6
-------------
3
7
* Updated contact information
Original file line number Diff line number Diff line change @@ -203,11 +203,11 @@ def divert_thread(self):
203
203
if pkt .proto :
204
204
protocol = pkt .proto
205
205
elif pkt .is_icmp :
206
- proto = 'ICMP'
206
+ protocol = 'ICMP'
207
207
208
208
self .logger .error ('ERROR: Failed to send %s %s %s packet' ,
209
209
self .pktDirectionStr (pkt ),
210
- self .pktInterfaceStr (pkt ), proto )
210
+ self .pktInterfaceStr (pkt ), protocol )
211
211
self .logger .error (' %s' % (pkt .hdrToStr ()))
212
212
self .logger .error (' %s' , e )
213
213
Original file line number Diff line number Diff line change @@ -274,7 +274,7 @@ def main():
274
274
| | / ____ \| . \| |____| |\ | |____ | | | |\ | |__| |
275
275
|_|/_/ \_\_|\_\______|_| \_|______| |_| |_| \_|\_____|
276
276
277
- Version 1.4.2
277
+ Version 1.4.3
278
278
_____________________________________________________________
279
279
Developed by FLARE Team
280
280
_____________________________________________________________
Original file line number Diff line number Diff line change 23
23
24
24
setup (
25
25
name = 'FakeNet NG' ,
26
- version = '1.4.2 ' ,
26
+ version = '1.4.3 ' ,
27
27
description = "" ,
28
28
long_description = "" ,
29
29
author = "FireEye FLARE Team with credit to Peter Kacherginsky as the original developer" ,
You can’t perform that action at this time.
0 commit comments