Larry Nassar was stabbed after making a lewd comment watching Wimbledon, source says
/ AP
A prisoner suspected of stabbing Larry Nassar at a federal penitentiary in Florida said the disgraced former sports doctor provoked the attack by making a lewd comment while they were watching a Wimbledon tennis match on TV, a person familiar with the matter told The Associated Press.
The inmate, identified as Shane McMillan, was previously convicted of assaulting a correctional officer at a federal penitentiary in Louisiana in 2006 and attempting to stab another inmate to death at the federal Supermax prison in Florence, Colorado, in 2011, court records show.
McMillan attacked Nassar in his cell Sunday with a makeshift weapon, stabbing him multiple times in the neck, chest and back before four other inmates rushed in and pulled him off of Nassar, according to the person familiar with the matter.
Correctional officers assigned to the unit at the United States Penitentiary Coleman responded to Nassar's cell and performed what officials said were life-saving measures. He was taken to a hospital, where he remained in stable condition Wednesday with injuries including a collapsed lung.
Larry Nassar sits in court listening to statements before being sentenced by Judge Janice Cunningham for three counts of criminal sexual assault in Eaton County Circuit Court on February 5, 2018 in Charlotte, Michigan.
Scott Olson / Getty Images
Cell doors on most federal prison units are typically open during the day, letting prisoners move around freely within the facility. Because Nassar was attacked in his cell, the incident was not captured on surveillance cameras, which only point at common areas and corridors.
McMillan, 49, told prison workers that he attacked Nassar after the sexually abusive ex-U.S. gymnastics team doctor made a comment about wanting to see girls playing in the Wimbledon women's match, the person said.
The person was not authorized to publicly discuss details of the attack or the ongoing investigation and did so on the condition of anonymity.
Messages seeking comment were left with lawyers who've represented McMillan in his past cases.
Sunday's attack was the second time Nassar has been assaulted in federal custody. He is serving decades in prison for sexually abusing athletes, including college and Olympic gymnastics stars, and possessing explicit images of children.
The attack underscored persistent problems at the federal Bureau of Prisons, including violence, short staffing and an inability to keep even its highest profile prisoners safe.
The Bureau of Prisons insists that there was adequate staffing at the prison where Nassar was stabbed, about 46 miles (74 kilometers) northwest of Orlando, though documents obtained by the AP show one-third of correctional officer positions remain unfilled at the prison.
In a statement Wednesday, the agency said it was "imperative that we increase our staffing levels" and said it was recruiting officers and using financial incentives to try to retain workers. Officials said they are also still working to "tackle the problem violence in our facilities" and have enhanced their security procedures, but would not provide details.
"The BOP takes seriously our duty to protect the individuals entrusted in our custody, as well as maintain the safety of correctional staff and the community," agency spokesperson Scott Taylor said.
McMillan is scheduled to be released from prison in May 2046, according to a Bureau of Prisons inmate database and court records, though that could change if he is charged and convicted of attacking Nassar.
McMillan was originally sentenced to more than 20 years in federal prison after pleading guilty in Wyoming to conspiracy to distribute methamphetamine in 2002. He had been expected to be released next year before his convictions for the Louisiana and Colorado prison attacks more than doubled his sentence.
McMillan arrived at the Coleman, Florida, penitentiary last December, according to records obtained by the AP. He'd spent the previous four years at a federal penitentiary in Tucson, Arizona, following stints at federal prisons in Allenwood, Pennsylvania, and adjacent to the Supermax lockup in Colorado, the records show.
Nassar was transferred to Coleman from the Tucson penitentiary in August 2018. His lawyers said he'd been assaulted within hours of being placed in general population at the Arizona prison.
const link = doc.createElement('link');
link.rel = 'stylesheet';
link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=50747257b890e014813016b79ece0fb2';
doc.head.appendChild(link);
doc.body.innerHTML = CONSENT_MESSAGE;
} else {
el.insertAdjacentHTML('afterend', CONSENT_MESSAGE);
}
});
}
function hidePrivacyMessage() {
// Remove from the main document
document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove());
// Remove from inside any iframes
document.querySelectorAll('iframe').forEach(iframe => {
const doc = iframe.contentDocument || iframe.contentWindow.document;
doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove());
});
}
function activateGatedScripts() {
// Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4)
const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4'));
// Activate scripts sequentially with a small delay to avoid timing issues
let delay = 0;
gatedScripts.forEach(function(placeholder, index) {
setTimeout(function() {
// Skip if already processed
if (placeholder.hasAttribute('data-cmp-processed')) {
return;
}
placeholder.setAttribute('data-cmp-processed', 'true');
const newScript = document.createElement('script');
newScript.type = 'text/javascript';
// Try new format first (data-cmp-src), then fall back to old format (data-src)
const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src');
if (src) {
newScript.src = src;
} else if (placeholder.textContent) {
// Inline script - just copy the content
newScript.textContent = placeholder.textContent;
}
// Handle new format attributes (data-cmp-attrs) - for both inline and external scripts
const attrs = placeholder.getAttribute('data-cmp-attrs');
if (attrs) {
const tempDiv = document.createElement('div');
tempDiv.innerHTML = '
<\/div>';
const tempAttrs = tempDiv.firstChild.attributes;
for (let i = 0; i < tempAttrs.length; i++) {
// For external scripts, allow defer/async. For inline scripts, skip them (not valid)
if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) {
newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value);
}
}
}
// Copy other attributes from old OneTrust format
for (let i = 0; i < placeholder.attributes.length; i++) {
const attr = placeholder.attributes[i];
// Skip attributes we've already handled or don't want to copy
if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) {
newScript.setAttribute(attr.name, attr.value);
}
}
placeholder.parentNode.replaceChild(newScript, placeholder);
// If external script, manually trigger window.onload handlers after it loads
// This handles widgets that use window.onload for initialization
if (src) {
newScript.addEventListener('load', function() {
// If page already loaded and script set a new onload handler, trigger it
if (document.readyState === 'complete' && window.onload) {
const originalOnload = window.onload;
window.onload = null; // Clear temporarily to prevent loops
originalOnload(); // Execute the handler
}
});
}
}, delay);
delay += 500; // 500ms delay between each script to allow full loading
});
}
cbsoptanon.onScriptsReady(function(cmp) {
cmp.ot.targetingAllowed(function(allowed) {
if (!allowed) {
showPrivacyMessage();
} else {
activateGatedScripts();
}
});
cmp.ot.awaitInitialConsent(function(consent_model) {
cmp.ot.addOnConsentChangedHandler(function() {
cmp.ot.targetingAllowed(function(allowed) {
if (allowed) {
hidePrivacyMessage();
activateGatedScripts();
} else {
showPrivacyMessage();
}
});
});
});
});
Larry Nassar was stabbed after making a lewd comment watching Wimbledon, source says
/ AP
A prisoner suspected of stabbing Larry Nassar at a federal penitentiary in Florida said the disgraced former sports doctor provoked the attack by making a lewd comment while they were watching a Wimbledon tennis match on TV, a person familiar with the matter told The Associated Press.
The inmate, identified as Shane McMillan, was previously convicted of assaulting a correctional officer at a federal penitentiary in Louisiana in 2006 and attempting to stab another inmate to death at the federal Supermax prison in Florence, Colorado, in 2011, court records show.
McMillan attacked Nassar in his cell Sunday with a makeshift weapon, stabbing him multiple times in the neck, chest and back before four other inmates rushed in and pulled him off of Nassar, according to the person familiar with the matter.
Correctional officers assigned to the unit at the United States Penitentiary Coleman responded to Nassar's cell and performed what officials said were life-saving measures. He was taken to a hospital, where he remained in stable condition Wednesday with injuries including a collapsed lung.
Cell doors on most federal prison units are typically open during the day, letting prisoners move around freely within the facility. Because Nassar was attacked in his cell, the incident was not captured on surveillance cameras, which only point at common areas and corridors.
McMillan, 49, told prison workers that he attacked Nassar after the sexually abusive ex-U.S. gymnastics team doctor made a comment about wanting to see girls playing in the Wimbledon women's match, the person said.
The person was not authorized to publicly discuss details of the attack or the ongoing investigation and did so on the condition of anonymity.
Messages seeking comment were left with lawyers who've represented McMillan in his past cases.
Sunday's attack was the second time Nassar has been assaulted in federal custody. He is serving decades in prison for sexually abusing athletes, including college and Olympic gymnastics stars, and possessing explicit images of children.
The attack underscored persistent problems at the federal Bureau of Prisons, including violence, short staffing and an inability to keep even its highest profile prisoners safe.
The Bureau of Prisons insists that there was adequate staffing at the prison where Nassar was stabbed, about 46 miles (74 kilometers) northwest of Orlando, though documents obtained by the AP show one-third of correctional officer positions remain unfilled at the prison.
In a statement Wednesday, the agency said it was "imperative that we increase our staffing levels" and said it was recruiting officers and using financial incentives to try to retain workers. Officials said they are also still working to "tackle the problem violence in our facilities" and have enhanced their security procedures, but would not provide details.
"The BOP takes seriously our duty to protect the individuals entrusted in our custody, as well as maintain the safety of correctional staff and the community," agency spokesperson Scott Taylor said.
McMillan is scheduled to be released from prison in May 2046, according to a Bureau of Prisons inmate database and court records, though that could change if he is charged and convicted of attacking Nassar.
McMillan was originally sentenced to more than 20 years in federal prison after pleading guilty in Wyoming to conspiracy to distribute methamphetamine in 2002. He had been expected to be released next year before his convictions for the Louisiana and Colorado prison attacks more than doubled his sentence.
McMillan arrived at the Coleman, Florida, penitentiary last December, according to records obtained by the AP. He'd spent the previous four years at a federal penitentiary in Tucson, Arizona, following stints at federal prisons in Allenwood, Pennsylvania, and adjacent to the Supermax lockup in Colorado, the records show.
Nassar was transferred to Coleman from the Tucson penitentiary in August 2018. His lawyers said he'd been assaulted within hours of being placed in general population at the Arizona prison.
In:
Larry Nassar stabbed multiple times in prison
(01:59)
96-year prison sentence for gunman who fired into Northern Colorado bar
San Jose man charged with murdering, sexually abusing "Baby Jaxon," 2-year-old foster child
Man in custody as deputies investigate stabbing death of his father's girlfriend