Skip to content

Commit 71ce789

Browse files
authored
fixed typo
1 parent 0e1cd8a commit 71ce789

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autosploit.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def main():
357357

358358
postgresql = cmdline("sudo service postgresql status | grep active")
359359
if "Active: inactive" in postgresql:
360-
print "\n[" + t.red("!") + "]Warning. Hueristics indicate Postgresql Service is offline"
360+
print "\n[" + t.red("!") + "]Warning. Heuristics indicate Postgresql Service is offline"
361361

362362
start_pst = raw_input("\n[" + t.magenta("?") + "]Start Postgresql Service? [Y]es/[N]o: ").lower()
363363
if start_pst == 'y':
@@ -380,7 +380,7 @@ def main():
380380

381381
apache = cmdline("service apache2 status | grep active")
382382
if "Active: inactive" in apache:
383-
print "\n[" + t.red("!") + "]Warning. Hueristics indicate Apache Service is offline"
383+
print "\n[" + t.red("!") + "]Warning. Heuristics indicate Apache Service is offline"
384384

385385
start_ap = raw_input("\n[" + t.magenta("?") + "]Start Apache Service? [Y]es/[N]o: ").lower()
386386
if start_ap == 'y':

0 commit comments

Comments
 (0)