Initial commit - able to produce a working Linux POC

This commit is contained in:
Dimitris Zervas
2023-05-23 17:21:14 +03:00
commit 11ec2f401b
8 changed files with 1561 additions and 0 deletions

49
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,49 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'frida-deepfreeze-rs'",
"cargo": {
"args": [
"build",
"--bin=frida-deepfreeze-rs",
"--package=frida-deepfreeze-rs"
],
"filter": {
"name": "frida-deepfreeze-rs",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}",
"env": {
"RUST_BACKTRACE": "1",
"FRIDA_CODE": "console.log('Hello from Frida!');"
}
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'frida-deepfreeze-rs'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=frida-deepfreeze-rs",
"--package=frida-deepfreeze-rs"
],
"filter": {
"name": "frida-deepfreeze-rs",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}