-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcheckCrontabs.sh
182 lines (181 loc) · 9.05 KB
/
checkCrontabs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
#!/bin/bash
# _ _
# | | | |
# ___| |__ ___ ___| | __
# / __| '_ \ / _ \/ __| |/ /
# | (__| | | | __/ (__| <
# \___|_| |_|\___|\___|_|\_\
# ██████╗██████╗ ██████╗ ███╗ ██╗████████╗ █████╗ ██████╗ ███████╗
# ██╔════╝██╔══██╗██╔═══██╗████╗ ██║╚══██╔══╝██╔══██╗██╔══██╗██╔════╝
# ██║ ██████╔╝██║ ██║██╔██╗ ██║ ██║ ███████║██████╔╝███████╗
# ██║ ██╔══██╗██║ ██║██║╚██╗██║ ██║ ██╔══██║██╔══██╗╚════██║
# ╚██████╗██║ ██║╚██████╔╝██║ ╚████║ ██║ ██║ ██║██████╔╝███████║
# ╚═════╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═════╝ ╚══════╝
#=======================================================================================
#=== DESCIPTION ========================================================================
#=======================================================================================
## lists all cronjobs for all users
##
##
#=======================================================================================
#=======================================================================================
#
#*************** NEED TO DO/ADD ***********************
# check atjobs cat /var/spool/cron/atjobs
# check timers systemctl list-timers --all
# check 'at' jobs atq
#### everything
# ,this one should have /var/spool/cron/
# find /var/spool/cron -type f -exec ls -l {} \; -exec cat {} ;\
#### cronjobs
# /etc/default/cron
# /etc/init.d/cron
# /etc/cron.d/
# /etc/cron.daily/
# /etc/cron.hourly/
# /etc/cron.monthly/
# /etc/crontab
# /etc/cron.weekly/
#### at jobs
# /var/spool/cron/atjobs
# /var/spool/cron/atspool
# /proc/loadavg
# /var/run/utmp
# /etc/at.allow
# /etc/at.deny
######
# unfuck the crontab &> loop thing
#******************************************************
#
#///////////////////////////////////////////////////////////////////////////////////////
#|||||||||||||||||||||||| Script Stuff Starts |||||||||||||||||||||||||||||||||||||||||
#\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
###### RUN function #######
###########################
function main(){ ###
neo ###
backupTheWorld ###
jailer ###
testOmatic ###
checkCronCOMPLETE ###
} ###
###########################
#------ error handling ----------
### If error, give up #
#set -e #
#- - - - - - - - - - - - - - - -#
### if error, do THING #
# makes trap global #
# (works in functions) #
#set -o errtrace #
# 'exit' can be a func or cmd #
#trap 'exit' ERR #
#--------------------------------
#### global backup var ####
#backupDir="$HOME""/ccdc_backups/$(basename -s.sh "$0")"
backupDir="$HOME""/ccdc_backups/$(echo $BASH_SOURCE | sed 's|.sh$||' | rev | cut -d\/ -f1 | rev)"
###########################################################################################
###### ┌┬┐┌─┐┌─┐┌┬┐╔═╗┌┬┐┌─┐┌┬┐┬┌─┐ #####################################################
###### │ ├┤ └─┐ │ ║ ║│││├─┤ │ ││ #####################################################
###### ┴ └─┘└─┘ ┴ ╚═╝┴ ┴┴ ┴ ┴ ┴└─┘ #####################################################
# testing if the user has a crontab, then sends it to the filter ##########################
###########################################################################################
function testOmatic(){
cronVar=$(mktemp) || exit 1 # crontab refuses to play nice otherwise
userList=$(command compgen -u) # gathering users
userListEmpty="" # just for tracking
#### looping through crontabs #############
for user in $userList; do
#sending the command output to cronVar, without sending it.. somehow.. magically..
command crontab -u $user -l &> "$cronVar"
#testing if there is a crontab or not
if grep -sq "no crontab" "${cronVar}" ; then
#adding user to list without a crontab
userListEmpty+=${user}$'\n'
else #crontab found
printf "\n[Found crontab for $user]\n$(cat ${cronVar} |
sed -ne '/For more in/,$p' |
tail -n +3 |
sed 's/^/\t/g'
)"
fi
done
#### results display #####################
printf "\n\n\n============================================================\n"
# display users with empty crontabs
printf "\n\t[The users below did NOT have a crontab]\n"
echo "${userListEmpty}" | column
}
###########################################################################################
###### ┬┌─┐┬┬ ┌─┐┬─┐ ##################################################################
###### │├─┤││ ├┤ ├┬┘ ##################################################################
###### └┘┴ ┴┴┴─┘└─┘┴└─ ##################################################################
# locks down cron use so none run (maybe) #################################################
###########################################################################################
function jailer(){
dCron="/etc/cron.deny"
dCronBak="/etc/cron.deny.bak"
aCron="/etc/cron.allow"
aCronBak="/etc/cron.allow.bak"
#### cron.deny ############################
if [ -e $dCron ]; then
#backing up original
command cp -a $dCron{,.bak}
printf "\nCopied original $dCron to [$dCronBak]"
command echo ALL > $dCron
printf "\n\tSetting cron.deny to deny ALL"
else
printf "\n\tSetting cron.deny to deny ALL"
command echo ALL > $dCron
fi
#### cron.allow ############################
if [ -e $aCron ]; then
command mv $aCron{,.bak}
printf "\nMoved original $aCron to [$aCronBak]"
printf "\n\tcron.allow has been removed"
else
printf "\n\tNo cron.allow found"
fi
}
###########################################################################################
###### ┌┐ ┌─┐┌─┐┬┌─┬ ┬┌─┐╔╦╗┬ ┬┌─┐╦ ╦┌─┐┬─┐┬ ┌┬┐ #######################################
###### ├┴┐├─┤│ ├┴┐│ │├─┘ ║ ├─┤├┤ ║║║│ │├┬┘│ ││ #######################################
###### └─┘┴ ┴└─┘┴ ┴└─┘┴ ╩ ┴ ┴└─┘╚╩╝└─┘┴└─┴─┘─┴┘ #######################################
# backs everything up into a box and puts a bow on it #####################################
###########################################################################################
function backupTheWorld(){
# creating the dir if it doesn't exist
if [[ ! -d $backupDir ]]; then
command mkdir -p "$backupDir"
fi
# creating ccdc backups, if they exist
if [[ -e /etc/cron.deny ]]; then
command cp -a /etc/cron.deny $backupDir
fi
if [[ -e /etc/cron.allow ]]; then
command cp -a /etc/cron.allow $backupDir
fi
}
###########################################################################################
###### ┌─┐┬ ┬┌─┐┌─┐┬┌─╔═╗┬─┐┌─┐┌┐┌╔═╗╔═╗╔╦╗╔═╗╦ ╔═╗╔╦╗╔═╗ ###############################
###### │ ├─┤├┤ │ ├┴┐║ ├┬┘│ ││││║ ║ ║║║║╠═╝║ ║╣ ║ ║╣ ###############################
###### └─┘┴ ┴└─┘└─┘┴ ┴╚═╝┴└─└─┘┘└┘╚═╝╚═╝╩ ╩╩ ╩═╝╚═╝ ╩ ╚═╝ ###############################
# shouts completion info ##################################################################
###########################################################################################
function checkCronCOMPLETE(){
printf "\nFile backups left in their dir and sent to [$backupDir]\n"
}
###########################################################################################
#are you root? no? well, try again
###########################################################################################
function neo(){
if [[ $EUID -ne 0 ]]; then
printf "\nyou forgot to run as root again... "
printf "\n\tCurrent dir is [$(pwd)]\n\n"
exit 1
fi
}
#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#+++++++++++++++++++++++++++++++++ FIGHT!! +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
main