diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 12fec79..6b3fcaf 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,7 @@ +Version 3.1 +----------- +* HTML and text NBI after-reporting courtesy of @3V3RYONE and @tinajohnson + Version 3.0 (alpha) ----------- * Migrate diverters, listeners and other components to Python 3 diff --git a/docs/contributors.md b/docs/contributors.md index ed57688..9185aef 100644 --- a/docs/contributors.md +++ b/docs/contributors.md @@ -33,3 +33,11 @@ and Hidden Listener mechanisms for introducing both of these content-based protocol detection features to FakeNet-NG. Matthew Haigh then [implemented Content-Based Protocol Detection](https://www.fireeye.com/blog/threat-research/2017/10/fakenet-content-based-protocol-detection.html). + +## HTML- and Text-Based NBI After-Reporting + +Google Summer of Code contributor Beleswar Prasad (@3V3RYONE) worked with +mentor Tina Johnson (@tinajohnson) to add HTML- and text-based reporting of +network-based indicators (NBIs) to FakeNet-NG, requiring significant work +throughout the codebase to facilitate the necessary communication and tracking +between components. diff --git a/fakenet/fakenet.py b/fakenet/fakenet.py index c395b97..d3e5125 100644 --- a/fakenet/fakenet.py +++ b/fakenet/fakenet.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016-2023 Mandiant, Inc. All rights reserved. +# Copyright (C) 2016-2024 Mandiant, Inc. All rights reserved. #!/usr/bin/env python # @@ -338,10 +338,10 @@ def main(): | | / ____ \| . \| |____| |\ | |____ | | | |\ | |__| | |_|/_/ \_\_|\_\______|_| \_|______| |_| |_| \_|\_____| - Version 3.0 (alpha) + Version 3.1 _____________________________________________________________ Developed by FLARE Team - Copyright (C) 2016-2022 Mandiant, Inc. All rights reserved. + Copyright (C) 2016-2024 Mandiant, Inc. All rights reserved. _____________________________________________________________ """) diff --git a/setup.py b/setup.py index 7edfb39..9b2fbae 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( name='FakeNet NG', - version='3.0', + version='3.1', description="", long_description="", author="Mandiant FLARE Team with credit to Peter Kacherginsky as the original developer",