forked from ring04h/weakfilescan
-
Notifications
You must be signed in to change notification settings - Fork 5
/
common.py
203 lines (177 loc) · 6.52 KB
/
common.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
# encoding: utf-8
# 全局函数文件
# email: [email protected]
from config import *
import re
import urlparse
import threading
from bs4 import BeautifulSoup
from libs.tldextract import extract, TLDExtract
import libs.requests as requests
from libs.FuzzUrlGenerator import UrlGenerator
from libs.UrlSplitParser import UrlSplitParser
if allow_http_session:
requests = requests.Session()
def get_basedomain(url):
try:
# return urlparse.urlparse(url).netloc
return extract(url).registered_domain
# return extract(url).domain # 更加有关联性的处理方法
except Exception, e:
pass
def get_baseurl(link):
netloc = urlparse.urlparse(link).netloc
if netloc:
split_url = link.split(netloc)
baseurl = '%s%s' % (split_url[0], netloc)
return baseurl
def http_request_get(url, body_content_workflow=False):
result = requests.get(url,
stream=body_content_workflow,
headers=headers,
timeout=timeout,
proxies=proxies,
allow_redirects=allow_redirects)
return result
def http_request_post(url, payload, body_content_workflow=False):
"""
payload = {'key1': 'value1', 'key2': 'value2'}
"""
result = requests.post(url,
data=payload,
headers=headers,
stream=body_content_workflow,
timeout=timeout,
proxies=proxies,
allow_redirects=allow_redirects)
return result
def checksite_possibility(siteurl): # 检查可能性
temp_weburls = [
'/ea63a430b109194d/',
'/ea63a430b109194d1/',
'/ea63a430b109194d.'+default_extion,
'/ea63a430b109194d1.'+default_extion,
]
req_result = {}
for tempurl in temp_weburls:
httpres = http_request_get(siteurl.rstrip('/')+tempurl)
is_redirect = True if len(httpres.history) > 0 else False
req_result[tempurl] = {
'status_code' : httpres.status_code,
'is_redirect' : is_redirect,
'text' : httpres.text,
'history' : httpres.history,
'request' : httpres.url,
'text_size' : len(httpres.text),
}
possibility = 100
refer_to_val = 0
regex = re.compile(page_not_found_reg)
dir1 = temp_weburls[0]
dir2 = temp_weburls[1]
file1 = temp_weburls[2]
file2 = temp_weburls[3]
# 分析状态判断结果
if req_result[dir1]['status_code'] != 404 and req_result[dir2]['status_code'] != 404:
possibility -= 10 # print '返回状态不等于404'
if not regex.findall(req_result[dir1]['text']) and not regex.findall(req_result[file1]['text']):
possibility -= 10 # print '文件和目录错误页面都没有状态标示'
else:
refer_to_val += 50 # print '有特征码可参考'
if req_result[dir1]['text_size'] != req_result[dir2]['text_size']:
possibility -= 10 # print '返回的结果大小不一样'
if dir1 in req_result[dir1]['text'] and file1 in req_result[file1]['text']:
possibility -= 10 # 请求的文件名存在于返回内容当中
if req_result[dir1]['request'] == req_result[dir2]['request']:
possibility -= 10 # 返回的请求url结果一样
if req_result[file1]['status_code'] != 404 and req_result[file2]['status_code'] != 404:
possibility -= 10 # print '返回状态不等于404'
if not regex.findall(req_result[dir1]['text']) and not regex.findall(req_result[file1]['text']):
possibility -= 10 # print '文件和目录错误页面都没有状态标示'
else:
refer_to_val += 50 # print '有特征码可参考'
if req_result[file1]['text_size'] != req_result[file2]['text_size']:
possibility -= 10 # print '返回的结果大小不一样'
if dir1 in req_result[dir1]['text'] and file1 in req_result[file1]['text']:
possibility -= 10 # 请求的文件名存在于返回内容当中
if req_result[file1]['request'] == req_result[file2]['request']:
possibility -= 10 # 返回的请求url结果一样
if refer_to_val < 50 and possibility < 65:
return {'considered':False, 'possibility':possibility, 'refer_to_val':refer_to_val}
else:
return {'considered':True, 'possibility':possibility, 'refer_to_val':refer_to_val}
def get_segments(url):
url_webdirs = []
parser_obj = UrlSplitParser(urlparse.urlparse(url))
for segment in parser_obj.get_paths()['segment']:
url_webdirs.append(parser_obj.baseurl + segment)
return url_webdirs
class LinksParser(object):
"""docstring for link_parser"""
def __init__(self, html_content):
super(LinksParser, self).__init__()
self.html_content = html_content
self.url_links = {
'a':[],
'link':[],
'img':[],
'script':[]
}
self.url = self.html_content.url
self.baseurl = get_baseurl(self.url)
self.soup = BeautifulSoup(self.html_content.text, 'lxml')
def complet_url(self, link):
if link.startswith('/') or link.startswith('.'):
return urlparse.urljoin(self.baseurl, link)
elif link.startswith('http') or link.startswith('https'):
return link
elif link.startswith('#'): # 为了兼容某些变态的URI模式
return urlparse.urljoin(self.url, link)
else:
return False
def getall(self):
self.get_tag_a()
self.get_tag_link()
self.get_tag_img()
self.get_tag_script()
# links 去重
for child in self.url_links.keys():
self.url_links[child] = list(set(self.url_links[child]))
return {self.url : self.url_links}
def get_tag_a(self):
# 处理A链接
for tag in self.soup.find_all('a'):
if tag.attrs.has_key('href'):
link = tag.attrs['href']
# link = urlparse.urldefrag(tag.attrs['href'])[0] # 处理掉#tag标签信息
complet_link = self.complet_url(link.strip())
if complet_link:
self.url_links['a'].append(complet_link)
return self.url_links
def get_tag_link(self):
# 处理link链接资源
for tag in self.soup.find_all('link'):
if tag.attrs.has_key('href'):
link = tag.attrs['href']
complet_link = self.complet_url(link.strip())
if complet_link:
self.url_links['link'].append(complet_link)
return self.url_links
def get_tag_img(self):
# 处理img链接资源
for tag in self.soup.find_all('img'):
if tag.attrs.has_key('src'):
link = tag.attrs['src']
complet_link = self.complet_url(link.strip())
if complet_link:
self.url_links['img'].append(complet_link)
return self.url_links
def get_tag_script(self):
# 处理script链接资源
for tag in self.soup.find_all('script'):
if tag.attrs.has_key('src'):
link = tag.attrs['src']
complet_link = self.complet_url(link.strip())
if complet_link:
self.url_links['script'].append(complet_link)
return self.url_links