forked from swisskyrepo/Vulny-Code-Static-Analysis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdetection.py
80 lines (63 loc) · 2.68 KB
/
detection.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
import re
from indicators import *
from functions import *
result_count = 0
result_files = 0
# Analyse the source code of a single page
def analysis(path):
global result_files
result_files += 1
with open(path, 'r') as content_file:
# Clean source for a better detection
content = content_file.read()
content = clean_source_and_format(content)
# Detection of RCE/SQLI/LFI/RFI/RFU/XSS
for payload in payloads:
regex = re.compile(payload[0]+regex_indicators)
matches = regex.findall(content)
for vuln_content in matches:
occurence = 0
# Security hole detected, is it protected ?
if check_protection(payload[2], vuln_content) == False:
declaration_text, line_declaration = "",""
# Managing multiple variable in a single line/function
sentence = "".join(vuln_content)
regax = re.compile(regex_indicators[2:-2])
for vulnerable_var in regax.findall(sentence):
false_positive = False
occurence += 1
# No declaration for $_GET, $_POST ...
if check_exception(vulnerable_var[1]) == False:
# Look for the declaration of $something = xxxxx
false_positive, declaration_text, line_declaration = check_declaration(content, vulnerable_var[1], path)
# Set false positive if protection is in the variable's declaration
false_positive = false_positive or check_protection(payload[2], declaration_text)==True
# Display all the vuln
line_vuln = find_line_vuln(path, payload, vuln_content, content)
if not false_positive:
global result_count
result_count = result_count + 1
display(path, payload, vuln_content, line_vuln, declaration_text, line_declaration, vulnerable_var[1], occurence)
# Run thru every files and subdirectories
def recursive(dir,progress):
progress += 1
try:
for name in os.listdir(dir):
print('\tAnalyzing : '+'⬛'*progress+'\r'),
# Targetting only PHP Files
if os.path.isfile(os.path.join(dir, name)):
if ".php" in os.path.join(dir, name):
analysis(dir+"/"+name)
else :
recursive(dir+"/"+name, progress)
except OSError, e:
print "Error 404 - Not Found, maybe you need more right ?"+" "*30
exit(-1)
# Display basic informations about the scan
def scanresults():
global result_count
global result_files
print ("Found {} vulnerabilities in {} files").format(result_count,result_files)