Recommend this page to a friend! |
Download .zip |
Info | Example | View files (6) | Download .zip | Reputation | Support forum | Blog | Links |
Ratings | Unique User Downloads | Download Rankings | ||||
Not enough user ratings | Total: 81 | All time: 10,082 This week: 140 |
Version | License | PHP version | Categories | |||
email-crawl 1.0.0 | GNU General Publi... | 5 | Email, PHP 5, Searching, Web services, C... |
Description | Author | |
This package can crawl Web site pages to extract email addresses. |
<?php |
PHP Email Web Crawler, is a simple and easy to use class that uses curl & command line interface to extract email address from websites. It also has the feature to deep extract email from website link which is found from the initial target website.
Installation is super-easy via Composer:
composer require peterujah/email-crawl
Initalize email crawl instance
$craw = new EmailCrawl("https://example.com", 200);
Star email crawling scan
$craw->craw()
Get scanned response and return CrawlResponse instance
$response = $craw->getResponse();
Get response emails separate in a new line
$data = $response->inLine();
Get response emails separate with a comma
$data = $response->withComma();
Get response emails as an array
$data = $response->asArray();
Print response email
$response->printCommandResult($data);
Save response emails to file. This will save result as json string
$response->save("/path/save/craw/");
Save response emails to file. If string data is passed it will save it, els it will save result as json string
$response->saveAs("/path/save/craw/", $data);
Example
Create a file name it craw.php, inside the file add this example code.
With this example you can run your craw directly from command line, browser or php shell_exec
.
error_reporting(E_ALL);
ini_set('display_errors', '1');
require __DIR__ . '/plugins/autoload.php';
use Peterujah\NanoBlock\EmailCrawl;
$target = "https://example.com/contact";
$limit = 50;
if(!empty($argv[1])){
if(filter_var($argv[1], FILTER_VALIDATE_URL)){
$target = $argv[1];
$limit = $argv[2]??50;
}else{
$req = unserialize(base64_decode($argv[1]));
$target = $req["target"];
$limit = $req["max"]??50;
}
}
$craw = new EmailCrawl($target, $limit);
$response = $craw->craw()->getResponse();
$data = $response->inLine();
$response->printCommandResult($data)->saveAs(__DIR__ . "/craw/", $data);
Execute craw through command line interface, run the below command
php craw.php https://google.com 50
Execute craw through php shell_exec, create a file call exec.php and add below example script.
Note: change PHP_SHELL_EXECUTION_PATH
to your php executable path.
Once done navigate to https://mycraw.example.com/exec.php
define("PHP_SHELL_EXECUTION_PATH", "path/to/php");
$crawOptions = array(
'target' => 'https://example.com',
'max' => 50,
);
$crawRequest = base64_encode(serialize($crawOptions));
$crawScript = __DIR__ . "/craw.php";
$crawLogs = __DIR__ . "/craw_logs.log";
shell_exec(PHP_SHELL_EXECUTION_PATH . " " . $crawScript . " " . $crawRequest ." 'alert' >> " . $crawLogs . " 2>&1");
Is advisable to run this code in command line interface for be better performance.
Files |
File | Role | Description | ||
---|---|---|---|---|
src (2 files) | ||||
composer.json | Data | Auxiliary data | ||
craw.php | Example | Example script | ||
exec.php | Aux. | Auxiliary script | ||
README.md | Doc. | Documentation |
Files | / | src |
File | Role | Description |
---|---|---|
CrawlResponse.php | Class | Class source |
EmailCrawl.php | Class | Class source |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.