├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── resources ├── AllGoogleSites.ini ├── Blacklist.ini ├── Errors.ini ├── SitesProxysFree.ini └── shells.ini ├── src ├── Engines │ ├── Bing.php │ ├── DuckDuckGo.php │ ├── Engine.php │ ├── EngineInterface.php │ ├── Google.php │ ├── Yahoo.php │ └── Yandex.php ├── SearchHacking.php └── Utils.php └── tests ├── Engines ├── BingTest.php ├── DuckDuckGoTest.php ├── GoogleTest.php ├── YahooTest.php └── YandexTest.php └── SearchHackingTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor/ 3 | 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /resources/AllGoogleSites.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/resources/AllGoogleSites.ini -------------------------------------------------------------------------------- /resources/Blacklist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/resources/Blacklist.ini -------------------------------------------------------------------------------- /resources/Errors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/resources/Errors.ini -------------------------------------------------------------------------------- /resources/SitesProxysFree.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/resources/SitesProxysFree.ini -------------------------------------------------------------------------------- /resources/shells.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/resources/shells.ini -------------------------------------------------------------------------------- /src/Engines/Bing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/src/Engines/Bing.php -------------------------------------------------------------------------------- /src/Engines/DuckDuckGo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/src/Engines/DuckDuckGo.php -------------------------------------------------------------------------------- /src/Engines/Engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/src/Engines/Engine.php -------------------------------------------------------------------------------- /src/Engines/EngineInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/src/Engines/EngineInterface.php -------------------------------------------------------------------------------- /src/Engines/Google.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/src/Engines/Google.php -------------------------------------------------------------------------------- /src/Engines/Yahoo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/src/Engines/Yahoo.php -------------------------------------------------------------------------------- /src/Engines/Yandex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/src/Engines/Yandex.php -------------------------------------------------------------------------------- /src/SearchHacking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/src/SearchHacking.php -------------------------------------------------------------------------------- /src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/src/Utils.php -------------------------------------------------------------------------------- /tests/Engines/BingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/tests/Engines/BingTest.php -------------------------------------------------------------------------------- /tests/Engines/DuckDuckGoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/tests/Engines/DuckDuckGoTest.php -------------------------------------------------------------------------------- /tests/Engines/GoogleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/tests/Engines/GoogleTest.php -------------------------------------------------------------------------------- /tests/Engines/YahooTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/tests/Engines/YahooTest.php -------------------------------------------------------------------------------- /tests/Engines/YandexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/tests/Engines/YandexTest.php -------------------------------------------------------------------------------- /tests/SearchHackingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszone/search-hacking/HEAD/tests/SearchHackingTest.php --------------------------------------------------------------------------------