This file is indexed.

/var/lib/virtuoso-opensource-6.1/vsp/vsmx/vsmx.vspx is in virtuoso-vsp-startpage 6.1.4+dfsg1-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
<?xml version="1.0"?>
<!--
 -  
 -  $Id: vsmx.vspx,v 1.4.2.2 2011/02/03 10:35:34 source Exp $
 -
 -  This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
 -  project.
 -  
 -  Copyright (C) 1998-2006 OpenLink Software
 -  
 -  This project is free software; you can redistribute it and/or modify it
 -  under the terms of the GNU General Public License as published by the
 -  Free Software Foundation; only version 2 of the License, dated June 1991.
 -  
 -  This program is distributed in the hope that it will be useful, but
 -  WITHOUT ANY WARRANTY; without even the implied warranty of
 -  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 -  General Public License for more details.
 -  
 -  You should have received a copy of the GNU General Public License along
 -  with this program; if not, write to the Free Software Foundation, Inc.,
 -  51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 -  
-->
<v:page xmlns:v="http://www.openlinksw.com/vspx/" name="message_page" on-deadlock-retry="3">
  <v:variable name="endpurl" type="varchar" default="null" param-name="wsdl"/>
  <v:variable name="loc" type="any" default="null" persist="session"/>
  <v:variable name="wsdl" type="any" default="null" persist="session"/>
  <html>
    <head>
      <link rel="stylesheet" href="default.css" type="text/css"/>
    </head>
    <body>
      <v:login name="l1" realm="vsmx" mode="url" user-password-check="vsmx_user_check"/>
      <v:form name="f1" type="simple" method="POST">
	<div class="head1"><h1>Web Services Test Page (VSMX)</h1></div>
	<p style="color:red"><v:error-summary/></p>
	<table>
	  <tr>
	    <td>Enter the WSDL URL</td>
	    <td>
	      <v:text name="wsdluri" value="" xhtml_size="80" error-glyph="*">
		<v:validator test="regexp" regexp="^[a-zA-z:/_0-9?#&~\.-]+$" message="The URL must be supplied">
		</v:validator>
		<v:before-data-bind>
		  if (self.endpurl is not null)
		    {
		      self.wsdl := DB.DBA.XML_URI_GET (self.endpurl, '');
		      self.loc := self.endpurl;
		      self.vc_redirect ('oper.vspx');
		    }
		</v:before-data-bind>
	      </v:text>
	    </td>
	    <td>
	      <v:button action="simple" name="wget" value="Retrieve">
		<v:on-post>
		  if (not self.vc_is_valid)
		    return;
		  declare exit handler for sqlstate '*'
		  {
		    self.vc_is_valid := 0;
		    self.vc_error_message := __SQL_MESSAGE;
		    return;
	          };
		  self.wsdl := DB.DBA.XML_URI_GET (self.wsdluri.ufl_value, '');
		  self.loc := self.wsdluri.ufl_value;
		  self.vc_redirect ('oper.vspx');
	        </v:on-post>
	      </v:button>
	    </td>
	  </tr>
	</table>
      </v:form>
      <div class="foot">
	<span class="foot">Virtuoso Universal Server <?V sys_stat('st_dbms_ver')?> - Copyright&copy; 1998-2011 OpenLink Software.</span>
      </div>
    </body>
  </html>
</v:page>