Skip to content

Commit fa5bf31

Browse files
committed
Release of version 0.1.3
1 parent 9b16eb0 commit fa5bf31

File tree

2 files changed

+27
-4
lines changed

2 files changed

+27
-4
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11
# Changelog
22
This file keeps track of all notable changes between the different versions of AVAIN.
33

4+
## v0.1.3 - 2020-07-22
5+
### Added
6+
- SQL Injection detection module
7+
- SMB enumeration module
8+
- WPScan module
9+
- CVE correlation module additionally retrieves Exploit DB IDs
10+
- Regexes of paths not to crawl / visit can be specified via config
11+
- Add globally reachable configuration profiles
12+
- Add alternative configurations
13+
- Wrapper script around CVE correlation module that enables usage outside of AVAIN framework
14+
- Kill function for modules
15+
- Previous output directory can be specified as input
16+
- Sample result and demonstration video
17+
### Changed
18+
- Overall accuracy of CVE correlation module was improved
19+
- 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
20+
- AVAIN explicitly cannot run twice at the same time
21+
- The installation script explicitly removes the NVD database before reinstalling it to cope with DB schemata updates
22+
- --non-verbose flag is now the --quiet flag
23+
- -sN flag now means --separate-networks instead of --single-network
24+
### Fixed
25+
- Various small bugs
26+
427
## v0.1.2 - 2019-09-22
528
### Added
629
- A very detailed wiki

avain.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
import core.utility as util
1111

1212
# The following metadata applies to all source code files of AVAIN
13-
__author__ = "Dustin Born"
14-
__version__ = "0.1.2"
13+
__author__ = "Dustin Born (ra1nb0rn)"
14+
__version__ = "0.1.3"
1515
__license__ = "MIT"
1616

1717

@@ -204,8 +204,8 @@ def banner():
204204
{0} /_/ |_||___//_/ |_|/___//_/ |_/ {1} {0}
205205
{0} {0}\
206206
""".format(border_color + "|" + avain_color, util.BRIGHT_GREEN + "(%s)" % __version__ + border_color))
207-
print(border_color + "|" + sane + " " * 25 + by_color + "[ Created by - Dustin Born ]" +
208-
sane + " " * 25 + border_color + "|" + sane)
207+
print(border_color + "|" + sane + " " * 19 + by_color + "[ Created by - Dustin Born (ra1nb0rn) ]" +
208+
sane + " " * 20 + border_color + "|" + sane)
209209
util.printit("|" + "-" * 78 + "|", color=border_color)
210210
print()
211211

0 commit comments

Comments
 (0)