Skip to content

Commit 4f8e208

Browse files
committed
formatting
1 parent 23ec1ab commit 4f8e208

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

documentation/modules/auxiliary/scanner/nfs/nfsmount.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
## Vulnerable Application
22

3-
NFS is very common, and this scanner searches for a mis-configuration, not a vulnerable software version. Installation instructions for NFS can be found for every operating system.
4-
The [Ubuntu 14.04](https://help.ubuntu.com/14.04/serverguide/network-file-system.html) instructions can be used as an example for installing and configuring NFS. The
5-
following was done on Kali linux:
3+
NFS is very common, and this scanner searches for a mis-configuration, not a vulnerable software version. Installation instructions for NFS can be found for every operating system.
4+
The [Ubuntu 14.04](https://help.ubuntu.com/14.04/serverguide/network-file-system.html) instructions can be used as an example for installing and configuring NFS. The
5+
following was done on Kali linux:
66

77
1. `apt-get install nfs-kernel-server`
88
2. Create 2 folders to share:
@@ -17,7 +17,7 @@
1717
```
1818
4. Restart the service: `service nfs-kernel-server restart`
1919
20-
In this scenario, `closed_share` is set to read only, and only mountable by the IP 10.1.2.3. `open_share` is mountable by anyone (`*`) in read/write mode.
20+
In this scenario, `closed_share` is set to read only, and only mountable by the IP 10.1.2.3. `open_share` is mountable by anyone (`*`) in read/write mode.
2121
2222
## Verification Steps
2323
@@ -102,7 +102,8 @@ The following instructions were written for Kali linux.
102102
The mount and its writability can now be tested:
103103
104104
1. Write a file: `echo "hello" > /mnt/remote/test`
105-
2. The remote end now has the file locally: ```
105+
2. The remote end now has the file locally:
106+
```
106107
cat /tmp/open_share/test
107108
hello
108109
```

documentation/modules/auxiliary/scanner/snmp/snmp_login.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
### SNMP Versions
1818

1919
SNMP has 3 main versions.
20-
* ***1**, ***2c**: both use simple password protection (string), and are often defaulted to `public` (read only), and `private` (read/write). Version 2 is backwards compatible with version 1. This is a plaintext protocol and is vulenrable to being intercepted.
21-
* ***3**: has several security levels and is significantly more complex, but also not covered in this module.
20+
* **1**, **2c**: both use simple password protection (string), and are often defaulted to `public` (read only), and `private` (read/write). Version 2 is backwards compatible with version 1. This is a plaintext protocol and is vulenrable to being intercepted.
21+
* **3**: has several security levels and is significantly more complex, but also not covered in this module.
2222

2323
## Verification Steps
2424

0 commit comments

Comments
 (0)