├── ISO-TP_Decoder.exe ├── README.md ├── RSA_1024_3.exe ├── XOR_Calc.exe ├── frf_decrypt.exe ├── frf_encrypt.exe ├── lzss_compress.exe └── lzss_decompress.exe /ISO-TP_Decoder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-MIBonk/snippets/f215f9a656edfa4f0f80780a8400c9c5ae91d8ed/ISO-TP_Decoder.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # I build me some usefull files for analysis and reengineering! 2 | 3 | - lzss_decompress - decompress Bin / Text File from LZSS 4 | 5 | - lzss_compress - compress Bin / Text File into LZSS 6 | 7 | - frf_decrypt - decrypt frf files 8 | 9 | - frf_encrypt - encrypt frf files 10 | 11 | - ISO-TP_Decoder - to parse CAN Logs from PEAK Can .trc files into better readable ISO-TP format 12 | 13 | - RSA_1024_3 - generate some RSA1024 key with Exponet 3 14 | 15 | - XOR_Calc - Calculate address ranges with XOR 16 | 17 | All files are compiled for Windows! 18 | 19 | More are comming soon... it is done when it done! 20 | 21 | ---- 22 | 23 | Note: NOT FOR COMMERCIAL USE - IF YOU BOUGHT THIS YOU GOT RIPPED OFF 24 | -------------------------------------------------------------------------------- /RSA_1024_3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-MIBonk/snippets/f215f9a656edfa4f0f80780a8400c9c5ae91d8ed/RSA_1024_3.exe -------------------------------------------------------------------------------- /XOR_Calc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-MIBonk/snippets/f215f9a656edfa4f0f80780a8400c9c5ae91d8ed/XOR_Calc.exe -------------------------------------------------------------------------------- /frf_decrypt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-MIBonk/snippets/f215f9a656edfa4f0f80780a8400c9c5ae91d8ed/frf_decrypt.exe -------------------------------------------------------------------------------- /frf_encrypt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-MIBonk/snippets/f215f9a656edfa4f0f80780a8400c9c5ae91d8ed/frf_encrypt.exe -------------------------------------------------------------------------------- /lzss_compress.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-MIBonk/snippets/f215f9a656edfa4f0f80780a8400c9c5ae91d8ed/lzss_compress.exe -------------------------------------------------------------------------------- /lzss_decompress.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-MIBonk/snippets/f215f9a656edfa4f0f80780a8400c9c5ae91d8ed/lzss_decompress.exe --------------------------------------------------------------------------------