mirror of
https://github.com/vee1e/lancelot.git
synced 2026-09-01 10:48:44 +00:00
parent
926d8d278e
commit
a5e7b3190e
8 changed files with 0 additions and 761 deletions
29
.github/workflows/Dockerfile
vendored
29
.github/workflows/Dockerfile
vendored
|
|
@ -1,29 +0,0 @@
|
||||||
# need to use manylinux2010 (not manylinux1) to deal with vsyscall issue:
|
|
||||||
# https://www.python.org/dev/peps/pep-0571/#compatibility-with-kernels-that-lack-vsyscall
|
|
||||||
FROM quay.io/pypa/manylinux2010_x86_64
|
|
||||||
|
|
||||||
ENV PATH /root/.cargo/bin:/usr/local/bin/:$PATH
|
|
||||||
# Add all supported python versions
|
|
||||||
ENV PATH /opt/python/cp36-cp36m/bin/:/opt/python/cp37-cp37m/bin/:/opt/python/cp38-cp38/bin/:/opt/python/cp39-cp39/bin/:$PATH
|
|
||||||
# Otherwise `cargo new` errors
|
|
||||||
ENV USER root
|
|
||||||
|
|
||||||
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y \
|
|
||||||
&& rustup default stable \
|
|
||||||
&& python3 -m pip install --no-cache-dir cffi \
|
|
||||||
&& mkdir /io
|
|
||||||
|
|
||||||
RUN /opt/python/cp38-cp38/bin/python -m pip install --upgrade pip setuptools maturin
|
|
||||||
|
|
||||||
# rust cmake library needs cmake 3+
|
|
||||||
# manylinux/centos6 has cmake 2.8
|
|
||||||
RUN cd /tmp \
|
|
||||||
&& curl https://cmake.org/files/v3.12/cmake-3.12.3.tar.gz > cmake-3.12.3.tar.gz \
|
|
||||||
&& tar zxvf cmake-3.* > /dev/null \
|
|
||||||
&& cd cmake-3.* \
|
|
||||||
&& ./bootstrap --prefix=/usr/local \
|
|
||||||
&& make -j3 \
|
|
||||||
&& make install \
|
|
||||||
&& rm -rf /tmp/*
|
|
||||||
|
|
||||||
ENTRYPOINT ["/opt/python/cp38-cp38/bin/maturin"]
|
|
||||||
|
|
@ -8,7 +8,6 @@ members = [
|
||||||
"flirt",
|
"flirt",
|
||||||
"pyflirt",
|
"pyflirt",
|
||||||
"pylancelot",
|
"pylancelot",
|
||||||
"jslancelot",
|
|
||||||
"bin",
|
"bin",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
1
jslancelot/.gitignore
vendored
1
jslancelot/.gitignore
vendored
|
|
@ -1 +0,0 @@
|
||||||
target
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
[package]
|
|
||||||
name = "jslancelot"
|
|
||||||
version = "0.8.10"
|
|
||||||
authors = ["Willi Ballenthin <william.ballenthin@mandiant.com>"]
|
|
||||||
edition = "2021"
|
|
||||||
homepage = "https://github.com/williballenthin/lancelot"
|
|
||||||
repository = "https://github.com/williballenthin/lancelot"
|
|
||||||
license = "Apache 2.0"
|
|
||||||
description = "Javascript bindings for Lancelot"
|
|
||||||
readme = "./README.md"
|
|
||||||
|
|
||||||
[lib]
|
|
||||||
crate-type = ["cdylib"]
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
lancelot = { path = "../core", version = "0.8.10" }
|
|
||||||
anyhow = "1"
|
|
||||||
wasm-bindgen = { version = "0.2", features = ["enable-interning", "std"] }
|
|
||||||
js-sys = "0.3"
|
|
||||||
web-sys = { version = "0.3", features = ["console"] }
|
|
||||||
wee_alloc = { version = "0.4", optional = true }
|
|
||||||
console_error_panic_hook = "0.1"
|
|
||||||
|
|
||||||
[features]
|
|
||||||
# the default allocator is about 6k, wee_alloc is 1k
|
|
||||||
default = ["wee_alloc"]
|
|
||||||
|
|
@ -1,202 +0,0 @@
|
||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
http://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
APPENDIX: How to apply the Apache License to your work.
|
|
||||||
|
|
||||||
To apply the Apache License to your work, attach the following
|
|
||||||
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
||||||
replaced with your own identifying information. (Don't include
|
|
||||||
the brackets!) The text should be enclosed in the appropriate
|
|
||||||
comment syntax for the file format. We also recommend that a
|
|
||||||
file or class name and description of purpose be included on the
|
|
||||||
same "printed page" as the copyright notice for easier
|
|
||||||
identification within third-party archives.
|
|
||||||
|
|
||||||
Copyright {yyyy} {name of copyright owner}
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
|
|
||||||
|
|
@ -1,23 +0,0 @@
|
||||||
# Javascript bindings for Lancelot
|
|
||||||
|
|
||||||
## prerequisites
|
|
||||||
|
|
||||||
- [wasm-pack](https://rustwasm.github.io/wasm-pack/)
|
|
||||||
- [zig](https://ziglang.org/download/), v0.8.1 is known to work
|
|
||||||
|
|
||||||
## build
|
|
||||||
|
|
||||||
First, update the path to `zig` in `zcc`:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
/home/user/.bin/zig-linux-x86_64-0.8.1/zig cc -target wasm32-wasi $@
|
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ here
|
|
||||||
```
|
|
||||||
|
|
||||||
Then invoke `wasm-pack`:
|
|
||||||
|
|
||||||
```
|
|
||||||
CC="$(readlink -f zcc)" CXX="$(readlink -f zcc)" wasm-pack build --release --target web
|
|
||||||
```
|
|
||||||
|
|
@ -1,476 +0,0 @@
|
||||||
// clippy complains about `wasm_bindgen(typescript_type = ...)`
|
|
||||||
#![allow(unused_variables)]
|
|
||||||
|
|
||||||
use wasm_bindgen::prelude::*;
|
|
||||||
|
|
||||||
use anyhow::Error;
|
|
||||||
use lancelot::{
|
|
||||||
analysis::{
|
|
||||||
cfg,
|
|
||||||
dis::{self, zydis},
|
|
||||||
},
|
|
||||||
arch::Arch,
|
|
||||||
aspace::AddressSpace,
|
|
||||||
loader::pe::{PEError, PE as lPE},
|
|
||||||
module::ModuleError,
|
|
||||||
pagemap::PageMapError,
|
|
||||||
util::UtilError,
|
|
||||||
};
|
|
||||||
|
|
||||||
#[cfg(feature = "wee_alloc")]
|
|
||||||
#[global_allocator]
|
|
||||||
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
pub fn version() -> String {
|
|
||||||
String::from("v0.8.0")
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen(start)]
|
|
||||||
pub fn main_js() -> Result<(), JsValue> {
|
|
||||||
#[cfg(debug_assertions)]
|
|
||||||
console_error_panic_hook::set_once();
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
// for better function signatures
|
|
||||||
// no functional difference.
|
|
||||||
type JsError = JsValue;
|
|
||||||
|
|
||||||
fn to_value_error(e: anyhow::Error) -> JsError {
|
|
||||||
js_sys::Error::new(&format!("{e}")).into()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn to_js_err(e: Error) -> JsError {
|
|
||||||
match e.downcast_ref::<PEError>() {
|
|
||||||
Some(PEError::FormatNotSupported(_)) => return to_value_error(e),
|
|
||||||
Some(PEError::MalformedPEFile(_)) => return to_value_error(e),
|
|
||||||
None => (),
|
|
||||||
};
|
|
||||||
|
|
||||||
#[allow(clippy::single_match)]
|
|
||||||
match e.downcast_ref::<ModuleError>() {
|
|
||||||
Some(ModuleError::InvalidAddress(_)) => return to_value_error(e),
|
|
||||||
None => (),
|
|
||||||
};
|
|
||||||
|
|
||||||
match e.downcast_ref::<UtilError>() {
|
|
||||||
Some(UtilError::FileAccess) => return to_value_error(e),
|
|
||||||
Some(UtilError::FileFormat) => return to_value_error(e),
|
|
||||||
None => (),
|
|
||||||
};
|
|
||||||
|
|
||||||
#[allow(clippy::single_match)]
|
|
||||||
match e.downcast_ref::<PageMapError>() {
|
|
||||||
Some(PageMapError::NotMapped) => return to_value_error(e),
|
|
||||||
None => (),
|
|
||||||
};
|
|
||||||
|
|
||||||
to_value_error(e)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
pub fn from_bytes(buf: Vec<u8>) -> Result<PE, JsError> {
|
|
||||||
let pe = lPE::from_bytes(&buf).map_err(to_js_err)?;
|
|
||||||
let dec = dis::get_disassembler(&pe.module).map_err(to_js_err)?;
|
|
||||||
let formatter = zydis::Formatter::new(zydis::FormatterStyle::INTEL).expect("valid formatter options");
|
|
||||||
Ok(PE {
|
|
||||||
inner: pe,
|
|
||||||
decoder: dec,
|
|
||||||
formatter,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
#[derive(Clone, Copy)]
|
|
||||||
pub struct AddressRange {
|
|
||||||
pub start: u64,
|
|
||||||
pub end: u64,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
impl AddressRange {
|
|
||||||
#[wasm_bindgen(getter)]
|
|
||||||
pub fn size(&self) -> u64 {
|
|
||||||
self.end - self.start
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
pub struct Section {
|
|
||||||
pub physical_range: AddressRange,
|
|
||||||
pub virtual_range: AddressRange,
|
|
||||||
// String are not clone, so we have to manually implement getters
|
|
||||||
permissions: String,
|
|
||||||
name: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
impl Section {
|
|
||||||
#[wasm_bindgen(getter)]
|
|
||||||
pub fn permissions(&self) -> String {
|
|
||||||
self.permissions.to_string()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen(getter)]
|
|
||||||
pub fn name(&self) -> String {
|
|
||||||
self.name.clone()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<&lancelot::module::Section> for Section {
|
|
||||||
fn from(other: &lancelot::module::Section) -> Section {
|
|
||||||
Section {
|
|
||||||
physical_range: AddressRange {
|
|
||||||
start: other.physical_range.start,
|
|
||||||
end: other.physical_range.end,
|
|
||||||
},
|
|
||||||
virtual_range: AddressRange {
|
|
||||||
start: other.virtual_range.start,
|
|
||||||
end: other.virtual_range.end,
|
|
||||||
},
|
|
||||||
permissions: other.permissions.to_string(),
|
|
||||||
name: other.name.to_string(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
pub struct Instruction {
|
|
||||||
pub address: u64,
|
|
||||||
pub size: u8,
|
|
||||||
bytes: Vec<u8>,
|
|
||||||
string: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
impl Instruction {
|
|
||||||
#[wasm_bindgen(getter)]
|
|
||||||
pub fn bytes(&self) -> Vec<u8> {
|
|
||||||
self.bytes.clone()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen(getter)]
|
|
||||||
pub fn string(&self) -> String {
|
|
||||||
self.string.to_string()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[allow(clippy::upper_case_acronyms)]
|
|
||||||
enum StringEncoding {
|
|
||||||
ASCII,
|
|
||||||
UTF16,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen(js_name = "String")]
|
|
||||||
pub struct EncodedString {
|
|
||||||
encoding: StringEncoding,
|
|
||||||
pub address: u64,
|
|
||||||
pub size: usize,
|
|
||||||
string: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen(js_class = "String")]
|
|
||||||
impl EncodedString {
|
|
||||||
#[wasm_bindgen(getter, typescript_type = "string")]
|
|
||||||
pub fn encoding(&self) -> JsValue {
|
|
||||||
match self.encoding {
|
|
||||||
// we expect these strings may be returned many times,
|
|
||||||
// so we intern them for perf
|
|
||||||
// https://docs.rs/wasm-bindgen/0.2.78/wasm_bindgen/fn.intern.html
|
|
||||||
StringEncoding::ASCII => JsValue::from(wasm_bindgen::intern("ASCII")),
|
|
||||||
StringEncoding::UTF16 => JsValue::from(wasm_bindgen::intern("UTF-16")),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen(getter)]
|
|
||||||
pub fn string(&self) -> String {
|
|
||||||
self.string.to_string()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
#[derive(Clone)]
|
|
||||||
pub struct Flow {
|
|
||||||
inner: lancelot::analysis::cfg::flow::Flow,
|
|
||||||
/* type: String,
|
|
||||||
* target: u64, */
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
impl Flow {
|
|
||||||
#[wasm_bindgen(getter, js_name = "type", typescript_type = "string")]
|
|
||||||
pub fn type_(&self) -> JsValue {
|
|
||||||
match self.inner {
|
|
||||||
// we expect these strings may be returned many times,
|
|
||||||
// so we intern them for perf
|
|
||||||
// https://docs.rs/wasm-bindgen/0.2.78/wasm_bindgen/fn.intern.html
|
|
||||||
lancelot::analysis::cfg::flow::Flow::Call(_) => JsValue::from(wasm_bindgen::intern("call")),
|
|
||||||
lancelot::analysis::cfg::flow::Flow::Fallthrough(_) => JsValue::from(wasm_bindgen::intern("fallthrough")),
|
|
||||||
lancelot::analysis::cfg::flow::Flow::UnconditionalJump(_) => {
|
|
||||||
JsValue::from(wasm_bindgen::intern("unconditional jump"))
|
|
||||||
}
|
|
||||||
lancelot::analysis::cfg::flow::Flow::ConditionalJump(_) => {
|
|
||||||
JsValue::from(wasm_bindgen::intern("conditional jump"))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen(getter)]
|
|
||||||
pub fn target(&self) -> Vec<JsValue> {
|
|
||||||
use lancelot::analysis::{cfg::flow, dis::Target};
|
|
||||||
match self.inner {
|
|
||||||
flow::Flow::Fallthrough(va) => Vec::from([JsValue::from(wasm_bindgen::intern("direct")), va.into()]),
|
|
||||||
flow::Flow::ConditionalJump(va) => Vec::from([JsValue::from(wasm_bindgen::intern("direct")), va.into()]),
|
|
||||||
|
|
||||||
flow::Flow::Call(Target::Direct(va)) => {
|
|
||||||
Vec::from([JsValue::from(wasm_bindgen::intern("direct")), va.into()])
|
|
||||||
}
|
|
||||||
flow::Flow::Call(Target::Indirect(ptr)) => {
|
|
||||||
Vec::from([JsValue::from(wasm_bindgen::intern("indirect")), ptr.into()])
|
|
||||||
}
|
|
||||||
|
|
||||||
flow::Flow::UnconditionalJump(Target::Direct(va)) => {
|
|
||||||
Vec::from([JsValue::from(wasm_bindgen::intern("direct")), va.into()])
|
|
||||||
}
|
|
||||||
flow::Flow::UnconditionalJump(Target::Indirect(ptr)) => {
|
|
||||||
Vec::from([JsValue::from(wasm_bindgen::intern("indirect")), ptr.into()])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<lancelot::analysis::cfg::flow::Flow> for Flow {
|
|
||||||
fn from(other: lancelot::analysis::cfg::flow::Flow) -> Flow {
|
|
||||||
Flow { inner: other }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
#[derive(Clone)]
|
|
||||||
pub struct BasicBlock {
|
|
||||||
pub address: u64,
|
|
||||||
pub size: u64,
|
|
||||||
|
|
||||||
successors: Vec<lancelot::analysis::cfg::flow::Flow>,
|
|
||||||
|
|
||||||
instructions: Vec<u64>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
impl BasicBlock {
|
|
||||||
// Vec<Flow> cannot be serialized by wasm-bindgen
|
|
||||||
// so we have to manually convert to Vec<JsValue>
|
|
||||||
// and then annotate the TS type.
|
|
||||||
//
|
|
||||||
// NB: JS now owns the objects, must explicitly drop.
|
|
||||||
#[wasm_bindgen(getter, typescript_type = "Array<Flow>")]
|
|
||||||
pub fn successors(&self) -> Vec<JsValue> {
|
|
||||||
self.successors
|
|
||||||
.iter()
|
|
||||||
.cloned()
|
|
||||||
.map(Flow::from)
|
|
||||||
.map(JsValue::from)
|
|
||||||
.collect()
|
|
||||||
}
|
|
||||||
|
|
||||||
// Vec<u64> is not Copy so cannot be serialized by wasm-bindgen.
|
|
||||||
#[wasm_bindgen(getter)]
|
|
||||||
pub fn instructions(&self) -> Vec<u64> {
|
|
||||||
self.instructions.clone()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
pub struct CFG {
|
|
||||||
basic_blocks: JsValue,
|
|
||||||
inner: cfg::CFG,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
impl CFG {
|
|
||||||
#[wasm_bindgen(getter, typescript_type = "Map<BigInt, BasicBlock>")]
|
|
||||||
pub fn basic_blocks(&self) -> JsValue {
|
|
||||||
// ugh double copy
|
|
||||||
self.basic_blocks.clone()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_reachable_blocks(&self, va: u64) -> Vec<u64> {
|
|
||||||
self.inner.get_reachable_blocks(va).map(|bb| bb.address).collect()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
pub struct PE {
|
|
||||||
inner: lPE,
|
|
||||||
decoder: zydis::Decoder,
|
|
||||||
formatter: zydis::Formatter,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
impl PE {
|
|
||||||
#[wasm_bindgen(getter, typescript_type = "string")]
|
|
||||||
pub fn arch(&self) -> JsValue {
|
|
||||||
match self.inner.module.arch {
|
|
||||||
// we expect these strings may be returned many times,
|
|
||||||
// so we intern them for perf
|
|
||||||
// https://docs.rs/wasm-bindgen/0.2.78/wasm_bindgen/fn.intern.html
|
|
||||||
Arch::X32 => JsValue::from(wasm_bindgen::intern("x32")),
|
|
||||||
Arch::X64 => JsValue::from(wasm_bindgen::intern("x64")),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen(getter)]
|
|
||||||
pub fn base_address(&self) -> u64 {
|
|
||||||
self.inner.module.address_space.base_address
|
|
||||||
}
|
|
||||||
|
|
||||||
// not cheap, so its a function, not getter
|
|
||||||
#[wasm_bindgen]
|
|
||||||
pub fn functions(&self) -> Result<Vec<u64>, JsError> {
|
|
||||||
Ok(lancelot::analysis::pe::find_functions(&self.inner)
|
|
||||||
.map_err(to_js_err)?
|
|
||||||
.into_iter()
|
|
||||||
.filter_map(|f| match f {
|
|
||||||
lancelot::analysis::pe::Function::Local(va) => Some(va),
|
|
||||||
_ => None,
|
|
||||||
})
|
|
||||||
.collect())
|
|
||||||
}
|
|
||||||
|
|
||||||
// Vec<T> cannot be serialized by wasm-bindgen
|
|
||||||
// so we have to manually convert to Vec<JsValue>
|
|
||||||
// and then annotate the TS type.
|
|
||||||
//
|
|
||||||
// NB: JS now owns the objects, must explicitly drop.
|
|
||||||
#[wasm_bindgen(getter, typescript_type = "Array<Section>")]
|
|
||||||
pub fn sections(&self) -> Vec<JsValue> {
|
|
||||||
self.inner
|
|
||||||
.module
|
|
||||||
.sections
|
|
||||||
.iter()
|
|
||||||
.map(Section::from)
|
|
||||||
.map(JsValue::from)
|
|
||||||
.collect()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
pub fn read_bytes(&self, va: u64, size: usize) -> Result<Vec<u8>, JsError> {
|
|
||||||
self.inner.module.address_space.read_bytes(va, size).map_err(to_js_err)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
pub fn read_insn(&self, va: u64) -> Result<Instruction, JsError> {
|
|
||||||
let mut insn_buf = [0u8; 16];
|
|
||||||
self.inner
|
|
||||||
.module
|
|
||||||
.address_space
|
|
||||||
.read_into(va, &mut insn_buf)
|
|
||||||
.map_err(to_js_err)?;
|
|
||||||
|
|
||||||
if let Ok(Some(insn)) = self.decoder.decode(&insn_buf) {
|
|
||||||
let mut out_buf = [0u8; 200];
|
|
||||||
let mut out_buf = zydis::OutputBuffer::new(&mut out_buf[..]);
|
|
||||||
self.formatter
|
|
||||||
.format_instruction(&insn, &mut out_buf, Some(va), None)
|
|
||||||
.map_err(|e| -> JsError { js_sys::Error::new(&format!("failed to format instruction: {e}")).into() })?;
|
|
||||||
|
|
||||||
Ok(Instruction {
|
|
||||||
address: va,
|
|
||||||
size: insn.length,
|
|
||||||
bytes: insn_buf[..insn.length as usize].to_vec(),
|
|
||||||
string: out_buf
|
|
||||||
.as_str()
|
|
||||||
.expect("disassembly should always be utf-8")
|
|
||||||
.to_string(),
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
Err(js_sys::Error::new("invalid instruction").into())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen(typescript_type = "Array<EncodedString>")]
|
|
||||||
pub fn strings(&self) -> Vec<JsValue> {
|
|
||||||
let mut ret: Vec<EncodedString> = Default::default();
|
|
||||||
|
|
||||||
for (range, s) in lancelot::util::find_ascii_strings(&self.inner.buf) {
|
|
||||||
if let Ok(va) = self.inner.module.virtual_address(range.start as u64) {
|
|
||||||
ret.push(EncodedString {
|
|
||||||
encoding: StringEncoding::ASCII,
|
|
||||||
address: va,
|
|
||||||
size: range.end - range.start,
|
|
||||||
string: s,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for (range, s) in lancelot::util::find_unicode_strings(&self.inner.buf) {
|
|
||||||
if let Ok(va) = self.inner.module.virtual_address(range.start as u64) {
|
|
||||||
ret.push(EncodedString {
|
|
||||||
encoding: StringEncoding::UTF16,
|
|
||||||
address: va,
|
|
||||||
size: range.end - range.start,
|
|
||||||
string: s,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ret.sort_by_key(|string| string.address);
|
|
||||||
|
|
||||||
ret.into_iter().map(JsValue::from).collect()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[wasm_bindgen]
|
|
||||||
pub fn cfg(&self) -> Result<CFG, JsValue> {
|
|
||||||
use lancelot::aspace::AddressSpace;
|
|
||||||
let ret = js_sys::Map::new();
|
|
||||||
|
|
||||||
let mut insns: cfg::InstructionIndex = Default::default();
|
|
||||||
let functions = lancelot::analysis::pe::find_function_starts(&self.inner).map_err(to_js_err)?;
|
|
||||||
for function in functions.iter() {
|
|
||||||
insns.build_index(&self.inner.module, *function).map_err(to_js_err)?;
|
|
||||||
}
|
|
||||||
let mut cfg = cfg::CFG::from_instructions(&self.inner.module, insns).map_err(to_js_err)?;
|
|
||||||
|
|
||||||
lancelot::analysis::pe::noret_imports::cfg_prune_noret_imports(&self.inner, &mut cfg).map_err(to_js_err)?;
|
|
||||||
|
|
||||||
for bb in cfg.basic_blocks.blocks_by_address.values() {
|
|
||||||
// estimate each instruction is 2 bytes, which is probably too conservative,
|
|
||||||
// but enough to hint the allocation here.
|
|
||||||
//
|
|
||||||
// supported by here: https://ieeexplore.ieee.org/document/5645851
|
|
||||||
// > The results show that the average instruction size length is about 2 bytes.
|
|
||||||
let mut instructions = Vec::with_capacity((bb.length / 2) as usize);
|
|
||||||
|
|
||||||
let buf = self
|
|
||||||
.inner
|
|
||||||
.module
|
|
||||||
.address_space
|
|
||||||
.read_bytes(bb.address, bb.length as usize)
|
|
||||||
// programming error: this BB range must exist.
|
|
||||||
.expect("failed to read bb range");
|
|
||||||
for (offset, insn) in lancelot::analysis::dis::linear_disassemble(&self.decoder, &buf) {
|
|
||||||
if let Ok(Some(_)) = insn {
|
|
||||||
let insnva = bb.address + offset as u64;
|
|
||||||
instructions.push(insnva);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ret.set(
|
|
||||||
&JsValue::from(bb.address),
|
|
||||||
&JsValue::from(BasicBlock {
|
|
||||||
address: bb.address,
|
|
||||||
size: bb.length,
|
|
||||||
successors: cfg.flows.flows_by_src[&bb.address_of_last_insn].to_vec(),
|
|
||||||
instructions,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(CFG {
|
|
||||||
inner: cfg,
|
|
||||||
basic_blocks: ret.into(),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
/nix/store/qzabcrp41h1shjaj0j0w8g9pzx0dh68y-devshell-dir/bin/zig cc -target wasm32-wasi $@
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue