MyBB Community Forums

Full Version: When you think he's finished :/
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
I just decided to follow Phyrrus around a bit and I found his site with "his" plugins on it:

http://phyrrus.net/showthread.php?tid=22

oh my.. that does look kinda familiar:

http://mods.mybboard.net/view/default-profile


To make it easier for others to understand what he did, I'm going to post the code of both of them now.

Phyrrus:

<?php
/*
	Default Profile Plugin
	
	Gives new users who register a default avatar, signature, profile.
	For MyBB 1.4.x.
	
	Copyright © 2009 Phyrrus (http://phyrrus.net)
	
	==========
	LICENSE
	==========
	This plugin by phyrrus is licensed under the 
	phyrrus.net License
	
	
	A summary follows for convenience:
	
	You are free:
		To use the software
		To share -- to copy, distribute and transmit the work as the original whole

	Under the following conditions:
		Attribution.  You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work).  All author and copyright notices must be left intact at ALL times while using the software, and in any redistributed package.
		No Derivative Works.  You may not release altered, transformed, or otherwise modified versions of this work.  However, you may modify the software for use on your forum only.  Translations must be done using external .lang.php files.
		
	- For any reuse or distribution, you must make clear to others the licence terms of this work.
	- The author's moral rights are retained in this licence.

*/

if(!defined("IN_MYBB"))
{
	die("Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.");
}

function defaultprofile_info()
{
	global $lang;
	defaultprofile_load_language();
	
	return array(
		"name"			=> $lang->defaultprofile,
		"description"	=> $lang->defaultprofile_desc,
		"website"		=> "http://www.phyrrus.net",
		"author"		=> "Phyrrus",
		"authorsite"	=> "http://www.phyrrus.net",
		"version"		=> "2.1.0",
		"guid"			  => "",
		"compatibility"   => "14*",
		
		// DennisTT custom info
		"codename" => 'defaultprofile',
	);
}

// Helper function to load the language variables
function defaultprofile_load_language()
{
	global $lang;
	if(!defined('DENNISTT_DEFAULTPROFILE_LANG_LOADED'))
	{
		$lang->load('defaultprofile', false, true);
		
		if(!isset($lang->defaultprofile))
		{
			$lang->defaultprofile = 'Default Profile';
			$lang->defaultprofile_desc = 'Gives new users who register a default avatar, signature, and profile options. For MyBB 1.4.x.';
			
		}
		
		define('DENNISTT_DEFAULTPROFILE_LANG_LOADED', 1);
	}
}

function defaultprofile_activate()
{
	global $db;
	$info = defaultprofile_info();
	
	// Remove old plugin stuff
	defaultprofile_deactivate();

	$setting_group_array = array(
		'name' => str_replace(' ', '_', 'dennistt_'.strtolower($info['codename'])),
		'title' => "$info[name] (DennisTT)",
		'description' => "Settings for the $info[name] plugin",
		'disporder' => 1,
		'isdefault' => '0',
		);
	$db->insert_query('settinggroups', $setting_group_array);
	$group = $db->insert_id();

	$settings = array(
		'defaultprofile_avatar' => array('Avatar URL', 'The URL to the default avatar (eg. images/avatars/php.gif or http://anothersite.com/someimage.gif)', 'text', './images/avatars/php.gif'),
		'defaultprofile_signature' => array('Signature', 'This will be the user\'s default signature.<br /><br />The following codes will be replaced:<br />{username} - username<br />{regdate} - Registration date<br />{bbname} - Board name', 'textarea', '{username}, proud to be a member of {bbname} since {regdate}.'),
		'defaultprofile_additionalgroups' => array('Additional Usergroups', 'Any additional group IDs the user should be part of.  (Comma separated values)', 'text', ''),
		'defaultprofile_website' => array('Website URL', 'Default profile website URL', 'text', ''),
		'defaultprofile_remember' => array('Remember Login', 'Remember login status next time the user visits?', 'yesno', '1'),
		'defaultprofile_showsigs' => array('Show Signatures', 'Show signatures in posts?', 'yesno', '1'),
		'defaultprofile_showavatars' => array('Show Avatars', 'Show avatars in posts?', 'yesno', '1'),
		'defaultprofile_showquickreply' => array('Show Quick Reply', 'Show quick reply in threads?', 'yesno', '0'),
		'defaultprofile_showredirect' => array('Show Redirect', 'Show friendly redirects?', 'yesno', '1'),
		'defaultprofile_tpp' => array('Threads Per Page', 'Number of threads shown per page.  Enter zero \'0\' for board setting.', 'text', '0'),
		'defaultprofile_ppp' => array('Posts Per Page', 'Number of posts shown per page.  Enter zero \'0\' for board setting.', 'text', '0'),
		'defaultprofile_style' => array('Theme Selection', 'Theme ID for new users to use.  Enter zero \'0\' for board default.', 'text', '0'),
		'defaultprofile_threadmode' => array('Threaded View Mode?', 'Select \'yes\' to use threaded viewing mode.  Select \'no\' to use linear viewing mode.', 'yesno', '0'),
		'defaultprofile_daysprune' => array('Thread Listing Limit', 'Show threads from X days and after.  Enter zero \'0\' for board setting. Enter \'all\' to show all threads regardless of date', 'text', 'all'),
		'defaultprofile_notepad' => array('User Notepad', 'Notepad content', 'textarea', ''),
		'defaultprofile_classicpostbit' => array('Use Classic Postbit?', 'The classic postbit is the vertical postbit', 'yesno', '0'),
		);

	$i = 1;
	foreach($settings as $name => $sinfo)
	{
		$insert_array = array(
			'name' => $name,
			'title' => $db->escape_string($sinfo[0]),
			'description' => $db->escape_string($sinfo[1]),
			'optionscode' => $db->escape_string($sinfo[2]),
			'value' => $db->escape_string($sinfo[3]),
			'gid' => $group,
			'disporder' => $i,
			'isdefault' => 0,
			);
		$db->insert_query('settings', $insert_array);
		$i++;
	}
	rebuild_settings();
}

function defaultprofile_deactivate()
{
	global $db;
	$info = defaultprofile_info();
	$result = $db->simple_select('settinggroups', 'gid', "name = '".str_replace(' ', '_', 'dennistt_'.strtolower($info['codename']))."'", array('limit' => 1));
	$group = $db->fetch_array($result);
	
	if(!empty($group['gid']))
	{
		$db->delete_query('settinggroups', "gid='{$group['gid']}'");
		$db->delete_query('settings', "gid='{$group['gid']}'");
		rebuild_settings();
	}
}

$plugins->add_hook("member_do_register_start", "defaultprofile_register_start");
function defaultprofile_register_start()
{
	define('DEFAULTPROFILE_REGISTERING', true);
}

$plugins->add_hook("datahandler_user_insert", "defaultprofile_insert");
function defaultprofile_insert($user)
{
	global $db, $mybb;
	if(defined('DEFAULTPROFILE_REGISTERING'))
	{
		if(!empty($mybb->settings['defaultprofile_avatar']))
		{
			$user->user_insert_data['avatar'] = $db->escape_string($mybb->settings['defaultprofile_avatar']);
			$user->user_insert_data['avatartype'] = 'remote';
		}
		if(!empty($mybb->settings['defaultprofile_signature']))
		{
			$default_signature = $mybb->settings['defaultprofile_signature'];
			$default_signature = str_replace("{username}", $user->user_insert_data['username'], $default_signature);
			$default_signature = str_replace("{regdate}", date($mybb->settings['regdateformat'], time()), $default_signature);
			$default_signature = str_replace("{bbname}", $mybb->settings['bbname'], $default_signature);
			$user->user_insert_data['signature'] = $db->escape_string($default_signature);
		}
		if(!empty($mybb->settings['defaultprofile_additionalgroups']))
		{
			$user->user_insert_data['additionalgroups'] = $db->escape_string($mybb->settings['defaultprofile_additionalgroups']);
		}
		if(!empty($mybb->settings['defaultprofile_website']))
		{
			$user->user_insert_data['website'] = $db->escape_string($mybb->settings['defaultprofile_website']);
		}
		if($mybb->settings['defaultprofile_remember'] == 1)
		{
			$user->user_insert_data['remember'] = 1;
		}
		else
		{
			$user->user_insert_data['remember'] = 0;
		}
		if($mybb->settings['defaultprofile_showsigs'] == 1)
		{
			$user->user_insert_data['showsigs'] = 1;
		}
		else
		{
			$user->user_insert_data['showsigs'] = 0;
		}
		if($mybb->settings['defaultprofile_showavatars'] == 1)
		{
			$user->user_insert_data['showavatars'] = 1;
		}
		else
		{
			$user->user_insert_data['showavatars'] = 0;
		}
		if($mybb->settings['defaultprofile_showquickreply'] == 1)
		{
			$user->user_insert_data['showquickreply'] = 1;
		}
		else
		{
			$user->user_insert_data['showquickreply'] = 0;
		}
		if($mybb->settings['defaultprofile_showredirect'] == 1)
		{
			$user->user_insert_data['showredirect'] = 1;
		}
		else
		{
			$user->user_insert_data['showredirect'] = 0;
		}
		if(!empty($mybb->settings['defaultprofile_tpp']))
		{
			$user->user_insert_data['tpp'] = intval($mybb->settings['defaultprofile_tpp']);
		}
		if(!empty($mybb->settings['defaultprofile_ppp']))
		{
			$user->user_insert_data['ppp'] = intval($mybb->settings['defaultprofile_ppp']);
		}
		if(!empty($mybb->settings['defaultprofile_style']))
		{
			$user->user_insert_data['style'] = intval($mybb->settings['defaultprofile_style']);
		}
		if($mybb->settings['defaultprofile_threadmode'] == 'yes')
		{
			$user->user_insert_data['threadmode'] = 'threaded';
		}
		else
		{
			$user->user_insert_data['threadmode'] = 'linear';
		}
		if(!empty($mybb->settings['defaultprofile_daysprune']))
		{
			$user->user_insert_data['daysprune'] = intval($mybb->settings['defaultprofile_daysprune']);
		}
		if(!empty($mybb->settings['defaultprofile_notepad']))
		{
			$user->user_insert_data['notepad'] = $db->escape_string($mybb->settings['defaultprofile_notepad']);
		}
		if($mybb->settings['defaultprofile_classicpostbit'] == 1)
		{
			$user->user_insert_data['classicpostbit'] = 1;
		}
		else
		{
			$user->user_insert_data['classicpostbit'] = 0;
		}
	}
}
?>

Dennis:

<?php
/*
	Default Profile Plugin
	
	Gives new users who register a default avatar, signature, profile.
	For MyBB 1.4.x.
	
	Copyright © 2006, 2008 Dennis Tsang (http://dennistt.net)
	
	==========
	LICENSE
	==========
	This plugin by Dennis Tsang is licensed under the 
	Creative Commons Attribution-No Derivative Works 2.5 Canada License
	
	Summary: http://creativecommons.org/licenses/by-nd/2.5/ca/
	Legal Code: http://creativecommons.org/licenses/by-nd/2.5/ca/legalcode.en
	
	A summary follows for convenience:
	
	You are free:
		To use the software
		To share -- to copy, distribute and transmit the work as the original whole

	Under the following conditions:
		Attribution.  You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work).  All author and copyright notices must be left intact at ALL times while using the software, and in any redistributed package.
		No Derivative Works.  You may not release altered, transformed, or otherwise modified versions of this work.  However, you may modify the software for use on your forum only.  Translations must be done using external .lang.php files.
		
	- For any reuse or distribution, you must make clear to others the licence terms of this work.
	- The author's moral rights are retained in this licence.

*/

if(!defined("IN_MYBB"))
{
	die("Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.");
}

function defaultprofile_info()
{
	global $lang;
	defaultprofile_load_language();
	
	return array(
		"name"			=> $lang->defaultprofile,
		"description"	=> $lang->defaultprofile_desc,
		"website"		=> "http://www.dennistt.net",
		"author"		=> "DennisTT",
		"authorsite"	=> "http://www.dennistt.net",
		"version"		=> "2.1.0",
		"guid"			  => "",
		"compatibility"   => "14*",
		
		// DennisTT custom info
		"codename" => 'defaultprofile',
	);
}

// Helper function to load the language variables
function defaultprofile_load_language()
{
	global $lang;
	if(!defined('DENNISTT_DEFAULTPROFILE_LANG_LOADED'))
	{
		$lang->load('defaultprofile', false, true);
		
		if(!isset($lang->defaultprofile))
		{
			$lang->defaultprofile = 'Default Profile';
			$lang->defaultprofile_desc = 'Gives new users who register a default avatar, signature, and profile options. For MyBB 1.4.x.';
			
		}
		
		define('DENNISTT_DEFAULTPROFILE_LANG_LOADED', 1);
	}
}

function defaultprofile_activate()
{
	global $db;
	$info = defaultprofile_info();
	
	// Remove old plugin stuff
	defaultprofile_deactivate();

	$setting_group_array = array(
		'name' => str_replace(' ', '_', 'dennistt_'.strtolower($info['codename'])),
		'title' => "$info[name] (DennisTT)",
		'description' => "Settings for the $info[name] plugin",
		'disporder' => 1,
		'isdefault' => '0',
		);
	$db->insert_query('settinggroups', $setting_group_array);
	$group = $db->insert_id();

	$settings = array(
		'defaultprofile_avatar' => array('Avatar URL', 'The URL to the default avatar (eg. images/avatars/php.gif or http://anothersite.com/someimage.gif)', 'text', './images/avatars/php.gif'),
		'defaultprofile_signature' => array('Signature', 'This will be the user\'s default signature.<br /><br />The following codes will be replaced:<br />{username} - username<br />{regdate} - Registration date<br />{bbname} - Board name', 'textarea', '{username}, proud to be a member of {bbname} since {regdate}.'),
		'defaultprofile_additionalgroups' => array('Additional Usergroups', 'Any additional group IDs the user should be part of.  (Comma separated values)', 'text', ''),
		'defaultprofile_website' => array('Website URL', 'Default profile website URL', 'text', ''),
		'defaultprofile_remember' => array('Remember Login', 'Remember login status next time the user visits?', 'yesno', '1'),
		'defaultprofile_showsigs' => array('Show Signatures', 'Show signatures in posts?', 'yesno', '1'),
		'defaultprofile_showavatars' => array('Show Avatars', 'Show avatars in posts?', 'yesno', '1'),
		'defaultprofile_showquickreply' => array('Show Quick Reply', 'Show quick reply in threads?', 'yesno', '0'),
		'defaultprofile_showredirect' => array('Show Redirect', 'Show friendly redirects?', 'yesno', '1'),
		'defaultprofile_tpp' => array('Threads Per Page', 'Number of threads shown per page.  Enter zero \'0\' for board setting.', 'text', '0'),
		'defaultprofile_ppp' => array('Posts Per Page', 'Number of posts shown per page.  Enter zero \'0\' for board setting.', 'text', '0'),
		'defaultprofile_style' => array('Theme Selection', 'Theme ID for new users to use.  Enter zero \'0\' for board default.', 'text', '0'),
		'defaultprofile_threadmode' => array('Threaded View Mode?', 'Select \'yes\' to use threaded viewing mode.  Select \'no\' to use linear viewing mode.', 'yesno', '0'),
		'defaultprofile_daysprune' => array('Thread Listing Limit', 'Show threads from X days and after.  Enter zero \'0\' for board setting. Enter \'all\' to show all threads regardless of date', 'text', 'all'),
		'defaultprofile_notepad' => array('User Notepad', 'Notepad content', 'textarea', ''),
		'defaultprofile_classicpostbit' => array('Use Classic Postbit?', 'The classic postbit is the vertical postbit', 'yesno', '0'),
		);

	$i = 1;
	foreach($settings as $name => $sinfo)
	{
		$insert_array = array(
			'name' => $name,
			'title' => $db->escape_string($sinfo[0]),
			'description' => $db->escape_string($sinfo[1]),
			'optionscode' => $db->escape_string($sinfo[2]),
			'value' => $db->escape_string($sinfo[3]),
			'gid' => $group,
			'disporder' => $i,
			'isdefault' => 0,
			);
		$db->insert_query('settings', $insert_array);
		$i++;
	}
	rebuild_settings();
}

function defaultprofile_deactivate()
{
	global $db;
	$info = defaultprofile_info();
	$result = $db->simple_select('settinggroups', 'gid', "name = '".str_replace(' ', '_', 'dennistt_'.strtolower($info['codename']))."'", array('limit' => 1));
	$group = $db->fetch_array($result);
	
	if(!empty($group['gid']))
	{
		$db->delete_query('settinggroups', "gid='{$group['gid']}'");
		$db->delete_query('settings', "gid='{$group['gid']}'");
		rebuild_settings();
	}
}

$plugins->add_hook("member_do_register_start", "defaultprofile_register_start");
function defaultprofile_register_start()
{
	define('DEFAULTPROFILE_REGISTERING', true);
}

$plugins->add_hook("datahandler_user_insert", "defaultprofile_insert");
function defaultprofile_insert($user)
{
	global $db, $mybb;
	if(defined('DEFAULTPROFILE_REGISTERING'))
	{
		if(!empty($mybb->settings['defaultprofile_avatar']))
		{
			$user->user_insert_data['avatar'] = $db->escape_string($mybb->settings['defaultprofile_avatar']);
			$user->user_insert_data['avatartype'] = 'remote';
		}
		if(!empty($mybb->settings['defaultprofile_signature']))
		{
			$default_signature = $mybb->settings['defaultprofile_signature'];
			$default_signature = str_replace("{username}", $user->user_insert_data['username'], $default_signature);
			$default_signature = str_replace("{regdate}", date($mybb->settings['regdateformat'], time()), $default_signature);
			$default_signature = str_replace("{bbname}", $mybb->settings['bbname'], $default_signature);
			$user->user_insert_data['signature'] = $db->escape_string($default_signature);
		}
		if(!empty($mybb->settings['defaultprofile_additionalgroups']))
		{
			$user->user_insert_data['additionalgroups'] = $db->escape_string($mybb->settings['defaultprofile_additionalgroups']);
		}
		if(!empty($mybb->settings['defaultprofile_website']))
		{
			$user->user_insert_data['website'] = $db->escape_string($mybb->settings['defaultprofile_website']);
		}
		if($mybb->settings['defaultprofile_remember'] == 1)
		{
			$user->user_insert_data['remember'] = 1;
		}
		else
		{
			$user->user_insert_data['remember'] = 0;
		}
		if($mybb->settings['defaultprofile_showsigs'] == 1)
		{
			$user->user_insert_data['showsigs'] = 1;
		}
		else
		{
			$user->user_insert_data['showsigs'] = 0;
		}
		if($mybb->settings['defaultprofile_showavatars'] == 1)
		{
			$user->user_insert_data['showavatars'] = 1;
		}
		else
		{
			$user->user_insert_data['showavatars'] = 0;
		}
		if($mybb->settings['defaultprofile_showquickreply'] == 1)
		{
			$user->user_insert_data['showquickreply'] = 1;
		}
		else
		{
			$user->user_insert_data['showquickreply'] = 0;
		}
		if($mybb->settings['defaultprofile_showredirect'] == 1)
		{
			$user->user_insert_data['showredirect'] = 1;
		}
		else
		{
			$user->user_insert_data['showredirect'] = 0;
		}
		if(!empty($mybb->settings['defaultprofile_tpp']))
		{
			$user->user_insert_data['tpp'] = intval($mybb->settings['defaultprofile_tpp']);
		}
		if(!empty($mybb->settings['defaultprofile_ppp']))
		{
			$user->user_insert_data['ppp'] = intval($mybb->settings['defaultprofile_ppp']);
		}
		if(!empty($mybb->settings['defaultprofile_style']))
		{
			$user->user_insert_data['style'] = intval($mybb->settings['defaultprofile_style']);
		}
		if($mybb->settings['defaultprofile_threadmode'] == 'yes')
		{
			$user->user_insert_data['threadmode'] = 'threaded';
		}
		else
		{
			$user->user_insert_data['threadmode'] = 'linear';
		}
		if(!empty($mybb->settings['defaultprofile_daysprune']))
		{
			$user->user_insert_data['daysprune'] = intval($mybb->settings['defaultprofile_daysprune']);
		}
		if(!empty($mybb->settings['defaultprofile_notepad']))
		{
			$user->user_insert_data['notepad'] = $db->escape_string($mybb->settings['defaultprofile_notepad']);
		}
		if($mybb->settings['defaultprofile_classicpostbit'] == 1)
		{
			$user->user_insert_data['classicpostbit'] = 1;
		}
		else
		{
			$user->user_insert_data['classicpostbit'] = 0;
		}
	}
}
?>

Phyrrus:

http://www.phyrrus.net

Dennis:

http://www.dennistt.net


I think one of the funniest parts is that he doesn't even rename it xD
The phyrrus.com link is going nowhere.

So what we have hear is a guy claiming he's making plugins and simply changing the wording around in files to make it appear as his own?...
haha.. I found an error in his coding.. it still says "dennistt" in a lot of spots if you look closely.
Pretty sad :/
exactly Wink Just thought I'd post the evidence
what a tool
yea.. i don't think its a typo Toungue
Now you know why I banned him at my sites and didn't trust him. He even steals free plugins. Imagine what he would do with my work. Someone needs to send a C&D to his ISP.
I did tell Dennis about this but maybe he didn't see the message... the funniest thing is this in 'Phyrrus' version, which atomicj pointed out and what I noticed before...

// DennisTT custom info

He didn't even change that so it's blanently obvious it's not his. I'll let Dennis know again.

He asked me to make a free Awards plugin too.

Rolleyes
I think that we should ban his Ip from this site and others. I mean he is stealing the plugins here...

I think something needs to be done about this.
(2009-02-25, 09:11 AM)labrocca Wrote: [ -> ]Now you know why I banned him at my sites and didn't trust him. He even steals free plugins. Imagine what he would do with my work. Someone needs to send a C&D to his ISP.

C&D letters don't solve everything on the web. Wink
Should some one report him? Yes, but a C&D letter wont do much.
And you might get laughed at, some countries don't even have laws that protect internet copyrights such as development or design.
(2009-02-26, 05:30 AM)Beatrix Kiddo Wrote: [ -> ]
(2009-02-25, 09:11 AM)labrocca Wrote: [ -> ]Now you know why I banned him at my sites and didn't trust him. He even steals free plugins. Imagine what he would do with my work. Someone needs to send a C&D to his ISP.

C&D letters don't solve everything on the web. Wink
Should some one report him? Yes, but a C&D letter wont do much.
And you might get laughed at, some countries don't even have laws that protect internet copyrights such as development or design.

no offense but pretty sure labrocca knows what he's talking about, a c&d is the first step you take
Pages: 1 2 3