From fa5bf3118f5cba46a74bacae1438eb24ce73c901 Mon Sep 17 00:00:00 2001 From: Dustin Born Date: Wed, 22 Jul 2020 01:15:20 +0200 Subject: [PATCH] Release of version 0.1.3 --- CHANGELOG.md | 23 +++++++++++++++++++++++ avain.py | 8 ++++---- 2 files changed, 27 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 022e084..67f0897 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,29 @@ # Changelog This file keeps track of all notable changes between the different versions of AVAIN. +## v0.1.3 - 2020-07-22 +### Added +- SQL Injection detection module +- SMB enumeration module +- WPScan module +- CVE correlation module additionally retrieves Exploit DB IDs +- Regexes of paths not to crawl / visit can be specified via config +- Add globally reachable configuration profiles +- Add alternative configurations +- Wrapper script around CVE correlation module that enables usage outside of AVAIN framework +- Kill function for modules +- Previous output directory can be specified as input +- Sample result and demonstration video +### Changed +- Overall accuracy of CVE correlation module was improved +- In the CVE correlation module, the retrieval of CVEs where the queried CPE is not the primarily vulnerable software can be turned on and off via the config +- AVAIN explicitly cannot run twice at the same time +- The installation script explicitly removes the NVD database before reinstalling it to cope with DB schemata updates +- --non-verbose flag is now the --quiet flag +- -sN flag now means --separate-networks instead of --single-network +### Fixed +- Various small bugs + ## v0.1.2 - 2019-09-22 ### Added - A very detailed wiki diff --git a/avain.py b/avain.py index 93030ea..484ef3a 100755 --- a/avain.py +++ b/avain.py @@ -10,8 +10,8 @@ import core.utility as util # The following metadata applies to all source code files of AVAIN -__author__ = "Dustin Born" -__version__ = "0.1.2" +__author__ = "Dustin Born (ra1nb0rn)" +__version__ = "0.1.3" __license__ = "MIT" @@ -204,8 +204,8 @@ def banner(): {0} /_/ |_||___//_/ |_|/___//_/ |_/ {1} {0} {0} {0}\ """.format(border_color + "|" + avain_color, util.BRIGHT_GREEN + "(%s)" % __version__ + border_color)) - print(border_color + "|" + sane + " " * 25 + by_color + "[ Created by - Dustin Born ]" + - sane + " " * 25 + border_color + "|" + sane) + print(border_color + "|" + sane + " " * 19 + by_color + "[ Created by - Dustin Born (ra1nb0rn) ]" + + sane + " " * 20 + border_color + "|" + sane) util.printit("|" + "-" * 78 + "|", color=border_color) print()