Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released
The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0.
The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.
Question Full path disclosure downloading attachments
It seems this only happens when you edit forum entries.
This is my workaround; it's a bit technical:
1. Make a backup. We have to modify some database fields, so the entire site could break.
2. Using phpmyadmin (or similar) go to kunena_attachments table.
3. Search something relevant of your path (for example, media) in the filename_real field:
4. Results are the attachments with full path. Just edit each one deleting the full path and keeping the file name.
For example, in your case you should have an entry with media/kunena/attachments/Dienstleistungskatalog_eines_Versicherungsbrokers.pdf/Dienstleistungskatalog_eines_Versicherungsbrokers.pdf and after editing you should have only Dienstleistungskatalog_eines_Versicherungsbrokers.pdf
Obviously, you have to do this every time you edit a forum entry while a patch is provided.
If you don't know how to do it, I can give you a hand. Just use the contact form of my website and I will help you.
Regards,
Jose
Please Log in or Create an account to join the conversation.
- webuniverse
-
- Offline
- New Member
-
- Posts: 3
- Thank you received: 0
Thanks for your solution, but is not exactly like this.
I made to printscreens from a wrong and a correct entry.
The "folder" entry is not correct...
OLD: /media/kunena/attachments/documentname.pdf
Correct: media/kunena/attachments
Maybe i can make a database replace from all entries with ".pdf" to /media/kunena/attachments
i will try this :silly:
Thank you for your help
Corinne
Please Log in or Create an account to join the conversation.
In my case, the full path disclosure is located only in the filename_real field...
To be fully sure there is no path disclosure we should replace all downloadable file types, not only .pdf. More work to do! :silly:
Regards,
Jose
Please Log in or Create an account to join the conversation.
- webuniverse
-
- Offline
- New Member
-
- Posts: 3
- Thank you received: 0
If somebody else have the same problem here my Script
UPDATE `xxx_kunena_attachments` SET `folder` = "media/kunena/attachments" WHERE `folder` LIKE "%.pdf"
Now everything works okay
Have a nice Day
Corinne
Please Log in or Create an account to join the conversation.
I'am investigating on the issue actually, but if you set protected attachments on ON the path of attachment that you can see when you hover it is the following :
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.
When I discovered the issue, the protect attachments option was set to OFF. After that, I enabled it, edited a post and uploaded a file but the issue still remained...
Regards,
Jose
Please Log in or Create an account to join the conversation.