Skip to content

Commit

Permalink
Release of version 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ra1nb0rn committed Jul 21, 2020
1 parent 9b16eb0 commit fa5bf31
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions avain.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"


Expand Down Expand Up @@ -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()

Expand Down

0 comments on commit fa5bf31

Please sign in to comment.