
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Here is an example of a generated profile report:
$ silhouette silhouette.out Number of threads: 1 Profiling based on method call. Cost of profiler: 0.45 seconds.
Flat profile (0.76 total seconds): % total self self total time seconds seconds calls ms/call ms/call name 19.74 0.15 0.15 1228 0.12 0.28 Silhouette::DefaultProfiler#process_return 10.53 0.23 0.08 1 80.00 640.00 Silhouette::BinaryEmitter#parse 6.58 0.28 0.05 6151 0.01 0.01 Array#[] 5.26 0.32 0.04 1229 0.03 0.07 Silhouette::DefaultProfiler#process_call 5.26 0.36 0.04 4966 0.01 0.01 IO#read 5.26 0.40 0.04 3842 0.01 0.01 Object#=== 3.95 0.43 0.03 4474 0.01 0.01 Hash#[] ...
...
parent called/called child - - - Parent method name [parent_id] ... [method_id] calls 0.03 0.04 0.08 Method name called child 0.02 0.00 0.02 Child method name [child_id] ...
Explanation of Call Tree Profile:
For each method profiled, there is an entry that describes the method, it's parents and it's direct children. Above we've shown a real world output from the profiler and and explanation of each field.
First are listed all the parent methods that called the current method. The only stat available for the parent is the number of times the parent was called and the number of times the parent called the current method.
Next listed is the current method.
Finally, all the methods directly called by the current method are listed. The calls column is only the number of times the current method called the child, not the total number of calls the child received.
FAQs
Unknown package
We found that silhouette demonstrated a not healthy version release cadence and project activity because the last version was released 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.