(exe, output)
| 140 | |
| 141 | |
| 142 | def outputCert(exe, output): |
| 143 | cert = copyCert(exe) |
| 144 | if not output: |
| 145 | output = str(exe) + "_sig" |
| 146 | |
| 147 | print("Output file: {0}".format(output)) |
| 148 | |
| 149 | open(output, 'wb').write(cert) |
| 150 | |
| 151 | print("Signature ripped. \nFIN.") |
| 152 | |
| 153 | |
| 154 | def check_sig(exe): |