Written by ProDialers
SELECT first_name,last_name,address1,city,postal_code,phone_number FROM vicidial_list WHERE list_id in (select list_id from vicidial_lists) and city in ('X','Y','Z') INTO OUTFILE '/tmp/cities.csv' FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\n'
Written by ProDialers
To export only leads with a specific disposition (in this example SALE) from only certain campaigns (in this example 1000, 2000), please log in to PHPMyAdmin and run the following SQL:
select * from vicidial_list where status="SALE" and list_id in (select list_id from vicidial_lists where campaign_id=1000 or campaign_id=2000)
Click on the Export button on the bottom and select the desired format (CSV, SQL...)
Written by ProDialers
In order to change all phone and agent login passwords for ViCiDial / GoAutoDial over SSH, please use the following SQL query:
update vicidial_users set pass='password123',phone_pass='password123' where user_level=1;
update phones set conf_secret='password123',pass='password123' where 1;
Written by ProDialers
In order to locate any files larger than a certain size, please run the following command. The below example searches for all files larger than 500MB.
find / -size +500M
To display more details and sort the items in the list by size, run the following:
find / -type f -size +500M -exec du -h {} \; | sort -n
Written by ProDialers
Many end clients will use Windows 8.1 or Windows 10 as agent hardware. Most usual ISO-based password retrieval tools such as NTPassword or KonBoot will fail (mostly with 64bit versions of the OS). A simple and secure way of resetting a local administrator password:
Boot the computer in Windows install using removable media (Windows install disk). You might have to turn off secure boot and/or enable legacy or setup mode in BIOS, depending on your hardware and BIOS .
Press Shift + F10 to load the command prompt
In the command prompt, type the following command:
move c:\windows\system32\utilman.exe c:\windows\system32\utilman.exe.bak
...afterwards:
copy C:\windows\system32\cmd.exe c:\windows\system32\utilman.exe
...and then finally:
wpeutil reboot
System will reboot and load Windows normally. Click on the Utility Manager icon (lower left corner), and command prompt will open. Type in the following commands:
net user TempAdmin /add
net localgroup administrators TempAdmin /add
Log on with your new user called TempAdmin and change the password for any other local account.
Written by ProDialers
Many Asterisk servers will have Postfix installed to accommodate the mail function (FreePBX, Elastix, A2Billing etc.). Any server open to the web with Postfix is especially interesting for lamers and injecting spambots.
If your server has been infected, finding a particular spambot script is easy.
Step 1: Temporarily stop Postfix
service postfix stop ~or~ pkill -9 postfix
Step 2: Show entire Postfix queue and select a random spambot-generated email:
postqueue -p
Step 3: Locate the script generating the spam email by tracing the email ID. Example:
postcat -q EMAILIDHERE 37D
Step 4: Clean or remove the infected script completely and start the Postfix service
Written by ProDialers
To simultaneously update all of the username and phone passwords in ViCiDial, please log in to your MySQL (or PhpMyAdmin, if available) and run the following SQL statements:
UPDATE phones set pass='Your_Password',conf_secret='Your_Password' where user_level=1;
UPDATE vicidial_users set pass='Your_Password',phone_pass='Your_Password' where user_level=1;
Written by ProDialers
Some list vendors will often sell low-quality dialer lists with a lot of missing information. As an example, here is a command to delete all records with missing Last Name field within the list '123'. You can permutate last with first or any other column:
DELETE from vicidial_list WHERE list_id='123' AND last_name='';
To run a similar query which would delete all records with a certain string in the Last Name field within the same list, use the following SQL:
DELETE from vicidial_list where list_id='123' and (last_name LIKE '%is_name%' OR first_name LIKE '%STRING_HERE%');
Written by ProDialers
To remove a valid IP address from the iptables, log in via SSH and enter the following commands:
iptables-save > tmp_file
nano tmp_file
Remove / delete the line containing the valid IP address
iptables-restore < tmp_file & iptables-save
To block an IP (example 111.222.333.444), please use the following command:
iptables -A INPUT -s 111.222.333.444 -j DROP & iptables-save
Written by ProDialers
In order to export all callbacks (CBHOLD) from the entire dialer, please log into the MySQL and run the following query:
SELECT * FROM `vicidial_list` WHERE `status`='CBHOLD' INTO OUTFILE '/var/www/html/vicidial/cbholds.zip' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\r\n'
After that, navigate to http://your-dialer-addres/vicidial/cbholds.zip, download and rename the file from .ZIP to .CSV.
Written by ProDialers
If you wish to search for a certain string in Asterisk only (Example: only show carrier congestion), launch the Asterisk CLI along with the grep command, i.e.:
asterisk -rvvvvv | egrep -i "string"
Example (showing only congestion notices / errors)
asterisk -rvvvvv | egrep -i "congested"
Written by ProDialers
To remove recordings older than X days (i.e. 30 days), SSH into your dialer and run the following campaign:
find /var/spool/asterisk/monitorDONE/MP3 -type f -mtime +30 -exec rm {} \;
Written by ProDialers
Sometimes, admin would like to change / reset only specific dial statuses within only specific campaign - i.e. Reset all NA, NI, NP and similar statuses while keeping others (like DNC, SALE etc.) intact.
To do so, log SSH in and open mysql:
mysql -ucron -p1234
use asterisk
Afterwards, run the following command (Example - reset all statuses for all lists in campaign ID 4000 except for leads, callbacks and DNC):
update vicidial_list set status='NEW' where list_id in (select list_id from vicidial_lists where campaign_id='4000') and status not in ('DNC','DNCL','CALLBK','CBHOLD','SALE');
Written by ProDialers
Small, clean database will always perform better than a huge one.
In order to see what is the total size of all the databases in the dialer, log in via SSH and run the following command:
du -kh /var/lib/mysql
To check the size of the asterisk database only, you can run:
du -kh /var/lib/mysql/asterisk
To delete logs, run the command below:
TRUNCATE `vicidial_user_log`;TRUNCATE `vicidial_monitor_log`;TRUNCATE `vicidial_log_extended_archive`;TRUNCATE `vicidial_log_extended`;TRUNCATE `vicidial_log_archive`;TRUNCATE `vicidial_log`;TRUNCATE `vicidial_email_log`;TRUNCATE `vicidial_email_list`;TRUNCATE `vicidial_did_log`;TRUNCATE `vicidial_dial_log`;TRUNCATE `vicidial_cpd_log`;TRUNCATE `vicidial_closer_log_archive`;TRUNCATE `vicidial_closer_log`;TRUNCATE `vicidial_carrier_log_archive`;TRUNCATE `vicidial_carrier_log`;TRUNCATE `vicidial_api_log_archive`;TRUNCATE `vicidial_api_log`;TRUNCATE `vicidial_agent_skip_log`;TRUNCATE `vicidial_agent_log_archive`;TRUNCATE `vicidial_agent_log`;TRUNCATE `vicidial_admin_log`;TRUNCATE `user_call_log`;TRUNCATE `recording_log`;TRUNCATE `park_log`;TRUNCATE `call_log_archive`;TRUNCATE `call_log`;TRUNCATE `callcard_log`;
Warning: You will not be able to recover the logs afterwards, meaning, all of your call logs will be permanently deleted after this.
Written by ProDialers
Creating a suppression list can be very useful when ordering new data / lists from data providers, helping you avoid purchasing duplicates.
To create a suppression list, login via SSH and run the following commands:
mysql -uroot -p
When prompted, enter your password. The default for GoAutoDial is vicidalnow, ViciBox - blank.use asterisk;
SELECT distinct phone_number INTO OUTFILE '/var/www/html/vicidial/suppression.zip' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\r\n' FROM vicidial_list;
If you would like to create a suppression list for a single campaign only (in this example, campaign 1234, pelase run the following query instead:
SELECT distinct phone_number INTO OUTFILE '/var/www/html/vicidial/suppression.zip' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\r\n' FROM vicidial_list WHERE list_id in (SELECT list_id from vicidial_lists WHERE campaign_id=1234);
When the command has finished, open your browser and navigate to http://your-dialer-ip/vicidial/suppression.zip and download the file.
Rename the file from .zip to .csv.
Written by ProDialers
GoAutoDial CE 3.3 monitoring and barge function do not work out of the box. To fix this, log in via SSH and run the following commands:
For CentOs distros:
yum install glibc.i686 -y
For Ubuntu distros:
apt-get install libc6-i386
Then run:
usr/share/astguiclient/ip_replay/relay_control start
Voila!
Written by ProDialers
# nano /etc/yum.repos.d/goautodial.repo
# yum -y update
Make sure to check the active version:
# cat /usr/src/vicidial/version
...and to change your MySQL password to your original password, if needed
# mysqladmin -pvicidialnow password "myoriginalpassword"
# yum -y update goautodial-ce --enablerepo goautodial-testing
Written by ProDialers
After updating your GoAutoDial 3.0 CE to the GoAdmin 3.3, some users experience that although calls seem to be going fine in the Asterisk CLI, the agent screen (or the AGC) serve no live calls to the agent. If so, please check the following:
Written by ProDialers
Ideally, export your whole database
Your version GOautodial CE 2.1 and your MySQL password is the default "vicidialnow".
# cat /etc/vicidialnow-release
# mysqladmin password vicidialnow -p
Enter password: ...
# cd /etc/yum.repos.d/
# wget http://downloads2.goautodial.org/centos/5/goautodial.repo
# rpm -e dahdi-linux dahdi-linux-devel dahdi-linux-kmdl-2.6.18-238.9.1.el5.goPAE dahdi-tools munin munin-node --nodeps
Install GOautodial specific configuration and reboot (answer prompts with Y)
# yum update
# yum install goautodial-ce goautodial-ce-config
# reboot
# nano /etc/php.ini
Make sure your config is as follows:
Written by ProDialers
If you are running a predictive dialer (or any kind of Asterisk server) or a web hosting server, you have probably experienced often hacker/lamer brute force attempts. These attacks can be easily blocked by implementing optimal server configuration, using a good Firewall (i.e. SonicWall, PfSense, Tomato) etc. A very useful method of blocking brute force attacks is installing Fail2Ban, which will block the attacker from accessing your server through SSH, Asterisk... for a specified period of time after a number of unsuccessful login attempts.
The following guide explains installation of Fail2Ban service on a CentOS server.
If you haven't done it already, download the EPEL repository:
# rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
When the repository has been downloaded, install fail2ban:
# yum install fail2ban
Editing the main config file (jail.conf) is not something you should do. Create a local copy of the jail file:
# cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local
Setup your preferences by editing the jail.local file:
# nano /etc/fail2ban/jail.local
You will find the Asterisk section around the middle. Make sure that you whitelist your own external IP address and to keep the 127.0.0.1 in place. We strongly suggest setting the bantime to a much higher value (i.e. one week - 604800 seconds)
Restart Fail2Ban:
# sudo service fail2ban restart
Voila!
# iptables -A INPUT -s 123.456.789.012 -j DROP & iptables-save
Written by ProDialers
When experiencing database problems, most often manifested by an outbound dialing issue or a time syncronization issue, try running the following command from your SSH client:
mysqlcheck -u cron -p 1234 --auto-repair --check --optimize --all-databases
Page 1 of 2