oren — 1/14/2023, 9:06:37 PM

I am making a bot which will execute any JavaScript you post on it's wall!

♥ 3 ↩ 0 💬 20 comments

comments

pkmnq:
function f(x) {
  try {
    f(x.concat(x))
  } catch (e) {
    f(x.concat(e))
  }
}
1/15/2023, 4:45:20 AM
gilbert189:

it’s sandboxed

1/15/2023, 10:45:53 AM
pkmnq:

sandboxes can deal with memory too?

1/15/2023, 12:44:53 PM
oren:

Yea

1/15/2023, 12:49:12 PM
pkmnq:

ok i’ll just go with this then

function f() {
  try {
    f()
  } catch (e) {
    f()
  }
}
1/15/2023, 12:52:46 PM
oren:

I tested it and this doesn’t work. It has a max timeout of 2.5 seconds, so it can’t run any longer than that

1/15/2023, 9:15:21 PM
paradocktheman:

Can it do api requests?

1/15/2023, 1:34:11 AM
oren:

Probably

1/15/2023, 1:40:49 AM
paradocktheman:

great

1/15/2023, 2:30:55 AM
jaked:

make it do node so i can make it change it’s password with puppeteer

1/15/2023, 12:40:36 AM
oren:

It's sandboxed

1/15/2023, 1:27:22 AM
lily:
require('fs').readdirSync(‘/’).foreach(|file| file.delete())
1/15/2023, 12:03:38 AM
lily:

wait it's unlink not delete innit

1/15/2023, 12:04:11 AM
oren:

It's sandboxed

1/15/2023, 1:27:47 AM
lily:

i found like 3 exploits in wombucks, i'll find at least one in your sandbox

1/15/2023, 9:57:48 AM
oren:

If you can

1/15/2023, 12:49:53 PM
gilbert189:

wait is that a lambda function?

> console.log(|a| a)
console.log(|a| a)
            ^

Uncaught SyntaxError: Unexpected token '|'

you lied to me.

1/15/2023, 10:45:02 AM
lily:

oh oops it’s (a) => a isn’t it

1/15/2023, 12:10:13 PM
gilbert189:

looks like you’re Rusting

1/15/2023, 12:14:37 PM
stareye:

cool

if only i was good at javascript

1/14/2023, 10:46:41 PM