This file is indexed.

/usr/share/doc/libsoap-lite-perl/examples/COM/soap.asp is in libsoap-lite-perl 1.26-1.

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
<%
  ' -- SOAP::Lite -- soaplite.com -- Copyright (C) 2001 Paul Kulchenko --

  ' SOAP server. requires SOAP.Lite COM object (regsvr32 Lite.dll)
  ' Path to Perl modules can be specified
  ' as '/PATH/TO/MODULES' or as 'drive:/PATH/TO/MODULES'

  Response.ContentType = "text/xml"
  Response.Write(Server.CreateObject("SOAP.Lite") _
    .server("SOAP::Server") _ 
    .dispatch_to("/Your/Path/To/Deployed/Modules") _
    .handle(Request.BinaryRead(Request.TotalBytes)) _
  )
%>