Patriot Viper XTREME 5 32GB 8000MHz DDR5 RGB Desktop Gaming Memory Kit (16GBx2) - Patriot | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Patriot

Patriot Viper XTREME 5 32GB 8000MHz DDR5 RGB Desktop Gaming Memory Kit (16GBx2)

SKU: PVXR532G80C38K
R 22 199.00
Out of Stock

Featuring a unique snake head shape, matte finish coating and large RGB lightbar, the Viper Xtreme 5 combines strong performance and a unique look gamers can't find anywhere else. Created from high-quality aluminium materials, our heatshield is designed to last and be able to go the distance with...

Get Notified When Available

Enter your email and we'll notify you when this item is back in stock.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

Featuring a unique snake head shape, matte finish coating and large RGB lightbar, the Viper Xtreme 5 combines strong performance and a unique look gamers can't find anywhere else. Created from high-quality aluminium materials, our heatshield is designed to last and be able to go the distance with extreme performance.

Through improvements to our internal clock generation and memory timing circuits, the Viper Xtreme 5 delivers up to a ridiculous 8000MT/s, achieving and supporting the highest data transfer rates and frequencies of any Viper DRAM in our entire catalogue. The Viper Xtreme 5 supports Intel XMP 3.0 Ready overclock profiles.

The Viper Xtreme 5 is designed to operate at higher speeds with lower voltages without generating as much heat. This lower power consumption is possible due to the integrated high-quality PMIC which creates more room for overclocking without exceeding safe voltages and temperature limits. (Overclocking requires more power, so a high-quality power supply with adequate wattage and stability can help ensure stable and reliable overclocking.)

With On-die ECC, the Viper Xtreme 5 can correct single-bit errors and detect multi-bit errors, ensuring that data integrity, data accuracy and system reliability are maintained in the event of hardware errors or other issues in high-performance environments.

Elevate your rig's aesthetics with Viper Xtreme 5 DDR5 kit. Its dynamic RGB lightbar isn't just illumination – it's an artistic canvas. Sync lighting effects using Viper RGB Sync for a cohesive setup. Prefer Non-RGB? Choose sophistication with the variant. Unleash innovation, customization, and performance to redefine your gaming experience.

Take your RGB experience to unparalleled heights! Our DRAM products are fully compatible with the industry-leading Signal RGB software and officially licensed. Dive into a fully immersive gaming experience with dynamic lighting that perfectly mirrors your unique style.

FEATURES:

  • Viper Xtreme 5: The flagship DDR5 memory with professional-grade performance up to 8000MT/s
  • High-quality IC: Selected and screened for enhanced overclocking capabilities
  • 100% hand-tested: Fully tested and tuned profiles for maximum performance
  • Heatshield design: Aluminum Viper-head style heatshield, better performance and aesthetic for your Xtreme build
  • Unlocked PMIC: Unlocked power to enable full performance for XMP and beyond
  • Support for Intel XMP 3.0 and RGB App

SPECIFICATIONS:

  • Memory Type: DDR5
  • Form Factor: U-DIMM
  • Colour: Black
  • Capacity: 32GB (16GB x 2)
  • Speed: 8000MT/s
  • CAS Latencies: 38-48-48-84
  • Operating Voltage: 1.45v
  • Product Dimensions: 13.5 x 4.4 x 0.6 cm
  • Product Weight: 49g

WHAT'S IN THE BOX:

  • Patriot Viper XTREME 5 16GB 8000MHz DDR5 RGB Desktop Gaming Memory - Black x2
Brand Patriot
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity 32GB Kit (2x16GB)
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty Limited Lifetime
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

HIKSEMI Hiker 4GB 1600MHZ DDR3 UDIMM
HIKSEMI

HIKSEMI Hiker 4GB 1600MHZ DDR3 UDIMM

R 339.00

In Stock

Patriot Signature Line 32GB DDR5 5600MHz Desktop Memory
Patriot

Patriot Signature Line 32GB DDR5 5600MHz Desktop Memory

R 11 519.00

Out of Stock

Crucial 8GB 4800MHz DDR5 Desktop Memory
Crucial

Crucial 8GB 4800MHz DDR5 Desktop Memory

R 1 899.00

Out of Stock

Crucial 8GB 3200MHz DDR4 Desktop Memory
Crucial

Crucial 8GB 3200MHz DDR4 Desktop Memory

R 1 019.00

Out of Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!