--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2017-2128941ec1
2017-10-16 15:50:16.856112
--------------------------------------------------------------------------------
Name : globus-gass-copy
Product : Fedora EPEL 6
Version : 9.28
Release : 1.el6
URL : http://toolkit.globus.org/
Summary : Globus Toolkit - Globus Gass Copy
Description :
The Globus Toolkit is an open source software toolkit used for building Grid
systems and applications. It is being developed by the Globus Alliance and
many others all over the world. A growing number of projects and companies are
using the Globus Toolkit to unlock the potential of grids for their cause.
The globus-gass-copy package contains:
Globus Gass Copy
--------------------------------------------------------------------------------
Update Information:
Globus Toolkit update. * globus-ftp-control 8.1 * globus-gass-copy 9.28 *
globus-gridftp-server 12.3 * globus-gssapi-gsi 13.1
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update globus-gass-copy' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/ht…
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2017-fbedb12ba4
2017-10-16 15:50:16.855909
--------------------------------------------------------------------------------
Name : nmon
Product : Fedora EPEL 6
Version : 16g
Release : 3.el6
URL : http://nmon.sourceforge.net
Summary : Nigel's performance Monitor for Linux
Description :
nmon is a systems administrator, tuner, benchmark tool, which provides
information about CPU, disks, network, etc., all in one view.
--------------------------------------------------------------------------------
Update Information:
Unretiring EPEL branches
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update nmon' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/ht…
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2017-2bca3ff2dd
2017-10-13 14:59:51.491712
--------------------------------------------------------------------------------
Name : odcs
Product : Fedora EPEL 7
Version : 0.1.0
Release : 2.el7
URL : https://pagure.io/odcs
Summary : The On Demand Compose Service
Description :
The On Demand Compose Service (ODCS) creates temporary composes using Pungi
tool and manages their lifetime. The composes can be requested by external
services or users using the REST API provided by Flask frontend.
--------------------------------------------------------------------------------
Update Information:
Fix blocking bug when building container image using OSBS caused by using
"https" in pulp .repo files.
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update odcs' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/ht…
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2017-8686218f6f
2017-10-13 14:59:51.491640
--------------------------------------------------------------------------------
Name : rho
Product : Fedora EPEL 7
Version : 0.0.28
Release : 5.el7
URL : http://github.com/quipucords/rho
Summary : An SSH system profiler
Description :
Rho is a tool for scanning your network, logging into systems via SSH, and
retrieving information about them.
--------------------------------------------------------------------------------
Update Information:
# Testing Rho To set up Rho, you create profiles that control how to run each
scan. - Authentication profiles contain user credentials for a user with
sufficient authority to complete the scan (for example, a root user or one with
root-level access obtained through -sudo privilege escalation). - Network
profiles contain network identifiers (for example, a hostname, IP address, or
range of IP addresses) and the authentication profiles to be used for a scan.
Complete the following steps, repeating them as necessary to access all parts of
your environment that you want to scan: 1. Create at least one authentication
profile with root-level access to Rho: ``` rho auth add --name auth_name
--username root_name(--sshkeyfile key_file | --password) ``` a. At the Rho
vault password prompt, create a new Rho vault password. This password is
required to access the encrypted Rho data, such as authentication and network
profiles, scan data, and other information. b. If you did not use the
sshkeyfile option to provide an SSH key for the username value, enter the
password of the user with root-level access at the connection password prompt.
For example, for an authentication profile where the authentication profile name
is roothost1, the user with root-level access is root, and the SSH key for the
user is in the path ~/.ssh/id_rsa, you would enter the following command: ```
rho auth add --name roothost1 --username root --sshkeyfile ~/.ssh/id_rsa ``` You
can also use the sudo-password option to create an authentication profile for a
user with root-level access who requires a password to obtain this privilege.
You can use the sudo-password option with either the sshkeyfile or the password
option. For example, for an authentication profile where the authentication
profile name is sudouser1, the user with root-level access is sysadmin, and the
access is obtained through the password option, you would enter the following
command: ``` rho auth add --name sudouser1 --username sysadmin --password
--sudo-password ``` After you enter this command, you are prompted to enter two
passwords. First, you would enter the connection password for the username user,
and then you would enter the password for the sudo command. 2. Create at least
one network profile that specifies one or more network identifiers, such as a
host name, an IP address, a list of IP addresses, or an IP range, and one or
more authentication profiles to be used for the scan: ``` rho profile add --name
profile_name --hosts host_name_or_file --auth auth_name ``` For example, for a
network profile where the name of the network profile is mynetwork, the network
to be scanned is the 192.0.2.0/24 subnet, and the authentication profiles that
are used to run the scan are roothost1 and roothost2, you would enter the
following command: ``` rho profile add --name mynetwork --hosts 192.0.2.[1:254]
--auth roothost1 roothost2 ``` You can also use a file to pass in the network
identifiers. If you use a file to enter multiple network identifiers, such as
multiple individual IP addresses, enter each on a single line. For example, for
a network profile where the path to this file is /home/user1/hosts_file, you
would enter the following command: ``` rho profile add --name mynetwork --hosts
/home/user1/hosts_file --auth roothost1 roothost2 ``` # Running a scan Run the
scan by using the scan command, specifying a network profile for the profile
option and a location to store the output as a file in the comma-separated
variables (CSV) format for the reportfile option: ``` rho scan --profile
profile_name --reportfile filename.csv ``` For example, if you want to use the
network profile mynetwork and save the report as mynetwork_scan1.csv, you would
enter the following command: ``` rho scan --profile mynetwork --reportfile
mynetwork_scan1.csv ``` ---- # Testing Rho To set up Rho, you create
profiles that control how to run each scan. - Authentication profiles contain
user credentials for a user with sufficient authority to complete the scan (for
example, a root user or one with root-level access obtained through -sudo
privilege escalation). - Network profiles contain network identifiers (for
example, a hostname, IP address, or range of IP addresses) and the
authentication profiles to be used for a scan. Complete the following steps,
repeating them as necessary to access all parts of your environment that you
want to scan: 1. Create at least one authentication profile with root-level
access to Rho: ``` rho auth add --name auth_name --username
root_name(--sshkeyfile key_file | --password) ``` a. At the Rho vault password
prompt, create a new Rho vault password. This password is required to access the
encrypted Rho data, such as authentication and network profiles, scan data, and
other information. b. If you did not use the sshkeyfile option to provide an
SSH key for the username value, enter the password of the user with root-level
access at the connection password prompt. For example, for an authentication
profile where the authentication profile name is roothost1, the user with root-
level access is root, and the SSH key for the user is in the path ~/.ssh/id_rsa,
you would enter the following command: ``` rho auth add --name roothost1
--username root --sshkeyfile ~/.ssh/id_rsa ``` You can also use the sudo-
password option to create an authentication profile for a user with root-level
access who requires a password to obtain this privilege. You can use the sudo-
password option with either the sshkeyfile or the password option. For example,
for an authentication profile where the authentication profile name is
sudouser1, the user with root-level access is sysadmin, and the access is
obtained through the password option, you would enter the following command: ```
rho auth add --name sudouser1 --username sysadmin --password --sudo-password ```
After you enter this command, you are prompted to enter two passwords. First,
you would enter the connection password for the username user, and then you
would enter the password for the sudo command. 2. Create at least one network
profile that specifies one or more network identifiers, such as a host name, an
IP address, a list of IP addresses, or an IP range, and one or more
authentication profiles to be used for the scan: ``` rho profile add --name
profile_name --hosts host_name_or_file --auth auth_name ``` For example, for a
network profile where the name of the network profile is mynetwork, the network
to be scanned is the 192.0.2.0/24 subnet, and the authentication profiles that
are used to run the scan are roothost1 and roothost2, you would enter the
following command: ``` rho profile add --name mynetwork --hosts 192.0.2.[1:254]
--auth roothost1 roothost2 ``` You can also use a file to pass in the network
identifiers. If you use a file to enter multiple network identifiers, such as
multiple individual IP addresses, enter each on a single line. For example, for
a network profile where the path to this file is /home/user1/hosts_file, you
would enter the following command: ``` rho profile add --name mynetwork --hosts
/home/user1/hosts_file --auth roothost1 roothost2 ``` # Running a scan Run the
scan by using the scan command, specifying a network profile for the profile
option and a location to store the output as a file in the comma-separated
variables (CSV) format for the reportfile option: ``` rho scan --profile
profile_name --reportfile filename.csv ``` For example, if you want to use the
network profile mynetwork and save the report as mynetwork_scan1.csv, you would
enter the following command: ``` rho scan --profile mynetwork --reportfile
mynetwork_scan1.csv ``` ---- # Testing Rho To set up Rho, you create
profiles that control how to run each scan. - Authentication profiles contain
user credentials for a user with sufficient authority to complete the scan (for
example, a root user or one with root-level access obtained through -sudo
privilege escalation). - Network profiles contain network identifiers (for
example, a hostname, IP address, or range of IP addresses) and the
authentication profiles to be used for a scan. Complete the following steps,
repeating them as necessary to access all parts of your environment that you
want to scan: 1. Create at least one authentication profile with root-level
access to Rho: ``` rho auth add --name auth_name --username
root_name(--sshkeyfile key_file | --password) ``` a. At the Rho vault password
prompt, create a new Rho vault password. This password is required to access the
encrypted Rho data, such as authentication and network profiles, scan data, and
other information. b. If you did not use the sshkeyfile option to provide an
SSH key for the username value, enter the password of the user with root-level
access at the connection password prompt. For example, for an authentication
profile where the authentication profile name is roothost1, the user with root-
level access is root, and the SSH key for the user is in the path ~/.ssh/id_rsa,
you would enter the following command: ``` rho auth add --name roothost1
--username root --sshkeyfile ~/.ssh/id_rsa ``` You can also use the sudo-
password option to create an authentication profile for a user with root-level
access who requires a password to obtain this privilege. You can use the sudo-
password option with either the sshkeyfile or the password option. For example,
for an authentication profile where the authentication profile name is
sudouser1, the user with root-level access is sysadmin, and the access is
obtained through the password option, you would enter the following command: ```
rho auth add --name sudouser1 --username sysadmin --password --sudo-password ```
After you enter this command, you are prompted to enter two passwords. First,
you would enter the connection password for the username user, and then you
would enter the password for the sudo command. 2. Create at least one network
profile that specifies one or more network identifiers, such as a host name, an
IP address, a list of IP addresses, or an IP range, and one or more
authentication profiles to be used for the scan: ``` rho profile add --name
profile_name --hosts host_name_or_file --auth auth_name ``` For example, for a
network profile where the name of the network profile is mynetwork, the network
to be scanned is the 192.0.2.0/24 subnet, and the authentication profiles that
are used to run the scan are roothost1 and roothost2, you would enter the
following command: ``` rho profile add --name mynetwork --hosts 192.0.2.[1:254]
--auth roothost1 roothost2 ``` You can also use a file to pass in the network
identifiers. If you use a file to enter multiple network identifiers, such as
multiple individual IP addresses, enter each on a single line. For example, for
a network profile where the path to this file is /home/user1/hosts_file, you
would enter the following command: ``` rho profile add --name mynetwork --hosts
/home/user1/hosts_file --auth roothost1 roothost2 ``` # Running a scan Run the
scan by using the scan command, specifying a network profile for the profile
option and a location to store the output as a file in the comma-separated
variables (CSV) format for the reportfile option: ``` rho scan --profile
profile_name --reportfile filename.csv ``` For example, if you want to use the
network profile mynetwork and save the report as mynetwork_scan1.csv, you would
enter the following command: ``` rho scan --profile mynetwork --reportfile
mynetwork_scan1.csv ``` ---- # Testing Rho To set up Rho, you create
profiles that control how to run each scan. - Authentication profiles contain
user credentials for a user with sufficient authority to complete the scan (for
example, a root user or one with root-level access obtained through -sudo
privilege escalation). - Network profiles contain network identifiers (for
example, a hostname, IP address, or range of IP addresses) and the
authentication profiles to be used for a scan. Complete the following steps,
repeating them as necessary to access all parts of your environment that you
want to scan: 1. Create at least one authentication profile with root-level
access to Rho: ``` rho auth add --name auth_name --username
root_name(--sshkeyfile key_file | --password) ``` a. At the Rho vault password
prompt, create a new Rho vault password. This password is required to access the
encrypted Rho data, such as authentication and network profiles, scan data, and
other information. b. If you did not use the sshkeyfile option to provide an
SSH key for the username value, enter the password of the user with root-level
access at the connection password prompt. For example, for an authentication
profile where the authentication profile name is roothost1, the user with root-
level access is root, and the SSH key for the user is in the path ~/.ssh/id_rsa,
you would enter the following command: ``` rho auth add --name roothost1
--username root --sshkeyfile ~/.ssh/id_rsa ``` You can also use the sudo-
password option to create an authentication profile for a user with root-level
access who requires a password to obtain this privilege. You can use the sudo-
password option with either the sshkeyfile or the password option. For example,
for an authentication profile where the authentication profile name is
sudouser1, the user with root-level access is sysadmin, and the access is
obtained through the password option, you would enter the following command: ```
rho auth add --name sudouser1 --username sysadmin --password --sudo-password ```
After you enter this command, you are prompted to enter two passwords. First,
you would enter the connection password for the username user, and then you
would enter the password for the sudo command. 2. Create at least one network
profile that specifies one or more network identifiers, such as a host name, an
IP address, a list of IP addresses, or an IP range, and one or more
authentication profiles to be used for the scan: ``` rho profile add --name
profile_name --hosts host_name_or_file --auth auth_name ``` For example, for a
network profile where the name of the network profile is mynetwork, the network
to be scanned is the 192.0.2.0/24 subnet, and the authentication profiles that
are used to run the scan are roothost1 and roothost2, you would enter the
following command: ``` rho profile add --name mynetwork --hosts 192.0.2.[1:254]
--auth roothost1 roothost2 ``` You can also use a file to pass in the network
identifiers. If you use a file to enter multiple network identifiers, such as
multiple individual IP addresses, enter each on a single line. For example, for
a network profile where the path to this file is /home/user1/hosts_file, you
would enter the following command: ``` rho profile add --name mynetwork --hosts
/home/user1/hosts_file --auth roothost1 roothost2 ``` # Running a scan Run the
scan by using the scan command, specifying a network profile for the profile
option and a location to store the output as a file in the comma-separated
variables (CSV) format for the reportfile option: ``` rho scan --profile
profile_name --reportfile filename.csv ``` For example, if you want to use the
network profile mynetwork and save the report as mynetwork_scan1.csv, you would
enter the following command: ``` rho scan --profile mynetwork --reportfile
mynetwork_scan1.csv ```
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update rho' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/ht…
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2017-abd8cfa312
2017-10-13 14:59:51.491578
--------------------------------------------------------------------------------
Name : gnucash
Product : Fedora EPEL 7
Version : 2.6.18
Release : 1.el7
URL : http://gnucash.org/
Summary : Finance management application
Description :
GnuCash is a personal finance manager. A check-book like register GUI
allows you to enter and track bank accounts, stocks, income and even
currency trades. The interface is designed to be simple and easy to
use, but is backed with double-entry accounting principles to ensure
balanced books.
--------------------------------------------------------------------------------
Update Information:
This updates GnuCash to 2.6.18, the latest stable release. For more information
on bugs fixed in this release, see the upstream release notes at:
http://gnucash.org/news.phtml#n-170924-2.6.18.news
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update gnucash' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/ht…
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2017-abd8cfa312
2017-10-13 14:59:51.491578
--------------------------------------------------------------------------------
Name : gnucash-docs
Product : Fedora EPEL 7
Version : 2.6.18
Release : 1.el7
URL : http://gnucash.org/
Summary : Help files and documentation for the GnuCash personal finance manager
Description :
GnuCash is a personal finance manager. gnucash-docs contains the
help files and documentation for GnuCash.
--------------------------------------------------------------------------------
Update Information:
This updates GnuCash to 2.6.18, the latest stable release. For more information
on bugs fixed in this release, see the upstream release notes at:
http://gnucash.org/news.phtml#n-170924-2.6.18.news
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update gnucash-docs' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/ht…
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2017-afdcf119f4
2017-10-13 14:59:51.491526
--------------------------------------------------------------------------------
Name : freexl
Product : Fedora EPEL 7
Version : 1.0.4
Release : 1.el7
URL : http://www.gaia-gis.it/FreeXL
Summary : Library to extract data from within an Excel spreadsheet
Description :
FreeXL is a library to extract valid data
from within an Excel spreadsheet (.xls)
Design goals:
* simple and lightweight
* stable, robust and efficient
* easily and universally portable
* completely ignore any GUI-related oddity
--------------------------------------------------------------------------------
Update Information:
Security fix for CVE-2017-2923 and CVE-2017-2924
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1490896 - CVE-2017-2924 freexl: Heap-based buffer overflow in the read_legacy_biff function
https://bugzilla.redhat.com/show_bug.cgi?id=1490896
[ 2 ] Bug #1490898 - CVE-2017-2923 freexl: Heap-based buffer overflow in the read_biff_next_record function
https://bugzilla.redhat.com/show_bug.cgi?id=1490898
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update freexl' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/ht…
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2017-1cd4a2c4fa
2017-10-13 14:59:51.491368
--------------------------------------------------------------------------------
Name : lynis
Product : Fedora EPEL 7
Version : 2.5.5
Release : 1.el7
URL : https://cisofy.com/lynis/
Summary : Security and system auditing tool
Description :
Lynis is an auditing and hardening tool for Unix/Linux and you might even call
it a compliance tool. It scans the system and installed software. Then it
performs many individual security control checks. It determines the hardening
state of the machine, detects security issues and provides suggestions to
improve the security defense of the system.
--------------------------------------------------------------------------------
Update Information:
Update to 2.5.5 (rhbz #1488452)
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1488452 - lynis-2.5.5 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1488452
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update lynis' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/ht…
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2017-df6a1dde88
2017-10-13 14:59:47.804343
--------------------------------------------------------------------------------
Name : rho
Product : Fedora EPEL 6
Version : 0.0.28
Release : 5.el6
URL : http://github.com/quipucords/rho
Summary : An SSH system profiler
Description :
Rho is a tool for scanning your network, logging into systems via SSH, and
retrieving information about them.
--------------------------------------------------------------------------------
Update Information:
# Testing Rho To set up Rho, you create profiles that control how to run each
scan. - Authentication profiles contain user credentials for a user with
sufficient authority to complete the scan (for example, a root user or one with
root-level access obtained through -sudo privilege escalation). - Network
profiles contain network identifiers (for example, a hostname, IP address, or
range of IP addresses) and the authentication profiles to be used for a scan.
Complete the following steps, repeating them as necessary to access all parts of
your environment that you want to scan: 1. Create at least one authentication
profile with root-level access to Rho: ``` rho auth add --name auth_name
--username root_name(--sshkeyfile key_file | --password) ``` a. At the Rho
vault password prompt, create a new Rho vault password. This password is
required to access the encrypted Rho data, such as authentication and network
profiles, scan data, and other information. b. If you did not use the
sshkeyfile option to provide an SSH key for the username value, enter the
password of the user with root-level access at the connection password prompt.
For example, for an authentication profile where the authentication profile name
is roothost1, the user with root-level access is root, and the SSH key for the
user is in the path ~/.ssh/id_rsa, you would enter the following command: ```
rho auth add --name roothost1 --username root --sshkeyfile ~/.ssh/id_rsa ``` You
can also use the sudo-password option to create an authentication profile for a
user with root-level access who requires a password to obtain this privilege.
You can use the sudo-password option with either the sshkeyfile or the password
option. For example, for an authentication profile where the authentication
profile name is sudouser1, the user with root-level access is sysadmin, and the
access is obtained through the password option, you would enter the following
command: ``` rho auth add --name sudouser1 --username sysadmin --password
--sudo-password ``` After you enter this command, you are prompted to enter two
passwords. First, you would enter the connection password for the username user,
and then you would enter the password for the sudo command. 2. Create at least
one network profile that specifies one or more network identifiers, such as a
host name, an IP address, a list of IP addresses, or an IP range, and one or
more authentication profiles to be used for the scan: ``` rho profile add --name
profile_name --hosts host_name_or_file --auth auth_name ``` For example, for a
network profile where the name of the network profile is mynetwork, the network
to be scanned is the 192.0.2.0/24 subnet, and the authentication profiles that
are used to run the scan are roothost1 and roothost2, you would enter the
following command: ``` rho profile add --name mynetwork --hosts 192.0.2.[1:254]
--auth roothost1 roothost2 ``` You can also use a file to pass in the network
identifiers. If you use a file to enter multiple network identifiers, such as
multiple individual IP addresses, enter each on a single line. For example, for
a network profile where the path to this file is /home/user1/hosts_file, you
would enter the following command: ``` rho profile add --name mynetwork --hosts
/home/user1/hosts_file --auth roothost1 roothost2 ``` # Running a scan Run the
scan by using the scan command, specifying a network profile for the profile
option and a location to store the output as a file in the comma-separated
variables (CSV) format for the reportfile option: ``` rho scan --profile
profile_name --reportfile filename.csv ``` For example, if you want to use the
network profile mynetwork and save the report as mynetwork_scan1.csv, you would
enter the following command: ``` rho scan --profile mynetwork --reportfile
mynetwork_scan1.csv ``` ---- # Testing Rho To set up Rho, you create
profiles that control how to run each scan. - Authentication profiles contain
user credentials for a user with sufficient authority to complete the scan (for
example, a root user or one with root-level access obtained through -sudo
privilege escalation). - Network profiles contain network identifiers (for
example, a hostname, IP address, or range of IP addresses) and the
authentication profiles to be used for a scan. Complete the following steps,
repeating them as necessary to access all parts of your environment that you
want to scan: 1. Create at least one authentication profile with root-level
access to Rho: ``` rho auth add --name auth_name --username
root_name(--sshkeyfile key_file | --password) ``` a. At the Rho vault password
prompt, create a new Rho vault password. This password is required to access the
encrypted Rho data, such as authentication and network profiles, scan data, and
other information. b. If you did not use the sshkeyfile option to provide an
SSH key for the username value, enter the password of the user with root-level
access at the connection password prompt. For example, for an authentication
profile where the authentication profile name is roothost1, the user with root-
level access is root, and the SSH key for the user is in the path ~/.ssh/id_rsa,
you would enter the following command: ``` rho auth add --name roothost1
--username root --sshkeyfile ~/.ssh/id_rsa ``` You can also use the sudo-
password option to create an authentication profile for a user with root-level
access who requires a password to obtain this privilege. You can use the sudo-
password option with either the sshkeyfile or the password option. For example,
for an authentication profile where the authentication profile name is
sudouser1, the user with root-level access is sysadmin, and the access is
obtained through the password option, you would enter the following command: ```
rho auth add --name sudouser1 --username sysadmin --password --sudo-password ```
After you enter this command, you are prompted to enter two passwords. First,
you would enter the connection password for the username user, and then you
would enter the password for the sudo command. 2. Create at least one network
profile that specifies one or more network identifiers, such as a host name, an
IP address, a list of IP addresses, or an IP range, and one or more
authentication profiles to be used for the scan: ``` rho profile add --name
profile_name --hosts host_name_or_file --auth auth_name ``` For example, for a
network profile where the name of the network profile is mynetwork, the network
to be scanned is the 192.0.2.0/24 subnet, and the authentication profiles that
are used to run the scan are roothost1 and roothost2, you would enter the
following command: ``` rho profile add --name mynetwork --hosts 192.0.2.[1:254]
--auth roothost1 roothost2 ``` You can also use a file to pass in the network
identifiers. If you use a file to enter multiple network identifiers, such as
multiple individual IP addresses, enter each on a single line. For example, for
a network profile where the path to this file is /home/user1/hosts_file, you
would enter the following command: ``` rho profile add --name mynetwork --hosts
/home/user1/hosts_file --auth roothost1 roothost2 ``` # Running a scan Run the
scan by using the scan command, specifying a network profile for the profile
option and a location to store the output as a file in the comma-separated
variables (CSV) format for the reportfile option: ``` rho scan --profile
profile_name --reportfile filename.csv ``` For example, if you want to use the
network profile mynetwork and save the report as mynetwork_scan1.csv, you would
enter the following command: ``` rho scan --profile mynetwork --reportfile
mynetwork_scan1.csv ``` ---- # Testing Rho To set up Rho, you create
profiles that control how to run each scan. - Authentication profiles contain
user credentials for a user with sufficient authority to complete the scan (for
example, a root user or one with root-level access obtained through -sudo
privilege escalation). - Network profiles contain network identifiers (for
example, a hostname, IP address, or range of IP addresses) and the
authentication profiles to be used for a scan. Complete the following steps,
repeating them as necessary to access all parts of your environment that you
want to scan: 1. Create at least one authentication profile with root-level
access to Rho: ``` rho auth add --name auth_name --username
root_name(--sshkeyfile key_file | --password) ``` a. At the Rho vault password
prompt, create a new Rho vault password. This password is required to access the
encrypted Rho data, such as authentication and network profiles, scan data, and
other information. b. If you did not use the sshkeyfile option to provide an
SSH key for the username value, enter the password of the user with root-level
access at the connection password prompt. For example, for an authentication
profile where the authentication profile name is roothost1, the user with root-
level access is root, and the SSH key for the user is in the path ~/.ssh/id_rsa,
you would enter the following command: ``` rho auth add --name roothost1
--username root --sshkeyfile ~/.ssh/id_rsa ``` You can also use the sudo-
password option to create an authentication profile for a user with root-level
access who requires a password to obtain this privilege. You can use the sudo-
password option with either the sshkeyfile or the password option. For example,
for an authentication profile where the authentication profile name is
sudouser1, the user with root-level access is sysadmin, and the access is
obtained through the password option, you would enter the following command: ```
rho auth add --name sudouser1 --username sysadmin --password --sudo-password ```
After you enter this command, you are prompted to enter two passwords. First,
you would enter the connection password for the username user, and then you
would enter the password for the sudo command. 2. Create at least one network
profile that specifies one or more network identifiers, such as a host name, an
IP address, a list of IP addresses, or an IP range, and one or more
authentication profiles to be used for the scan: ``` rho profile add --name
profile_name --hosts host_name_or_file --auth auth_name ``` For example, for a
network profile where the name of the network profile is mynetwork, the network
to be scanned is the 192.0.2.0/24 subnet, and the authentication profiles that
are used to run the scan are roothost1 and roothost2, you would enter the
following command: ``` rho profile add --name mynetwork --hosts 192.0.2.[1:254]
--auth roothost1 roothost2 ``` You can also use a file to pass in the network
identifiers. If you use a file to enter multiple network identifiers, such as
multiple individual IP addresses, enter each on a single line. For example, for
a network profile where the path to this file is /home/user1/hosts_file, you
would enter the following command: ``` rho profile add --name mynetwork --hosts
/home/user1/hosts_file --auth roothost1 roothost2 ``` # Running a scan Run the
scan by using the scan command, specifying a network profile for the profile
option and a location to store the output as a file in the comma-separated
variables (CSV) format for the reportfile option: ``` rho scan --profile
profile_name --reportfile filename.csv ``` For example, if you want to use the
network profile mynetwork and save the report as mynetwork_scan1.csv, you would
enter the following command: ``` rho scan --profile mynetwork --reportfile
mynetwork_scan1.csv ``` ---- # Testing Rho To set up Rho, you create
profiles that control how to run each scan. - Authentication profiles contain
user credentials for a user with sufficient authority to complete the scan (for
example, a root user or one with root-level access obtained through -sudo
privilege escalation). - Network profiles contain network identifiers (for
example, a hostname, IP address, or range of IP addresses) and the
authentication profiles to be used for a scan. Complete the following steps,
repeating them as necessary to access all parts of your environment that you
want to scan: 1. Create at least one authentication profile with root-level
access to Rho: ``` rho auth add --name auth_name --username
root_name(--sshkeyfile key_file | --password) ``` a. At the Rho vault password
prompt, create a new Rho vault password. This password is required to access the
encrypted Rho data, such as authentication and network profiles, scan data, and
other information. b. If you did not use the sshkeyfile option to provide an
SSH key for the username value, enter the password of the user with root-level
access at the connection password prompt. For example, for an authentication
profile where the authentication profile name is roothost1, the user with root-
level access is root, and the SSH key for the user is in the path ~/.ssh/id_rsa,
you would enter the following command: ``` rho auth add --name roothost1
--username root --sshkeyfile ~/.ssh/id_rsa ``` You can also use the sudo-
password option to create an authentication profile for a user with root-level
access who requires a password to obtain this privilege. You can use the sudo-
password option with either the sshkeyfile or the password option. For example,
for an authentication profile where the authentication profile name is
sudouser1, the user with root-level access is sysadmin, and the access is
obtained through the password option, you would enter the following command: ```
rho auth add --name sudouser1 --username sysadmin --password --sudo-password ```
After you enter this command, you are prompted to enter two passwords. First,
you would enter the connection password for the username user, and then you
would enter the password for the sudo command. 2. Create at least one network
profile that specifies one or more network identifiers, such as a host name, an
IP address, a list of IP addresses, or an IP range, and one or more
authentication profiles to be used for the scan: ``` rho profile add --name
profile_name --hosts host_name_or_file --auth auth_name ``` For example, for a
network profile where the name of the network profile is mynetwork, the network
to be scanned is the 192.0.2.0/24 subnet, and the authentication profiles that
are used to run the scan are roothost1 and roothost2, you would enter the
following command: ``` rho profile add --name mynetwork --hosts 192.0.2.[1:254]
--auth roothost1 roothost2 ``` You can also use a file to pass in the network
identifiers. If you use a file to enter multiple network identifiers, such as
multiple individual IP addresses, enter each on a single line. For example, for
a network profile where the path to this file is /home/user1/hosts_file, you
would enter the following command: ``` rho profile add --name mynetwork --hosts
/home/user1/hosts_file --auth roothost1 roothost2 ``` # Running a scan Run the
scan by using the scan command, specifying a network profile for the profile
option and a location to store the output as a file in the comma-separated
variables (CSV) format for the reportfile option: ``` rho scan --profile
profile_name --reportfile filename.csv ``` For example, if you want to use the
network profile mynetwork and save the report as mynetwork_scan1.csv, you would
enter the following command: ``` rho scan --profile mynetwork --reportfile
mynetwork_scan1.csv ```
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update rho' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/ht…
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2017-ad63a060a6
2017-10-13 14:59:47.804274
--------------------------------------------------------------------------------
Name : freexl
Product : Fedora EPEL 6
Version : 1.0.4
Release : 1.el6
URL : http://www.gaia-gis.it/FreeXL
Summary : Library to extract data from within an Excel spreadsheet
Description :
FreeXL is a library to extract valid data
from within an Excel spreadsheet (.xls)
Design goals:
* simple and lightweight
* stable, robust and efficient
* easily and universally portable
* completely ignore any GUI-related oddity
--------------------------------------------------------------------------------
Update Information:
Security fix for CVE-2017-2923 and CVE-2017-2924
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1490896 - CVE-2017-2924 freexl: Heap-based buffer overflow in the read_legacy_biff function
https://bugzilla.redhat.com/show_bug.cgi?id=1490896
[ 2 ] Bug #1490898 - CVE-2017-2923 freexl: Heap-based buffer overflow in the read_biff_next_record function
https://bugzilla.redhat.com/show_bug.cgi?id=1490898
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update freexl' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/ht…
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------