Created
October 7, 2012 19:46
-
-
Save cktricky/3849362 to your computer and use it in GitHub Desktop.
my version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'wXf/wXfui' | |
begin | |
require 'rubygems' | |
require 'celluloid' | |
rescue LoadError | |
end | |
module WXf | |
module WXfassists | |
module General | |
module PooledReq | |
class Pool | |
include Celluloid | |
## | |
# Initialize Pool Object w/ thread count | |
# | |
def initialize | |
@agent = WAx::WAxHTTPLibs::Mechanize.new | |
end | |
## | |
# Send threaded HTTP Requests | |
# @action: Proc (request object) | |
# @params: Hash (request params) | |
# @response_action: Proc (action to be performed as response) | |
# @args: List of other arguments | |
# | |
def get(url) | |
response = @agent.get("http://www.cnn.com") | |
return response | |
end | |
end | |
end end end end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class WebXploit < WXf::WXfmod_Factory::Auxiliary | |
include WXf::WXfassists::General::PooledReq | |
def initialize | |
super( | |
'Name' => 'phpMyAdmin Auth Bruteforce', | |
'Version' => '1.1', | |
'Description' => %q{ | |
Bruteforce authentication for phpMyAdmin }, | |
'Author' => ['John Poulin' ], | |
'License' => WXF_LICENSE | |
) | |
init_opts([ | |
OptString.new('DIR', [true, "Directory in which phpmyadmin resides", "phpmyadmin"]), | |
OptString.new('USERNAME', [true, "Username to enumerate", "root"]), | |
OptString.new('VERBOSE', [false, "Show verbose output?", false]), | |
OptString.new('PASSLIST', [true, "Location of password list", ""]) | |
]) | |
end | |
def run | |
puts "Starting: #{puts Time.new.localtime}" | |
# Create threadpool | |
pool = Pool.new | |
username = datahash['USERNAME'] | |
# Prepare file | |
file = Array.new(1000, "wtf") | |
# Iterate over file contents | |
file.each do |pass| | |
res = pool.get(rurl + "/" + datahash['DIR'] + "/index.php") | |
puts res | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment