Add pin cracking script
This commit is contained in:
parent
dfe341c5ff
commit
52f48b9ebb
1 changed files with 13 additions and 0 deletions
13
scripts/crack_MultisyncX401S_4digit_PIN.py
Normal file
13
scripts/crack_MultisyncX401S_4digit_PIN.py
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
import requests
|
||||||
|
import time
|
||||||
|
from tqdm import tqdm
|
||||||
|
|
||||||
|
url = "http://ir-blaster.n39.eu/button/multisyncx401s_taste_%s/press"
|
||||||
|
|
||||||
|
for i in tqdm(range(0000, 10000)):
|
||||||
|
num_str = f"{i:04d}"
|
||||||
|
print(f"Sending: {num_str}")
|
||||||
|
for digit in num_str:
|
||||||
|
requests.post(url % digit)
|
||||||
|
time.sleep(0.35)
|
||||||
|
time.sleep(0.35)
|
Loading…
Reference in a new issue