2024-01-30 11:40:49 +00:00
|
|
|
; © 2023-2024 John Breaux
|
|
|
|
; Comtains spoilers for Microcorruption Halifax! Be warned!
|
|
|
|
|
|
|
|
|
|
|
|
const:
|
|
|
|
.define msize 0x1 ; length of each hash in bytes
|
|
|
|
.define hsize 0x3 ; bytes kept per hash (only needs to be 3 to determine 1 byte of sram)
|
|
|
|
.define sr_len 0x140 ; number of bytes in sram to dump
|
|
|
|
.define haddr 0x7000 ; address of the big hash array
|
|
|
|
.define iaddr 0x8000 ; address of the sram input buffer
|
|
|
|
.define kaddr 0x9000 ; address of the key buffer
|
|
|
|
external_data:
|
|
|
|
.define HEX_LUT 0x4710; "0123456789ABCDEF"
|
|
|
|
external_func:
|
|
|
|
; INT(int interrupt, ...)
|
|
|
|
.define INT #0x4550
|
|
|
|
; getsn(void *dest, size_t len)
|
|
|
|
.define getsn #0x4568
|
|
|
|
; putchar(char character)
|
|
|
|
.define putchar #0x4578
|
|
|
|
; puts(char *str)
|
|
|
|
.define puts #0x4586
|
|
|
|
; memcpy(void *dest, void *src, size_t len)
|
|
|
|
.define memcpy #0x45a4
|
2024-07-31 16:59:45 +00:00
|
|
|
; sha256_internal(void *sram_addr, size_t sr_len, void * sha_buf)
|
2024-01-30 11:40:49 +00:00
|
|
|
.define sha256_internal #0x45b6
|
|
|
|
; memset(void* buf, char value, size_t length)
|
|
|
|
.define memset #0x45c8
|
|
|
|
|
|
|
|
get_sram_hashes:
|
|
|
|
clr r11 ; loop variable in r11
|
|
|
|
mov #msize, r14 ; r14 = 1
|
|
|
|
mov #haddr, r13 ; set destination to 0x8000
|
|
|
|
sr_loop:
|
|
|
|
mov r11, r15 ; mov addr r15
|
2024-07-31 16:59:45 +00:00
|
|
|
call sha256_internal ; sha256_internal (i, msize, haddr + i * hsize)
|
2024-01-30 11:40:49 +00:00
|
|
|
add #hsize, r13 ; keep 3 bytes of the output
|
|
|
|
inc r11 ; inc r11
|
2024-07-31 16:59:45 +00:00
|
|
|
cmp #sr_len, r11 ; do that sram_len times
|
2024-01-30 11:40:49 +00:00
|
|
|
jnc sr_loop
|
|
|
|
|
|
|
|
print_hex:
|
|
|
|
clr r11;
|
|
|
|
ph_loop:
|
|
|
|
mov.b haddr(r11), r14
|
|
|
|
mov.b r14, r15
|
|
|
|
rra r15 ; using rra here instead of rra.b means the value won't roll into the highest bit
|
|
|
|
rra r15 ; which negates the need to and 0xf, r15
|
|
|
|
rra r15
|
|
|
|
rra r15
|
|
|
|
clrc
|
|
|
|
and #0xf, r14
|
|
|
|
mov.b HEX_LUT(r15), r15
|
2024-07-31 16:59:45 +00:00
|
|
|
call putchar ; putchar (HEX_LUT[haddr[i] >> 4])
|
2024-01-30 11:40:49 +00:00
|
|
|
mov.b HEX_LUT(r14), r15
|
2024-07-31 16:59:45 +00:00
|
|
|
call putchar ; putchar (HEX_LUT[haddr[i] & 0xf])
|
|
|
|
inc r11
|
|
|
|
cmp #sr_len * hsize, r11 ; do that sram_length * hash_size times
|
2024-01-30 11:40:49 +00:00
|
|
|
jnc ph_loop
|
|
|
|
|
2024-07-31 16:59:45 +00:00
|
|
|
mov.b #'\n', r15 ; '\n'
|
|
|
|
call putchar ; putchar ('\n')
|
2024-01-30 11:40:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
take_input:
|
|
|
|
mov #sr_len, r14
|
|
|
|
mov #iaddr, r15
|
2024-07-31 16:59:45 +00:00
|
|
|
call getsn ; getsn (iaddr, sr_len)
|
2024-01-30 11:40:49 +00:00
|
|
|
|
|
|
|
check_all_passwords:
|
|
|
|
;for i in 0..sr_len:
|
|
|
|
clr r9
|
|
|
|
pw_loop:
|
2024-07-31 16:59:45 +00:00
|
|
|
; memcpy (kaddr, iaddr + i, len)
|
2024-01-30 11:40:49 +00:00
|
|
|
mov #0x10, r13
|
|
|
|
mov #iaddr, r14
|
|
|
|
add r9, r14
|
|
|
|
mov #kaddr, r15
|
|
|
|
call memcpy
|
|
|
|
; INT (0x42, key)
|
|
|
|
push #kaddr
|
|
|
|
push #0x42
|
|
|
|
call INT
|
|
|
|
add #4, sp
|
2024-07-31 16:59:45 +00:00
|
|
|
; INT (7f)
|
2024-01-30 11:40:49 +00:00
|
|
|
unlock7f:
|
|
|
|
push #0
|
|
|
|
push #0
|
|
|
|
push #0x7f
|
|
|
|
call INT
|
|
|
|
add #6, sp
|
|
|
|
inc r9
|
|
|
|
cmp #sr_len, r9
|
|
|
|
jl pw_loop
|
|
|
|
|
|
|
|
end:
|
|
|
|
ret
|