ReClassMap 1.0 Downloads › Tools Category: Tools Developer: Tormund Uploaded by: System Uploaded at: Wed 27. Dec 2017, 00:38 System: Windows Download (17.51 KB) VirusTotal Result: 0/61 Download (17.51 KB) Description Problems or Questions regarding the hack?Take a look at our FAQ Features:Renders python descriptions of ReClass nodes and generates *.reclass database filesLeverages python syntax to produce quick class descriptionsOverloads the python index operator to elegantly describe offset mappingsSupports all primitive node types and most advanced ones tooAuto-generates padding of undefined memory ranges between defined nodesValidates that all defined nodes do not overlap in memory based on their sizeReClassMap will error and provide info on any overlapping nodesPYTHON Code:from ReClassMap import * r = Map("./MyClasses.reclass") C = r.Class(name="Foo0")C[0x00] = Int64(name="Bar0")C[0x08] = Int32(name="Bar1")C[0x0C] = Int16(name="Bar2")C[0x0E] = Int8(name="Bar3")C[0x0F] = Int8(name="Bar4")C[0x20] = Pointer(classname="Foo1",name="pFoo1") C = r.Class(name="Foo1")C[0x00] = Double(name="Bar5")C[0x08] = Float(name="Bar6") r.write() Download ReClassMap 1.0