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.
Encrypt 64-bit integers into other 64-bit integers without collisions.
Useful for hiding database auto-incrementing primary keys without needing to store additional data (like a UUID field).
For example, say you have a web app where routes are stored like /customers/:id
so that you have exposed URL paths like this:
/customers/1
/customers/2
With this gem, you can (at view-time) encrypt the above IDs into different IDs so that you get these paths instead, without storing any additional data:
/customers/4552956331295818987
(the backend decrypts this into /customers/1
)
/customers/3833777695217202560
(the backend decrypts this into /customers/2
)
All while keeping your auto-incrementing, sequential IDs in your database and getting all the benefits of a standard database index.
The encryption is achieved by implementing a format-preserving Generalized Feistel Cipher.
Add to your Gemfile
:
gem "gfc64"
key = SecureRandom.hex(32) # => "ffb5e3600fc27924f97dc055440403b10ce97160261f2a87eee576584cf942e5"
gfc = GFC64.new(key)
gfc.encrypt(1) # => 4552956331295818987
gfc.decrypt(4552956331295818987) # => 1
gfc.encrypt(2) # => 3833777695217202560
gfc.decrypt(3833777695217202560) # => 2
For Rails, there's an ActiveRecord mixin which adds #gfc_id
and
#to_param
methods and a ::find_gfc
class method. By setting #to_param
,
resource path helpers like customer_path(@customer)
automatically use the
GFC encrypted ID.
Example usage:
# app/models/customer.rb
class Customer < ApplicationRecord
include GFC64::ActiveRecord[GFC64.new(ENV['GFC_KEY'])]
# or the argument can be a proc/lambda if you need late binding:
# include GFC64::ActiveRecord[-> { GFC64.new(ENV['GFC_KEY']) }]
end
For retrieval, use ::find_gfc
:
# app/controllers/customers_controller.rb
class CustomersController < ApplicationController
def show
@customer = Customer.find_gfc(params[:id])
end
end
Ruby's dynamic typing means we're just passing bare Integers around, so it's
possible to make a mistake where you write something like Model.find(gfc_id)
and return a completely unexpected record because you forgot to decrypt the ID.
With a type system it would be trivial to prevent these errors. However, the space of 64-bit integers is very large, and encrypted IDs tend to occupy numbers much higher than most web apps will ever reach, so more than likely this sort of error would be discovered quickly as queries fail to find anything.
This code has not been vetted by a security audit or a professional cryptographer so may be wrong and/or insecure.
This was written with AI tool assistance. If any code mirrors existing copyrighted works, it was not my intent, and the copyright remains with the original works. My contributions are MIT licensed.
Black, John, and Phillip Rogaway. "Ciphers with Arbitrary Finite Domains." In Topics in Cryptology — CT-RSA 2002, edited by Bart Preneel, 2271:114–30. Lecture Notes in Computer Science. Berlin, Heidelberg: Springer Berlin Heidelberg, 2002. https://doi.org/10.1007/3-540-45760-7_9.
Hat tip to this Hacker News comment that led me to the idea and the paper.
FAQs
Unknown package
We found that gfc64 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
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.