Devilzc0de Forum Follow @devilzc0de
  • Home
  • Hacking
  • Networking
  • Programming
  • O.S
  • Server
  • Tweets
  • Search
  • Member List
  • Calendar
Current time: 05-22-2013, 05:23 PM Hello There, Guest! (Login — Register)
Devilzc0de Forum › Information Technology › Hacking › Cracking v
1 2 3 4 5 ... 7 Next »

[Tutor] Password Dictionary Creator (perl)

Home General Computer Multimedia Business Lounge

Post Reply 
Tweet
Threaded Mode | Linear Mode
Tutor Password Dictionary Creator (perl)
06-09-2012, 12:44 PM
Post: #1
Coziboy Offline
./Devilz Commander
Posts: 394
Joined: Jun 2012
Reputation: 12
Password Dictionary Creator (perl)
semoga ga repost seneng
Nih gan buat para cracker2 yg suka nebak2 kata, mending pake ini bisa create password dictionary smangat

Code:
#!/usr/bin/perl
system ('clear');
print q(
###############################################################
#               Dictionary Password Generator                   #
#                http://makassarhacker.com                    #
###############################################################
#                   Coding By th3_w1tch                 #
#            http://th3w1tch.wordpress.com              #
###############################################################
);
print q(
Note :
k= Lowarcase [a-z]
B= Upper case [A-Z]
a= Number [0-9]
c= Character Special);
print "\n";
print "\n[-]Input Dictionary Type [k/B/a/c]: ";
$type=<STDIN>;
chomp($type);
print "[-]Input Min Length: ";
$k=<STDIN>;
chomp($k);
print "[-]Input Max Length: ";
$p=<STDIN>;
chomp($p);
print "Starting Dictionary Password . . . .\n";
if ($type=~"k") {$char = "abcdefghijklmnopqrstuvwxyz";}
if ($type=~"B") {$char = $char. "ABCDEFGHIJKLMNOPQRSTUVWXYZ";}
if ($type=~"a") {$char = $char."1234567890";}
if ($type=~"c") {$char = $char. "!\"\$%&/()=?-.:\\*'-_:.;,";}
sub generator{
@tampung = ();
$shift = shift;
for ($i =0;$i<$shift;$i++){ $tampung[i] = 0;}
do{
  for ($i =0;$i<$shift;$i++){
   if ($tampung[$i] > length($char)-1){
      if ($i==$shift-1){
        $a=0;
        return false;
        print "Finish, Check File dictionary.txt\n";
       }
      $tampung[$i+1]++;
      $tampung[$i]=0;
   }
  }
   $pass = "";    
   for ($i =0;$i<$shift;$i++){ $pass = $pass . substr($char,$tampung[$i],1);}
   open (FILE, '>>dictionary.txt');
   print FILE "$pass\n";
   close (FILE);
   $a++;
   $tampung[0]++;
}while($tampung[$shift-1]<length($char));
}
for ($x=$k;$x<=$p;$x++){
generator($x);
}

save ke mehdictionary.pl

terus run di console...

ato bisa pake aplikasi ini tinggal bikin aja...
2004 Brute Force Dictionary Creator
Visit this user's website Find all posts by this user
Quote this message in a reply
 Reputed by :  anko_kum4ru(+1) , nanda(+1) , Lintang27™(+1)
06-09-2012, 12:53 PM
Post: #2
anko_kum4ru Offline
./b0k3p3r_4r34
****
Global Moderators
Posts: 1,451
Joined: Dec 2010
Reputation: 10
RE: Password Dictionary Creator (perl)
lumayan keren.. mantap
Visit this user's website Find all posts by this user
Quote this message in a reply
06-09-2012, 01:38 PM
Post: #3
Coziboy Offline
./Devilz Commander
Posts: 394
Joined: Jun 2012
Reputation: 12
RE: Password Dictionary Creator (perl)
(06-09-2012 12:53 PM)anko_kum4ru Wrote:  lumayan keren.. mantap

thread perdana um...
Thx banget rep na wawa
Visit this user's website Find all posts by this user
Quote this message in a reply
06-09-2012, 05:18 PM
Post: #4
anharku Offline
./Devilz Advisor
Posts: 505
Joined: Jul 2010
Reputation: 29
RE: Password Dictionary Creator (perl)
ijin nyobain om,....
Find all posts by this user
Quote this message in a reply
06-09-2012, 05:31 PM
Post: #5
Coziboy Offline
./Devilz Commander
Posts: 394
Joined: Jun 2012
Reputation: 12
RE: Password Dictionary Creator (perl)
(06-09-2012 05:18 PM)anharku Wrote:  ijin nyobain om,....

sip om mantap
Visit this user's website Find all posts by this user
Quote this message in a reply
06-10-2012, 11:38 AM
Post: #6
Lintang27™ Offline
Pemulung Sampah
**
Moderators
Posts: 2,159
Joined: Mar 2010
Reputation: 135
RE: Password Dictionary Creator (perl)
belajar ...............

thanks kk
Visit this user's website Find all posts by this user
Quote this message in a reply
06-10-2012, 11:42 AM
Post: #7
Coziboy Offline
./Devilz Commander
Posts: 394
Joined: Jun 2012
Reputation: 12
RE: Password Dictionary Creator (perl)
(06-10-2012 11:38 AM)Lintang27™ Wrote:  belajar ...............

thanks kk

sip kak peace
Visit this user's website Find all posts by this user
Quote this message in a reply
06-27-2012, 08:40 PM
Post: #8
[DC]Anwar Offline
./Devilz 1st Cadet
Posts: 16
Joined: Jun 2012
Reputation: 0
RE: Password Dictionary Creator (perl)
cara buka file mehdictionary.pl pke apa yaaa??
maklum msh newbietol belajar
Find all posts by this user
Quote this message in a reply
06-27-2012, 10:19 PM
Post: #9
Coziboy Offline
./Devilz Commander
Posts: 394
Joined: Jun 2012
Reputation: 12
RE: Password Dictionary Creator (perl)
(06-27-2012 08:40 PM)[DC]Anwar Wrote:  cara buka file mehdictionary.pl pke apa yaaa??
maklum msh newbietol belajar

pake xampp kak
Visit this user's website Find all posts by this user
Quote this message in a reply
03-18-2013, 06:52 AM
Post: #10
1stswtjr Offline
./Devilz 1st Cadet
Posts: 42
Joined: Dec 2012
Reputation: 0
RE: Password Dictionary Creator (perl)
ada penjelasan ga gan tuk pemakaian nya . . ??

dead
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


Topic Tools
Topic Link :
BBCode :
HTML Code :
View a Printable Version Send Thread to a Friend Subscribe to this thread
Submit Google Submit Face book Submit to Digg Submit to Reddit Submit to Furl Submit to Del.icio.us Submit to Jeqq

Possibly Related Threads...
Thread: Author Replies: Views: Last Post
Tongue Wordpress Password Cracker brianfahmi 16 243 05-13-2013 11:58 PM
Last Post: H_Avenzoar
  [Solved] Bobol password excel? h3kt0rd3v 3 99 05-05-2013 08:29 PM
Last Post: Super Moderator
  [help me] decrypt password cruzzer 3 151 04-21-2013 11:31 AM
Last Post: Wiro sableng
  Kumpulan Cara Cracking Password - John The Ripper Revres Tanur 25 1,994 02-17-2013 07:24 AM
Last Post: ichr0m3-Tux
Sad [Ask] Please Help Me ! Crack Wordpress PassWord d3vil_b0y_ir 12 177 02-16-2013 03:52 PM
Last Post: slowly_sillent
  [Ask] tipe hash password presta shop klinik_tongfang167 2 76 01-06-2013 01:43 PM
Last Post: tegex21
  [Solved] tolonggg aneeee crack nih password tenggo167 13 309 12-19-2012 05:16 PM
Last Post: mynizer
  [Tutor] cara menjebol password winrar death voice 17 1,077 10-26-2012 11:00 AM
Last Post: jboxx
  [Tutor] Cr4ck1ng Password W1ndow$ (Net) Regel 5 264 09-23-2012 05:24 PM
Last Post: Regel
Lightbulb crack password oscommerce skak_match 3 148 07-16-2012 09:12 PM
Last Post: ubuntux

Users Browsing
1 Guest(s)

  • Contact Us
  • devilzc0de
  • Return to Top
  • Mobile Version
  • RSS Syndication
  • Help
Current time: 05-22-2013, 05:23 PM Powered By MyBB, © 2002-2013 MyBB Group. Theme created by Justin S. | Mixed By Chaer.Newbie | Fixed By Aditya

USING THIS SITE INDICATES THAT YOU HAVE READ AND ACCEPT OUR TERMS. IF YOU DO NOT ACCEPT THESE TERMS, YOU ARE NOT AUTHORIZED TO USE THIS SITE