9902345291
muahahahah
18 lines
466 B
Ruby
18 lines
466 B
Ruby
# frozen_string_literal: true
|
|
require "spec_helper"
|
|
|
|
feature "url access" do
|
|
before do
|
|
UserFixture.reset_all_users
|
|
@normal_user = UserFixture.normal_user
|
|
end
|
|
|
|
scenario "attack\nTutorial: https://github.com/OWASP/railsgoat/wiki/A7-Missing-Function-Level-Access-Control--(Admin-Controller)", js: true do
|
|
login @normal_user
|
|
|
|
visit "/admin/1/dashboard"
|
|
pending if verifying_fixed?
|
|
expect(current_path).to eq("/admin/1/dashboard")
|
|
end
|
|
end
|