Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - kai

Pages: 1 2 3 4 [5] 6 7 8 9 ... 48
61
Feedback & Suggestions / Re: 4images 1.7.10 - Feedback
« on: April 13, 2012, 11:56:24 AM »
Ja, so wie Andy es sagt.

62
A cross site scripting vulnerability in 4images 1.7 - 1.7.10 has been found.

To fix this:

In details.php

find

$meta_keywords  = !empty($image_row['image_keywords']) ? implode(", "explode(","$image_row['image_keywords'])) : "";
$meta_description = !empty($image_row['image_description']) ? strip_tags($image_row['image_description']) . ". " "";


and replace it with

$meta_keywords  = !empty($image_row['image_keywords']) ? strip_tags(implode(", "explode(","$image_row['image_keywords']))) : "";
$meta_description = !empty($image_row['image_description']) ? strip_tags($image_row['image_description']) . ". " "";



and in rss.php

find 2 x

$text format_text(trim($text), 101);

and replace it both times with

$text format_text(trim($text), 201);

63
A open redirect vulnerability in the 4images admin panel 1.7 - 1.7.10 has been found.

To fix this:

In admin/index.php

find

if ($redirect != "") {
show_admin_header("<meta http-equiv=\"Refresh\" content=\"0; URL=".$site_sess->url($redirect)."\">");
echo 
"<p><a href=\"".$site_sess->url($redirect)."\">".$lang['admin_login_redirect']."</a></p>";
show_admin_footer();
exit;



and replace it with

if ($redirect != "") {
if (
strpos($redirect'://') === false) {
show_admin_header("<meta http-equiv=\"Refresh\" content=\"0; URL=".$site_sess->url($redirect)."\">");
echo 
"<p><a href=\"".$site_sess->url($redirect)."\">".$lang['admin_login_redirect']."</a></p>";
show_admin_footer();
} else {
redirect('home.php');
}
exit;

64
A cross site scripting vulnerability and possible sql injection in the 4images admin panel 1.7 - 1.7.10 has been found.

To fix this:

In admin/categories.php

find

$cat_parent_id = (isset($HTTP_GET_VARS['cat_parent_id'])) ? $HTTP_GET_VARS['cat_parent_id'] : 0;

and replace it with

$cat_parent_id = (isset($HTTP_GET_VARS['cat_parent_id'])) ? intval($HTTP_GET_VARS['cat_parent_id']) : 0;

65
Chit Chat / Re: Happy xmas
« on: December 24, 2011, 06:23:37 PM »
Merry X-Mas to you all! :)

66
Mods & Plugins (Releases & Support) / Re: iPhone / iPad App: GalleryControl
« on: December 07, 2011, 11:21:56 AM »
You can contact him here:
http://apps.webwupp.com/

67
great work trez! :)

68
Chit Chat / Re: I'm back!
« on: October 10, 2011, 10:24:00 AM »
Hey trez!

Welcome back! :D

69
Mods & Plugins (Releases & Support) / Re: iPhone / iPad App: GalleryControl
« on: September 08, 2011, 08:57:13 AM »
Yes, like Rembrandt said, get in contact with Uwe Lammer.
He'll be happye to have support.

70
Mods & Plugins (Releases & Support) / iPhone / iPad App: GalleryControl
« on: August 23, 2011, 08:11:33 PM »
"Gallery Control" is an administrative iPhone and iPad App to control up to 2 4images galleries your are running.
You can monitor live what's happening in your gallery...

"Gallery Control" on iTunes:
http://itunes.apple.com/de/app/gallerycontrol/id450482295?l=de&ls=1&mt=8

The App has been developed by Uwe Lammer


iPhone:







iPad:








71
Chit Chat / Re: Stealing Site
« on: August 11, 2011, 04:30:23 PM »
How do you want to prevent that someone saves images from your site?

72
Installation, Update & Configuration / Re: 4images unter PHP 5.3
« on: July 08, 2011, 02:26:25 PM »
Ja, ist problemlos lauffähig.

73
Bug Fixes & Patches / [1.7.10] Fix for Auto-Login
« on: June 15, 2011, 05:11:29 PM »
If the auto-login is not working on your 1.7.10 installation of 4images please use this fix:

in includes/session.php

find

$this->set_cookie_data("userpass"$this->user_info['user_password']);

and replace with

$this->set_cookie_data("userpass"md5($this->user_info['user_password']));

74
Language Packs / Re: i need th [Language] Arabic for V1.7.10
« on: June 07, 2011, 08:33:34 AM »
Please use the forum search.

There are some language packs for version < 1.7.10
But you can extend them easily.

75
There is no version 4images 1.8.0.
Do you mean 1.7.10?

Pages: 1 2 3 4 [5] 6 7 8 9 ... 48