/etc/simba/templates/cgi/cmd-modify.tmpl is in websimba 0.8.4-4.3.
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 | <TMPL_INCLUDE NAME="header.tmpl">
<div class="content">
<form method="post" action="simba.cgi?action=update_command">
<fieldset>
<legend> Command details </legend>
<input type="hidden" name="c_id" value="<TMPL_VAR NAME="id">" />
<input type="hidden" name="action" value="update_command" />
<p>
<label for="c_Path">Path:</label>
<input type="text" id="c_Path" name="c_Path" value="<TMPL_VAR NAME="Path">" />
</p>
<p>
<label for="c_Args">Arguments:</label>
<input type="text" name="c_Args" id="c_Args" value="<TMPL_VAR NAME="Args">" size="40" />
</p>
<p>
<input type="submit" name="m_submit" id="m_submit" value="Modify" />
</p>
</fieldset>
</form>
</div>
</body>
</html>
|