Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix telegraf vulns #795

Merged
merged 1 commit into from
Jul 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .trivyignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
#[vishwa] - Fix telegraf & test all for next release - see work item #https://msazure.visualstudio.com/InfrastructureInsights/_workitems/edit/13322134
# Unfixed as of 4/28/2022
CVE-2019-3826
CVE-2022-27191

#still present in mdsd telegraf
CVE-2021-42836
CVE-2022-1996
CVE-2022-29190
CVE-2022-29222
CVE-2022-29189

# ruby in /usr/lib
CVE-2020-36327
Expand All @@ -16,4 +16,4 @@ CVE-2021-31799
CVE-2021-28965

#dpkg vulnerability in ubuntu
CVE-2022-1304
CVE-2022-1304
7 changes: 4 additions & 3 deletions kubernetes/linux/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ fi
/usr/bin/dpkg -i $TMPDIR/azure-mdsd*.deb
cp -f $TMPDIR/mdsd.xml /etc/mdsd.d
cp -f $TMPDIR/envmdsd /etc/mdsd.d
rm /usr/sbin/telegraf

# log rotate conf for mdsd and can be extended for other log files as well
cp -f $TMPDIR/logrotate.conf /etc/logrotate.d/ci-agent
Expand All @@ -40,10 +41,10 @@ sudo apt-get install jq=1.5+dfsg-2 -y
#used to setcaps for ruby process to read /proc/env
sudo apt-get install libcap2-bin -y

wget https://dl.influxdata.com/telegraf/releases/telegraf-1.22.2_linux_$ARCH.tar.gz
tar -zxvf telegraf-1.22.2_linux_$ARCH.tar.gz
wget https://dl.influxdata.com/telegraf/releases/telegraf-1.23.2_linux_$ARCH.tar.gz
tar -zxvf telegraf-1.23.2_linux_$ARCH.tar.gz
ganga1980 marked this conversation as resolved.
Show resolved Hide resolved

mv /opt/telegraf-1.22.2/usr/bin/telegraf /opt/telegraf
mv /opt/telegraf-1.23.2/usr/bin/telegraf /opt/telegraf

chmod 544 /opt/telegraf

Expand Down
2 changes: 1 addition & 1 deletion kubernetes/windows/setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Write-Host ('Finished Installing Fluentbit')

Write-Host ('Installing Telegraf');
try {
$telegrafUri='https://dl.influxdata.com/telegraf/releases/telegraf-1.22.2_windows_amd64.zip'
$telegrafUri='https://dl.influxdata.com/telegraf/releases/telegraf-1.23.2_windows_amd64.zip'
ganga1980 marked this conversation as resolved.
Show resolved Hide resolved
Invoke-WebRequest -Uri $telegrafUri -OutFile /installation/telegraf.zip
Expand-Archive -Path /installation/telegraf.zip -Destination /installation/telegraf
Move-Item -Path /installation/telegraf/*/* -Destination /opt/telegraf/ -ErrorAction SilentlyContinue
Expand Down