]> CyberLeo.Net >> Repos - CDN/flag.git/blob - flag
Backslash fixup
[CDN/flag.git] / flag
1 #!/bin/sh
2
3 #set -x
4
5 # Places for flags:
6 # $HOME/.flag-cache <- Autogenerated flag (refreshed when hostname changes)
7 # /etc/flag <- Site admin's flag
8 # $HOME/.flag <- Local user's flag
9 # Check them in that order.
10
11 hash_string() {
12   # Hash the passed string into 8 hex characters
13   [ -z "${crc32_bin}" ] && find_crc32_bin
14   if [ -z "${crc32_bin}" ]
15   then
16     echo "No crc32 algo found!" >&2
17     echo "deadbeef"
18   else
19     echo -n "${*}" | eval "${crc32_bin}" | awk '{print $1}'
20   fi
21 }
22
23 find_crc32_bin() {
24   crc32=""
25   for bin in crc32sum crc32sum-linux crc32sum-freebsd
26   do
27     bin="$(which "${bin}" 2>/dev/null)"
28     if [ -x "${bin}" ]
29     then
30       export crc32_bin="${bin}"
31       if [ "$(hash_string "meow" 2>/dev/null)" = "8a106afe" ]
32       then
33         crc32="${bin}"
34         break
35       fi
36     fi
37   done
38   
39   if [ -z "${crc32}" ]
40   then
41     for bin in ruby php perl
42     do
43       bin="$(which "${bin}" 2>/dev/null)"
44       if [ -x "${bin}" ]
45       then
46         case "${bin}" in
47         */ruby) bin="${bin} -e 'require \"zlib\"; printf(\"%08x\n\", Zlib.crc32(STDIN.readlines.join))'" ;;
48         */php)  bin="${bin} -r 'printf(\"%08x\n\", crc32(file_get_contents(\"/dev/stdin\")));'" ;;
49         */perl)        bin="${bin} -e 'use String::CRC32; printf(\"%08x\n\", crc32(*STDIN));'" ;;
50         esac
51         export crc32_bin="${bin}"
52         if [ "$(hash_string "meow" 2>/dev/null)" = "8a106afe" ]
53         then
54           crc32="${bin}"
55           break
56         fi
57       fi
58     done
59   fi
60   if [ -n "${crc32}" ]
61   then
62     export crc32_bin="${crc32}"
63   else
64     echo "Failed to locate usable crc32 algo"
65     unset crc32_bin
66     return 1
67   fi
68 }
69
70 flagcache(){
71   myhost="$(/bin/hostname -f)"
72   cache="${HOME}/.flag-cache"
73   if [ -f "${cache}" ]
74   then
75     flag_hex="$(awk '/^'${myhost}'/{print $2}' "${cache}")"
76   fi
77   if [ -z "${flag_hex}" ]
78   then
79     flag_hex="$(hash_string "${myhost}")"
80     echo -e "${myhost}\t${flag_hex}" >> "${cache}"
81   fi
82 }
83
84 if [ -f "${HOME}/.flag" ]
85 then
86   flag_hex="$(cat "${HOME}/.flag")"
87 fi
88
89 if [ -z "${flag_hex}" -a -f "/etc/flag" ]
90 then
91   flag_hex="$(cat "/etc/flag")"
92 fi
93
94 if [ -z "${flag_hex}" ]
95 then
96   flagcache
97 fi
98
99 # Now we definitely have flag_hex
100 firstchar() {
101   eval $(echo -n "${data}" | sed -e 's/^\(.\)\(.*\)$/char="\1" data="\2"/g')
102 }
103
104 hexdec() {
105   if [ -z "${1}" ]
106   then
107     echo "0"
108     return
109   fi
110   echo $(( 0x${1} + 0 ))
111 }
112
113 flag() {
114   if [ -z "${1}" ]
115   then
116     echo "Usage: flag 'hexcode' [symbol] [shellmode]"
117     echo "Generates an ANSI color flag using the specified hex codes"
118     echo "Uses the optional symbol (or ' ') to draw the flag"
119     echo "shellmode encapsulates all nonprintable codes in \[\] to"
120     echo " give the shell hints on how long the string is, for proper"
121     echo " wrapping of command prompts."
122     return
123   fi
124   data="${1}"
125   sym="${2}"
126   shm="${3}"
127   [ -z "${sym}" ] && sym=" "
128   [ -n "${shm}" ] && open='\\[' shut='\\]'
129   while [ -n "${data}" ]
130   do
131     firstchar
132     ord=$(hexdec "${char}")
133     bright="0"
134     [ "$(( ${ord} & 8 ))" -gt 0 ] && bright="1"
135     fore="3$(( ${ord} & 7 ))"
136     back="4$(( ${ord} & 7 ))"
137     printf "${open}\033[%s;%s;%s;7m${shut}%s" "${bright}" "${fore}" "${back}" "${sym}"
138   done
139   printf "${open}\033[0m${shut}"
140 }
141
142 pebkac() {
143    echo "Usage: $(basename "${0}") [-s #] [-e]"
144    echo "Produces a neat little ansi colour 'flag' based off"
145    echo " a hash of the machine's hostname (or settable via"
146    echo " ~/.flag or /etc/flag) which can uniquely visually"
147    echo " identify a machine, at a glance. Useful for placing"
148    echo " into /etc/issue or your bash prompt, so that you"
149    echo " don't send stupid commands to the wrong machine."
150    echo " "
151    echo " -s #   Specify which character should be used to"
152    echo "         render the flag"
153    echo " -e     Turn on bash encapsulation mode, to provide"
154    echo "         hints to Bash on what is or is not printable"
155    echo "         so it can wrap your commands appropriately"
156    echo "         when used in your prompt"
157    echo " "
158    echo "This machine's flag is as such: ($(flag "${flag_hex}"))"
159    exit 1
160 }
161
162 symbol=" "
163 shellmode=""
164
165 while [ -n "${1}" ]
166 do
167   case "${1}" in
168   -s)   shift; symbol="${1}" ;;
169   -e)   shellmode="yes" ;;
170   *)    pebkac ;;
171   esac
172   shift
173 done
174 flag "${flag_hex}" "${symbol}" "${shellmode}"
175