Instale o 'ghex' no centro de software.
Vá para um terminal e execute touch hexfile
.
Abra o ghex e abra o 'hexfile'.
Pressione insert e digite os bytes desejados.
Salvar.
Você pode salvar algo como isso em um arquivo, alterar os varibles (conforme instruído) e torná-lo executável ( chmod +x filename
), depois executá-lo em ./filename
.
#!/bin/bash
#(C) 2011 Erik B. Andersen This script is licensed under the latest non-draft
#version of the AGPL as published by the Free Software Foundation (currently
#at http://www.gnu.org/licenses/) .
# Set the following four variables.
X=
Y=
Z=
T=
#######Don't need to change anything past here.
y=0
t=0
head -c $X /dev/zero >> structurefile
while [ $y -lt $Y ]; do echo -n -e "\x07"; y=$(($y+1)); done >> structurefile
head -c $Z /dev/urandom >> structurefile
while [ $t -lt $T ]; do echo -n -e "\x19"; t=$(($t+1)); done >> structurefile