Browse Source

Standardise password lengths

Bob Mottram 8 years ago
parent
commit
152360ab96

+ 16
- 16
src/freedombone View File

@@ -6188,7 +6188,7 @@ function install_mariadb {
6188 6188
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
6189 6189
 			MARIADB_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
6190 6190
 		else
6191
-			MARIADB_PASSWORD="$(openssl rand -base64 32 | cut -c1-30)"
6191
+			MARIADB_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
6192 6192
 		fi
6193 6193
 		echo "$MARIADB_PASSWORD" > $DATABASE_PASSWORD_FILE
6194 6194
 		chmod 600 $DATABASE_PASSWORD_FILE
@@ -6547,7 +6547,7 @@ function install_gogs {
6547 6547
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
6548 6548
 			GIT_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
6549 6549
 		else
6550
-			GIT_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-30)"
6550
+			GIT_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
6551 6551
 		fi
6552 6552
 	fi
6553 6553
 
@@ -6742,7 +6742,7 @@ function install_gogs {
6742 6742
 	if grep -q "Gogs secret key:" /home/$MY_USERNAME/README; then
6743 6743
 		GOGS_SECRET_KEY=$(cat /home/$MY_USERNAME/README | grep "Gogs secret key:" | awk -F ':' '{print $2}' | sed 's/^ *//')
6744 6744
 	else
6745
-		GOGS_SECRET_KEY="$(openssl rand -base64 20 | cut -c1-18)"
6745
+		GOGS_SECRET_KEY="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
6746 6746
 		echo "Gogs secret key:$GOGS_SECRET_KEY" >> /home/$MY_USERNAME/README
6747 6747
 		chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/README
6748 6748
 	fi
@@ -7134,7 +7134,7 @@ function install_xmpp {
7134 7134
 			if [ -f $IMAGE_PASSWORD_FILE ]; then
7135 7135
 				XMPP_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
7136 7136
 			else
7137
-				XMPP_PASSWORD="$(openssl rand -base64 10 | cut -c1-8)"
7137
+				XMPP_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
7138 7138
 			fi
7139 7139
 		fi
7140 7140
 		prosodyctl register $MY_USERNAME $DEFAULT_DOMAIN_NAME $XMPP_PASSWORD
@@ -7347,7 +7347,7 @@ function install_irc_server {
7347 7347
 
7348 7348
 	# create a login password if needed
7349 7349
 	if [ ! $IRC_PASSWORD ]; then
7350
-		IRC_PASSWORD="$(openssl rand -base64 32 | cut -c1-10)"
7350
+		IRC_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
7351 7351
 	fi
7352 7352
 
7353 7353
 	echo '**************************************************' > /etc/ngircd/motd
@@ -7374,7 +7374,7 @@ function install_irc_server {
7374 7374
 	if [ -f $IMAGE_PASSWORD_FILE ]; then
7375 7375
 		IRC_OPERATOR_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
7376 7376
 	else
7377
-		IRC_OPERATOR_PASSWORD="$(openssl rand -base64 10 | cut -c1-8)"
7377
+		IRC_OPERATOR_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
7378 7378
 	fi
7379 7379
 	sed -i "s|;CloakHostSalt = abcdefghijklmnopqrstuvwxyz|CloakHostSalt = $IRC_SALT|g" /etc/ngircd/ngircd.conf
7380 7380
 	sed -i 's/;ConnectIPv4 = yes/ConnectIPv4 = yes/g' /etc/ngircd/ngircd.conf
@@ -7512,7 +7512,7 @@ function install_wiki {
7512 7512
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
7513 7513
 			WIKI_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
7514 7514
 		else
7515
-			WIKI_ADMIN_PASSWORD="$(openssl rand -base64 18 | cut -c1-16)"
7515
+			WIKI_ADMIN_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
7516 7516
 		fi
7517 7517
 	fi
7518 7518
 	HASHED_WIKI_PASSWORD=$(echo -n "$WIKI_ADMIN_PASSWORD" | md5sum | awk -F ' ' '{print $1}')
@@ -8117,7 +8117,7 @@ function install_blog {
8117 8117
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
8118 8118
 			FULLBLOG_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
8119 8119
 		else
8120
-			FULLBLOG_ADMIN_PASSWORD="$(openssl rand -base64 18 | cut -c1-16)"
8120
+			FULLBLOG_ADMIN_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
8121 8121
 		fi
8122 8122
 		echo '' >> /home/$MY_USERNAME/README
8123 8123
 		echo '' >> /home/$MY_USERNAME/README
@@ -8203,7 +8203,7 @@ function install_rss_reader {
8203 8203
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
8204 8204
 			RSS_READER_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
8205 8205
 		else
8206
-			RSS_READER_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-30)"
8206
+			RSS_READER_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
8207 8207
 		fi
8208 8208
 	fi
8209 8209
 
@@ -8573,7 +8573,7 @@ function install_gnu_social {
8573 8573
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
8574 8574
 			MICROBLOG_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
8575 8575
 		else
8576
-			MICROBLOG_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-30)"
8576
+			MICROBLOG_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
8577 8577
 		fi
8578 8578
 	fi
8579 8579
 
@@ -9278,7 +9278,7 @@ function install_search_engine {
9278 9278
 			if [ -f $IMAGE_PASSWORD_FILE ]; then
9279 9279
 				SEARCH_ENGINE_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
9280 9280
 			else
9281
-				SEARCH_ENGINE_PASSWORD="$(openssl rand -base64 18 | cut -c1-16)"
9281
+				SEARCH_ENGINE_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
9282 9282
 			fi
9283 9283
 		fi
9284 9284
 		echo "$SEARCH_ENGINE_PASSWORD" | htpasswd -i -s -c /etc/nginx/.htpasswd $MY_USERNAME
@@ -9347,7 +9347,7 @@ function install_webmail {
9347 9347
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
9348 9348
 			WEBMAIL_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
9349 9349
 		else
9350
-			WEBMAIL_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-30)"
9350
+			WEBMAIL_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
9351 9351
 		fi
9352 9352
 	fi
9353 9353
 	create_database webmail "$WEBMAIL_ADMIN_PASSWORD"
@@ -9513,7 +9513,7 @@ function install_hubzilla {
9513 9513
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
9514 9514
 			HUBZILLA_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
9515 9515
 		else
9516
-			HUBZILLA_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-30)"
9516
+			HUBZILLA_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
9517 9517
 		fi
9518 9518
 		echo '' >> /home/$MY_USERNAME/README
9519 9519
 		echo '' >> /home/$MY_USERNAME/README
@@ -10645,9 +10645,9 @@ function install_voip {
10645 10645
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
10646 10646
 			VOIP_SERVER_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
10647 10647
 		else
10648
-			VOIP_SERVER_PASSWORD="$(openssl rand -base64 18 | cut -c1-16)"
10648
+			VOIP_SERVER_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
10649 10649
 			if [ ${#VOIP_SERVER_PASSWORD} -lt $MINIMUM_PASSWORD_LENGTH ]; then
10650
-				VOIP_SERVER_PASSWORD="$(openssl rand -base64 18 | cut -c1-16)"
10650
+				VOIP_SERVER_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
10651 10651
 			fi
10652 10652
 		fi
10653 10653
 	fi
@@ -10778,7 +10778,7 @@ function install_sip {
10778 10778
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
10779 10779
 			SIP_SERVER_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
10780 10780
 		else
10781
-			SIP_SERVER_PASSWORD="$(openssl rand -base64 12 | cut -c1-10)"
10781
+			SIP_SERVER_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
10782 10782
 		fi
10783 10783
 	fi
10784 10784
 

+ 11
- 1
src/freedombone-adduser View File

@@ -61,7 +61,17 @@ if [ ! -f $COMPLETION_FILE ]; then
61 61
 	exit 3
62 62
 fi
63 63
 
64
-NEW_USER_PASSWORD="$(openssl rand -base64 10 | cut -c1-8)"
64
+# Minimum number of characters in a password
65
+MINIMUM_PASSWORD_LENGTH=10
66
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
67
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
68
+else
69
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
70
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
71
+	fi
72
+fi
73
+
74
+NEW_USER_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
65 75
 useradd -m -p "$NEW_USER_PASSWORD" -s /bin/bash $MY_USERNAME
66 76
 adduser $MY_USERNAME sasl
67 77
 

+ 12
- 5
src/freedombone-config View File

@@ -44,6 +44,13 @@ FREEDOMBONE_WEBSITE="http://freedombone.uk.to"
44 44
 
45 45
 # Minimum number of characters in a password
46 46
 MINIMUM_PASSWORD_LENGTH=10
47
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
48
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
49
+else
50
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
51
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
52
+	fi
53
+fi
47 54
 
48 55
 # file containing new password
49 56
 IMAGE_PASSWORD_FILE=/root/login.txt
@@ -849,7 +856,7 @@ function interactive_configuration {
849 856
         if [ ! $WIFI_SSID ]; then
850 857
             WIFI_SSID='mesh'
851 858
         fi
852
-        
859
+
853 860
         #data=$(tempfile 2>/dev/null)
854 861
         #trap "rm -f $data" 0 1 2 5 15
855 862
         #dialog --backtitle "Freedombone Configuration" \
@@ -1073,7 +1080,7 @@ function interactive_configuration {
1073 1080
         done
1074 1081
         save_configuration_file
1075 1082
     fi
1076
-    
1083
+
1077 1084
     if [[ $MINIMAL_INSTALL == "no" ]]; then
1078 1085
         if [[ $(grep "INSTALLING_ON_BBB" temp.cfg | awk -F '=' '{print $2}') == "yes" ]]; then
1079 1086
             dialog --title $"Install Target" \
@@ -1351,11 +1358,11 @@ function interactive_configuration {
1351 1358
         NAMESERVER1='85.214.73.63'
1352 1359
         NAMESERVER2='213.73.91.35'
1353 1360
     fi
1354
-    
1361
+
1355 1362
     if [[ $SYSTEM_TYPE != "$VARIANT_MESH" ]]; then
1356 1363
 		${PROJECT_NAME}-wifi --networksinteractive $WIFI_NETWORKS_FILE
1357 1364
     fi
1358
-    
1365
+
1359 1366
     if [[ $SYSTEM_TYPE != "$VARIANT_MESH" && $ONION_ONLY == "no" ]]; then
1360 1367
 
1361 1368
         data=$(tempfile 2>/dev/null)
@@ -1675,7 +1682,7 @@ function interactive_configuration {
1675 1682
             save_configuration_file
1676 1683
         fi
1677 1684
     fi
1678
-    
1685
+
1679 1686
 
1680 1687
     if [[ $SYSTEM_TYPE == "$VARIANT_SOCIAL" || $SYSTEM_TYPE == "$VARIANT_FULL" ]]; then
1681 1688
         if [[ $ONION_ONLY != "no" ]]; then

+ 23
- 16
src/freedombone-controlpanel View File

@@ -41,7 +41,14 @@ UPGRADE_SCRIPT_NAME="${PROJECT_NAME}-upgrade"
41 41
 UPDATE_DATE_SCRIPT=/usr/bin/updatedate
42 42
 
43 43
 # Minimum number of characters in a password
44
-MINIMUM_PASSWORD_LENGTH=8
44
+MINIMUM_PASSWORD_LENGTH=10
45
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
46
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
47
+else
48
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
49
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
50
+	fi
51
+fi
45 52
 
46 53
 # voip
47 54
 VOIP_PORT=64738
@@ -143,7 +150,7 @@ function check_for_updates {
143 150
 }
144 151
 
145 152
 function read_repo_servers {
146
-    if [ -f $CONFIGURATION_FILE ]; then     
153
+    if [ -f $CONFIGURATION_FILE ]; then
147 154
         if grep -q "FRIENDS_MIRRORS_SERVER" $CONFIGURATION_FILE; then
148 155
             FRIENDS_MIRRORS_SERVER=$(grep "FRIENDS_MIRRORS_SERVER" $CONFIGURATION_FILE | awk -F '=' '{print $2}')
149 156
         fi
@@ -523,7 +530,7 @@ function smtp_proxy {
523 530
     if [ ! -f $MUTTRC_FILE ]; then
524 531
         return
525 532
     fi
526
-    
533
+
527 534
     data=$(tempfile 2>/dev/null)
528 535
     trap "rm -f $data" 0 1 2 5 15
529 536
     dialog --backtitle $"Freedombone Control Panel" \
@@ -554,7 +561,7 @@ function smtp_proxy {
554 561
             echo "set smtp_url=\"${SMTP_PROXY_PROTOCOL}://${SMTP_PROXY_USERNAME}:${SMTP_PROXY_PASSWORD}@${SMTP_PROXY_SERVER}:${SMTP_PROXY_PORT}/\"" >> $MUTTRC_FILE
555 562
         else
556 563
             sed -i "s|set smtp_url=.*|set smtp_url=\"${SMTP_PROXY_PROTOCOL}://${SMTP_PROXY_USERNAME}:${SMTP_PROXY_PASSWORD}@${SMTP_PROXY_SERVER}:${SMTP_PROXY_PORT}/\"|g" $MUTTRC_FILE
557
-        fi          
564
+        fi
558 565
         sed -i 's|#set smtp_url|set smtp_url|g' $MUTTRC_FILE
559 566
     else
560 567
         if grep "set smtp_url" $MUTTRC_FILE; then
@@ -678,13 +685,13 @@ function irc_set_global_password {
678 685
                     if [ -f /home/$IRC_USERNAME/.irssi/config ]; then
679 686
                         sed -i "s|$EXISTING_IRC_PASSWORD|$NEW_IRC_PASSWORD|g" /home/$IRC_USERNAME/.irssi/config
680 687
                         chown -R $IRC_USERNAME:$IRC_USERNAME /home/$IRC_USERNAME/.irssi
681
-                    fi                  
688
+                    fi
682 689
                 fi
683 690
             done
684 691
 
685 692
             # restart the daemon for the new password to take effect
686 693
             systemctl restart ngircd
687
-            
694
+
688 695
             dialog --title $"IRC Password" \
689 696
                    --msgbox $"The IRC password was changed" 6 40
690 697
             ;;
@@ -708,7 +715,7 @@ function change_blog_avatar {
708 715
                     dialog --title $"Change blog avatar" \
709 716
                            --msgbox $"Your blog avatar has been changed" 6 40
710 717
                 fi
711
-            fi          
718
+            fi
712 719
             ;;
713 720
     esac
714 721
 }
@@ -1737,7 +1744,7 @@ function hotspot_settings {
1737 1744
     esac
1738 1745
     TEMP_WIFI_HOTSPOT=$(cat $data | sed -n 1p)
1739 1746
     TEMP_WIFI_SSID=$(cat $data | sed -n 2p)
1740
-    TEMP_WIFI_TYPE=$(cat $data | sed -n 3p)    
1747
+    TEMP_WIFI_TYPE=$(cat $data | sed -n 3p)
1741 1748
     TEMP_WIFI_PASSPHRASE=$(cat $data | sed -n 4p)
1742 1749
 
1743 1750
     if [ ${#TEMP_WIFI_SSID} -lt 2 ]; then
@@ -1768,19 +1775,19 @@ function hotspot_settings {
1768 1775
                    --msgbox $"Wifi hotspot passphrase was too short" 6 40
1769 1776
             return
1770 1777
         fi
1771
-        
1778
+
1772 1779
         WIFI_HOTSPOT=$TEMP_WIFI_HOTSPOT
1773 1780
         WIFI_SSID=$TEMP_WIFI_SSID
1774 1781
         WIFI_TYPE=$TEMP_WIFI_TYPE
1775 1782
         WIFI_PASSPHRASE=$TEMP_WIFI_PASSPHRASE
1776
-        
1783
+
1777 1784
         ${PROJECT_NAME}-wifi -i $WIFI_INTERFACE -s $WIFI_SSID -t $WIFI_TYPE -p $WIFI_PASSPHRASE --hotspot $WIFI_HOTSPOT $WIFI_EXTRA
1778 1785
     else
1779 1786
         WIFI_HOTSPOT=$TEMP_WIFI_HOTSPOT
1780 1787
         WIFI_SSID=$TEMP_WIFI_SSID
1781 1788
         WIFI_TYPE=$TEMP_WIFI_TYPE
1782 1789
         WIFI_PASSPHRASE=$TEMP_WIFI_PASSPHRASE
1783
-        
1790
+
1784 1791
         ${PROJECT_NAME}-wifi -i $WIFI_INTERFACE -s $WIFI_SSID -t $WIFI_TYPE --hotspot $WIFI_HOTSPOT $WIFI_EXTRA
1785 1792
     fi
1786 1793
 
@@ -1805,7 +1812,7 @@ function hotspot_settings {
1805 1812
     else
1806 1813
         sed -i "s|WIFI_PASSPHRASE=.*|WIFI_PASSPHRASE=$WIFI_PASSPHRASE|g" $CONFIGURATION_FILE
1807 1814
     fi
1808
-    
1815
+
1809 1816
     dialog --title $"Wifi Settings" \
1810 1817
            --msgbox $"Hotspot settings were changed" 6 40
1811 1818
 }
@@ -1970,7 +1977,7 @@ function wifi_enable {
1970 1977
     ${PROJECT_NAME}-wifi --disable $disable_wifi
1971 1978
 }
1972 1979
 
1973
-function menu_wifi {    
1980
+function menu_wifi {
1974 1981
     while true
1975 1982
     do
1976 1983
         status_str=$'Wifi OFF'
@@ -1979,9 +1986,9 @@ function menu_wifi {
1979 1986
         else
1980 1987
             if grep -q "# wifi enabled" /etc/network/interfaces; then
1981 1988
                 status_str=$'Wifi ON'
1982
-            fi          
1989
+            fi
1983 1990
         fi
1984
-        
1991
+
1985 1992
         data=$(tempfile 2>/dev/null)
1986 1993
         trap "rm -f $data" 0 1 2 5 15
1987 1994
         dialog --backtitle $"Freedombone Control Panel" \
@@ -2013,7 +2020,7 @@ function menu_irc {
2013 2020
                --msgbox $"No IRC server is installed" 6 70
2014 2021
         return
2015 2022
     fi
2016
-    
2023
+
2017 2024
     while true
2018 2025
     do
2019 2026
         data=$(tempfile 2>/dev/null)

+ 8
- 1
src/freedombone-image View File

@@ -77,6 +77,13 @@ DEFAULT_DOMAIN_NAME="${PROJECT_NAME}.local"
77 77
 
78 78
 # Minimum number of characters in a password
79 79
 MINIMUM_PASSWORD_LENGTH=10
80
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
81
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
82
+else
83
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
84
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
85
+	fi
86
+fi
80 87
 
81 88
 # Optional ssh public key to allow
82 89
 SSH_PUBKEY="no"
@@ -287,7 +294,7 @@ fi
287 294
 
288 295
 if [ ! $PASSWORD ]; then
289 296
 	# generate a random password
290
-	PASSWORD="$(openssl rand -base64 10 | cut -c1-8)"
297
+	PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
291 298
 fi
292 299
 
293 300
 # Move any existing images into a build subdirectory

+ 12
- 1
src/freedombone-image-customise View File

@@ -49,6 +49,16 @@ MINIMAL_INSTALL="yes"
49 49
 MY_USERNAME='debian'
50 50
 MY_PASSWORD="${PROJECT_NAME}"
51 51
 
52
+# Minimum number of characters in a password
53
+MINIMUM_PASSWORD_LENGTH=10
54
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
55
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
56
+else
57
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
58
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
59
+	fi
60
+fi
61
+
52 62
 # IP address of the router (gateway)
53 63
 ROUTER_IP_ADDRESS="192.168.1.254"
54 64
 
@@ -283,7 +293,8 @@ EOF
283 293
 	echo "            dialog --backtitle \"${ENTROPY_MESSAGE1}\" --title \"${ENTROPY_MESSAGE2}\" --msgbox \"${ENTROPY_MESSAGE3}\" 8 50" >> $rootdir/root/.bashrc
284 294
 	echo '            exit' >> $rootdir/root/.bashrc
285 295
 	echo '        fi' >> $rootdir/root/.bashrc
286
-	echo '        NEW_USER_PASSWORD="$(openssl rand -base64 12 | cut -c1-10)"' >> $rootdir/root/.bashrc
296
+	echo -n '        NEW_USER_PASSWORD="$(openssl rand -base64 30 | cut -c1-' >> $rootdir/root/.bashrc
297
+	echo "${MINIMUM_PASSWORD_LENGTH})\"" >> $rootdir/root/.bashrc
287 298
 	echo '    fi' >> $rootdir/root/.bashrc
288 299
 	echo '    echo "${NEW_USER_PASSWORD}" > ~/login.txt' >> $rootdir/root/.bashrc
289 300
 

+ 7
- 0
src/freedombone-mirrors View File

@@ -35,6 +35,13 @@ export TEXTDOMAINDIR="/usr/share/locale"
35 35
 
36 36
 # Minimum number of characters in a password
37 37
 MINIMUM_PASSWORD_LENGTH=10
38
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
39
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
40
+else
41
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
42
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
43
+	fi
44
+fi
38 45
 
39 46
 CONFIGURATION_FILE="/root/${PROJECT_NAME}.cfg"
40 47
 

+ 134
- 125
src/freedombone-remote View File

@@ -35,6 +35,8 @@ PROJECT_NAME='freedombone'
35 35
 export TEXTDOMAIN=${PROJECT_NAME}-remote
36 36
 export TEXTDOMAINDIR="/usr/share/locale"
37 37
 
38
+CONFIG_FILE=$HOME/${PROJECT_NAME}.cfg
39
+
38 40
 # User to create the list for
39 41
 MY_USERNAME=$USER
40 42
 
@@ -42,7 +44,14 @@ MY_USERNAME=$USER
42 44
 FRIENDS_SERVERS_LIST=
43 45
 
44 46
 # Minimum password length in characters
45
-MINIMUM_PASSWORD_LENGTH=8
47
+MINIMUM_PASSWORD_LENGTH=10
48
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
49
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
50
+else
51
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
52
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
53
+	fi
54
+fi
46 55
 
47 56
 # How many remote locations were specified
48 57
 entering_remote_backups_ctr=0
@@ -78,61 +87,61 @@ do
78 87
 key="$1"
79 88
 
80 89
 case $key in
81
-    -h|--help)
82
-    show_help
83
-    ;;
84
-    # backup list filename
85
-    # typically /home/$USER/backup.list
86
-    -l|--list)
87
-    shift
88
-    FRIENDS_SERVERS_LIST="$1"
89
-    ;;
90
-    # username within /home
91
-    -u|--user)
92
-    shift
93
-    MY_USERNAME="$1"
94
-    ;;
95
-    # Minimum password length
96
-    -m|--min)
97
-    shift
98
-    MINIMUM_PASSWORD_LENGTH="$1"
99
-    ;;
100
-    # Title shown
101
-    -t|--title)
102
-    shift
103
-    TITLE="$1"
104
-    ;;
105
-    # reciprocal user accounts
106
-    -r|--reciprocal)
107
-    shift
108
-    RECIPROCAL="yes"
109
-    ;;
110
-    *)
111
-    # unknown option
112
-    ;;
90
+	-h|--help)
91
+	show_help
92
+	;;
93
+	# backup list filename
94
+	# typically /home/$USER/backup.list
95
+	-l|--list)
96
+	shift
97
+	FRIENDS_SERVERS_LIST="$1"
98
+	;;
99
+	# username within /home
100
+	-u|--user)
101
+	shift
102
+	MY_USERNAME="$1"
103
+	;;
104
+	# Minimum password length
105
+	-m|--min)
106
+	shift
107
+	MINIMUM_PASSWORD_LENGTH="$1"
108
+	;;
109
+	# Title shown
110
+	-t|--title)
111
+	shift
112
+	TITLE="$1"
113
+	;;
114
+	# reciprocal user accounts
115
+	-r|--reciprocal)
116
+	shift
117
+	RECIPROCAL="yes"
118
+	;;
119
+	*)
120
+	# unknown option
121
+	;;
113 122
 esac
114 123
 shift
115 124
 done
116 125
 
117 126
 function interactive_configuration_remote_backups {
118 127
   if [ ! $MY_USERNAME ]; then
119
-      echo $'Please specify a username with the -u option'
120
-      exit 7356
128
+	  echo $'Please specify a username with the -u option'
129
+	  exit 7356
121 130
   fi
122 131
 
123 132
   if [ ! /home/$MY_USERNAME ]; then
124
-      echo $"The user /home/$MY_USERNAME does not exist on the system"
125
-      exit 3689
133
+	  echo $"The user /home/$MY_USERNAME does not exist on the system"
134
+	  exit 3689
126 135
   fi
127 136
 
128 137
   if [ ! $FRIENDS_SERVERS_LIST ]; then
129
-      FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
138
+	  FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
130 139
   fi
131 140
 
132 141
   # clear any existing list
133 142
   if [ -f $FRIENDS_SERVERS_LIST ]; then
134
-      rm -f $FRIENDS_SERVERS_LIST
135
-      touch $FRIENDS_SERVERS_LIST
143
+	  rm -f $FRIENDS_SERVERS_LIST
144
+	  touch $FRIENDS_SERVERS_LIST
136 145
   fi
137 146
   # number of entries made
138 147
   entering_remote_backups_ctr=1
@@ -146,103 +155,103 @@ function interactive_configuration_remote_backups {
146 155
   remote_ssh_reciprocal_password=""
147 156
   while [[ $entering_remote_backups_done == "no" ]]
148 157
   do
149
-      data=$(tempfile 2>/dev/null)
150
-      trap "rm -f $data" 0 1 2 5 15
151
-      if [[ $RECIPROCAL == "yes" ]]; then
152
-          dialog --backtitle "Freedombone Configuration" \
153
-              --title "$TITLE ${entering_remote_backups_ctr}" \
154
-              --form "\nPlease specify the SSH login details for the remote server\n\nThe reciprocal entries are optional, and can be used if you wish to set up a user account on this system for whoever runs the remote server to also use for backups" 20 50 8 \
155
-              "Username:" 1 1 "$remote_ssh_username" 1 23 16 15 \
156
-              "Domain:" 2 1 "$remote_ssh_domain" 2 23 16 15 \
157
-              "SSH port:" 3 1 "2222" 3 23 5 4 \
158
-              "Password:" 4 1 "$remote_ssh_password" 4 23 20 100 \
159
-              "Reciprocal Username:" 5 1 "$remote_ssh_reciprocal_username" 5 23 20 100 \
160
-              "Reciprocal Password:" 6 1 "$remote_ssh_reciprocal_password" 6 23 20 100 \
161
-              2> $data
162
-      else
163
-          dialog --backtitle "Freedombone Configuration" \
164
-              --title "$TITLE ${entering_remote_backups_ctr}" \
165
-              --form "\nPlease specify the SSH login details for the remote server" 15 50 4 \
166
-              "Username:" 1 1 "$remote_ssh_username" 1 23 16 15 \
167
-              "Domain:" 2 1 "$remote_ssh_domain" 2 23 16 15 \
168
-              "SSH port:" 3 1 "2222" 3 23 5 4 \
169
-              "Password:" 4 1 "$remote_ssh_password" 4 23 20 100 \
170
-              2> $data
171
-      fi
172
-      sel=$?
173
-      case $sel in
174
-          1) entering_remote_backups_done="yes";;
175
-          255) entering_remote_backups_done="yes";;
176
-      esac
177
-      remote_ssh_username=$(cat $data | sed -n 1p)
178
-      remote_ssh_domain=$(cat $data | sed -n 2p)
179
-      remote_ssh_port=$(cat $data | sed -n 3p)
180
-      remote_ssh_password=$(cat $data | sed -n 4p)
181
-      remote_ssh_reciprocal_username=$(cat $data | sed -n 5p)
182
-      remote_ssh_reciprocal_password=$(cat $data | sed -n 6p)
183
-      if [[ $remote_ssh_username != "" && \
184
-          $remote_ssh_domain != "" && \
185
-          $remote_ssh_port != "" && \
186
-          $remote_ssh_password != "" ]]; then
158
+	  data=$(tempfile 2>/dev/null)
159
+	  trap "rm -f $data" 0 1 2 5 15
160
+	  if [[ $RECIPROCAL == "yes" ]]; then
161
+		  dialog --backtitle "Freedombone Configuration" \
162
+			  --title "$TITLE ${entering_remote_backups_ctr}" \
163
+			  --form "\nPlease specify the SSH login details for the remote server\n\nThe reciprocal entries are optional, and can be used if you wish to set up a user account on this system for whoever runs the remote server to also use for backups" 20 50 8 \
164
+			  "Username:" 1 1 "$remote_ssh_username" 1 23 16 15 \
165
+			  "Domain:" 2 1 "$remote_ssh_domain" 2 23 16 15 \
166
+			  "SSH port:" 3 1 "2222" 3 23 5 4 \
167
+			  "Password:" 4 1 "$remote_ssh_password" 4 23 20 100 \
168
+			  "Reciprocal Username:" 5 1 "$remote_ssh_reciprocal_username" 5 23 20 100 \
169
+			  "Reciprocal Password:" 6 1 "$remote_ssh_reciprocal_password" 6 23 20 100 \
170
+			  2> $data
171
+	  else
172
+		  dialog --backtitle "Freedombone Configuration" \
173
+			  --title "$TITLE ${entering_remote_backups_ctr}" \
174
+			  --form "\nPlease specify the SSH login details for the remote server" 15 50 4 \
175
+			  "Username:" 1 1 "$remote_ssh_username" 1 23 16 15 \
176
+			  "Domain:" 2 1 "$remote_ssh_domain" 2 23 16 15 \
177
+			  "SSH port:" 3 1 "2222" 3 23 5 4 \
178
+			  "Password:" 4 1 "$remote_ssh_password" 4 23 20 100 \
179
+			  2> $data
180
+	  fi
181
+	  sel=$?
182
+	  case $sel in
183
+		  1) entering_remote_backups_done="yes";;
184
+		  255) entering_remote_backups_done="yes";;
185
+	  esac
186
+	  remote_ssh_username=$(cat $data | sed -n 1p)
187
+	  remote_ssh_domain=$(cat $data | sed -n 2p)
188
+	  remote_ssh_port=$(cat $data | sed -n 3p)
189
+	  remote_ssh_password=$(cat $data | sed -n 4p)
190
+	  remote_ssh_reciprocal_username=$(cat $data | sed -n 5p)
191
+	  remote_ssh_reciprocal_password=$(cat $data | sed -n 6p)
192
+	  if [[ $remote_ssh_username != "" && \
193
+		  $remote_ssh_domain != "" && \
194
+		  $remote_ssh_port != "" && \
195
+		  $remote_ssh_password != "" ]]; then
187 196
 
188
-          if [ ${#remote_ssh_password} -lt $MINIMUM_PASSWORD_LENGTH ]; then
189
-              dialog --title "Password quality check" --msgbox "The password given was too short. It must be at least $MINIMUM_PASSWORD_LENGTH characters" 6 40
190
-          else
197
+		  if [ ${#remote_ssh_password} -lt $MINIMUM_PASSWORD_LENGTH ]; then
198
+			  dialog --title "Password quality check" --msgbox "The password given was too short. It must be at least $MINIMUM_PASSWORD_LENGTH characters" 6 40
199
+		  else
191 200
 
192
-              if [[ $RECIPROCAL == "yes" ]]; then
193
-                  if [[ $remote_ssh_reciprocal_username != "" && \
194
-                        $remote_ssh_reciprocal_password != "" ]]; then
195
-                      if [ ${#remote_ssh_reciprocal_password} -lt $MINIMUM_PASSWORD_LENGTH ]; then
196
-                          dialog --title "Password quality check" --msgbox "The reciprocal password given was too short. It must be at least $MINIMUM_PASSWORD_LENGTH characters" 6 40
197
-                      else
198
-                          echo ${remote_ssh_reciprocal_username}:${remote_ssh_reciprocal_password}::::/home/${remote_ssh_reciprocal_username}:bash | newusers
199
-                          echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
200
-                          remote_ssh_username=""
201
-                          remote_ssh_domain=""
202
-                          remote_ssh_port=""
203
-                          remote_ssh_password=""
204
-                          remote_ssh_reciprocal_username=""
205
-                          remote_ssh_reciprocal_password=""
206
-                          entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
207
-                      fi
208
-                  else
209
-                      echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
210
-                      remote_ssh_username=""
211
-                      remote_ssh_domain=""
212
-                      remote_ssh_port=""
213
-                      remote_ssh_password=""
214
-                      remote_ssh_reciprocal_username=""
215
-                      remote_ssh_reciprocal_password=""
216
-                      entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
217
-                  fi
218
-              else
219
-                  echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
220
-                  remote_ssh_username=""
221
-                  remote_ssh_domain=""
222
-                  remote_ssh_port=""
223
-                  remote_ssh_password=""
224
-                  entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
225
-              fi
201
+			  if [[ $RECIPROCAL == "yes" ]]; then
202
+				  if [[ $remote_ssh_reciprocal_username != "" && \
203
+						$remote_ssh_reciprocal_password != "" ]]; then
204
+					  if [ ${#remote_ssh_reciprocal_password} -lt $MINIMUM_PASSWORD_LENGTH ]; then
205
+						  dialog --title "Password quality check" --msgbox "The reciprocal password given was too short. It must be at least $MINIMUM_PASSWORD_LENGTH characters" 6 40
206
+					  else
207
+						  echo ${remote_ssh_reciprocal_username}:${remote_ssh_reciprocal_password}::::/home/${remote_ssh_reciprocal_username}:bash | newusers
208
+						  echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
209
+						  remote_ssh_username=""
210
+						  remote_ssh_domain=""
211
+						  remote_ssh_port=""
212
+						  remote_ssh_password=""
213
+						  remote_ssh_reciprocal_username=""
214
+						  remote_ssh_reciprocal_password=""
215
+						  entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
216
+					  fi
217
+				  else
218
+					  echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
219
+					  remote_ssh_username=""
220
+					  remote_ssh_domain=""
221
+					  remote_ssh_port=""
222
+					  remote_ssh_password=""
223
+					  remote_ssh_reciprocal_username=""
224
+					  remote_ssh_reciprocal_password=""
225
+					  entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
226
+				  fi
227
+			  else
228
+				  echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
229
+				  remote_ssh_username=""
230
+				  remote_ssh_domain=""
231
+				  remote_ssh_port=""
232
+				  remote_ssh_password=""
233
+				  entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
234
+			  fi
226 235
 
227
-          fi
228
-      else
229
-          entering_remote_backups_done="yes"
230
-      fi
236
+		  fi
237
+	  else
238
+		  entering_remote_backups_done="yes"
239
+	  fi
231 240
   done
232 241
   if [ -f $FRIENDS_SERVERS_LIST ]; then
233
-      chown $MY_USERNAME:$MY_USERNAME $FRIENDS_SERVERS_LIST
242
+	  chown $MY_USERNAME:$MY_USERNAME $FRIENDS_SERVERS_LIST
234 243
   fi
235 244
 }
236 245
 
237 246
 function show_result {
238 247
   clear
239 248
   if (( $entering_remote_backups_ctr < 2 )); then
240
-      echo $'No remote backup locations were specified'
241
-      exit 0
249
+	  echo $'No remote backup locations were specified'
250
+	  exit 0
242 251
   fi
243 252
   if [ ! -f $FRIENDS_SERVERS_LIST ]; then
244
-      echo $"No remote backups list found: $FRIENDS_SERVERS_LIST"
245
-      exit 7358
253
+	  echo $"No remote backups list found: $FRIENDS_SERVERS_LIST"
254
+	  exit 7358
246 255
   fi
247 256
   echo ''
248 257
   echo $"Remote backups list: $FRIENDS_SERVERS_LIST"
@@ -254,7 +263,7 @@ function show_result {
254 263
 }
255 264
 
256 265
 if [ ! $FRIENDS_SERVERS_LIST ]; then
257
-    FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
266
+	FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
258 267
 fi
259 268
 
260 269
 interactive_configuration_remote_backups