50120882340c4ea600b0ff2ab83de1269c14b0a7
Hanno Böck add cleaned up version of F...

Hanno Böck authored 4 years ago

1) # freewvs
2) 
3) A local web vulnerability scanner.
4) 
5) freewvs is a tool to search webroots for know vulnerable versions of web applications.
6) 
Hanno Böck add some info from webpage...

Hanno Böck authored 2 years ago

7) ## install
8) 
9) Install
10) 
11) You can install [freewvs via pip](https://pypi.org/project/freewvs/):
12) 
13)  pip install freewvs
14) 
15) Alternatively you can run freewvs directly from the git source.
16) 
17) If you install via pip you need to update the freewvs database first:
18) 
19)  update-freewvsdb
20) 
21) ## usage
22) 
23) Just run freewvs with a path, e.g.:
24) 
25) freewvs /var/www
26) 
27) The output will be something like this:
28) 
29)  Joomla 3.9.11 (3.9.14) CVE-2019-19846 /var/www/example.org
30)  nextcloud 14.0.1 (14.0.5) CVE-2019-5449 /var/www/cloud.example.org
31)  MediaWiki 1.31.1 (1.31.6) CVE-2019-19709 /var/www/wiki.example.org
32) 
Hanno Böck add cleaned up version of F...

Hanno Böck authored 4 years ago

33) ## faq
34) 
35) #### What does freewvs do?
36) 
37) It scans your webroot for known vulnerable versions of popular web applications.
38) 
39) #### What does the output tell me?
40) 
41) Output looks like this:
42) 
43) ```
44) Joomla-3 3.9.11 (3.9.13) CVE-2019-18674 /home/joe/websites/joessite/
45) ```
46) 
47) This says that in /home/joe/websites/joessite/, there's a Joomla installation of version 3.9.11. This version is
48) vulnerable to CVE-2019-18674 and you should update to version 3.9.13.
49) 
50) #### CVE-2019-XXXX seems to be very minor, at least it doesn't affect me. Am I safe?
51) 
52) No, as freewvs only checks for the latest vulnerabilities. There may be other vulnerabilities in your version not listed by freewvs. The only way to be sure is to check the upstream changelog.
53) 
54) #### There is no version inside the brackets, what does that mean?
55) 
56) It means your web application has not released a security update. Often this means the software is no longer developed.
57) 
Hanno Böck contributions file

Hanno Böck authored 3 years ago

58) ## contributions
59) 
Hanno Böck fix markdown linK

Hanno Böck authored 3 years ago

60) See [CONTRIBUTIONS.md](CONTRIBUTIONS.md).
Hanno Böck contributions file

Hanno Böck authored 3 years ago

61) 
Hanno Böck add cleaned up version of F...

Hanno Böck authored 4 years ago

62) ## misc
63) 
64) freewvs was developed by [schokokeks.org hosting](https://schokokeks.org/).
65) 
66) It's licensed as CC0.
67)