I am working on self-decrypting program that stores encrypted version in string and after decrypting it runs it passing all arguments over to said run program.
Its running said string using
assert(loadstring(S))()and i am wondering if there is a way to pass Arguments from main program to said string
I tried peeking on how does shell.run and os.run works to copy that behavior but i kinda got lost
I know i can do workaround by saving file and running it with
shell.run(saved file,arguments)but i am trying to make it run without making temp files.
If Someone could explain how to make it work i would be very grateful.












