Class: Burp::Access

Inherits:
Object
  • Object
show all
Includes:
MayI
Defined in:
app/lib/burp/access.rb

Instance Method Summary collapse

Instance Method Details

#may_create_new_pageObject



23
24
25
# File 'app/lib/burp/access.rb', line 23

def may_create_new_page
  true
end

#may_edit_page(page) ⇒ Object



27
28
29
# File 'app/lib/burp/access.rb', line 27

def may_edit_page(page)
  true
end

#may_remove_page(page) ⇒ Object



35
36
37
# File 'app/lib/burp/access.rb', line 35

def may_remove_page(page)
  true
end

#may_skip_http_authObject

If true no http auth check will be made. (Ment as a way to remove Burp’s default auth method.)



7
8
9
# File 'app/lib/burp/access.rb', line 7

def may_skip_http_auth
  false
end

#may_update_page(page) ⇒ Object



31
32
33
# File 'app/lib/burp/access.rb', line 31

def may_update_page(page)
  true
end

#may_upload_a_fileObject



53
54
55
# File 'app/lib/burp/access.rb', line 53

def may_upload_a_file
  true
end

#may_view_file(path) ⇒ Object



57
58
59
# File 'app/lib/burp/access.rb', line 57

def may_view_file(path)
  true
end

#may_view_file_listObject

CMS files



49
50
51
# File 'app/lib/burp/access.rb', line 49

def may_view_file_list
  true
end

#may_view_page(page) ⇒ Object



43
44
45
# File 'app/lib/burp/access.rb', line 43

def may_view_page(page)
  true
end

#may_view_page_data(page) ⇒ Object



39
40
41
# File 'app/lib/burp/access.rb', line 39

def may_view_page_data(page)
  true
end

#may_view_page_listObject

CMS pages



19
20
21
# File 'app/lib/burp/access.rb', line 19

def may_view_page_list
  true
end

#may_view_static_page(action) ⇒ Object

Static pages in the CMS



12
13
14
# File 'app/lib/burp/access.rb', line 12

def may_view_static_page(action)
  true
end