Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 600 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 600 Bytes

intbot

IRC bot with sandboxed interpreters for Bash (4.2.24(3)) and Perl (5.24.0) with GNU coreutils. This is a fork of evalbot (http://www.vidarholen.net/contents/evalbot/).

Invocation

./evalbot.pl config.sample & disown
# bash:
<irc_user> sh> ls /
<intbot> irc_user: README  bin  dev  etc  lib  proc  root  tmp
<irc_user> # ls /
<intbot> irc_user: README  bin  dev  etc  lib  proc  root  tmp
# perl:
<irc_user> pl> 'print "Hello world"'
<intbot> irc_user: Hello world
<irc_user> # perl -e 'print "Hello world"'
<intbot> irc_user: Hello world