You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug_report.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,3 @@
1
-
# ❗❗❗ Before filing this bug report, MAKE SURE you have already downloaded the newest version of NetExec from GitHub and installed it! Many issues have already been reported and fixed, _especially_ if you are running the native Kali version! Please delete this line before submitting your issue if you have done so.❗❗❗
2
-
3
1
---
4
2
name: Bug report
5
3
about: Create a report to help us improve
@@ -9,6 +7,8 @@ assignees: ''
9
7
10
8
---
11
9
10
+
# ❗❗❗ Before filing this bug report, MAKE SURE you have already downloaded the newest version of NetExec from GitHub and installed it! Many issues have already been reported and fixed, _especially_ if you are running the native Kali version! Please delete this line before submitting your issue if you have done so.❗❗❗
Retrieve the list of network interfaces info (Name, IP Address, Subnet Mask, Default Gateway) from remote Windows registry'
12
+
Formerly --interfaces parameter
13
+
Made by: @Sant0rryu, @NeffIsBack
14
+
"""
15
+
16
+
name="enum_interfaces"
17
+
description="Retrieve the list of network interfaces info (Name, IP Address, Subnet Mask, Default Gateway) from remote Windows registry (formerly --interfaces)"
18
+
supported_protocols= ["smb"]
19
+
opsec_safe=False
20
+
21
+
def__init__(self):
22
+
self.context=None
23
+
self.module_options= {}
24
+
25
+
defoptions(self, context, module_options):
26
+
"""No options available"""
27
+
28
+
defon_admin_login(self, context, connection):
29
+
"""Execute network interface enumeration on authenticated SMB connection"""
0 commit comments