Strong parameters overrides the params method in ActionController::Base. You can simply override it and set it back to what you want yourself.
So this:
class MyController < ApplicationController
  def params
    request.parameters
  end
end
Will effectively disable strong parameters for all actions in your controller. You only wanted to disable it for a particular action though so you could do that with:
class MyController < ApplicationController
  before_action :use_unsafe_params, only: [:particular_action]
  def params
    @_dangerous_params || super
  end
  def particular_action
    # My params is unsafe
  end
  def normal_action
    # my params is safe
  end
  private
  def use_unsafe_params
    @_dangerous_params = request.parameters
  end
end