Tagged Questions
The mass-assignment tag has no wiki summary.
5
votes
2answers
339 views
Rails mass assignment definition and attr_accessible use
Just want to be clear on what mass assignment is and how to code around it. Is mass assignment the assignment of many fields using a hash, ie like..
@user = User.new(params[:user])
And to prevent ...
4
votes
1answer
116 views
Why slicing the params hash poses a security problem on mass-assignment?
The official Rails-way of preventing security risks on mass-assignment is using attr_accessible. However, some programmers feel this is not a job for the model but for the controller. The most simple ...
4
votes
2answers
411 views
rails: mass-assignment security concern with belongs_to relationships
I've been reading up on rails security concerns and the one that makes me the most concerned is mass assignment. My application is making use of attr_accessible, however I'm not sure if I quite know ...
3
votes
2answers
39 views
Is there an opposite function of slice function in Ruby?
In this post, slice function is used to get only necessary elements of params. What would be the function I should use to exclude an element of params (such as user_id)?
...
3
votes
1answer
70 views
Mongoid: How to prevent undefined fields from being created by mass assignment?
Here's the code:
class M
include Mongoid::Document
field :name
end
params = { name: "foo", age: 20 }
M.create(params)
#=> #<M name: "My Name", age: 20>
Notice that age wasn't defined, ...
3
votes
4answers
131 views
How does this stop mass assignment?
I wanted to start using attr_accessible with my models to stop the problem with mass assignment. I understand how it works and have researched as much as I could.
What I don't understand is the ...
3
votes
1answer
1k views
Using accepts_nested_attributes_for + mass assignment protection in Rails
Say you have this structure:
class House < ActiveRecord::Base
has_many :rooms
accepts_nested_attributes_for :rooms
attr_accessible :rooms_attributes
end
class Room < ActiveRecord::Base
...
2
votes
2answers
63 views
Using Rails 3.1 :as => :admin for updating attributes protected by attr_accessible
After reading about attr_accessible in the Rails 3.1 API, I see that there is an as :admin option in there. I would like to know two things.
If the user has an admin flag, how do does my controller ...
2
votes
1answer
133 views
Rails associations can't mass-assign foreign key
Maybe I am doing it wrong but here is my issue:
@restaurant = current_user.restaurants.build(params[:restaurant])
This builds a new restaurant object where the user_id is set to the ...
2
votes
2answers
404 views
Rails 3.1 attr_accessible verification receives an array of roles
I would like to use rails new dynamic attr_accessible feature. However each of my user has many roles (i am using declarative authorization). So i have the following in my model:
class Student < ...
2
votes
1answer
257 views
Bug? Ive got to mass-assign params two times to update has_many association
I've got a Register model which has_many :telephones
Register model accepts_nested_attributes_for :telephones, :reject_if number and code blank?, and has attr_accessible :telephones_attributes (and ...
2
votes
1answer
214 views
has_many through blowing away the association's metadata on mass association
Hey,
Not a Rails noob but this has stumped me.
With has many through associations in Rails. When I mass assign wines to a winebar through a winelist association (or through) table with something like ...
2
votes
3answers
837 views
Ruby on Rails attr_protected
I have the following code in my User model:
attr_protected :email
I'm trying to create a new user object, but I get a mass assignment protected error with the following code.
user = User.new(
...
2
votes
3answers
964 views
Rails - attr_accessible & mass assignment
I have a question about using attr_accessible in Rails.
I sometimes want to set guard_protected_attributes to false in order to bypass mass assignment protection. I'm wondering why the following line ...
1
vote
0answers
36 views
Mass-assignment warning not shown when running rake tasks
I have a seed file with a couple of lines like the following:
action_type = ActionType.find_or_create_by_name(:name => "register")
Now, when I execute rake db:seed, although the command ...
1
vote
1answer
46 views
Do I need to protect against mass-assignment if a model does not have an associated controller?
This probably sounds like a silly question to seasoned Rails developer. Do I need to protect against mass-assignment if a model does not have an associated controller? I'm guessing that I don't need ...
1
vote
1answer
191 views
STI and nested attribute mass assignment in mongoid?
Question on mass assignment through nested attributes using mongoid.
Example:
require 'mongoid'
require 'mongo'
class Company
include Mongoid::Document
has_many :workers,as: :workable, ...
1
vote
1answer
371 views
How to seed a Rails 3.1 app with scoped mass assignment
How does Rails 3.1 (RC4) and scoped mass assignment expect us to work with seeds.rb when loading a list of data.
For example. I normally have something like:
City.create([
{ :name => 'Chicago' ...
1
vote
1answer
83 views
I'm trying to do a search/replace using regex for mass replacing on Notepad++
I need to add a parameter for each code and name, i tried using (.+) or (.*) for each number, but it didnt work. Each space means that is a different number and not every space has the same width. ...
1
vote
2answers
312 views
Can't mass-assign protected attributes
Updating the code formatting for better viewing.
Folks,
I have been looking at this for sometime but I don't understand what could be messing up here. I am using Devise.
class User < ...
1
vote
2answers
702 views
nested attributes in simple_form returns mass assignment error
Models:
class Topic < ActiveRecord::Base
has_many :posts, :dependent => :destroy
validates :name, :presence => true,
:length => { :maximum => 32 }
...
1
vote
4answers
483 views
python assign multiple variables at once
I'm aware I can assign multiple variables to multiple values at once with:
(foo, bar, baz) = 1, 2, 3
And have foo = 1, bar = 2, and so on.
But how could I make the names of the variables more ...
1
vote
1answer
107 views
Is this vulnerable to mass assignment?
I use this to allow users to vote on an Entry:
<% form_tag url_for(entry_votes_path(@entry)), :id => 'voting_form', :remote => true do %>
<%= hidden_field_tag 'vote[user_id]', ...
1
vote
1answer
117 views
Allow mass asignment in certain contexts
I have several Rails models that I'm trying to expose via a REST api. I'm looking for a simple way to allow mass assignment in certain contexts (through the api or admin interface) but to disallow ...
0
votes
2answers
26 views
Replace sensitive elements in a params hash to avoid mass assignment in Rails
I would like to have a more systematic solution for myself to avoid mass assignment.
A typical situation is to remove id or user_id from params (submitted automatically via form) and replace it with ...
0
votes
0answers
53 views
Avoid mass assignment in `has_many :through` in Rails
I have a User model that has_many :topics, :through => :topification. In my Topification model, I have topic_id and user_id.
But I don't want user_id to be mass-assigned (to avoid situation where ...
0
votes
2answers
115 views
Delayed_job (2.1.4) error: Job failed to load: instance of IO needed. Handler nil
I created a simplistic achievements system and wanted to introduce delayed_job (2.1.4) to take care of the processing. However, the handler column in the delayed_jobs table is always nil, which ...
0
votes
1answer
86 views
Deserialize ActiveRecord from JSON
I would like to save query result into redis using JSON serialization and query it back.
Getting query results to json is pretty easy:
JSON.generate(Model.all.collect {|item| item.attributes})
...
0
votes
2answers
55 views
What is the opposite of attr_accessible in Rails?
What is the opposite of attr_accessible in Rails?
Instead of writting every single attribute I want to write just the ones I want to block.
0
votes
1answer
288 views
Rails 3 : Mass-assignment with ActiveAdmin and has_one
I am developing a rails application in which I have two models User and Client.
User is backed by devise and is responsible for authentication and has_one Client which holds the client details for a ...
0
votes
2answers
58 views
Rails “mass assignment” - what exactly constitutes this?
Rails documentation doesn't make this very clear, but it seems that all uses of update_attributes constitutes mass assignment and all attributes need to be whitelisted if using attr_accessible. The ...
0
votes
0answers
216 views
Mass assignment using RestSharp, POST request - MVC3
I've been doing a lot of research trying to find the best way to communicate a mass assignment POST request with my ASP.NET MVC3 app without much success.
Here's the scenario:
Like I mentioned, I ...
0
votes
2answers
83 views
Rails: has_one association and mass assignment
When we have
class Article < ActiveRecord:Base
has_many :attachments
end
we have to write
attr_accessible :attachments_attributes
However in case
class Article < ActiveRecord::Base
...
0
votes
1answer
81 views
Getting Mass Assignment warning but don't know why
I am very confused by the following warning about mass assignment:
WARNING: Can't mass-assign protected attributes: upload_id
Here is my uploads model:
class Upload < ActiveRecord::Base
...
0
votes
1answer
46 views
Mass assignment problem when instantiating a model
I have a User model (Devise) and have created a Profile model with has_one / belongs_to relationship. I'm trying to automatically create a profile when the User is created as follows :
class User ...
0
votes
1answer
54 views
Helper method running afoul of Mass Assignment security
I typically write something like this:
class Person < ActiveRecord::Base
attr_accessible :first_name, :last_name
def name
"#{ first_name } #{ last_name }"
end
def name=(str)
...
0
votes
2answers
187 views
Changes to mass_assignment_authorizer cause errors in Ruby on Rails 3.1
Protecting against mass assignment as in this railscast no longer works in Rails 3.1.
Error given is:
wrong number of arguments (1 for 0)
for
app/models/user.rb:20:in ...
0
votes
1answer
111 views
Rails nested form inserts null attributes in database
I've searched a lot and the common cause of this problem is attr_ascessible :model_attributes not being declared but I can't seem to get it working.
Looking at the Log below :referee, and ...
0
votes
1answer
59 views
mass assignment selecting childs of user, using Devise
I have a very simple issue:
User model:
class User < ActiveRecord::Base
devise :database_authenticatable,
:recoverable, :rememberable, :trackable, :validatable
attr_accessible ...
0
votes
1answer
50 views
Mass Assignment Error on Child Model Update
I'm having problems with updating a child model via nested form. I've read many threads on StackOverflow in hope to finding a solution but no luck there. adding :contact_info_attributes to service's ...
0
votes
1answer
571 views
Scoped mass assignment and accepts_nested_attributes_for in Rails 3.1 not working?
Using Rails 3.1 RC4.
My User model has the following:
has_many :emails, :dependent => :destroy
accepts_nested_attributes_for :emails
My Email model has the following:
belongs_to :user
...
0
votes
1answer
159 views
HashWithIndifferentAccess in related models
I've got a rails app where I'm linking fields across two databases. The database stuff all seems to be fine.
However, I have one form where I am mapping a description from the remote database to a ...
0
votes
1answer
226 views
Is there a way to bypass mass assignment protection?
I have a Rails 3 app which JSON encodes objects in order to store them in a Redis key/value store.
When I retrieve the objects, I'm trying to decode the JSON and instantiate them from the data like ...
0
votes
1answer
264 views
Alternative to mass assignment for HABTM
I have a similar situation to this question, which was already posted. Koraktor has asked
I'm using a simple model for user authorisation with two ActiveRecords User and Role User and Role have a ...
0
votes
1answer
439 views
nested form triggering a 'Can't mass-assign protected attributes warning
I've got a multi layer nested form
User->Tasks->Prerequisites
and in the same form
User->Tasks->Location
The location form works fine, now I'm trying to specify prerequisites to ...
0
votes
1answer
57 views
question on mass assignment and related security risk
I have a question on a solution I think is secure, but would like a second opinion:
In our application we have a user model, which has a 'roles' attribute. Normally, i'd not have this attribute ...
0
votes
1answer
92 views
Rails app does not recognize mass assigned belongs_to association in production
I have an Account model that belongs to an account manager:
class Account < ActiveRecord::Base
belongs_to :account_manager, :class_name => 'User'
validates_presence_of :account_manager
...
0
votes
2answers
353 views
ruby parallel assignment, step question
so, i'm trying to learn ruby by doing some project euler questions, and i've run into a couple things i can't explain, and the comma ?operator? is in the middle of both. i haven't been able to find ...
0
votes
1answer
89 views
Can I change the assignment order for new model instances in rails
I have two attributes, 'a_value' and 'b_id'. (Not their real names.) 'a_value' is stored on the file system, using some information from model 'B', referenced by 'b_id'.
So, my params object looks ...