diff --git a/exec/menu.sh b/exec/menu.sh index a1dab4c..12cab9b 100755 --- a/exec/menu.sh +++ b/exec/menu.sh @@ -84,7 +84,7 @@ msg -b&&echo -e "ARQS DE ${1//-/}: $SCPT_DIR \n$(msg -b)" unset w for i in `echo "$BASICINST"`;do #[[ $(ls ${SCPT_DIR}|grep -w "$i") ]] && [[ $(ls /etc/scripts/${1//-/}|grep -w "$i") ]] && continue - echo "[${w:=1}] <<====>> [$i]" + echo " [${w:=1}] <<====>> [$i]" if cp ${SCPT_DIR}/$i $DIR/$keY/ ; then echo $i >> $DIR/$keY/$LIST elif cp /etc/scripts/${1//-/}/$i $DIR/$keY/$i ; then @@ -100,7 +100,7 @@ enter } -ofus() { +ofus(){ unset txtofus number=$(expr length $1) for ((i = 1; i < $number + 1; i++)); do diff --git a/exec/ofus/ofus1 b/exec/ofus/ofus1 new file mode 100644 index 0000000..e810138 --- /dev/null +++ b/exec/ofus/ofus1 @@ -0,0 +1,27 @@ +#!/bin/bash +# latam/dnx +ofus() { + unset server + server=$(echo ${txt_ofuscatw} | cut -d':' -f1) + unset txtofus + number=$(expr length $1) + for ((i = 1; i < $number + 1; i++)); do + txt[$i]=$(echo "$1" | cut -b $i) + case ${txt[$i]} in + ".") txt[$i]="C" ;; + "C") txt[$i]="." ;; + "3") txt[$i]="@" ;; + "@" ) txt[$i]="3" ;; + "4") txt[$i]="9" ;; + "9") txt[$i]="4" ;; + "6") txt[$i]="P" ;; + "P") txt[$i]="6" ;; + "L") txt[$i]="K" ;; + "K") txt[$i]="L" ;; + esac + txtofus+="${txt[$i]}" + done + echo "$txtofus" | rev +} + + diff --git a/exec/ofus/ofus2 b/exec/ofus/ofus2 new file mode 100644 index 0000000..ad07256 --- /dev/null +++ b/exec/ofus/ofus2 @@ -0,0 +1,27 @@ +#!/bin/bash +# vpsmx/casita +ofus() { + unset server + server=$(echo ${txt_ofuscatw} | cut -d':' -f1) + unset txtofus + number=$(expr length $1) + for ((i = 1; i < $number + 1; i++)); do + txt[$i]=$(echo "$1" | cut -b $i) + case ${txt[$i]} in + ".") txt[$i]="C" ;; + "C") txt[$i]="." ;; + "3") txt[$i]="@" ;; + "@" ) txt[$i]="3" ;; + "4") txt[$i]="9" ;; + "9") txt[$i]="4" ;; + "6") txt[$i]="P" ;; + "P") txt[$i]="6" ;; + "L") txt[$i]="K" ;; + "K") txt[$i]="L" ;; + esac + txtofus+="${txt[$i]}" + done + echo "$txtofus" | rev +} + + diff --git a/exec/ofus/ofus3 b/exec/ofus/ofus3 new file mode 100644 index 0000000..4273bd8 --- /dev/null +++ b/exec/ofus/ofus3 @@ -0,0 +1,27 @@ +#!/bin/bash +#=> scriptdk1 +ofus() { +unset server +server=$(echo ${txt_ofuscatw}|cut -d':' -f1) +unset txtofus +number=$(expr length $1) +for((i=1; i<$number+1; i++)); do +txt[$i]=$(echo "$1" | cut -b $i) +case ${txt[$i]} in +".")txt[$i]="x";; +"x")txt[$i]=".";; +"5")txt[$i]="s";; +"s")txt[$i]="5";; +"1")txt[$i]="@";; +"@")txt[$i]="1";; +"2")txt[$i]="?";; +"?")txt[$i]="2";; +"4")txt[$i]="0";; +"0")txt[$i]="4";; +"/")txt[$i]="K";; +"K")txt[$i]="/";; +esac +txtofus+="${txt[$i]}" +done +echo "$txtofus" | rev +}