Skip to content

Commit

Permalink
Merge pull request #142 from fireeye/release/1.4.11
Browse files Browse the repository at this point in the history
Release v1.4.11
  • Loading branch information
mlhaigh committed Mar 24, 2020
2 parents 85da811 + 381e11e commit e9c2ee5
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 35 deletions.
67 changes: 33 additions & 34 deletions docs/developing.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,40 +221,39 @@ structure:

```
fakenet1.4.3\
+-- LICENSE.txt
+-- CHANGELOG.txt
+-- fakenet.exe
+-- README.md
|
+-- docs\
|   +-- contributors.md
|   +-- CustomResponse.md
|
+-- configs\
|   +-- CustomProviderExample.py
|   +-- default.ini
| +-- CustomProviderExample.py
|   +-- sample_custom_response.ini
| +-- sample_raw_response.txt
| +-- sample_raw_tcp_response.txt
|
+-- defaultFiles\
| +-- FakeNet.gif
| +-- FakeNet.html
| +-- FakeNet.ico
| +-- FakeNet.jpg
| +-- FakeNetMini.exe
| +-- FakeNet.pdf
| +-- FakeNet.png
| +-- FakeNet.txt
| +-- ncsi.txt
|
+-- listeners\
   +-- ssl_utils
+-- __init__.pyc
+-- privkey.pem
+-- server.pem
+-- ssl_detector.py
+-- LICENSE.txt
+-- CHANGELOG.txt
+-- fakenet.exe
+-- README.md
|
+-- docs\
|   +-- contributors.md
|   +-- CustomResponse.md
|
+-- configs\
|   +-- default.ini
| +-- CustomProviderExample.py
|   +-- sample_custom_response.ini
| +-- sample_raw_response.txt
| +-- sample_raw_tcp_response.txt
|
+-- defaultFiles\
| +-- FakeNet.gif
| +-- FakeNet.html
| +-- FakeNet.ico
| +-- FakeNet.jpg
| +-- FakeNetMini.exe
| +-- FakeNet.pdf
| +-- FakeNet.png
| +-- FakeNet.txt
| +-- ncsi.txt
|
+-- listeners\
   +-- ssl_utils
+-- __init__.pyc
+-- privkey.pem
+-- server.pem
+-- ssl_detector.py
```

FireEye only:
Expand Down
2 changes: 1 addition & 1 deletion fakenet/listeners/RawListener.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def checkSetting(d, name, value):
if self.server.custom_response:
msg = ('Only one %s Custom Response can be configured '
'at a time' % (proto))
raise(msg)
raise RuntimeError(msg)

self.server.custom_response = (
RawCustomResponse(proto, section, entries, configdir))
Expand Down

0 comments on commit e9c2ee5

Please sign in to comment.