arantius (owner)

Revisions

gist: 242890 Download_button fork
public
Public Clone URL: git://gist.github.com/242890.git
Embed All Files: show embed
user-script-analyze.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
#!/usr/bin/env python
 
import glob
import operator
import re
import string
import sys
 
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
 
apis = ('GM_addStyle', 'GM_deleteValue', 'GM_getResourceText',
'GM_getResourceUrl', 'GM_getValue', 'GM_listValues', 'GM_log',
'GM_openInTab', 'GM_registerMenuCommand', 'GM_setValue',
'GM_xmlhttpRequest', 'unsafeWindow')
 
api_counts = {'all': 0, 'none': 0, 'eval':0}
for api in apis:
api_counts[api] = 0
 
metas = ('@require', '@resource', '@include', '@exclude', '@unwrap', '@version',
'@name', '@namespace', '@description', '@author', '@homepage', '@date',
'@license', '@match')
meta_counts = {}
for meta in metas:
meta_counts[meta] = 0
 
xhr_hosts = {}
set_hosts = {}
get_hosts = {}
 
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
 
def hostToDomain(host):
match = re.search(r'.*\.(.+......)$', host)
if match:
return match.group(1)
else:
return host
 
def domainsInMetadata(metadata):
if not metadata:
return set([])
 
includes = re.findall(r'@include\s+(.*)', metadata)
if not includes:
# No @include means "@include *" !
return 'infinity'
 
def urlToHost(url):
# Try to parse a reasonable URL.
match = re.search(r'^\w+.*?://([^/]+)', url)
if match:
return match.group(1)
 
# Try to parse a stranger pattern like "*.amazon.*/*".
match = re.search(r'^([^/]+)', url)
if match:
return match.group(1)
 
return url
 
includes = [x.strip() for x in includes]
hosts = set(map(urlToHost, includes))
 
for host in hosts:
if host == '*':
return 'infinity'
 
domains = set(map(hostToDomain, hosts))
return domains
 
def numDomainsInMetadata(metadata):
domains = domainsInMetadata(metadata)
if 'infinity' == domains:
return 'infinity'
return len(domainsInMetadata(metadata))
 
def domainsInXhr(source):
regex = re.compile(r"""GM_xmlhttpRequest[^}]+url[^}]+https?://([^'"/]+)""", re.S)
hosts = re.findall(regex, source)
domains = set(map(hostToDomain, hosts))
return set(domains)
 
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
 
for i, filename in enumerate( sys.stdin.readlines() ):
filename = filename.strip()
api_counts['all'] += 1
any_api = False
 
source = file(filename).read()
source_clean = source
# Strip strings.
source_clean = re.sub("""\\\\['"]""", '', source_clean)
source_clean = re.sub("""(['"]).*?\\1""", '', source_clean)
# Strip comments.
source_clean = re.sub(r'/\*.*?\*/', '', source_clean, re.S)
source_clean = re.sub('//.*\r?\n?', '', source_clean)
 
this_apis = {}
for api in apis:
this_apis[api] = False
if api in source_clean:
this_apis[api] = True
any_api = True
api_counts[api] += 1
 
if re.search(r'\beval\b', source_clean):
api_counts['eval'] +=1
 
if not any_api:
api_counts['none'] += 1
 
metadata = re.search(r'// ==UserScript==(.*?)// ==/UserScript==', source, re.S)
if metadata and metadata.group(1):
metadata = metadata.group(1)
for meta in metas:
if meta in metadata:
meta_counts[meta] += 1
 
numDomains = numDomainsInMetadata(metadata)
if this_apis['GM_setValue']:
set_hosts.setdefault(numDomains, 0)
set_hosts[numDomains] += 1
if this_apis['GM_getValue']:
get_hosts.setdefault(numDomains, 0)
get_hosts[numDomains] += 1
 
if this_apis['GM_xmlhttpRequest']:
numDomains = 0
metaDomains = domainsInMetadata(metadata)
if 'infinity' == metaDomains:
numDomains = 'infinity'
else:
xhrDomains = domainsInXhr(source)
if not xhrDomains:
numDomains = 'unknown'
else:
numDomains = len(set( metaDomains | xhrDomains ))
xhr_hosts.setdefault(numDomains, 0)
xhr_hosts[numDomains] += 1
 
print ""
print "%10s %s" % ('Number', 'API')
for api, count in sorted(api_counts.items(), key=operator.itemgetter(1), reverse=True):
print "%10d %s" % (count, api)
 
print ""
print "%10s %s" % ('Number', 'Imperative')
for meta, count in sorted(meta_counts.items(), key=operator.itemgetter(1), reverse=True):
print "%10d %s" % (count, meta)
 
print ""
 
print "%10s %s" % ('Number', 'Distinct hosts (XHR)')
print "%10d %s" % (api_counts['GM_xmlhttpRequest'], 'all scripts')
for hosts, count in sorted(xhr_hosts.items(), key=operator.itemgetter(1), reverse=True):
print "%10d %s" % (count, hosts)
 
print "%10s %s" % ('Number', 'Distinct hosts (set)')
print "%10d %s" % (api_counts['GM_setValue'], 'all scripts')
for hosts, count in sorted(set_hosts.items(), key=operator.itemgetter(1), reverse=True):
print "%10d %s" % (count, hosts)
 
print "%10s %s" % ('Number', 'Distinct hosts (get)')
print "%10d %s" % (api_counts['GM_setValue'], 'all scripts')
for hosts, count in sorted(get_hosts.items(), key=operator.itemgetter(1), reverse=True):
print "%10d %s" % (count, hosts)