Skip to content

Instantly share code, notes, and snippets.

View elricstorm's full-sized avatar

Joel Dezenzio elricstorm

View GitHub Profile
@elricstorm
elricstorm / csrf.log
Created January 29, 2014 18:05
Devise 3.22 + Rails 4.0.2 CSRF Error
I, [2014-01-29T11:02:52.927394 #25031] INFO -- : Started POST "/users/sign_in" for 70.192.6.44 at 2014-01-29 11:02:52 -0500
I, [2014-01-29T11:02:52.930701 #25031] INFO -- : Processing by Devise::SessionsController#create as HTML
I, [2014-01-29T11:02:52.930782 #25031] INFO -- : Parameters: {"utf8"=>"✓", "authenticity_token"=>"Wbhxw+7q2gPY/v+jIcOpp56Avg2qPnwi+1qfvfIZ6o4=", "user"=>{"email"=>"testuser@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in to Domain"}
W, [2014-01-29T11:02:52.931789 #25031] WARN -- : Can't verify CSRF token authenticity
I, [2014-01-29T11:02:52.934345 #25031] INFO -- : Completed 422 Unprocessable Entity in 3ms
F, [2014-01-29T11:02:52.936751 #25031] FATAL -- :
ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken):
actionpack (4.0.2) lib/action_controller/metal/request_forgery_protection.rb:163:in `handle_unverified_request'
actionpack (4.0.2) lib/action_controller/metal/request_forgery_protection.rb:170:in `handl
@elricstorm
elricstorm / csrf2.log
Created January 29, 2014 18:19
error 2
I, [2014-01-29T13:08:51.853592 #30794] INFO -- : Processing by Devise::SessionsController#create as HTML
I, [2014-01-29T13:08:51.853726 #30794] INFO -- : Parameters: {"utf8"=>"✓", "authenticity_token"=>"bY9aBQPKBhetp+jNrl0/WHuN+/jkTzCsW9cGd4kkMDs=", "user"=>{"email"=>"example.user@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in to Bust the Books"}
W, [2014-01-29T13:08:51.854607 #30794] WARN -- : Can't verify CSRF token authenticity
I, [2014-01-29T13:08:51.871144 #30794] INFO -- : Completed 401 Unauthorized in 17ms
# Track request logging during development
around_filter :global_request_logging
def global_request_logging
logger.info "=> USERAGENT: #{request.headers['HTTP_USER_AGENT']}"
logger.info "=> REQUEST_FORMAT: #{request.format}"
begin
yield
ensure
logger.info "=> RESPONSE_STATUS: #{response.status}"
class AjaxController < ApplicationController
skip_authorization_check
def ncaa_teams
if params[:search]
like= "%".concat(params[:search].concat("%"))
teams = NcaaTeam.where("name like ?", like)
else
teams = NcaaTeam.all
gem 'jquery-ui-rails'
@elricstorm
elricstorm / example.rb
Last active August 29, 2015 14:03
test
10.times do
puts "This will be printed 10 times"
end
@elricstorm
elricstorm / PowerShell-ISE.bat
Last active August 29, 2015 14:03
PowerShell Help
cd C:\
C:\Windows\System32\runas.exe /env /noprofile /user:corp\username "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -noprofile -command \"start-process powershell_ise -verb RunAs\""
@elricstorm
elricstorm / con-remote-example2.ps1
Last active August 29, 2015 14:04
Connect to remote computer
function con-remote {
# Look for a parameter to be sent for the computer name
param(
# Supply a computer name parameter
$name=$(Write-Host "You must specify the computer name as an argument."),
# Supply a routine to perform like OST
[string]$arg1
)
if ($name -ne $null) {
if (Test-Connection -Computername $name -BufferSize 16 -Count 1 -Quiet) {
class Person
def look_around
puts "looks around carefully."
end
def witness_transformation
puts "Suddenly, #{@name} transforms into a #{$gender} named #{@new_name} right before your eyes!"
end
var = "this is a local variable"
@var = "this is an instance variable"
@@var = "this is a class variable"
$var = "this is a global variable"
VAR = "this is a constant"
def example_one
var = "local"
p "Yes this #{var} variable can be accessed here"
end