Skip to content

Commit a9e3a62

Browse files
committedMar 28, 2022
Fixed bug.
Typo in onesixtyone.py plugin. Fixes Tib3rius#146
1 parent 792c980 commit a9e3a62

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎autorecon/default-plugins/onesixtyone.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ def configure(self):
1515

1616
async def run(self, service):
1717
if service.target.ipversion == 'IPv4':
18-
await service.execute('onesixtyone -c ' + service.get_option('community-strings') + ' -dd {address} 2>&1', outfile='{protocol}_{port}_snmp_onesixtyone.txt')
18+
await service.execute('onesixtyone -c ' + self.get_option('community-strings') + ' -dd {address} 2>&1', outfile='{protocol}_{port}_snmp_onesixtyone.txt')

‎autorecon/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from autorecon.plugins import Pattern, PortScan, ServiceScan, Report, AutoRecon
1818
from autorecon.targets import Target, Service
1919

20-
VERSION = "2.0.18"
20+
VERSION = "2.0.19"
2121

2222
if not os.path.exists(config['config_dir']):
2323
shutil.rmtree(config['config_dir'], ignore_errors=True, onerror=None)

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "autorecon"
3-
version = "2.0.18"
3+
version = "2.0.19"
44
description = "A multi-threaded network reconnaissance tool which performs automated enumeration of services."
55
authors = ["Tib3rius"]
66
license = "GNU GPL v3"

0 commit comments

Comments
 (0)
Please sign in to comment.