Email or username:

Password:

Forgot your password?
5 posts total
zhenech

I just want to run this one Python script!

About cursed scripts and good nightmares.

die-welt.net/2021/11/i-just-wa

Aleksandra Fedorova :fedora:

@zhenech You reminded me about this one

openwall.com/lists/oss-securit

```
$ printf '#!/bin/bash\necho doing something evil!\nexit\n\033[2Aecho
doing something very nice!\n' > backdoor.sh
$ chmod +x backdoor.sh
$ cat backdoor.sh
#!/bin/bash
echo doing something very nice!
$ ./backdoor.sh
doing something evil!
```

Nightmarish it is.

P.S. Also I had to dig through my G+ archives to find it, so thank you for bringing back some awesome memories :)

@zhenech You reminded me about this one

openwall.com/lists/oss-securit

```
$ printf '#!/bin/bash\necho doing something evil!\nexit\n\033[2Aecho
doing something very nice!\n' > backdoor.sh
$ chmod +x backdoor.sh
$ cat backdoor.sh
#!/bin/bash
echo doing something very nice!
$ ./backdoor.sh
doing something evil!
```

Go Up