-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #144 from Washi1337/cicd
Update CI/CD pipeline
- Loading branch information
Showing
62 changed files
with
265 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ Thumbs.db | |
Desktop.ini | ||
.DS_Store | ||
|
||
artifacts/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<Copyright>Copyright © Washi 2019-2023</Copyright> | ||
<Copyright>Copyright © Washi 2019-2025</Copyright> | ||
<PackageProjectUrl>https://github.com/Washi1337/Echo</PackageProjectUrl> | ||
<PackageLicense>https://github.com/Washi1337/Echo/LICENSE.md</PackageLicense> | ||
<RepositoryUrl>https://github.com/Washi1337/Echo</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<LangVersion>10</LangVersion> | ||
<Version>0.9.0.1</Version> | ||
<LangVersion>12</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<VersionPrefix>1.0.0</VersionPrefix> | ||
<VersionSuffix>alpha.1</VersionSuffix> | ||
<Deterministic>true</Deterministic> | ||
<UseArtifactsOutput>true</UseArtifactsOutput> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> | ||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,72 @@ | ||
Echo | ||
==== | ||
# Echo | ||
|
||
Echo is an experimental generic, static analysis, symbolic execution and emulation framework, that aims to help out with binary code analysis for a variety of platforms. | ||
Echo is an experimental generic, static analysis, symbolic execution and emulation framework, that aims to help out with binary code analysis for a variety of platforms or backends. | ||
|
||
Echo is released under the LGPLv3 license. | ||
|
||
Main Features | ||
------------- | ||
- Control flow analysis | ||
- Create static and symbolic flow graphs | ||
- Dominator analysis | ||
- Serialize into scoped flow blocks or a list of instructions | ||
- Data flow analysis | ||
- Create data flow graphs | ||
- Inspect stack and variable dependencies of instructions. | ||
- AST building | ||
- Lift control flow graphs to Abstract Syntax Trees (ASTs). | ||
- Unified generic API. | ||
- Serialize any kind of graph to the dot file format. | ||
- Adding a new platform for flow analysis requires minimal effort | ||
|
||
## Main Features | ||
|
||
Supported platforms: | ||
- [x] Generic Graph Models | ||
- [x] Traversal and structural detection algorithms | ||
- [x] Serialization to Dot/GraphViz | ||
- [x] Generic Control flow Analysis | ||
- [x] Create static and symbolic flow graphs | ||
- [x] Dominator analysis | ||
- [x] Serialize into scoped flow blocks or a list of instructions | ||
- [x] Generic Data flow Analysis | ||
- [x] Create data flow graphs | ||
- [x] Inspect stack and variable dependencies of instructions | ||
- [x] Generic AST Construction | ||
- [x] Lift control flow graphs to Abstract Syntax Trees (ASTs) | ||
- [x] Automatic variable cross-referencing | ||
- [x] Generic Emulation Engine Framework | ||
- [x] Virtual memory model using low level bit vectors | ||
- [x] Support for HLE and LLE arithmetic on fully known, partially known and fully unknown bit vectors of any size | ||
|
||
| Architecture | Back-end | Control Flow | Data Flow | AST | Purity Classification | Emulation | | ||
|--------------|---------------------------------------------------------|--------------|-----------|-----|-----------------------|-----------| | ||
| CIL | [AsmResolver](https://github.com/Washi1337/AsmResolver) | ✓ | ✓ | ✓ | ✓ | ✓ (WIP) | | ||
| CIL | [dnlib](https://github.com/0xd4d/dnlib) | ✓ | ✓ | ✓ | ✓ | | | ||
| x86 (32-bit) | [Iced](https://github.com/icedland/iced) | ✓ | ✓ | ✓ | | | | ||
| x86 (64-bit) | [Iced](https://github.com/icedland/iced) | ✓ | ✓ | ✓ | | | | ||
|
||
## Supported Backends: | ||
|
||
Compiling | ||
--------- | ||
| Architecture | Back-end | Control Flow | Data Flow | AST | Purity Classification | Emulation | | ||
|--------------|---------------------------------------------------------|--------------|-----------|---------|-----------------------|-----------| | ||
| CIL | [AsmResolver](https://github.com/Washi1337/AsmResolver) | ✓ | ✓ | ✓ | ✓ | ✓ (WIP) | | ||
| CIL | [dnlib](https://github.com/0xd4d/dnlib) | ✓ | ✓ | ✓ | ✓ | | | ||
| x86 (32-bit) | [Iced](https://github.com/icedland/iced) | ✓ | ✓ | ✓ (WIP) | | | | ||
| x86 (64-bit) | [Iced](https://github.com/icedland/iced) | ✓ | ✓ | ✓ (WIP) | | | | ||
|
||
Echo can be built using `dotnet build`, or any IDE that is capable of building .NET Standard 2.0 projects (such as Visual Studio or JetBrains Rider). | ||
|
||
Not all projects need to be built for a working binary to be produced. Only the core libraries found in `src/Core` are required to be built. Any other project, such as the platform-specific back-ends in the `src/Platforms` directory and the test projects in `test/`, is optional and can be unloaded safely. | ||
|
||
## Binaries | ||
|
||
Build Status | ||
------------ | ||
- [Nightly NuGet Feed](https://nuget.washi.dev/) | ||
|
||
| Branch | Status (Linux) | | ||
|--------|---------------------------------------------------------------------------------| | ||
| master |  | | ||
|
||
Documentation | ||
------------- | ||
|
||
## Compiling | ||
|
||
Simply run | ||
|
||
``` | ||
dotnet build | ||
``` | ||
|
||
Alternatively, use any IDE that is capable of building .NET Standard 2.0 projects (such as Visual Studio or JetBrains Rider). | ||
|
||
Not all projects need to be built for a working binary to be produced. Only the core libraries found in `src/Core` are required to be built. Any other project, such as the platform-specific back-ends in the `src/Platforms` directory and the test projects in `test/`, is optional and can be unloaded safely. | ||
|
||
|
||
## Documentation | ||
|
||
Check out the [wiki](https://echo-emu.readthedocs.io/) for guides and information on how to use the library! | ||
|
||
Contributing | ||
------------ | ||
|
||
## Contributing | ||
|
||
See [CONTRIBUTING.md](CONTRIBUTING.md). | ||
|
||
Found a bug or have questions? | ||
------------------------------ | ||
|
||
## Found a bug or have questions? | ||
|
||
Please use the [issue tracker](https://github.com/Washi1337/Echo/issues). Try to be as descriptive as possible. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.