From bcf5313216cf8d44116ff47f8f89d911b719e235 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sat, 27 Aug 2005 21:21:21 +0000 Subject: Ensure that hex keys begin with 0x. Add if necessary. --- usr/local/www/interfaces_wlan.inc | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'usr') diff --git a/usr/local/www/interfaces_wlan.inc b/usr/local/www/interfaces_wlan.inc index cd2cdd8..09ad676 100755 --- a/usr/local/www/interfaces_wlan.inc +++ b/usr/local/www/interfaces_wlan.inc @@ -79,13 +79,23 @@ function wireless_config_post() { /* 64 bit */ if(strlen($_POST['key' . $i]) == 5) continue; - if(strlen($_POST['key' . $i]) == 10) + if(strlen($_POST['key' . $i]) == 10) { + /* hex key */ + if(stristr($_POST['key' . $i], "0x") == false) { + $_POST['key' . $i] = "0x" . $_POST['key' . $i]; + } continue; + } /* 128 bit */ if(strlen($_POST['key' . $i]) == 13) continue; - if(strlen($_POST['key' . $i]) == 26) + if(strlen($_POST['key' . $i]) == 26) { + /* hex key */ + if(stristr($_POST['key' . $i], "0x") == false) { + $_POST['key' . $i] = "0x" . $_POST['key' . $i]; + } continue; + } if(strlen($_POST['key' . $i]) == 28) continue; $input_errors[] = "Invalid wep key size. Sizes should be 40 (64) bit keys or 104 (128) bit."; -- cgit v1.1