diff --git a/README.md b/README.md index 9f93c8a..fdb1d12 100755 --- a/README.md +++ b/README.md @@ -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. diff --git a/app/views/messages/index.html.erb b/app/views/messages/index.html.erb index eee6678..a239679 100644 --- a/app/views/messages/index.html.erb +++ b/app/views/messages/index.html.erb @@ -108,7 +108,7 @@ <%= f.select(:receiver_id, options_from_collection_for_select(User.all, :id, :full_name), - {}, + { prompt: "Select a recipient..." }, { class: "form-select form-select-lg" }) %> Select message recipient diff --git a/app/views/pay/index.html.erb b/app/views/pay/index.html.erb index 55ec624..895f1c3 100644 --- a/app/views/pay/index.html.erb +++ b/app/views/pay/index.html.erb @@ -207,7 +207,13 @@ function createDataTable(){ }, "autoWidth": false, "searching": true, - "ordering": true + "ordering": true, + "columns": [ + { "title": "Account Number" }, + { "title": "Routing Number" }, + { "title": "Deposit %" }, + { "title": "Actions", "orderable": false } + ] }); };