Solved Package found vulnerable in a jail, but not on the host

Hi! How is it possible to have the same package, same version, same OS to be found vulnerable in a jail but not on the host?

Inside a fresh pkg upgraded jail:

Code:
root@web1:~ # pkg audit
curl-7.82.0_1 is vulnerable:
  cURL -- Multiple vulnerabilities
...
1 problem(s) in 1 installed package(s) found.
root@web1:~ # exit
logout

Now from the host (also upgraded):

Code:
root@host3:/home/user # pkg audit
0 problem(s) in 0 installed package(s) found.
root@host3:/home/user # pkg show curl
curl-7.82.0_1
Name           : curl
Version        : 7.82.0_1
Installed on   : ...

How is that possible?
 
Alright, it's necessary to update the vulnerabilities information using -F:
Code:
root@host3:/home/user # pkg audit -F
Fetching vuln.xml.xz: 100%  945 KiB 968.0kB/s    00:01    
curl-7.82.0_1 is vulnerable:
  cURL -- Multiple vulnerabilities
  ...

1 problem(s) in 1 installed package(s) found.
 
Back
Top