Compare commits

..

2 Commits

Author SHA1 Message Date
4aac159021 dont ignore example 2023-04-03 23:04:15 +02:00
d259b626d5 README.md 2023-04-03 23:03:42 +02:00
5 changed files with 16 additions and 1 deletions

4
.gitignore vendored
View File

@ -1 +1,3 @@
scans/
scans/*.yaml
!scans/example.yaml
scans/*.xml

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# lanScan
Scan hosts with nmap and display results in webpage.
* Create a configuration yaml file in scans/ subdirectory (see example.yaml).
It make be generated by scanning a network with init.sh.
* Scan with scan_all.sh (use a cron task!).
* Open index.php to see results.

5
scans/example.yaml Normal file
View File

@ -0,0 +1,5 @@
group1:
host1.local: [ssh, http]
host2.local: [ftp, https, 5432]
group2:
host3: [ssh, ftp, 8006]