DJ-X100E(CPU 4.00-004 _DSP 1.07).exe dotPeek, Visual Studio 2022, Detect It Easy Detect It Easy Motorola S-record inside (DIE Strings view) DIE save Strings to file dotPeek to Visual Studio solution. Renesas microcontroller? BIN file inside VS solution. VS can show its content in HEX and ASCII Python code for extracting S-record lines from the DIE strings file fin = open("G:\\DJ-X100E(CPU 4.00-004 _DSP 1.07).exe.Strings.txt", mode="r", encoding="utf8") fout = open("G:\\DJ-X100E-SREC.txt", mode="w", encoding="utf8") arr = ["S00", "S311", "S315", "S309", "S30B", "S307", "S30C", "S30F", "S30E", "S30D", "S705", "S306"] while True: line = fin.readline() if not line: break for item in arr: i = line.find(item) if i > -1: fout.write(line[i:]) break...
D878UVII_V4.00_20250725.CDD Renamed it to D878UVII_V4.00_20250725.BIN. Visual Studio 2022 can show its content as ASCII and HEX. Detect It Easy. D878UVII.exe is VB6. For inspecting with Ghidra: copy DAO350.dll and msvbvm60.dll to the dir where D878UVII.exe is located.
15.3.2021 Modifying old SDR# TETRA demod plug-in Visual Studio 2019 Community Edition C#, .NET 4.6 dotPeek SDRSharp.Tetra.dll - TETRA demodulator plug-in version 1.0.10.1 Reverse engineering SDRSharp.Tetra.dll with dotPeek. Mod for PDU raw data display in Network info screen. Logging PDU data to logfile NetinfoWindow.cs private StreamWriter pduLog = null; public NetInfoWindow(TetraSettings tetraSettings) ... pduLog = File.AppendText(DateTime.Now.ToString("yyyyMMddHHmmss") + "_pduLog.txt"); public void UpdateTextBox ... if (GlobalFunction._pduTxt.Trim().Length > 0) { this.callsTextBox.AppendText(GlobalFunction._pduTxt + Environment.NewLine); ...
Comments
Post a Comment