Where are Stephanie and Guenevere Hudnall today? |
Ava Wright
Published Jan 17, 2026
The mother-daughter duo from Florida, Stephanie and Guenevere Hudnall, were convicted of ex-serviceman William Hudnall's 2011 murder. The 51-year-old was reportedly hacked to death with a pickaxe in his Hawthrone home by his 19-year-old daughter Guenevere, who, along with her "master manipulator" mother, wished to claim the social security payout after his death.
Guenevere cracked when interrogated by authorities and confessed to brutally murdering her unsuspecting father the night before his body was found and that her mother persuaded her to commit the crime. They were both arrested and found guilty of second-degree murder and conspiracy to murder, with each receiving a 40-year term.
Sources state that they are currently both serving their respective sentences - Stephanie at the Lowell Correctional Institution in Ocala, Florida, and Guenevere at the Homestead Correctional Institution in Florida City.
An upcoming episode is scheduled to re-air the Hudnall family's story on Evil Lives Here. The episode, titled Let Her Rot, airs on ID this Thursday, November 24 at 9:00 pm ET.
Stephanie and Guenevere Hudnall murdered William for social security payouts
51-year-old William Hudnall’s June 9, 2011, death inside his 22118 SE 71st Avenue Hawthorne home was plotted and carried out by two women - his 41-year-old estranged wife, Stephanie Hudnall, and their 19-year-old daughter, Guenevere Hudnall. The mother-daughter duo, who resided in Keystone Heights, were taken into custody a day after they found William's dead body.
In fact, Stephanie was the one to call 911 to the scene. Cops who arrived at the crime scene almost immediately realized that it was staged. Moreover, the two women's accounts didn't quite add up. Investigators claimed that Stephanie and Guenevere Hudnall were driven by financial motivation, especially the belief that they would be eligible to receive government benefits if William died.
Stephanie Hudnall was suffering from a financial situation and she anticipated that her husband's death would help them profit from his social security payouts. Stephanie had attempted to murder William on two prior occasions - once by poisoning him and once by setting his bed on fire while he slept. She, however, failed on both occasions. She also failed to call for help when he had a stroke.
The Alachua County Sheriff's Office stated that Stephanie Hudnall drove her daughter to her estranged husband's residence in Hawthorne and that Guenevere Hudnall killed William Hudnall by assaulting him with a pickaxe while he was asleep in bed.
Were Stephanie and Guenevere Hudnall found guilty of murdering William Hudnall?
Stephanie and Guenevere Hudnall were initially charged with first-degree murder. However, the former claimed that she wasn't present in the room when the incident occurred. Her daughter, on the other hand, alleged that she was present at the time of the murder. Guenevere further admitted that Stephanie was the brains behind the scheme and that she was persuaded to carry out the dreadful crime.
After entering a no-contest plea in the case of William Hudnall's murder, Stephanie and Guenevere Hudnall were both convicted of second-degree murder and conspiracy to commit second-degree murder, receiving a 40-year prison term from the court, respectively.
Stephanie is currently serving time at the Lowell Correctional Institution in Ocala, Florida, while Guenevere remains at the Homestead Correctional Institution in Florida City.
Evil Lives Here airs on ID this Thursday, November 24, 2022.
More from Sportskeeda
" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1306323, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1306323); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1306323) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1306323) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaKifpXqkwcutrKudX6y1pr7EZqqtnaCdrq%2B1xGaerp2emsOmvsRmn66cnpa5rXnTqJuasQ%3D%3D