Program Interaction
level 1
- the challenge checks for a specific parent process : bash
hacker@program-interaction~level1:/$ /bin/bash
hacker@program-interaction~level1:/$ /challenge/embryoio_level1
level 2
- the challenge checks for a specific parent process : bash
- the challenge will check for a hardcoded password over stdin : ohlxdzwk
hacker@program-interaction~level2:/$ /bin/bash
hacker@program-interaction~level2:/$ /challenge/embryoio_level2
level 3
- the challenge checks for a specific parent process : bash
- the challenge will check that argv[NUM] holds value VALUE (listed to the right as NUM:VALUE) : 1:zjknqbgpym
hacker@program-interaction~level3:/$ /bin/bash
hacker@program-interaction~level3:/$ /challenge/embryoio_level3 zjknqbgpym
level 4
- the challenge checks for a specific parent process : bash
- the challenge will check that env[KEY] holds value VALUE (listed to the right as KEY:VALUE) : eoenyp:erxmsdihin
hacker@program-interaction~level4:/$ /bin/bash
hacker@program-interaction~level4:/$ export eoenyp=erxmsdihin
hacker@program-interaction~level4:/$ /challenge/embryoio_level4
level 5
- the challenge checks for a specific parent process : bash
- the challenge will check that input is redirected from a specific file path : /tmp/etgyzz
- the challenge will check for a hardcoded password over stdin : fzgfqswr
hacker@program-interaction~level5:/$ /bin/bash
hacker@program-interaction~level5:/$ echo "fzgfqswr" > /tmp/etgyzz
hacker@program-interaction~level5:/$ /challenge/embryoio_level5 < /tmp/etgyzz
level 6
- the challenge checks for a specific parent process : bash
- the challenge will check that output is redirected to a specific file path : /tmp/mriavb
hacker@program-interaction~level6:/$ /bin/bash
hacker@program-interaction~level6:/$ /challenge/embryoio_level6 > /tmp/mriavb
hacker@program-interaction~level6:/$ cat /tmp/mriavb
level 7
- the challenge checks for a specific parent process : bash
- the challenge will check that the environment is empty (except LC_CTYPE, which is impossible to get rid of in some cases)
hacker@program-interaction~level7:/$ /bin/bash
hacker@program-interaction~level7:/$ env -i /challenge/embryoio_level7