I m making a irc bot https://github.com/mouuff/MouBot I would like the bot to reply the eval() when the message starts with !math but its creating failures if the user enter something like !math exit() and stuff like that please help me
|
Don't. It looks like you are trying to create a math parser. Then use a math parser, not a full-fledged I-will-run-any-code-parser. If you are using *nix, you could use a program like |
|||
|
|
|
Use the language services to compile it into an AST, walk the AST making sure that it contains only whitelisted node sets, then execute it. |
|||
|
|
|
The issue with For this reason, |
|||
|
|
|
If you want simple math evaluation why you want to bring whole might of Python behind it, which can and will be abused. Use something like PyParsing to write a simple calculator e.g. see SimpleCalc.py or fournfn.py , I think those would be enough to get you started. You can also try SimpleParse and if you DO want to provide eval like powerful and abusable feature, you should start a VM, in which start server processes which will reply to eval queries, and also limit each process using cgroups, when VM goes down start another one or keep a pool of VM and eval processes. |
||||
|
|
|
I am not sure it could help you but look at this -> http://doc.pypy.org/en/latest/sandbox.html or this -> Is there an alternative to rexec for Python sandboxing? |
|||
|
|
evalwithout functions,ast.literal_evalshould do the trick. – rynah Nov 3 '12 at 17:51eval()- everyone's going to abuse it - so don't do it... (or at least have some form of access control - (equiv. to owner level on eggdrop) so only people that can already mess things up can do so). If you just want "!math" - then have a look atpyparsingand one of its calculator examples, which can parse a string and return a result if necessary – Jon Clements Nov 3 '12 at 17:549**9**9, which is roughly 4.2812477317574708e+369693099. Python will happily try to compute all the digits, and there are lots of other DOS attack vectors this way. You can deal with these if you pay close attention when walking the AST, but it's a headache. – DSM Nov 3 '12 at 18:07