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
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;

62
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;

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

64
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/

65
great work trez! :)

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

Welcome back! :D

67
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.

68
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:








69
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?

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

71
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']));

72
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.

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

74
yes, both very good ressources!

75
Hallo Harald,

die Änderung wurde im Zuge der neue Möglichkeit gemacht, dass nun keywords bestehend aus mehreren Wörtern möglich sind.

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