Module: PWN::SAST::PHPInputMechanisms

Defined in:
lib/pwn/sast/php_input_mechanisms.rb

Overview

SAST Module used to identify HTTP input mechanisms that exist in PHP code (e.g. $_REQUEST, $_GET, etc.)

Class Method Summary collapse

Class Method Details

.authorsObject

Author(s)

0day Inc. <[email protected]>



64
65
66
67
68
# File 'lib/pwn/sast/php_input_mechanisms.rb', line 64

public_class_method def self.authors
  "AUTHOR(S):
    0day Inc. <[email protected]>
  "
end

.helpObject

Display Usage for this Module



72
73
74
75
76
77
78
79
80
81
# File 'lib/pwn/sast/php_input_mechanisms.rb', line 72

public_class_method def self.help
  puts "USAGE:
    sast_arr = #{self}.scan(
      :dir_path => 'optional path to dir defaults to .',
      :git_repo_root_uri => 'optional http uri of git repo scanned'
    )

    #{self}.authors
  "
end

.scan(opts = {}) ⇒ Object

Supported Method Parameters

PWN::SAST::PHPInputMechanisms.scan(

dir_path: 'optional path to dir defaults to .'
git_repo_root_uri: 'optional http uri of git repo scanned'

)



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/pwn/sast/php_input_mechanisms.rb', line 17

public_class_method def self.scan(opts = {})
  dir_path = opts[:dir_path]
  git_repo_root_uri = opts[:git_repo_root_uri].to_s.scrub

  test_case_filter = "
    grep -Fn \
    -e '$_COOKIE' \
    -e '$_FILES' \
    -e '$_GET' \
    -e '$_POST' \
    -e '$_REQUEST' \
    -e '$_SERVER' \
    -e '$_SESSION' {PWN_SAST_SRC_TARGET} 2> /dev/null
  "

  include_extensions = %w[.phar .pht .phtm .phtml .php .php2 .php3 .php4 .php5 .php7 .php8 .phps .phpt .pgif .inc]

  PWN::SAST::TestCaseEngine.execute(
    test_case_filter: test_case_filter,
    security_references: security_references,
    dir_path: dir_path,
    include_extensions: include_extensions,
    git_repo_root_uri: git_repo_root_uri
  )
rescue StandardError => e
  raise e
end

.security_referencesObject

Used primarily to map NIST 800-53 Revision 4 Security Controls web.nvd.nist.gov/view/800-53/Rev4/impact?impactName=HIGH to PWN Exploit & Static Code Anti-Pattern Matching Modules to Determine the level of Testing Coverage w/ PWN.



50
51
52
53
54
55
56
57
58
59
60
# File 'lib/pwn/sast/php_input_mechanisms.rb', line 50

public_class_method def self.security_references
  {
    sast_module: self,
    section: 'DEVELOPER SECURITY AND PRIVACY ARCHITECTURE AND DESIGN',
    nist_800_53_uri: 'https://csrc.nist.gov/projects/cprt/catalog#/cprt/framework/version/SP_800_53_5_1_1/home?element=SA-17',
    cwe_id: '661',
    cwe_uri: 'https://cwe.mitre.org/data/definitions/661.html'
  }
rescue StandardError => e
  raise e
end