This commit is contained in:
parent
0ccb760a03
commit
74cd49e6ef
27
exec/ofus/ofus1
Normal file
27
exec/ofus/ofus1
Normal file
@ -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
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
27
exec/ofus/ofus2
Normal file
27
exec/ofus/ofus2
Normal file
@ -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
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
27
exec/ofus/ofus3
Normal file
27
exec/ofus/ofus3
Normal file
@ -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
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user