Three teens have been arrested by the Aurora Police Department following a nearly year-long investigation into a “sextortion” ring that targeted students at local schools.
The Aurora Police Department Internet Crimes Against Children Unit arrested 18-year-old Jamir Deante Bright Friday on charges of child exploitation and criminal extortion, both felonies. A 17-year-old and a 14-year-old, who both reside in Denver, were also arrested, according to a news release from the police department.
The juveniles face charges in Aurora Municipal Court and will not be identified due to their ages.
The arrests come nearly a year after an investigation opened in January after Aurora Police Department School Resource Officers received “numerous” reports of sextortion targeting students at several local schools, according to the release.
Sextortion is a form of exploitation where children are blackmailed through the threat of publishing an explicit image online. The extortion can also involve sharing sexually explicit images with others in exchange for money. The investigation determined victims were targeted with both types of sextortion in this case, police said.
Aurora police detectives, Homeland Security Investigations, the Colorado Bureau of Investigation and the Denver District Attorney’s Office completed the investigation through residential search warrants and multiple courts orders and subpoenas for online records. Cellphones and social media accounts were also searched to identify the three suspects, according to police.
Bright faces charges in the Arapahoe District Court and is out of custody on a $10,000 bond. He is due in court for a preliminary hearing on Jan. 10, where prosecutors will present evidence to a judge who will determine if it’s enough to send the case to trial.
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
Success! Thank you for subscribing to our newsletter.
function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);
nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}
function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[]\.,;:s@”]+(.[^()[]\.,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}
function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;
result.innerText = “”;
if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}
function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});
}
#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}
#successnsltr a {
color: white;
}
.hideblock {
display:none;
}
h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}
@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}