You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The front-end enforces that RiveScript code must "compile" (not raise syntax errors) before being allowed to be shared with others, but the back-end doesn't do this. The back-end only makes sure that the source size is less than 64KB.
With the code refactor in rivescript-python#30 the server should be able to safely utilize the rivescript.parser module to parse the code to check for syntax errors while avoiding all the potential issues of accepting/processing arbitrary RiveScript code.
The text was updated successfully, but these errors were encountered:
The front-end enforces that RiveScript code must "compile" (not raise syntax errors) before being allowed to be shared with others, but the back-end doesn't do this. The back-end only makes sure that the source size is less than 64KB.
With the code refactor in rivescript-python#30 the server should be able to safely utilize the
rivescript.parser
module to parse the code to check for syntax errors while avoiding all the potential issues of accepting/processing arbitrary RiveScript code.The text was updated successfully, but these errors were encountered: