I'm on a Minecraft server and the Security Craft mod is there. There are also password-protected chests there, and I'd like to open one of them.
Is there maybe a program with which I can brute force such chests with an Arduino Uno? So that an Arduino generates the inputs?
Why an Arduino? A simple Python script does it too…
I'm on a server with Security Craft myself and once wrote myself a script to crack the chests.
import pydirectinput
import time
time.sleep (5)
pin = 0
while pin <99999999999:
print ("Trying:" + str (pin))
pin_str_lst = list (str (pin))
length = len (pin_str_lst)
for number in pin_str_lst:
pydirectinput.keyDown (number)
pydirectinput.keyUp (number)
for i in range (length):
pydirectinput.keyDown ('backspace')
pydirectinput.keyUp ('backspace')
pin = pin + 1
Remember that you have to have Python installed and that you have to enter "pip install pydirectinput" in the terminal. To do this, you should adjust the PAUSE variable in init.py of pydirectinput to 0.0000000000000000000000000000000000000000000000000000000000000000000001 or something to speed up the process, but at some point Windows no longer comes with: /