Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
= bio-synreport
A gem that takes gene CDS sequences and GFF as input. From this a database is created and the user can interrogate the database object.The user may then pass a chromosome ID, a position and an alternative nucleotide. The database will return information about whether the suggested substitution creates a synonymous or non-synonymous substitution, and the identity of the changes as a hash with many attributes.
For example,
db = Bio::Util::SynReport.new(:gff => 'some_gff.gff', :fasta => 'some_cds.fa', :verbose => true)
chr, pos, ref,alt = 'Chr2', 15973794, 'C', 'T'
pp db.mutation_info(chr,pos,alt)
Would return something like, { :chr => 'Chr2', :strand => '-', :position => 15973794, :original_codon => 'atg', :original_residue => 'Met', :mutant_codon => 'ttg', :mutant_residue => 'Lys', :position_in_codon => 1, :substitution_type => 'NON_SYN' }
== To Do
The module isn't the fastest thing in the world. Needs much speeding up...
== Contributing to bio-synreport
== Copyright
Copyright (c) 2012 Dan MacLean. See LICENSE.txt for further details.
FAQs
Unknown package
We found that bio-synreport 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.