├── LICENSE ├── README.md ├── config.php ├── cron └── run.php ├── css ├── bootstrap.min.css └── default.css ├── faucet.sql ├── index.php ├── js └── bootstrap.min.js ├── lib ├── index.php ├── jsonRPCClient.php ├── proxy_filter │ ├── config.php │ ├── cron │ │ └── tor.php │ └── proxy_filter.php ├── recaptchalib.php ├── recaptchalib2.php └── simple_faucet.php └── templates ├── default.template.php └── index.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/README.md -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/config.php -------------------------------------------------------------------------------- /cron/run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/cron/run.php -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/css/default.css -------------------------------------------------------------------------------- /faucet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/faucet.sql -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/index.php -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /lib/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/jsonRPCClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/lib/jsonRPCClient.php -------------------------------------------------------------------------------- /lib/proxy_filter/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/lib/proxy_filter/config.php -------------------------------------------------------------------------------- /lib/proxy_filter/cron/tor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/lib/proxy_filter/cron/tor.php -------------------------------------------------------------------------------- /lib/proxy_filter/proxy_filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/lib/proxy_filter/proxy_filter.php -------------------------------------------------------------------------------- /lib/recaptchalib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/lib/recaptchalib.php -------------------------------------------------------------------------------- /lib/recaptchalib2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/lib/recaptchalib2.php -------------------------------------------------------------------------------- /lib/simple_faucet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/lib/simple_faucet.php -------------------------------------------------------------------------------- /templates/default.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmahara/Cryptocurrency-faucet-script-master/HEAD/templates/default.template.php -------------------------------------------------------------------------------- /templates/index.php: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------