authfinder 1.2.0__tar.gz → 1.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {authfinder-1.2.0 → authfinder-1.2.1}/PKG-INFO +7 -3
- {authfinder-1.2.0 → authfinder-1.2.1}/README.md +5 -2
- {authfinder-1.2.0 → authfinder-1.2.1}/authfinder/__init__.py +1 -1
- {authfinder-1.2.0 → authfinder-1.2.1}/authfinder.egg-info/PKG-INFO +7 -3
- {authfinder-1.2.0 → authfinder-1.2.1}/authfinder.egg-info/requires.txt +1 -0
- {authfinder-1.2.0 → authfinder-1.2.1}/pyproject.toml +4 -2
- {authfinder-1.2.0 → authfinder-1.2.1}/LICENSE +0 -0
- {authfinder-1.2.0 → authfinder-1.2.1}/authfinder/authfinder.py +0 -0
- {authfinder-1.2.0 → authfinder-1.2.1}/authfinder/wmiexec_ng.py +0 -0
- {authfinder-1.2.0 → authfinder-1.2.1}/authfinder.egg-info/SOURCES.txt +0 -0
- {authfinder-1.2.0 → authfinder-1.2.1}/authfinder.egg-info/dependency_links.txt +0 -0
- {authfinder-1.2.0 → authfinder-1.2.1}/authfinder.egg-info/entry_points.txt +0 -0
- {authfinder-1.2.0 → authfinder-1.2.1}/authfinder.egg-info/top_level.txt +0 -0
- {authfinder-1.2.0 → authfinder-1.2.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: authfinder
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.1
|
|
4
4
|
Summary: Execute commands across Windows and Linux systems using multiple RCE methods (WinRM, SMB, WMI, RDP, SSH, MSSQL)
|
|
5
5
|
Author: Khael
|
|
6
6
|
Project-URL: Homepage, https://github.com/KhaelK138/authfinder
|
|
@@ -21,6 +21,7 @@ Classifier: Topic :: System :: Systems Administration
|
|
|
21
21
|
Requires-Python: >=3.8
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
|
+
Requires-Dist: impacket
|
|
24
25
|
Provides-Extra: dev
|
|
25
26
|
Requires-Dist: build; extra == "dev"
|
|
26
27
|
Requires-Dist: twine; extra == "dev"
|
|
@@ -44,7 +45,7 @@ Big thanks to NetExec, Impacket, and Evil-Winrm, as this tool just essentially a
|
|
|
44
45
|
- SSH (NetExec)
|
|
45
46
|
- MSSQL (Impacket)
|
|
46
47
|
- **Multi-threaded**: Execute commands across multiple hosts simultaneously
|
|
47
|
-
- **
|
|
48
|
+
- **Pass-the-Hash**: Use `-H` to pass an NTLM hash
|
|
48
49
|
- **Linux Support**: Use `--linux` to attempt to run commands across linux machines instead, via SSH
|
|
49
50
|
|
|
50
51
|
## Installation
|
|
@@ -80,7 +81,10 @@ authfinder 192.168.1.10 -u administrator -p Password123 -c whoami
|
|
|
80
81
|
authfinder 192.168.1.1-50 -u admin -p Pass123 -c 'net user'
|
|
81
82
|
|
|
82
83
|
# Use nthash instead of password
|
|
83
|
-
authfinder 10.0.0.1-10 -u admin -
|
|
84
|
+
authfinder 10.0.0.1-10 -u admin -H :{32-bit-hash} -c whoami
|
|
85
|
+
|
|
86
|
+
# Pass list of creds
|
|
87
|
+
authfinder 10.0.0.1-10 -f creds.txt -c whoami
|
|
84
88
|
```
|
|
85
89
|
|
|
86
90
|
### IP Range Format
|
|
@@ -16,7 +16,7 @@ Big thanks to NetExec, Impacket, and Evil-Winrm, as this tool just essentially a
|
|
|
16
16
|
- SSH (NetExec)
|
|
17
17
|
- MSSQL (Impacket)
|
|
18
18
|
- **Multi-threaded**: Execute commands across multiple hosts simultaneously
|
|
19
|
-
- **
|
|
19
|
+
- **Pass-the-Hash**: Use `-H` to pass an NTLM hash
|
|
20
20
|
- **Linux Support**: Use `--linux` to attempt to run commands across linux machines instead, via SSH
|
|
21
21
|
|
|
22
22
|
## Installation
|
|
@@ -52,7 +52,10 @@ authfinder 192.168.1.10 -u administrator -p Password123 -c whoami
|
|
|
52
52
|
authfinder 192.168.1.1-50 -u admin -p Pass123 -c 'net user'
|
|
53
53
|
|
|
54
54
|
# Use nthash instead of password
|
|
55
|
-
authfinder 10.0.0.1-10 -u admin -
|
|
55
|
+
authfinder 10.0.0.1-10 -u admin -H :{32-bit-hash} -c whoami
|
|
56
|
+
|
|
57
|
+
# Pass list of creds
|
|
58
|
+
authfinder 10.0.0.1-10 -f creds.txt -c whoami
|
|
56
59
|
```
|
|
57
60
|
|
|
58
61
|
### IP Range Format
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: authfinder
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.1
|
|
4
4
|
Summary: Execute commands across Windows and Linux systems using multiple RCE methods (WinRM, SMB, WMI, RDP, SSH, MSSQL)
|
|
5
5
|
Author: Khael
|
|
6
6
|
Project-URL: Homepage, https://github.com/KhaelK138/authfinder
|
|
@@ -21,6 +21,7 @@ Classifier: Topic :: System :: Systems Administration
|
|
|
21
21
|
Requires-Python: >=3.8
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
|
+
Requires-Dist: impacket
|
|
24
25
|
Provides-Extra: dev
|
|
25
26
|
Requires-Dist: build; extra == "dev"
|
|
26
27
|
Requires-Dist: twine; extra == "dev"
|
|
@@ -44,7 +45,7 @@ Big thanks to NetExec, Impacket, and Evil-Winrm, as this tool just essentially a
|
|
|
44
45
|
- SSH (NetExec)
|
|
45
46
|
- MSSQL (Impacket)
|
|
46
47
|
- **Multi-threaded**: Execute commands across multiple hosts simultaneously
|
|
47
|
-
- **
|
|
48
|
+
- **Pass-the-Hash**: Use `-H` to pass an NTLM hash
|
|
48
49
|
- **Linux Support**: Use `--linux` to attempt to run commands across linux machines instead, via SSH
|
|
49
50
|
|
|
50
51
|
## Installation
|
|
@@ -80,7 +81,10 @@ authfinder 192.168.1.10 -u administrator -p Password123 -c whoami
|
|
|
80
81
|
authfinder 192.168.1.1-50 -u admin -p Pass123 -c 'net user'
|
|
81
82
|
|
|
82
83
|
# Use nthash instead of password
|
|
83
|
-
authfinder 10.0.0.1-10 -u admin -
|
|
84
|
+
authfinder 10.0.0.1-10 -u admin -H :{32-bit-hash} -c whoami
|
|
85
|
+
|
|
86
|
+
# Pass list of creds
|
|
87
|
+
authfinder 10.0.0.1-10 -f creds.txt -c whoami
|
|
84
88
|
```
|
|
85
89
|
|
|
86
90
|
### IP Range Format
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "authfinder"
|
|
7
|
-
version = "1.2.
|
|
7
|
+
version = "1.2.1"
|
|
8
8
|
description = "Execute commands across Windows and Linux systems using multiple RCE methods (WinRM, SMB, WMI, RDP, SSH, MSSQL)"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
@@ -25,7 +25,9 @@ classifiers = [
|
|
|
25
25
|
]
|
|
26
26
|
keywords = ["security", "pentest", "windows", "remote-execution", "winrm", "smb", "wmi", "rdp"]
|
|
27
27
|
requires-python = ">=3.8"
|
|
28
|
-
dependencies = [
|
|
28
|
+
dependencies = [
|
|
29
|
+
"impacket",
|
|
30
|
+
]
|
|
29
31
|
|
|
30
32
|
[project.optional-dependencies]
|
|
31
33
|
dev = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|