Skip to content

Commit

Permalink
Fix typo in Ronin::Vulns::SSTI documentation (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
moozzi authored Nov 23, 2023
1 parent 842bffa commit c00b0c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ronin/vulns/ssti.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class SSTI < WebVuln

# The type of SSTI escape used.
#
# @return [:double_curly_braces, :ndollar_curly_braces, :dollar_double_curly_braces, :pound_curly_braces, :angle_brackets_percent, :custom, nil]
# @return [:double_curly_braces, :dollar_curly_braces, :dollar_double_curly_braces, :pound_curly_braces, :angle_brackets_percent, :custom, nil]
#
# @since 0.2.0
attr_reader :escape_type
Expand All @@ -66,7 +66,7 @@ class SSTI < WebVuln
# @param [String, URI::HTTP] url
# The URL to exploit.
#
# @param [:double_curly_braces, :ndollar_curly_braces, :dollar_double_curly_braces, :pound_curly_braces, :angle_brackets_percent, :custom, Proc, nil] escape
# @param [:double_curly_braces, :dollar_curly_braces, :dollar_double_curly_braces, :pound_curly_braces, :angle_brackets_percent, :custom, Proc, nil] escape
# How to escape a given payload. Either a proc that will accept a String
# and return a String, a Symbol describing the template syntax to use,
# or `nil` to indicate that the payload will not be escaped.
Expand Down

0 comments on commit c00b0c5

Please sign in to comment.