Ticket #599 (closed Task: fixed)

Opened 12 months ago

Last modified 7 months ago

Make archive.sh not accessible via http

Reported by: No5251 Owned by:
Priority: critical Milestone: RobotRock
Component: Documentation Keywords:
Cc: Sensitive:

Description

In the documentation http://piwik.org/docs/setup-auto-archiving/ should be a hint to place the archive.sh on another place than the document root. If it is in the document root everybody can download it and get the secret(?) api key.

Attachments

get_php5_path.patch Download (420 bytes) - added by pebosi 12 months ago.
first step is to get php5 path, or? :)
archive.sh.txt Download (1.2 KB) - added by pebosi 12 months ago.
here's a new version of archive.sh file, please review it. if i should create a patch, please ask.
599_sed.patch Download (1.3 KB) - added by pebosi 12 months ago.
patch file with vipsoft sed version
599_sed_2.patch Download (1.3 KB) - added by pebosi 12 months ago.
forget to remove cat. new version

Change History

  Changed 12 months ago by vipsoft

Should also add a .htaccess file (Deny from all) for those who don't RTM.

Also, in misc/cron/archive.sh, add 'month' to:

for period in day week year; do

  Changed 12 months ago by No5251

"Deny from all" only restricts access on servers that recognise .htaccess. But better than nothing ...

  Changed 12 months ago by matt

I totally agree with this and this should be fixed in the next release. Ideally we shouldn't need to edit this file at all, so the file wouldn't contain any sensitive info:

  • we should guess where the local php-cli sits (I think there are some unix commands to do that?)
  • we should get the md5 password from config/config.ini.php
  • call the piwik api: UsersManager.getTokenAuth (userLogin, md5Password) to get the token_auth

if you want to submit a patch to do that in shell in archive.sh that would be great :-)

vipsoft, we don't need to add month as year archives all month and them sum months in the year to get the year data.

  Changed 12 months ago by matt

  • milestone changed from DigitalVibes to RobotRock

Changed 12 months ago by pebosi

first step is to get php5 path, or? :)

follow-up: ↓ 17   Changed 12 months ago by matt

also we should update the documentation on http://piwik.org/docs/setup-auto-archiving/ when done (and clarify the last section, now override config file values *should* be done in config.ini.php

  Changed 12 months ago by matt

to get current path of archive script automatically (to read config file)

 http://fritzthomas.com/open-source/linux/384-how-to-get-the-absolute-path-within-the-running-bash-script/

Changed 12 months ago by pebosi

here's a new version of archive.sh file, please review it. if i should create a patch, please ask.

  Changed 12 months ago by pebosi

what i dont like on my version is getting username and password but not found an easier way yet...

  Changed 12 months ago by vipsoft

Assuming the superuser section appears first in the config file, an alternative is to use sed, e.g.,

PIWIK_SUPERUSER=`sed '/^login = /!d;s///;q' $PIWIK_CONFIG`
PIWIK_SUPERUSER_PASSWORD=`sed '/^password = /!d;s///;q' $PIWIK_CONFIG`

Or if these are double quoted:

PIWIK_SUPERUSER=`sed '/^login = "*/!d;s///;s/"$//;q' $PIWIK_CONFIG`
PIWIK_SUPERUSER_PASSWORD=`sed '/^password = "*/!d;s///;s/"$//;q' $PIWIK_CONFIG`

  Changed 12 months ago by matt

code should be solid indeed, works for

login=root
login = root
login = "root"
login	=root (with tab)

note:

  • login & password cannot contain double quote, they would be encoded as " so it's safe to sed out any double quote.
  • I don't think we can assume the [superuser] will be first, other sections containing password keys could be there below. However I think it can be done easily, by getting the line number of the [superuser] string using grep, then grepping content from this line number using
    tail -n+15 file # returns all lines after 15th line
    

  Changed 12 months ago by matt

also, code could error if login is empty, or if password length <> 32

  Changed 12 months ago by vipsoft

This delays the match until it sees the [superuser] section, and ignores whitespace and double quotes.

PIWIK_SUPERUSER=`sed '/^\[superuser\]/,$!d;/^login[ \t]*=[ \t]*"*/!d;s///;s/"*[ \t]*$//;q' $PIWIK_CONFIG`
PIWIK_SUPERUSER_PASSWORD=`sed '/^\[superuser\]/,$!d;/^password[ \t]*=[ \t]*"*/!d;s///;s/"*[ \t]*$//;q' $PIWIK_CONFIG`

It's not bulletproof, but if the [superuser] section isn't properly configured, the user has a bigger problem than archive.sh not working.

Changed 12 months ago by pebosi

patch file with vipsoft sed version

Changed 12 months ago by pebosi

forget to remove cat. new version

  Changed 12 months ago by matt

  • status changed from new to closed
  • resolution set to fixed

(In [990]) - fixes #599 Make archive.sh not accessible via http; patch by pebosi and vipsoft!

  Changed 12 months ago by matt

thanks guys, and well done pebosi for your first patch :)

follow-ups: ↓ 18 ↓ 21   Changed 12 months ago by vipsoft

Just a final comment to clarify this issue, classified by others as an "access vulnerability".

Piwik is secure by default. Up to and including 0.2.32, archive.sh does not ship with the superuser's API key and Piwik never configures this file with the superuser's API key. Not through the installer, not through the admin panel (no faciliy provided to do this). archive.sh requires a Unix (or Unix-like) environment (i.e., bash script), and command line php5 to be installed.

By default, archiving is an internal Piwik process. The external archive.sh file is not required by default.

To a certain degree, this vulnerability is user error. To expose the API key, the user knowingly edits this file manually, and assumed to have sufficient Unix knowledge to set up a cron job, change file permissions, etc.

  Changed 11 months ago by tez1

  Changed 11 months ago by jamieee

in reply to: ↑ 5   Changed 9 months ago by Galadriel

in reply to: ↑ 14   Changed 8 months ago by Jeniffer

  Changed 8 months ago by bobolok

  Changed 8 months ago by ufohvunl

in reply to: ↑ 14   Changed 8 months ago by albass

  Changed 7 months ago by alivenk

Note: See TracTickets for help on using tickets.