From f93bb3074914069023ccc9aa23b93d438bed43e8 Mon Sep 17 00:00:00 2001 From: Asim Aziz <41350723+45im@users.noreply.github.com> Date: Sat, 23 Apr 2022 07:17:46 +0100 Subject: [PATCH] Update get-arch.py (#153) correctly call getArch.py for default impacket installation on kali Co-authored-by: Asim Aziz <41350723+chirisoft@users.noreply.github.com> --- autorecon/default-plugins/get-arch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autorecon/default-plugins/get-arch.py b/autorecon/default-plugins/get-arch.py index 0038859..e6ee411 100644 --- a/autorecon/default-plugins/get-arch.py +++ b/autorecon/default-plugins/get-arch.py @@ -13,4 +13,4 @@ class GetArch(ServiceScan): self.add_pattern(' is ((32|64)-bit)', description='Identified Architecture: {match1}') async def run(self, service): - await service.execute('getArch.py -target {address}', outfile='{protocol}_{port}_rpc_architecture.txt') + await service.execute('impacket-getArch -target {address}', outfile='{protocol}_{port}_rpc_architecture.txt')