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.
Automatically generate RESTful CRUD services
This project generalizes the webservice auto-generation functionality of Rack::CoreData with a plugin architecture that can adapt to any data model format. It is currently used in the latest release of Helios
.xcdatamodeld
)source :rubygems
gem 'rack-scaffold', require: 'rack/scaffold'
gem 'sequel'
gem 'core_data'
gem 'unicorn'
gem 'pg'
require 'sequel'
require 'core_data'
require 'rack/scaffold'
DB = Sequel.connect(ENV['DATABASE_URL'])
run Rack::Scaffold model: './Example.xcdatamodeld', only: [:create, :read]
By default, Rack::Scaffold
will enable all of the actions described below. Actions can be whitelisted or blacklisted by passing either the only
or except
options, respectively.
create
(POST /resources
): Creates a new resource with the fields in a www-form-urlencoded
or application/json
encoded HTTP request body.read
(GET /resources
& GET /resources/123
): Reads a collection of resources or an individual resource at the specified URI. Supports pagination by passing either page
& per_page
or limit
& offset
parameters.update
(PUT
OR PATCH /resources/123
): Updates the specified resource with the fields in a www-form-urlencoded
or application/json
encoded HTTP request body.delete
(DELETE /resources/123
): Deletes the specified resource.susbscribe
(SUBSCRIBE
or GET /resources
with Accept: text/event-stream
): Subscribes to create, update, and delete actions performed, streaming corresponding JSON Patch diffs. You can read more about the Rocket technique for streaming REST resources at http://rocket.github.io.An example web API using a Core Data model can be found the /example
directory.
Mattt Thompson
Rack::Scaffold is available under the MIT license. See the LICENSE file for more info.
FAQs
Unknown package
We found that rack-scaffold_aim 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.