To add extra security to your Cash Crusader admin panel, do the following:
1. Login to your cPanel
2. Click on Password Protect Directories
3. Choose Document root for your domain
4. Click the folder icons until you see / public_html / scripts /
5. Click on admin
6. Tick "Password protect this directory:" and give it a name
7. Click on save
8. Click back and scroll down to Create User part
9. Fill in the details, username and password (use only alphanumeric characters)
10. Click on Add/modify authorized user
11. Go back to go to cPanel main view
12. Click on cron jobs
13. Edit your cronjobs to include the new login details (username/password) you created
Default cronjob using lynx:
lynx --dump http://YOURDOMAIN/scripts/admin/cronjobs.php > /dev/null
to
lynx --dump --auth=USERNAME:PASSWORD http://YOURDOMAIN/scripts/admin/cronjobs.php > /dev/null
Alternative cronjob using wget:
wget -q http://YOURDOMAIN/scripts/admin/cronjobs.php > /dev/null
to
wget -q http://USERNAME:PASSWORD@YOURDOMAIN/scripts/admin/cronjobs.php > /dev/null