Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
Updated to 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
n0rthl1ght authored Jul 13, 2024
1 parent 33dde08 commit 7621449
Show file tree
Hide file tree
Showing 19 changed files with 663 additions and 2,470 deletions.
41 changes: 41 additions & 0 deletions AHWT.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
import db_gen


def menu():
print("Choose operating system from list:\n")
print("[1] Windows XP Hardening\n")
print("[2] Windows Vista Hardening\n")
print("[3] Windows 7 Hardening\n")
print("[4] Windows 8 Hardening\n")
print("[5] Windows 8.1 Hardening\n")
print("[6] Windows 10 Hardening\n")
print("[7] Windows 11 Hardening\n")
print("[8] MS Office Hardening\n")
print("[9] Exit\n")

while True:
menu()
choice = input("Your decision: ")
match choice:
case '1':
db_gen.start_module("xp_params.db", db_gen.gen_decision)
case '2':
db_gen.start_module("vista_params.db", db_gen.gen_decision)
case '3':
db_gen.start_module("seven_params.db", db_gen.gen_decision)
case '4':
db_gen.start_module("eightzero_params.db", db_gen.gen_decision)
case '5':
db_gen.start_module("eightone_params.db", db_gen.gen_decision)
case '6':
db_gen.start_module("ten_params.db", db_gen.gen_decision)
case '7':
db_gen.start_module("eleven_params.db", db_gen.gen_decision)
case '8':
db_gen.start_module("office.db", db_gen.office_gen)
case '9':
print("Have a nice day!")
break
case _:
print("Wrong choice. Choose from 1 to 9...")

Binary file modified Templates/EightOne/hisecdc_eightone.inf
Binary file not shown.
Binary file modified Templates/EightOne/secedit_db_eightone.sdb
Binary file not shown.
Binary file modified Templates/EightZero/hisecdc_eightzero.inf
Binary file not shown.
Binary file modified Templates/EightZero/secedit_db_eightzero.sdb
Binary file not shown.
Binary file modified Templates/Eleven/hisecdc_eleven.inf
Binary file not shown.
Binary file modified Templates/Seven/hisecdc_seven.inf
Binary file not shown.
Binary file modified Templates/Seven/secedit_db_seven.sdb
Binary file not shown.
Binary file modified Templates/Ten/hisecdc_ten.inf
Binary file not shown.
Binary file modified Templates/Ten/secedit_db_ten.sdb
Binary file not shown.
3,092 changes: 622 additions & 2,470 deletions db_gen.py

Large diffs are not rendered by default.

Binary file modified dbs/eightone_params.db
Binary file not shown.
Binary file modified dbs/eightzero_params.db
Binary file not shown.
Binary file modified dbs/eleven_params.db
Binary file not shown.
Binary file modified dbs/office.db
Binary file not shown.
Binary file modified dbs/seven_params.db
Binary file not shown.
Binary file modified dbs/ten_params.db
Binary file not shown.
Binary file modified dbs/vista_params.db
Binary file not shown.
Binary file modified dbs/xp_params.db
Binary file not shown.

0 comments on commit 7621449

Please sign in to comment.