Description of problem: wget was invoked to retrieve a JBoss management authenticated URL. wget -O - -T 1 -w 1 --user=admin '--password=password' http://localhost:9990/management --2014-05-20 20:15:38-- http://localhost:9990/management Resolving localhost (localhost)... ::1, 127.0.0.1 Connecting to localhost (localhost)|::1|:9990... failed: Connection refused. Connecting to localhost (localhost)|127.0.0.1|:9990... connected. HTTP request sent, awaiting response... 401 Unauthorized Version-Release number of selected component: wget-1.14-12.fc20 Additional info: reporter: libreport-2.2.2 backtrace_rating: 4 cmdline: wget -O - -T 1 -w 1 --user=admin --password=password! http://localhost:9990/management crash_function: digest_authentication_encode executable: /usr/bin/wget kernel: 3.14.4-200.fc20.x86_64 runlevel: N 5 type: CCpp uid: 1000 Truncated backtrace: Thread no. 1 (5 frames) #0 digest_authentication_encode at http.c:3729 #1 create_authorization_line at http.c:3853 #2 gethttp at http.c:2386 #3 http_loop at http.c:3087 #4 retrieve_url at retr.c:785
Created attachment 897767 [details] File: backtrace
Created attachment 897768 [details] File: cgroup
Created attachment 897769 [details] File: core_backtrace
Created attachment 897770 [details] File: dso_list
Created attachment 897771 [details] File: environ
Created attachment 897772 [details] File: exploitable
Created attachment 897773 [details] File: limits
Created attachment 897774 [details] File: maps
Created attachment 897775 [details] File: open_fds
Created attachment 897776 [details] File: proc_pid_status
Created attachment 897777 [details] File: var_log_messages
The crash was on the line 3729 if (!strcmp(qop,"auth")) due to qop being NULL. In the latest version of wget in all stable Fedora version the line is if (qop != NULL && strcmp(qop,"auth")) which means NULL pointer would be not used in the strcmp() call. Closing as CURRENTRELEASE