├── .gitignore ├── Caesar ├── Caesar.sln ├── Caesar │ ├── App.config │ ├── BitUtility.cs │ ├── CFFHeader.cs │ ├── CTFHeader.cs │ ├── CTFLanguage.cs │ ├── Caesar.csproj │ ├── CaesarContainer.cs │ ├── CaesarReader.cs │ ├── CaesarStructure.cs │ ├── ComParameter.cs │ ├── DSCContext.cs │ ├── DTC.cs │ ├── DiagPreparation.cs │ ├── DiagPresentation.cs │ ├── DiagService.cs │ ├── ECU.cs │ ├── ECUInterface.cs │ ├── ECUInterfaceSubtype.cs │ ├── ECUVariant.cs │ ├── ECUVariantPattern.cs │ ├── Flash │ │ ├── CaesarFlashContainer.cs │ │ ├── FlashDataBlock.cs │ │ ├── FlashDescriptionHeader.cs │ │ ├── FlashHeader.cs │ │ ├── FlashSecurity.cs │ │ └── FlashSegment.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scale.cs │ ├── StubHeader.cs │ ├── VCDomain.cs │ ├── VCFragment.cs │ ├── VCSubfragment.cs │ ├── caesar_256.ico │ └── packages.config ├── Diogenes │ ├── App.config │ ├── DiagnosticProtocol │ │ ├── BaseProtocol.cs │ │ ├── KW2C3PE.cs │ │ ├── UDS.cs │ │ └── UnsupportedProtocol.cs │ ├── Diogenes.csproj │ ├── ECUConnection.cs │ ├── ECUFlashMetadata.cs │ ├── ECUIdentification.cs │ ├── ECUMetadata.cs │ ├── Forms │ │ ├── AboutForm.Designer.cs │ │ ├── AboutForm.cs │ │ ├── AboutForm.resx │ │ ├── BlockDownload.Designer.cs │ │ ├── BlockDownload.cs │ │ ├── BlockDownload.resx │ │ ├── DTCForm.Designer.cs │ │ ├── DTCForm.cs │ │ ├── DTCForm.resx │ │ ├── FlashSplicer.Designer.cs │ │ ├── FlashSplicer.cs │ │ ├── FlashSplicer.resx │ │ ├── GenericLoader.Designer.cs │ │ ├── GenericLoader.cs │ │ ├── GenericLoader.resx │ │ ├── GenericPicker.Designer.cs │ │ ├── GenericPicker.cs │ │ ├── GenericPicker.resx │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── PickDiagForm.Designer.cs │ │ ├── PickDiagForm.cs │ │ ├── PickDiagForm.resx │ │ ├── RunDiagForm.Designer.cs │ │ ├── RunDiagForm.cs │ │ ├── RunDiagForm.resx │ │ ├── SecurityLevelForm.Designer.cs │ │ ├── SecurityLevelForm.cs │ │ ├── SecurityLevelForm.resx │ │ ├── TraceForm.Designer.cs │ │ ├── TraceForm.cs │ │ ├── TraceForm.resx │ │ ├── UDSHexEditor.Designer.cs │ │ ├── UDSHexEditor.cs │ │ ├── UDSHexEditor.resx │ │ ├── VCForm.Designer.cs │ │ ├── VCForm.cs │ │ └── VCForm.resx │ ├── Preferences.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Reports │ │ ├── DTCReport.cs │ │ └── VCReport.cs │ ├── Resources │ │ ├── accept.png │ │ ├── application_xp_terminal.png │ │ ├── asterisk_orange.png │ │ ├── blank.png │ │ ├── box.png │ │ ├── brick.png │ │ ├── bullet_black.png │ │ ├── bullet_blue.png │ │ ├── bullet_go.png │ │ ├── bullet_green.png │ │ ├── bullet_orange.png │ │ ├── bullet_pink.png │ │ ├── bullet_purple.png │ │ ├── bullet_red.png │ │ ├── bullet_star.png │ │ ├── bullet_white.png │ │ ├── bullet_yellow.png │ │ ├── cog.png │ │ ├── computer_go.png │ │ ├── connect.png │ │ ├── diogenes.png │ │ ├── folder.png │ │ ├── house.png │ │ ├── information.png │ │ ├── key.png │ │ ├── lock_edit.png │ │ ├── page_white_edit.png │ │ └── report.png │ ├── SecurityAccess │ │ ├── DllContext.cs │ │ ├── ExportDefinition.cs │ │ └── SecurityAutoLogin.cs │ ├── Simulation │ │ ├── SimulatedDevice.cs │ │ └── Simulated_CRD3.cs │ ├── TextboxWriter.cs │ ├── UnmanagedUtility.cs │ ├── VariantCoding.cs │ ├── diogenes-256.ico │ └── packages.config └── Trafo │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Trafo.csproj │ ├── packages.config │ └── trafo-256.ico ├── LICENSE ├── README.md └── docs └── resources ├── caesarsuite-banner.png ├── demo-cff-splice.gif ├── demo-cff.gif ├── demo-connect.gif ├── demo-data.gif ├── demo-vc.gif ├── diogenes-2.png └── gh_shield_0.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/.gitignore -------------------------------------------------------------------------------- /Caesar/Caesar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar.sln -------------------------------------------------------------------------------- /Caesar/Caesar/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/App.config -------------------------------------------------------------------------------- /Caesar/Caesar/BitUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/BitUtility.cs -------------------------------------------------------------------------------- /Caesar/Caesar/CFFHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/CFFHeader.cs -------------------------------------------------------------------------------- /Caesar/Caesar/CTFHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/CTFHeader.cs -------------------------------------------------------------------------------- /Caesar/Caesar/CTFLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/CTFLanguage.cs -------------------------------------------------------------------------------- /Caesar/Caesar/Caesar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/Caesar.csproj -------------------------------------------------------------------------------- /Caesar/Caesar/CaesarContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/CaesarContainer.cs -------------------------------------------------------------------------------- /Caesar/Caesar/CaesarReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/CaesarReader.cs -------------------------------------------------------------------------------- /Caesar/Caesar/CaesarStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/CaesarStructure.cs -------------------------------------------------------------------------------- /Caesar/Caesar/ComParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/ComParameter.cs -------------------------------------------------------------------------------- /Caesar/Caesar/DSCContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/DSCContext.cs -------------------------------------------------------------------------------- /Caesar/Caesar/DTC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/DTC.cs -------------------------------------------------------------------------------- /Caesar/Caesar/DiagPreparation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/DiagPreparation.cs -------------------------------------------------------------------------------- /Caesar/Caesar/DiagPresentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/DiagPresentation.cs -------------------------------------------------------------------------------- /Caesar/Caesar/DiagService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/DiagService.cs -------------------------------------------------------------------------------- /Caesar/Caesar/ECU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/ECU.cs -------------------------------------------------------------------------------- /Caesar/Caesar/ECUInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/ECUInterface.cs -------------------------------------------------------------------------------- /Caesar/Caesar/ECUInterfaceSubtype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/ECUInterfaceSubtype.cs -------------------------------------------------------------------------------- /Caesar/Caesar/ECUVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/ECUVariant.cs -------------------------------------------------------------------------------- /Caesar/Caesar/ECUVariantPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/ECUVariantPattern.cs -------------------------------------------------------------------------------- /Caesar/Caesar/Flash/CaesarFlashContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/Flash/CaesarFlashContainer.cs -------------------------------------------------------------------------------- /Caesar/Caesar/Flash/FlashDataBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/Flash/FlashDataBlock.cs -------------------------------------------------------------------------------- /Caesar/Caesar/Flash/FlashDescriptionHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/Flash/FlashDescriptionHeader.cs -------------------------------------------------------------------------------- /Caesar/Caesar/Flash/FlashHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/Flash/FlashHeader.cs -------------------------------------------------------------------------------- /Caesar/Caesar/Flash/FlashSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/Flash/FlashSecurity.cs -------------------------------------------------------------------------------- /Caesar/Caesar/Flash/FlashSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/Flash/FlashSegment.cs -------------------------------------------------------------------------------- /Caesar/Caesar/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/Program.cs -------------------------------------------------------------------------------- /Caesar/Caesar/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Caesar/Caesar/Scale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/Scale.cs -------------------------------------------------------------------------------- /Caesar/Caesar/StubHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/StubHeader.cs -------------------------------------------------------------------------------- /Caesar/Caesar/VCDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/VCDomain.cs -------------------------------------------------------------------------------- /Caesar/Caesar/VCFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/VCFragment.cs -------------------------------------------------------------------------------- /Caesar/Caesar/VCSubfragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/VCSubfragment.cs -------------------------------------------------------------------------------- /Caesar/Caesar/caesar_256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/caesar_256.ico -------------------------------------------------------------------------------- /Caesar/Caesar/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Caesar/packages.config -------------------------------------------------------------------------------- /Caesar/Diogenes/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/App.config -------------------------------------------------------------------------------- /Caesar/Diogenes/DiagnosticProtocol/BaseProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/DiagnosticProtocol/BaseProtocol.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/DiagnosticProtocol/KW2C3PE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/DiagnosticProtocol/KW2C3PE.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/DiagnosticProtocol/UDS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/DiagnosticProtocol/UDS.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/DiagnosticProtocol/UnsupportedProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/DiagnosticProtocol/UnsupportedProtocol.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Diogenes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Diogenes.csproj -------------------------------------------------------------------------------- /Caesar/Diogenes/ECUConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/ECUConnection.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/ECUFlashMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/ECUFlashMetadata.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/ECUIdentification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/ECUIdentification.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/ECUMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/ECUMetadata.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/AboutForm.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/AboutForm.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/AboutForm.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/BlockDownload.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/BlockDownload.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/BlockDownload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/BlockDownload.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/BlockDownload.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/BlockDownload.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/DTCForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/DTCForm.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/DTCForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/DTCForm.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/DTCForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/DTCForm.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/FlashSplicer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/FlashSplicer.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/FlashSplicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/FlashSplicer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/FlashSplicer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/FlashSplicer.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/GenericLoader.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/GenericLoader.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/GenericLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/GenericLoader.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/GenericLoader.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/GenericLoader.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/GenericPicker.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/GenericPicker.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/GenericPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/GenericPicker.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/GenericPicker.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/GenericPicker.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/MainForm.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/MainForm.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/PickDiagForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/PickDiagForm.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/PickDiagForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/PickDiagForm.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/PickDiagForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/PickDiagForm.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/RunDiagForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/RunDiagForm.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/RunDiagForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/RunDiagForm.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/RunDiagForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/RunDiagForm.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/SecurityLevelForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/SecurityLevelForm.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/SecurityLevelForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/SecurityLevelForm.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/SecurityLevelForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/SecurityLevelForm.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/TraceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/TraceForm.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/TraceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/TraceForm.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/TraceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/TraceForm.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/UDSHexEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/UDSHexEditor.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/UDSHexEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/UDSHexEditor.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/UDSHexEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/UDSHexEditor.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/VCForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/VCForm.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/VCForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/VCForm.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Forms/VCForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Forms/VCForm.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Preferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Preferences.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Program.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Properties/Resources.resx -------------------------------------------------------------------------------- /Caesar/Diogenes/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Properties/Settings.settings -------------------------------------------------------------------------------- /Caesar/Diogenes/Reports/DTCReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Reports/DTCReport.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Reports/VCReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Reports/VCReport.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/accept.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/application_xp_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/application_xp_terminal.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/asterisk_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/asterisk_orange.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/blank.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/box.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/brick.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/bullet_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/bullet_black.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/bullet_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/bullet_blue.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/bullet_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/bullet_go.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/bullet_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/bullet_green.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/bullet_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/bullet_orange.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/bullet_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/bullet_pink.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/bullet_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/bullet_purple.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/bullet_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/bullet_red.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/bullet_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/bullet_star.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/bullet_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/bullet_white.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/bullet_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/bullet_yellow.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/cog.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/computer_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/computer_go.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/connect.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/diogenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/diogenes.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/folder.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/house.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/information.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/key.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/lock_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/lock_edit.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/page_white_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/page_white_edit.png -------------------------------------------------------------------------------- /Caesar/Diogenes/Resources/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Resources/report.png -------------------------------------------------------------------------------- /Caesar/Diogenes/SecurityAccess/DllContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/SecurityAccess/DllContext.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/SecurityAccess/ExportDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/SecurityAccess/ExportDefinition.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/SecurityAccess/SecurityAutoLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/SecurityAccess/SecurityAutoLogin.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Simulation/SimulatedDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Simulation/SimulatedDevice.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/Simulation/Simulated_CRD3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/Simulation/Simulated_CRD3.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/TextboxWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/TextboxWriter.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/UnmanagedUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/UnmanagedUtility.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/VariantCoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/VariantCoding.cs -------------------------------------------------------------------------------- /Caesar/Diogenes/diogenes-256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/diogenes-256.ico -------------------------------------------------------------------------------- /Caesar/Diogenes/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Diogenes/packages.config -------------------------------------------------------------------------------- /Caesar/Trafo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Trafo/App.config -------------------------------------------------------------------------------- /Caesar/Trafo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Trafo/Program.cs -------------------------------------------------------------------------------- /Caesar/Trafo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Trafo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Caesar/Trafo/Trafo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Trafo/Trafo.csproj -------------------------------------------------------------------------------- /Caesar/Trafo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Trafo/packages.config -------------------------------------------------------------------------------- /Caesar/Trafo/trafo-256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/Caesar/Trafo/trafo-256.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/README.md -------------------------------------------------------------------------------- /docs/resources/caesarsuite-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/docs/resources/caesarsuite-banner.png -------------------------------------------------------------------------------- /docs/resources/demo-cff-splice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/docs/resources/demo-cff-splice.gif -------------------------------------------------------------------------------- /docs/resources/demo-cff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/docs/resources/demo-cff.gif -------------------------------------------------------------------------------- /docs/resources/demo-connect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/docs/resources/demo-connect.gif -------------------------------------------------------------------------------- /docs/resources/demo-data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/docs/resources/demo-data.gif -------------------------------------------------------------------------------- /docs/resources/demo-vc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/docs/resources/demo-vc.gif -------------------------------------------------------------------------------- /docs/resources/diogenes-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/docs/resources/diogenes-2.png -------------------------------------------------------------------------------- /docs/resources/gh_shield_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jglim/CaesarSuite/HEAD/docs/resources/gh_shield_0.svg --------------------------------------------------------------------------------