The only way to do it without modifying the template (or doing something a lot more complicated) would be to do a str_replace at some point, either before or after it's rendered. But it can be difficult to figure out exactly what string to match.
Looking at the compiled header template from the database (which is what will be in the template cache), the part you want looks like this:
Code:
vB_Template_Runtime::linkBuild("member", $bbuserinfo) . '') . '</li>
and you'd want to insert your code just before the </li> at the end. So maybe something like this (maybe at hook parse_templates):
PHP Code:
$injected_code = "something";
$find = 'vB_Template_Runtime::linkBuild("member", $bbuserinfo) . \'\') . \'</li>';
$replace = 'vB_Template_Runtime::linkBuild("member", $bbuserinfo) . \'\') . \'' . $injected_code . '</li>';
$vbulletin->templatecache['header'] = str_replace($find, $replace, $vbulletin->templatecache['header']);
(BTW, I haven't tried this at all)
You may also be interested in this mod:
www.vbulletin.org/forum/showthread.php?t=152931 although I haven't tried it myself.