When installing the product using an .exe file, you can use the command-line parameters listed here. EXE parameter MSI property Explanation –language <id> -l <id> LANGUAGE Selects the language used in the installation. The parameter “ID” must be a valid language identifier in IETF-format. If “id” is not specified, the installer shows the language selection dialog. The […]
Articles Tagged: F-Secure
Uninstalling scan nodes (F-Secure)
Follow these steps to uninstall a scan node from your Linux system. Run the following command to uninstall a scan node: sudo apt remove –purge f-secure-radar-scannodeagent-installer Source : Official F-Secure Brand Editor by : BEST Antivirus KBS Team
Resetting scan engines (F-Secure)
If there are any issues with the scan engine directory integrity, you can reset the engines to download fresh instances. Run the following commands to reset the scan engines: cd /opt/f-secure/radar-scannodeagent sudo dotnet ScanNodeAgent.dll reset-engines To reset a specific scan engine, you can use the engine type as an argument: cd /opt/f-secure/radar-scannodeagent sudo dotnet ScanNodeAgent.dll […]
Updating scan engines manually (F-Secure)
By default, the scan node agent checks for engine updates automatically every 4 hours, but you can also check for updates and install them manually. Run the following commands to manually update the scan engines: cd /opt/f-secure/radar-scannodeagent sudo dotnet ScanNodeAgent.dll update-engines Source : Official F-Secure Brand Editor by : BEST Antivirus KBS Team
Limiting the maximum number of simultaneous scans (F-Secure)
If the default limits for simultaneous scans cause performance issues, you can customize the limits. Run the following commands to change the default limits: cd /opt/f-secure/radar-scannodeagent sudo dotnet ScanNodeAgent.dll set-config DiscoveryScan.MaxSimultaneousScans 3 sudo dotnet ScanNodeAgent.dll set-config SystemScan.MaxSimultaneousScans 10 sudo dotnet ScanNodeAgent.dll set-config WebScan.MaxSimultaneousScans 3 https://kbs.bestantivirus.co.uk/wp-admin/post.php?post=30051&action=edit
Installing a local CA certificate (F-Secure)
For network vulnerability scans to correctly validate SSL/TLS certificates signed by a local certification authority (CA), you have to install the root certificate on the scan node server. System scans use the same certificate store as OpenSSL. To install the rootCA.crt certificate file on Debian or Ubuntu distributions: Run the following command to create a directory for […]
Disabling SSL certificate validation (F-Secure)
If you use a proxy server or host your local Elements Security Center using a self-signed SSL certificate, you can disable certificate validation by setting the appropriate configuration keys. Run the following commands: cd /opt/f-secure/radar-scannodeagent sudo dotnet ScanNodeAgent.dll set-config SkipSecurityCenterSslCertificateCheck true sudo dotnet ScanNodeAgent.dll set-config SkipUpdateServiceSslCertificateCheck true Important: F-Secure does not recommend disabling the SSL certificate […]
Redirecting traffic to a proxy server (F-Secure)
As Radar Scan Node Agent sends requests to the Elements Security Center and Radar Update Service, you need to configure the appropriate proxy address to redirect the traffic. Run the following commands: cd /opt/f-secure/radar-scannodeagent sudo dotnet ScanNodeAgent.dll set-config SecurityCenterProxyUri http://proxy.example.com:8080 sudo dotnet ScanNodeAgent.dll set-config UpdateServiceProxyUri http://proxy.example.com:8080 Note: If you used environment variables to set proxy settings […]
Configuring communication for privately hosted Elements Vulnerability Management (F-Secure)
If you are using a privately hosted installation of the Elements Vulnerability Management portal, you need to set its address in the scan node configuration. Run the following commands: cd /opt/f-secure/radar-scannodeagent sudo dotnet ScanNodeAgent.dll set-config SecurityCenterUri https://securitycenter.example.com:8080 Note: If the installation directory (/opt/f-secure/radar-scannodeagent) already contains a .fsrl file that points to a different Elements Security Center address, the […]
Set up encryption keys for authenticated scanning (F-Secure)
Both Windows and Linux authenticated scanning is supported on Linux scan nodes. Windows authenticated scanning is supported using WinRM. Select the Specify credentials explicitly option when creating the system scan template. For Linux authenticated scanning, you need to set up the encryption keys to transfer the credentials securely. For more information, see Preparation steps. Run the following commands […]