Merge pull request #477 from OWASP/fix/ui-improvements-and-cleanup

Fix UI issues and remove broken links
This commit is contained in:
Ken Johnson
2025-12-09 14:55:53 +00:00
committed by GitHub
3 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
# RailsGoat [![Build Status](https://api.travis-ci.org/OWASP/railsgoat.png?branch=master)](https://travis-ci.org/OWASP/railsgoat) [![Code Climate](https://codeclimate.com/github/OWASP/railsgoat.png)](https://codeclimate.com/github/OWASP/railsgoat) # RailsGoat [![Build Status](https://api.travis-ci.org/OWASP/railsgoat.png?branch=master)](https://travis-ci.org/OWASP/railsgoat)
RailsGoat is a vulnerable version of the Ruby on Rails Framework from versions 3 to 6. It includes vulnerabilities from the OWASP Top 10, as well as some "extras" that the initial project contributors felt worthwhile to share. This project is designed to educate both developers, as well as security professionals. RailsGoat is a vulnerable version of the Ruby on Rails Framework from versions 3 to 6. It includes vulnerabilities from the OWASP Top 10, as well as some "extras" that the initial project contributors felt worthwhile to share. This project is designed to educate both developers, as well as security professionals.
+1 -1
View File
@@ -108,7 +108,7 @@
</label> </label>
<%= f.select(:receiver_id, <%= f.select(:receiver_id,
options_from_collection_for_select(User.all, :id, :full_name), options_from_collection_for_select(User.all, :id, :full_name),
{}, { prompt: "Select a recipient..." },
{ class: "form-select form-select-lg" }) %> { class: "form-select form-select-lg" }) %>
<small class="text-muted">Select message recipient</small> <small class="text-muted">Select message recipient</small>
</div> </div>
+7 -1
View File
@@ -207,7 +207,13 @@ function createDataTable(){
}, },
"autoWidth": false, "autoWidth": false,
"searching": true, "searching": true,
"ordering": true "ordering": true,
"columns": [
{ "title": "Account Number" },
{ "title": "Routing Number" },
{ "title": "Deposit %" },
{ "title": "Actions", "orderable": false }
]
}); });
}; };