-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Tightened setuid operation to not allow any user or group changes.
- Added support for --cgi mode. git-svn-id: https://shellinabox.googlecode.com/svn/trunk@22 0da03de8-d603-11dd-86c2-0f8696b7b6f9
- Loading branch information
zodiac
committed
Jan 1, 2009
1 parent
8f2d101
commit 35aa1a7
Showing
19 changed files
with
467 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xml:lang="en" lang="en"> | ||
<head> | ||
<!-- | ||
ShellInABox - Make command line applications available as AJAX web applications | ||
Copyright (C) 2008 Markus Gutschke [email protected] | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License version 2 as | ||
published by the Free Software Foundation. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along | ||
with this program; if not, write to the Free Software Foundation, Inc., | ||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
In addition to these license terms, the author grants the following | ||
additional rights: | ||
If you modify this program, or any covered work, by linking or | ||
combining it with the OpenSSL project's OpenSSL library (or a | ||
modified version of that library), containing parts covered by the | ||
terms of the OpenSSL or SSLeay licenses, the author | ||
grants you additional permission to convey the resulting work. | ||
Corresponding Source for a non-source form of such a combination | ||
shall include the source code for the parts of OpenSSL used as well | ||
as that of the covered work. | ||
You may at your option choose to remove this additional permission from | ||
the work, or from any part of it. | ||
It is possible to build this program in a way that it loads OpenSSL | ||
libraries at run-time. If doing so, the following notices are required | ||
by the OpenSSL and SSLeay licenses: | ||
This product includes software developed by the OpenSSL Project | ||
for use in the OpenSSL Toolkit. (http://www.openssl.org/) | ||
This product includes cryptographic software written by Eric Young | ||
([email protected]) | ||
The most up-to-date version of this program is always available from | ||
http://shellinabox.com | ||
--> | ||
<title>Shell In A Box</title> | ||
<script type="text/javascript"><!-- | ||
(function() { | ||
var url = document.location.protocol + '//' + | ||
document.location.hostname + ':%d/'; | ||
var head = document.getElementsByTagName('head')[0]; | ||
var link = document.createElement('link'); | ||
link.rel = 'shortcut icon'; | ||
link.type = 'image/x-icon'; | ||
link.href = url + 'favicon.ico'; | ||
head.appendChild(link); | ||
document.write('<frameset cols="*">\n' + | ||
'<frame src="' + url + | ||
document.location.search.replace(/^\?/, '') + '#' + | ||
encodeURIComponent(document.location.href) + '">\n' + | ||
'</frameset>'); | ||
})(); | ||
--></script> | ||
</head> | ||
</html> |
Oops, something went wrong.