This file is indexed.

/usr/share/janus/demos/demos.html is in janus-demos 0.2.6-1build2.

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
 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Janus WebRTC Gateway: Demo Tests</title>
<script type="text/javascript" src="javascript/jquery/jquery.min.js" ></script>
<script type="text/javascript" src="javascript/bootstrap/js/bootstrap.min.js"></script>
<script>
	$(function() {
		$(".navbar-static-top").load("navbar.html", function() {
			$(".navbar-static-top li.dropdown").addClass("active");
			$(".navbar-static-top a[href='demos.html']").parent().addClass("active");
		});
		$(".footer").load("footer.html");
	});
</script>
<link rel="stylesheet" href="javascript/bootswatch/cerulean/bootstrap.min.css" type="text/css"/>
<link rel="stylesheet" href="css/demo.css" type="text/css"/>
</head>
<body>
	
<a href="https://github.com/meetecho/janus-gateway"><img style="position: absolute; top: 0; left: 0; border: 0; z-index: 1001;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png" alt="Fork me on GitHub"></a>

<nav class="navbar navbar-default navbar-static-top">
</nav>

<div class="container">
	<div class="row">
		<div class="col-md-12">
			<div class="page-header">
				<h1>Janus WebRTC Gateway: Demo Tests</h1>
			</div>
			<table class="table table-striped">
				<tr>
					<td colspan=2><h3>Plugin demos</h3></td>
				</tr>
				<tr>
					<td><a href="echotest.html">Echo Test</a></td>
					<td>A simple Echo Test demo, with knobs to control the bitrate.</td>
				</tr>
				<tr>
					<td><a href="streamingtest.html">Streaming</a></td>
					<td>A media Streaming demo, with sample live and on-demand streams.</td>
				</tr>
				<tr>
					<td><a href="videocalltest.html">Video Call</a></td>
					<td>A Video Call demo, a bit like AppRTC but with media passing through the gateway.</td>
				</tr>
				<tr>
					<td><a href="siptest.html">SIP Gateway (Sofia)</a></td>
					<td>A SIP Gateway demo, allowing you to register at a SIP server and start/receive calls.</td>
				</tr>
				<tr>
					<td><a href="videoroomtest.html">Video Room</a></td>
					<td>A videoconferencing demo, allowing you to join a video room with up to six users.</td>
				</tr>
				<tr>
					<td><a href="audiobridgetest.html">Audio Room</a></td>
					<td>An audio mixing/bridge demo, allowing you join an Audio Room room.</td>
				</tr>
				<tr>
					<td><a href="textroomtest.html">Text Room</a></td>
					<td>A text room demo, using DataChannels only.</td>
				</tr>
				<tr>
					<td><a href="voicemailtest.html">Voice Mail</a></td>
					<td>A simple audio recorder demo, returning an .opus file after 10 seconds.</td>
				</tr>
				<tr>
					<td><a href="recordplaytest.html">Recorder/Playout</a></td>
					<td>A demo to record audio/video messages, and subsequently replay them through WebRTC.</td>
				</tr>
				<tr>
					<td><a href="screensharingtest.html">Screen Sharing</a></td>
					<td>A webinar-like screen sharing session, based on the Video Room plugin.</td>
				</tr>
			</table>
			<table class="table table-striped">
				<tr>
					<td colspan=2><h3>Other legacy demos</h3></td>
				</tr>
				<tr>
					<td><a href="sipretest.html">SIP Gateway (libre)</a></td>
					<td>Same as the SIP demo above, but using the libre-based plugin instead of the Sofia-based one.</td>
				</tr>
				<tr>
					<td><a href="nosiptest.html">NoSIP (SDP/RTP)</a></td>
					<td>A legacy interop demo (e.g., with a SIP peer) where signalling is up to the application.</td>
				</tr>
			</table>
			<table class="table table-striped">
				<tr>
					<td colspan=2><h3>Advanced demos</h3></td>
				</tr>
				<tr>
					<td><a href="devicetest.html">Device Selection</a></td>
					<td>A variant of the Echo Test demo, that allows you to choose a specific capture device.</td>
				</tr>
				<tr>
					<td><a href="vp9svctest.html">VP9-SVC Video Room</a></td>
					<td>A variant of the Video Room demo, that allows you to test the VP9 SVC layer selection, if available.</td>
				</tr>
				<tr>
					<td><a href="admin.html">Admin/Monitor</a></td>
					<td>A simple page showcasing how you can use the Janus Admin/Monitor API.</td>
				</tr>
			</table>
		</div>
	</div>

	<hr>
	<div class="footer">
	</div>
</div>
</body>
</html>