Stars: 129
Forks: 65
Pull Requests: 6
Issues: 33
Watchers: 23
Last Updated: 2021-05-20 21:26:39
A php crawler that finds emails on the internets
License: MIT License
Languages: PHP, Vue, Shell, Blade
This repository has not been updated since a long time and I am not using it anymore. Please feel free to fork it and do whatever you want with it.
A crawler application with a php backend using Laravel, and a js frontend using vuejs, that finds email addresses on the internets.
Given an entry point url, the crawler will search for emails in all the urls available from this entry point domain name. The emails are downloadable as a text file.
Multiple users can start searching for emails without being able see the other users' searches (searches are related to a single user).
crawler
)composer create-project hedii/php-crawler crawler
cd crawler
.env
file, check the database credentials, and modify it if needed:DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=crawler
DB_USERNAME=root
DB_PASSWORD=your_password_here
.env
file, set the application url:APP_URL=http://crawler.localhost
php artisan crawler:build
/some/path/crawler/public
. The index.php in this directory serves as the front controller for all HTTP requests entering your application. See Laravel documentation. I highly recommend using Laravel Valet if you are using a Mac. Otherwise, check Laravel Homestead.composer test
All contributions are welcome :)
Please write some tests if you are adding or modifying features.
php-crawler is open-sourced software licensed under the MIT license.