Skip to content

Instantly share code, notes, and snippets.

View TotallyMehis's full-sized avatar

Miikka Ylätalo TotallyMehis

View GitHub Profile
@TotallyMehis
TotallyMehis / payday3_code_cracker.py
Last active October 9, 2023 14:41
Payday 3 vault code cracking tool (No Rest For the Wicked)
import itertools
def main():
digits = input('Enter numbers: ').replace(' ', '')
length = int(input('Enter passcode length: '))
def contains_all_digits(combination):
keep = True
for digit in digits:
if digit not in combination:
keep = False