Questions tagged [rexec]

rexec runs commands on a remote host

6 questions
6
votes
3 answers

Is there an alternative to rexec for Python sandboxing?

Implementing a 'sandbox' environment in Python used to be done with the rexec module (http://docs.python.org/library/rexec.html). Unfortunately, it has been deprecated/removed due to some security vulnerabilities. Is there an alternative? My goal…
DNS
  • 37,249
  • 18
  • 95
  • 132
1
vote
0 answers

RSH & REXEC from Windows 2008 Server to AIX Unix Box

Is anyone aware of how to call a RSH and REXEC command from a script on a windows 2008R2 server to a AIX Unix box - The commands worked under 2003 Server with the unix addons installed but not 2008
Inkey
  • 2,189
  • 9
  • 39
  • 64
1
vote
1 answer

Make Error: Missing Separator

I am attempting to install rexec into Redhat Enterprise Release 4. Everytime I attempt to use the make command I get the following error. Makefile:15: *** missing separator. Stop. I have looked elsewhere on the net and line 15 of the Makefile has…
Rabidlemming
0
votes
2 answers

REXEC Equivalent in Gradle

I'm working on a build that I'm converting from Ant to Gradle. In it, it has to interact with an IBM iSeries system to package a file and then download it back to the machine that does the build (Windows). The FTP part is fine, but where I'm running…
Allen Fisher
  • 607
  • 2
  • 7
  • 28
0
votes
1 answer

When tee command redirect to subshell, the last two lines missing

I have below solution to record a command and its output executed on a remote machine: rexec:// -t -t /usr/bin/ssh -q -x -o StrictHostKeyChecking=no -2 \ -l ${SSHUserName} -p 22 ${mainHost} \ | tee >(/opt/oss/clilogging/bin/clilogging.sh…
Jeff7566
  • 432
  • 1
  • 5
  • 20
0
votes
1 answer

Remote execution

I have been working on rexec for a few days!! So the task is like this. I have server A and server B. I want to run a shell script on server B which is triggered from server A. The script that I use will be like From server A rexec serverB…
C0de_Hard
  • 72
  • 1
  • 9