-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathhs-schedule.py
222 lines (167 loc) · 6.19 KB
/
hs-schedule.py
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# Author: Areeb Beigh
# Created: 23rd July 2016
"""
This script creates a new windows scheduled task that executes a hacker-scripts
COMMAND script at a time in the future specified by the user
Command used: SCHTASKS
"""
#############################################################################
# Copyright (C) 2016 Areeb Beigh <[email protected]> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
#############################################################################
# Python imports
import argparse
import calendar
import os
import re
import sys
import time
# Local imports
from src import help
from src.initialize import Initialize
initializer = Initialize()
def main():
parser = argparse.ArgumentParser(add_help=True, allow_abbrev=False)
group = parser.add_mutually_exclusive_group(required=True)
group.add_argument('-a',
'--action',
choices=['add', 'del'],
help='add/del scheduled tasks')
group.add_argument('-dh',
'--dhelp',
action='store_true',
help='displays detailed help for this hacker-script')
args = parser.parse_args()
if args.dhelp:
cmd = sys.argv[0].partition(".")[0]
help.display_help(cmd)
return
elif args.action == "add":
add_task()
else:
del_task()
def get_current_time():
""" Returns the current time in 24 hr format """
return time.strftime("%H:%M")
def get_current_date():
""" Returns the current date in MM/DD/YYYY format """
return time.strftime("%m/%d/%Y")
def is_valid_time(given_time, today):
"""
Given a time string this function checks if the given time is
in the future today (if "today" is true) else just validates the time
"""
given_time = given_time.split(":")
current_time = get_current_time().split(":")
given_hour = int(given_time[0])
given_minute = int(given_time[1])
current_hour = int(current_time[0])
current_minute = int(current_time[1])
if today:
if given_hour < 24 and given_minute <= 59:
return (
(given_hour > current_hour) or
(given_hour == current_hour and given_minute > current_minute)
)
else:
return given_hour < 24 and given_minute <= 59
return False
def is_valid_date(given_date):
"""
Given a date string this function checks if the date is in the future
"""
given_date = given_date.split("/")
current_date = get_current_date().split("/")
given_day = int(given_date[1])
given_month = int(given_date[0])
given_year = int(given_date[2])
current_day = int(current_date[1])
current_month = int(current_date[0])
current_year = int(current_date[2])
try:
calendar.weekday(given_year, given_month, given_day)
except ValueError:
return False
return (
(given_year == current_year and given_month == current_month and given_day > current_day) or
(given_year == current_year and given_month > current_month) or
(given_year > current_year))
def add_task():
"""
Takes all the information about the task to be scheduled and
creates the scheduled task
"""
commands = []
blank_line = r"^\s+$"
# List of ALL the files present in the scripts directory
scripts = os.listdir(os.getcwd())
for script in scripts:
# Appends all the script names that have "hs-" prefix and ".py" extension
# to commands after removing the extension from the script name
if script[0:3] == "hs-" and script.endswith(".py"):
cmd_name = script.partition(".")[0]
commands.append(cmd_name)
while True:
task_name = input(" Task name: ")
if task_name:
break
else:
print(" Invalid task name")
while True:
cmd_name = input(" Command name: ")
if cmd_name in commands:
break
else:
print(" Invalid command")
while True:
date = input(" Date (leave blank if today) [MM/DD/YYYY]: ")
if (re.search(blank_line, date) or date == "") or is_valid_date(date):
break
else:
print(" Invalid date")
if re.search(blank_line, date) or date == "":
date = get_current_date()
while True:
task_time = input(" Time [HH:MM]: ")
if date == get_current_date():
check = is_valid_time(task_time, True)
else:
check = is_valid_time(task_time, False)
if check:
break
else:
print(" Invalid time")
cmd_name = os.path.join(os.getcwd(), cmd_name + ".py")
command = "SCHTASKS /CREATE /SC ONCE /TN {0} /SD {1} /ST {2} /TR \"python '{3}'\"".format(
task_name,
date,
task_time,
cmd_name)
os.system(command)
def del_task():
"""
Asks the user for the task name to delete and attempts to delete
that task
"""
while True:
task_name = input(" Enter task name: ")
if task_name:
break
else:
print(" Invalid task name")
command = "SCHTASKS /DELETE /TN", task_name
os.system(command)
if __name__ == "__main__":
main()