/
opt
/
dedrads
/
/opt/dedrads
mkdir
upload
Name
Size
Mode
Actions
account_review/
-
0555
rm
check_software_mods/
-
0555
rm
cms_tools/
-
0555
rm
etc/
-
0555
rm
extras/
-
0555
rm
mailparse/
-
0555
rm
mysql/
-
0555
rm
nlp_scripts/
-
0555
rm
oldrads/
-
0555
rm
perl/
-
0555
rm
provision/
-
0555
rm
python/
-
0555
rm
suspended/
-
0555
rm
__pycache__/
-
0555
rm
account-review
799
0555
edit
dl
rm
allfw
6259
0555
edit
dl
rm
alp.py
16553
0555
edit
dl
rm
autossl_sync
6267
0555
edit
dl
rm
check_apache
9205
0555
edit
dl
rm
check_bandwidth
4546
0555
edit
dl
rm
check_boxtrapper
1684
0555
edit
dl
rm
check_cpu
12212
0555
edit
dl
rm
check_crons
1827
0555
edit
dl
rm
check_dcpumon
1973
0555
edit
dl
rm
check_dns
1827
0555
edit
dl
rm
check_domlogs
61
0555
edit
dl
rm
check_exim
3731
0555
edit
dl
rm
check_hacks
22604
0555
edit
dl
rm
check_imap
5249
0555
edit
dl
rm
check_io
6635
0555
edit
dl
rm
check_max_children
16341
0555
edit
dl
rm
check_mem
1660
0555
edit
dl
rm
check_misc
1510
0555
edit
dl
rm
check_pacct
5201
0555
edit
dl
rm
check_php
4344
0555
edit
dl
rm
check_pop3
2295
0555
edit
dl
rm
check_prov.py
4714
0555
edit
dl
rm
check_server
696
0555
edit
dl
rm
check_size
490
0555
edit
dl
rm
check_software
9849
0555
edit
dl
rm
check_spamd
2426
0555
edit
dl
rm
check_traffic
1933
0555
edit
dl
rm
check_user
1887
0555
edit
dl
rm
clean_exim.py
6390
0555
edit
dl
rm
clusterfix
5343
0555
edit
dl
rm
cmspass.py
3970
0555
edit
dl
rm
cms_check.py
9825
0555
edit
dl
rm
cms_counter.py
36734
0555
edit
dl
rm
cms_creds
713
0555
edit
dl
rm
cms_dumpdb
4485
0555
edit
dl
rm
cms_pw
1416
0555
edit
dl
rm
cpanel-api
7040
0555
edit
dl
rm
cpanel_postgres_manager.py
29004
0555
edit
dl
rm
cpmerge
4631
0555
edit
dl
rm
cpumon
2195
0555
edit
dl
rm
dcpumon.pl
1239
0555
edit
dl
rm
dedcheck
18127
0555
edit
dl
rm
dns-sync
14386
0555
edit
dl
rm
docroot.py
4425
0555
edit
dl
rm
du-tree
7450
0555
edit
dl
rm
envinfo.py
6633
0555
edit
dl
rm
exclude_rbl.py
5249
0555
edit
dl
rm
extract-vhost
2691
0555
edit
dl
rm
filescan
3566
0555
edit
dl
rm
find_warez
1460
0555
edit
dl
rm
first_setup.py
19120
0555
edit
dl
rm
fixwpcron.py
4822
0555
edit
dl
rm
fix_dns_cluster
353
0555
edit
dl
rm
goaccess
1217720
0555
edit
dl
rm
hostsfilemods
4467
0555
edit
dl
rm
imap_io
2323
0555
edit
dl
rm
innodb_converter.py
9343
0555
edit
dl
rm
killall911
530
0555
edit
dl
rm
killdns
941
0555
edit
dl
rm
lastcommcache.sh
1374
0555
edit
dl
rm
legal_lock_down.sh
7450
0555
edit
dl
rm
lil-cpanel
52002
0555
edit
dl
rm
listacct
4575
0555
edit
dl
rm
mailscan
4544
0555
edit
dl
rm
mail_sources.py
7407
0555
edit
dl
rm
megaclisas-status
38664
0555
edit
dl
rm
migrate2central.sh
14418
0555
edit
dl
rm
modify-account
40631
0555
edit
dl
rm
modsec_disable.py
11461
0555
edit
dl
rm
monarxctl
8912
0555
edit
dl
rm
msp.pl
27714
0555
edit
dl
rm
mysql_dstat
474
0555
edit
dl
rm
mysql_selector.py
73102
0555
edit
dl
rm
nlp
4582
0555
edit
dl
rm
procscrape
1863
0555
edit
dl
rm
quarantine
11083
0555
edit
dl
rm
radsfunctions.sh
863
0555
edit
dl
rm
recent-cp
16148
0555
edit
dl
rm
remote_dump
18347
0555
edit
dl
rm
reset_cpanel
3205
0555
edit
dl
rm
server-load
2192
0555
edit
dl
rm
show-conns
20105
0555
edit
dl
rm
show-conns-adv.py
54667
0555
edit
dl
rm
sparta.py
382498
0555
edit
dl
rm
sqltop
27129
0555
edit
dl
rm
telcheck
2411
0555
edit
dl
rm
temprootreset
186
0555
edit
dl
rm
unsuspend_user
1307
0555
edit
dl
rm
unsusprunner.sh
1840
0555
edit
dl
rm
updatednsadmin
526
0555
edit
dl
rm
update_spf
14972
0555
edit
dl
rm
upgrade-check
9216
0555
edit
dl
rm
vhost_data.py
6221
0555
edit
dl
rm
wp-xray.sh
85816
0555
edit
dl
rm
Edit:
/opt/dedrads/fixwpcron.py
(4822B)
#!/usr/lib/rads/venv/bin/python3 """wp-cron was a hacky Wordpress feature added to compensate for Windows's lack of scheduling system. Certain plugins can trigger very poor behavior that causes it to be run every time anything happens on the site. The end result is dozens of thousands of redundant hits to wp-cron.php. This script disables the wp-cron feature, and sets up a cronjob to run once every three hours""" import sys import os import getpass import random import argparse import crontab from rads import is_cpuser def parse_args(): """Parse commandline args""" parser = argparse.ArgumentParser(description=__doc__) group = parser.add_mutually_exclusive_group(required=True) # fmt: off group.add_argument( '--path', '-p', metavar='PATH', type=os.path.realpath, help='path to wordpress installation. If using this argument, we assume' ' the customer has not modified the site to have wp-config.php in an ' 'alternate directory. Both wp-config.php and wp-cron.php should be ' 'present in the supplied directory', ) all_help = """Set this up for every WordPress installation that the user owns. Installations modified to have wp-config.php in an alternate folder for security are supported; wp-config.php and wp-cron.php files will be located separately """ current_user = getpass.getuser() if current_user == 'root': group.add_argument('--user', '-u', help=all_help) else: group.add_argument('--all', '-a', action='store_true', help=all_help) # fmt: on args = parser.parse_args() if args.path: if not os.path.isdir(args.path): sys.exit(f'{args.path} does not exist') try: assert args.path.split('/')[1] == 'home' args.user = args.path.split('/')[2] except (AssertionError, IndexError): sys.exit("Incorrect path. Should be in a user's homedir") if not hasattr(args, 'all'): args.all = False if args.all: args.user = current_user if not is_cpuser(args.user): sys.exit(f'{args.user} is not a cPanel user') return args def turn_off(filename): """Sticks the DISABLE_WP_CRON line in wp-config""" with open(filename, encoding='utf-8') as handle: linelist = handle.readlines() for index, line in enumerate(linelist): if 'DB_USER' in line: if linelist[index + 1] == "define('DISABLE_WP_CRON', 'true');\n": print('File already modified:', filename) return if linelist[index + 1] == '\n': linelist[index + 1] = "define('DISABLE_WP_CRON', 'true');\n" else: print( 'Non-standard wp-config file at {}. Add this manually ' 'under DB_USER:'.format(filename), "define('DISABLE_WP_CRON', 'true');", sep='\n', ) return break with open(filename, 'w', encoding='utf-8') as handle: handle.writelines(linelist) def setup_cron(user, path, not_root): """Setup php -q wp-cron.php system cron""" if not_root: ctab = crontab.CronTab() else: ctab = crontab.CronTab(user=user) cmd = f'cd {path}; php -q wp-cron.php' if len([x for x in ctab.find_command(cmd) if x.is_enabled()]) > 0: print('Cron already enabled:', cmd) return job = ctab.new(command=cmd) job.hour.every(3) job.minute.on(random.randint(0, 59)) ctab.write() def find_files(user): """Find wp-config.php files and dirs containing wp-cron.php""" crondirs = [] # directories containing wp-cron.php configs = [] # wp-config.php files for root, _, filenames in os.walk(os.path.join('/home', user)): if 'wp-config.php' in filenames: configs.append(os.path.join(root, 'wp-config.php')) if 'wp-cron.php' in filenames: crondirs.append(root) return configs, crondirs def main(): """Main program logic""" args = parse_args() if args.path: configs = [os.path.join(args.path, 'wp-config.php')] crondirs = [args.path] else: configs, crondirs = find_files(args.user) if len(configs) > 0: print("wp-config.php file(s):") print(*configs, sep='\n') print() if len(crondirs) > 0: print('dir(s) to setup system crons for wp-cron.php:') print(*crondirs, sep='\n') print() for path in configs: try: turn_off(path) except OSError: print('Error reading/writing to', path) for path in crondirs: setup_cron(args.user, path, args.all) print('done.') if __name__ == '__main__': main()
Save
cmd:
run