Sandrbox icon indicating copy to clipboard operation
Sandrbox copied to clipboard

A sanitizing sandbox for executing Ruby code

Results 2 Sandrbox issues
Sort by recently updated
recently updated
newest added

Sandrbox's semicolon splitting includes no logic for semicolons inside strings: ``` require 'sandrbox' p Sandrbox.perform(['"str; with; semis"']).output[0] ``` This results in "SyntaxError: sandrbox:2: unterminated string meets end of file" being...

Simple example: ``` require 'sandrbox' p Sandrbox.perform(['Object.instance_method("cla" + "ss").bind(STDOUT).call']).output[0] ```