As Seen On

Recognized By
8 Facts About ARS §13-2405: Compounding a Felony Understanding the consequences of compounding, or concealing a felony.
In the intricate web of criminal law, certain statutes stand out for their complexity and the significant impact they have on the accused and the accuser alike. ARS §13-2405, pertaining to compounding a felony, is one such statute that merits a closer look. At Tamou Law Group PLLC, we believe in empowering our clients and the wider community with knowledge about the law and its ramifications. This blog aims to dissect ARS §13-2405, unraveling its nuances and implications for individuals who might unwittingly find themselves entangled in legal proceedings.1
What is Compounding a Felony?
Compounding a felony involves agreeing not to prosecute a felon, or not to inform legal authorities about a felony, usually in exchange for money or other benefits. This action, essentially a concealment of the felony, is a criminal offense under Arizona law.2
The Legal Framework: ARS §13-2405
Arizona Revised Statutes (ARS) §13-2405 makes it clear that compounding is illegal. The statute specifies that a person commits this offense if they accept or agree to accept any benefit upon an agreement or understanding that they will conceal a felony, or will not prosecute or give evidence regarding a felony.3
Understanding “Benefit”
The term ‘benefit’ as used in this context is broad and encompasses anything regarded as gain or advantage to the person receiving it, including not only monetary gains but also other favors or advantages.4
Potential Penalties
The penalties for compounding a felony can be severe, reflecting the seriousness with which the legal system views the act of concealing felonies. Convictions can lead to fines, imprisonment, or both, depending on the severity and specifics of the case.5
The Importance of Intent
For a charge of compounding a felony to stick, the prosecution must prove that the accused had the intent to conceal the felony in exchange for a benefit. This aspect of intent is crucial in legal proceedings concerning ARS §13-2405.6
Exceptions and Defenses
There are exceptions and possible defenses to a charge of compounding a felony. For instance, if a person was coerced into concealing the felony or if they genuinely were unaware that a felony had been committed, these factors could significantly impact the outcome of the case.7
Impact on Professional and Personal Life
Beyond the legal consequences, being charged with or convicted of compounding a felony can have far-reaching effects on an individual’s professional life, reputation, and personal relationships. It underscores the importance of legal representation in navigating these charges.8
Seek Professional Legal Help
Given the complexities and potential consequences of ARS §13-2405, it’s imperative to seek professional legal assistance if you find yourself involved in a situation related to compounding a felony. At Tamou Law Group PLLC, we have experience in providing robust legal representation tailored to the unique circumstances of each case.
In Conclusion
Compounding a felony is a serious offense under Arizona law, with wide-ranging implications for those involved. Understanding the intricacies of ARS §13-2405 is crucial for anyone facing such charges or for those who wish to be informed about the legal landscape in Arizona. If you or someone you know is dealing with issues related to compounding a felony, contact Tamou Law Group PLLC at 623-321-4699. Our team of experienced attorneys is committed to defending your rights and securing the best possible outcome for your case.
Awards & Recognition
Our recognition for Phoenix DUI defense is independently verified, click any award to confirm it:
- National Trial Lawyers Top 100
- National Trial Lawyers Top 40 Under 40
- Elite Lawyer 2026 – Criminal Defense
- Super Lawyers – Southwest
- National College for DUI Defense (NCDD)
When you are looking for the best Phoenix DUI lawyers, these are the independently verified credentials that matter, earned by Founding Attorney Michael Tamou and a full team of attorneys, including former prosecutors.
What Clients Say About Tamou Law
Real Google reviews from clients we have defended across Phoenix and Maricopa County. Every review is from a criminal defense client, never padded with non-legal work.
Two Arizona Offices, One Team
We serve all of Maricopa County and the surrounding area, with free, confidential consultations 24/7 by phone and in-person meetings at either office by appointment.
Case Results Disclaimer: The results described on this page are based on specific facts and circumstances and do not guarantee or predict a similar outcome in any future case. Every case is different. Past results do not guarantee future results. No attorney-client relationship is formed by viewing this page or submitting a contact form until a written fee agreement has been signed. Tamou Law Group, PLLC is licensed to practice law in the State of Arizona. This website is for informational purposes only and does not constitute legal advice.
(function() {
function customizeConsultForm() {
var form = document.querySelector('#consult-form');
if (!form) return false;
var fields = form.querySelectorAll('.gfield');
var emailField = null;
var didWork = false;
fields.forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var labelText = (label.textContent || '').trim().toLowerCase();
if (labelText.indexOf('best way to reply') !== -1 || labelText.indexOf('preferred contact') !== -1) {
field.classList.add('tlg-hide-field');
field.querySelectorAll('input').forEach(function(input) {
input.checked = false;
input.removeAttribute('required');
});
didWork = true;
}
if (labelText.indexOf('email') !== -1) {
emailField = field;
field.classList.add('tlg-email-required');
field.querySelectorAll('input[type="email"], input[type="text"]').forEach(function(input) {
input.setAttribute('required', 'required');
input.setAttribute('aria-required', 'true');
});
didWork = true;
}
});
var gform = form.tagName === 'FORM' ? form : (form.querySelector('form') || form.closest('form'));
if (!gform) gform = document.querySelector('#consult-form form, form[id^="gform_"]');
if (gform && !gform.dataset.tlgSourceBound) {
gform.dataset.tlgSourceBound = '1';
var pageUrl = window.location.href;
var pageTitle = document.title || 'Phoenix White Collar Defense Lawyers';
var pagePath = window.location.pathname;
var sourceTag = '[Source: ' + pageTitle.replace(/\s*[,|].*$/, '') + ' | ' + pagePath + ']';
['source_page', 'page_url', 'lander_url'].forEach(function(name) {
var h = document.createElement('input');
h.type = 'hidden';
h.name = name;
h.value = pageUrl;
gform.appendChild(h);
});
var hp = document.createElement('input');
hp.type = 'hidden';
hp.name = 'source_path';
hp.value = pagePath;
gform.appendChild(hp);
function findMessageField() {
var match = null;
form.querySelectorAll('.gfield').forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var t = (label.textContent || '').trim().toLowerCase();
if (t.indexOf('message') !== -1 || t.indexOf('comment') !== -1 || t.indexOf('detail') !== -1 || t.indexOf('describe') !== -1 || t.indexOf('tell us') !== -1 || t.indexOf('your story') !== -1) {
match = field.querySelector('textarea, input[type="text"]');
}
});
if (!match) match = form.querySelector('textarea');
return match;
}
function prependSource() {
var textarea = findMessageField();
if (textarea && textarea.value.indexOf('[Source:') === -1) {
textarea.value = sourceTag + '\n\n' + (textarea.value || '');
}
}
gform.addEventListener('submit', prependSource, true);
var submitBtns = gform.querySelectorAll('input[type="submit"], button[type="submit"], .gform_button');
submitBtns.forEach(function(btn) {
btn.addEventListener('click', function() {
setTimeout(prependSource, 0);
prependSource();
}, true);
});
}
var submitBtn = form.querySelector('input[type="submit"], button[type="submit"]');
if (submitBtn && emailField && !submitBtn.dataset.tlgBound) {
submitBtn.dataset.tlgBound = '1';
submitBtn.addEventListener('click', function(e) {
var emailInput = emailField.querySelector('input[type="email"], input[type="text"]');
if (emailInput && !emailInput.value.trim()) {
e.preventDefault();
emailInput.focus();
emailInput.style.borderColor = '#c62828';
emailInput.style.boxShadow = '0 0 0 3px rgba(198,40,40,.15)';
}
});
}
return didWork;
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', customizeConsultForm);
} else {
customizeConsultForm();
}
var attempts = 0;
var interval = setInterval(function() {
attempts++;
var done = customizeConsultForm();
if (done || attempts > 10) clearInterval(interval);
}, 500);
})();






