Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Frida Ruby bindings.
First install frida-core from frida releases depending on your system, for instance frida-core-devkit-16.1.11-linux-x86_64 or frida-core-devkit-16.1.11-macos-x86_64.tar.xz:
$ wget https://github.com/frida/frida/releases/download/16.1.11/frida-core-devkit-16.1.11-linux-x86_64.tar.xz
then extract the library and the header file and set FRIDA_CORE_DEVKIT
env variable to the directory:
$ tar -xf frida-core-devkit-16.1.11-linux-x86_64.tar.xz
$ export FRIDA_CORE_DEVKIT=`pwd`
Install the gem and add to the application's Gemfile by executing:
$ bundle add frida
If bundler is not being used to manage dependencies, install the gem by executing:
$ gem install frida
Currently frida-ruby does not work on Windows because frida-core is built with Visual Studio, and Ruby native extensions by default build with MinGW, and these two do not link together, i'm not sure yet if i can get the native gem to build with VS.
the class names, function names and parameters names are same as frida-python for ease of migration (note: the whole gem is based on frida-python), every method has a documentation on how to call it, for instance:
/*
call-seq:
#create_script(source, name:, snapshot:, runtime:) -> Script
*/
static VALUE Session_create_script(int argc, VALUE *argv, VALUE self)
{
}
Session.create_script
takes one positional argument source
and three optional keyword arguments (keyword arguments are always optional) and returns a Script
object.
test/
directory has some example scripts to try.
After checking out the repo, run bin/setup
to install dependencies. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
.
Bug reports and pull requests are welcome on GitHub at https://github.com/hakivvi/frida-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
things to improve:
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the Frida project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
FAQs
Unknown package
We found that frida demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.