Where to find the directory that stores .txt that stores all website releases.
This thread was automatically locked due to age.
Where to find the directory that stores .txt that stores all website releases.
I need to export a list of all the urls that I have already unlocked on my UTM to present to the board of the company I work for.
Please review the following screenshot for more info on how to export web exceptions URL:
Bypassed source/destination IP address or FQDN from the transparent proxy can be verified as per the following screenshot:
Thanks,
Olá Adriano and welcome to the UTM Community!
H_Patel answered your question.
You didn't say why they were asking for this presentation. If you were asked to provide a list of all of the FQDNs visited in May, the following command would create that in the /home directory where you could download it using WinSCP, for example.
zgrep '"pass"' /var/log/http/2020/05/*|grep -oP 'url="https?\://.*?/'|sort -n|uniq -c|rev|sort|rev>/home/FQDNs
Cheers - Bob
Olá Adriano and welcome to the UTM Community!
H_Patel answered your question.
You didn't say why they were asking for this presentation. If you were asked to provide a list of all of the FQDNs visited in May, the following command would create that in the /home directory where you could download it using WinSCP, for example.
zgrep '"pass"' /var/log/http/2020/05/*|grep -oP 'url="https?\://.*?/'|sort -n|uniq -c|rev|sort|rev>/home/FQDNs
Cheers - Bob