phpBB2.de Forum Index  
[netclusive - internet broadcasting]
 FAQ  •  Search  •  Download  •  Bookmarks  •  Memberlist  •  Usergroups   •  Register  •  Profile  •  Log in to check your private messages  •  Log in
 
        
 
        
 

LinkLift

View next topic
View previous topic

This forum is locked: you cannot post, reply to, or edit topics.This topic is locked: you cannot edit posts or make replies.
Author Message
stefan
Administrator
Administrator



Joined: 01 Aug 2002
Posts: 4735
Location: Aachen

PostPosted: Thu 27 Mar, 2008 12:10 Reply with quoteBack to top 

A Security Hole was found in the eXtreme Styles Mod which is also used in phpBB2 Plus 1.5x. You should apply this fix NOW:

Open file admin/admin_xs.php

FIND:
Code:
if(empty($setmodules))
{
   return;
}

REPLACE WITH:
Code:
if (!defined('IN_PHPBB'))
{
   die('Hacking attempt');
}

if(empty($setmodules))
{
   return;
}

CyberAlien post:
http://www.phpbbstyles.com/viewtopic.php?p=92240#92240

Other files, potential vulnerability:

Open /includes/functions_kb.php file

FIND:
Code:
//
// get_quick_stats();
// gets number of articles
//

BEFORE ADD:
Code:
if ( !defined('IN_PHPBB') )
{
   die('Hacking attempt');
}

Open /includes/functions.php file

FIND:
Code:
//-- mod : post icon -------------------------------------------------------------------------------

BEFORE ADD:
Code:
if ( !defined('IN_PHPBB') )
{
   die('Hacking attempt');
}


Thanks to ThE KuKa for Notification !

_________________
Bye
Stefan

Styles Demo Forum :: Download Database :: phpBB2 Plus 1.5x Demo
phpBB2 Toplist :: International phpBB2 Support

Anwesend - Back in Business
Kein Support per PM - No Support via PM
HiddenView user's profileSend private messageSend e-mailVisit poster's websiteICQ Number
Google







Posted: Back to top

jonny-b
phpBB2.de User
phpBB2.de User



Joined: 19 May 2004
Posts: 2400
Location: New York City

PostPosted: Thu 27 Mar, 2008 15:28 Reply with quoteBack to top 

thanks for the update Kuka! Stefan, whats the good word? Any other updates planned for Plus?

Best,
jB

_________________
I make themes for Plus 1.53a and phpBB2.
Check out mergenine for more info.
OfflineView user's profileSend private messageVisit poster's websiteAIM Address
ThE KuKa
phpBB2.de User
phpBB2.de User



Joined: 20 Jul 2003
Posts: 10
Location: Spain

PostPosted: Thu 27 Mar, 2008 18:36 Reply with quoteBack to top 

Wink

_________________
Translation Groupie Smartor | Language S. & Tester Mods.db9.dk | International Support Spain for phpBB
phpBB-Es.COM | Icy Phoenix Admin | phpBBMODs.Es
OfflineView user's profileSend private messageVisit poster's website
AlleyKat
phpBB2.de User
phpBB2.de User



Joined: 06 Aug 2003
Posts: 140

PostPosted: Fri 28 Mar, 2008 02:06 Reply with quoteBack to top 

Another one; in includes/kb_cat.php replace the 29. line
Code:
   $category_id = $_GET['cat'];
with
Code:
   $category_id = ( isset( $HTTP_GET_VARS['cat'] ) ) ? intval ( $HTTP_GET_VARS['cat'])  : intval ( $HTTP_POST_VARS['cat'] );
- an exploit is in the wild, so this fix should be applied immediately.

_________________
Image
OfflineView user's profileSend private messageVisit poster's website
Latent
phpBB2.de User
phpBB2.de User



Joined: 01 Nov 2004
Posts: 137

PostPosted: Fri 28 Mar, 2008 02:42 Reply with quoteBack to top 

Thanx the Kuka, stefan and AlleyKat..

what about jonny's question stefan? Wink
OfflineView user's profileSend private message
Latent
phpBB2.de User
phpBB2.de User



Joined: 01 Nov 2004
Posts: 137

PostPosted: Fri 28 Mar, 2008 03:16 Reply with quoteBack to top 

Yesterday when i edited the file admin_xs.php portal page was working but after i edited other files portal page has disappeared again:

http://www.phpbb2.de/ftopic46012-15.html

there is a problem but i didnt understand it, what you think may be it is about CTRACKER?

http://www.phpbb2.de/ftopic40846-15.html
OfflineView user's profileSend private message
spott
phpBB2.de User
phpBB2.de User



Joined: 24 Dec 2006
Posts: 2

PostPosted: Sun 30 Mar, 2008 09:01 Reply with quoteBack to top 

Hi

I get also hacked. Here is how:
First - IP where I get hacked: 81.192.223.194 - so You can block this IP.
How:
I found from my log files this line:
Code:

/kb.php?mode=cat&cat=-99999/**/union/**/select/**/0,1,2,3,concat(user_i,char(58),username,char(58),user_password),5/**/from/**/phpbb_users/**/where/**/user_id=2/news_rss.php HTTP/1.1" 2001" 200 14024


What e-amil hacker uses: joshkof@gmail.com

What hacker has made in portal - lucky I think nothing. He get admin access and disables all other admins. Changes also portal e-mail address. I checked the apache logs and I don't find nothing suspected anymore in this IP activity. He look to the portal, changes admins and emails and thats all.

I removed kb.php file and added fixes from this thread.

But I have question about news_rss.php file. Is this also dangerous or not. Right now I removed this file also.
OfflineView user's profileSend private message
Choas
phpBB2.de User
phpBB2.de User



Joined: 14 Feb 2007
Posts: 73

PostPosted: Mon 31 Mar, 2008 21:12 Reply with quoteBack to top 

Did you mean in includes/kb_cat.php we must replace :


AlleyKat wrote:
Code:
   $category_id = $_GET['cat'];


To this code ?
AlleyKat wrote:

Code:
   $category_id = ( isset( $HTTP_GET_VARS['cat'] ) ) ? intval ( $HTTP_GET_VARS['cat'])  : intval ( $HTTP_POST_VARS['cat'] );
- an exploit is in the wild, so this fix should be applied immediately.


Am I right ?
OfflineView user's profileSend private message
AlleyKat
phpBB2.de User
phpBB2.de User



Joined: 06 Aug 2003
Posts: 140

PostPosted: Thu 03 Apr, 2008 04:13 Reply with quoteBack to top 

Choas > That is what I wrote, and that is what I meant, yes. Wink

spott > That is what the fix is supposed to block.

_________________
Image
OfflineView user's profileSend private messageVisit poster's website
Choas
phpBB2.de User
phpBB2.de User



Joined: 14 Feb 2007
Posts: 73

PostPosted: Thu 03 Apr, 2008 09:05 Reply with quoteBack to top 

Thanks alot

I found in PaFiledb some hackers can upload some hack tools and even enject database.

Any Idia ?
OfflineView user's profileSend private message
jonny-b
phpBB2.de User
phpBB2.de User



Joined: 19 May 2004
Posts: 2400
Location: New York City

PostPosted: Thu 03 Apr, 2008 14:51 Reply with quoteBack to top 

Change your file UPLOAD permission to ADMIN or MOD's only.

_________________
I make themes for Plus 1.53a and phpBB2.
Check out mergenine for more info.
OfflineView user's profileSend private messageVisit poster's websiteAIM Address
Latent
phpBB2.de User
phpBB2.de User



Joined: 01 Nov 2004
Posts: 137

PostPosted: Sat 05 Apr, 2008 08:21 Reply with quoteBack to top 

How can we chanfe our file UPLOAD permissions, on ACP?
OfflineView user's profileSend private message
jonny-b
phpBB2.de User
phpBB2.de User



Joined: 19 May 2004
Posts: 2400
Location: New York City

PostPosted: Sat 05 Apr, 2008 21:01 Reply with quoteBack to top 

ACP --> Download, Permissions --> Change permissions as needed.

_________________
I make themes for Plus 1.53a and phpBB2.
Check out mergenine for more info.
OfflineView user's profileSend private messageVisit poster's websiteAIM Address
jonny-b
phpBB2.de User
phpBB2.de User



Joined: 19 May 2004
Posts: 2400
Location: New York City

PostPosted: Thu 10 Apr, 2008 15:04 Reply with quoteBack to top 

just ad's

_________________
I make themes for Plus 1.53a and phpBB2.
Check out mergenine for more info.
OfflineView user's profileSend private messageVisit poster's websiteAIM Address
ThE KuKa
phpBB2.de User
phpBB2.de User



Joined: 20 Jul 2003
Posts: 10
Location: Spain

PostPosted: Sun 20 Apr, 2008 21:27 Reply with quoteBack to top 

TIP: Not use NEVER prefix phpbb_ use other prefix tables Wink

_________________
Translation Groupie Smartor | Language S. & Tester Mods.db9.dk | International Support Spain for phpBB
phpBB-Es.COM | Icy Phoenix Admin | phpBBMODs.Es
OfflineView user's profileSend private messageVisit poster's website
Display posts from previous:      
This forum is locked: you cannot post, reply to, or edit topics.This topic is locked: you cannot edit posts or make replies.

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum

Similar Topics
Topic Author Forum Replies Posted
(Easy) Attachment Mod - Upload.php Se... yogiclear phpBB2.x - MOD Support 0 Sun 06 Sep, 2009 13:48 View latest post
Member, part, problem, DonvanVliet Support Forum 1 Wed 02 Sep, 2009 19:46 View latest post
Meldelisten-MOD gesucht Miroslav von Prolic phpBB2.x - MOD Request 0 Sat 25 Jul, 2009 12:01 View latest post
Suche einen Bewertungs mod ähnlich wi... Maggan22 phpBB2.x - MOD Request 0 Sun 21 Jun, 2009 11:37 View latest post
shoutbox mod Hellhammer34 phpBB2.x - MOD Support 7 Sat 23 May, 2009 16:29 View latest post