Skip to content

Commit 7f1f862

Browse files
committed
KB for http_version
1 parent ba0b270 commit 7f1f862

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
## Description
2+
3+
This module is a brute-force login scanner that attempts to authenticate to a system using HTTP authentication.
4+
5+
## Verification Steps
6+
7+
1. Do: ```use auxiliary/scanner/http/http_login```
8+
2. Do: ```set RHOSTS [IP]```
9+
3. Do: ```set RPORT [PORT]```
10+
4. Do: ```run```
11+
12+
## Scenarios
13+
14+
### Running the scanner :
15+
16+
```
17+
msf > use auxiliary/scanner/http/http_version
18+
msf auxiliary(http_version) > show options
19+
20+
Module options (auxiliary/scanner/http/http_version):
21+
22+
Name Current Setting Required Description
23+
---- --------------- -------- -----------
24+
Proxies no A proxy chain of format type:host:port[,type:host:port][...]
25+
RHOSTS yes The target address range or CIDR identifier
26+
RPORT 80 yes The target port (TCP)
27+
SSL false no Negotiate SSL/TLS for outgoing connections
28+
THREADS 1 yes The number of concurrent threads
29+
VHOST no HTTP server virtual host
30+
31+
msf auxiliary(http_version) > set RHOSTS 192.168.56.101
32+
RHOSTS => 192.168.56.101
33+
msf auxiliary(http_version) > run
34+
35+
[+] 192.168.56.101:80 Apache/2.2.8 (Ubuntu) DAV/2 ( Powered by PHP/5.2.4-2ubuntu5.10 )
36+
[*] Scanned 1 of 1 hosts (100% complete)
37+
[*] Auxiliary module execution completed
38+
39+
msf auxiliary(http_version) >
40+
```
41+
42+

0 commit comments

Comments
 (0)