ejabberd-contrib/mod_shcommands
Badlop bdfe82ce79 Update README files to show configuration file as YAML (#86) 2015-03-13 11:55:26 +01:00
..
ebin Add ebin/ dirs with .keepme file to ensure Git tracks them 2013-04-15 12:18:19 +02:00
src Fix results binaries 2015-02-23 12:54:33 +01:00
COPYING Update FSF address (solves #73) 2015-02-25 15:17:31 +01:00
ChangeLog Initial import from ejabberd-modules SVN 2013-04-15 12:03:14 +02:00
Emakefile Initial import from ejabberd-modules SVN 2013-04-15 12:03:14 +02:00
README.txt Update README files to show configuration file as YAML (#86) 2015-03-13 11:55:26 +01:00
build.bat Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
build.sh Initial import from ejabberd-modules SVN 2013-04-15 12:03:14 +02:00

README.txt

	mod_shcommands - Execute shell commands

	Author: Badlop
	http://ejabberd.im/mod_shcommands




                *****************

                  W A R N I N G

                *****************


         USE THIS MODULE AT YOUR OWN RISK

    This module allows ejabberd administrators 
        to remotely execute shell commands 
          which could compromise both 
    the ejabberd server and the whole machine. 


                *****************

                  W A R N I N G

                *****************




	DESCRIPTION
	===========

This module provides the ejabberd server administrator a method to remotely
execute shell commands in the ejabberd server.

It provides a page in the ejabberd Web Admin.
Only the administrators of the whole server can access this page.

Three types of commands are possible:
    * ejabberd_ctl: makes a call to ejabberd_ctl
    * erlang shell: executes an erlang command
    * system shell: executes a command on the system shell
The result of the execution will be shown.

In the system shell, only non-interactive commands will work correctly, 
for example this will work:
  ps -all
Don't use commands that start an interactive mode:
 DON'T TRY THIS: top
 DON'T TRY THIS: vim readme.txt

This module does not check if the commands are dangerous or problematic,
so this module is only recommended for experienced ejabberd and Erlang/OTP
administrators.



	BASIC CONFIGURATION
	===================

Add the module to your ejabberd.yml, on the modules section:
modules:
  mod_shcommands: {}