This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import os, sys | |
import argparse | |
import struct | |
from functools import reduce | |
""" | |
QNAP QTS firmware encryptor/decryptor. | |
Based on https://pastebin.com/KHbX85nG |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print" _____|#|_____ " | |
print" |_____________| " | |
print" |_______________| " | |
print" ||_EMAIL_###_BOX_|| " | |
print" | |-|-|-|||-|-|-| | " | |
print" | |-|-|-|||-|-|-| | " | |
print" | |_|_|_|||_|_|_| | " | |
print" | ||~~~| | |---|| | " | |
print" | ||~~~|!|!| O || | " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import zipfile | |
import rarfile | |
import os | |
import sys | |
from threading import Thread | |
import argparse | |
from itertools import product | |
import time | |
parser = argparse.ArgumentParser(description='CompressedCrack v1.0.0 by ThanhMinh', epilog='Use the -h for help') |