Skip to content
KitploitKITPLOIT
उपकरणब्लॉग
जमा करें
उपकरणब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
kali-nethunter-installer — फ्लैश करने योग्य इंस्टॉलर ZIP बनाता है जो Android पर एक मोबाइल पेन-टेस्टिंग वातावरण तैनात करते हैं, जिसमें kernel boot पैचिंग, rootfs एकीकरण, और TWRP/Magisk फ्लैशिंग समर्थन शामिल है। | Kitploit
उपकरण/GitLabGitLab/kalilinux/nethunter/build-scripts/kali-nethunter-installer
एंड्रॉइड सुरक्षाभेद्यता परीक्षण फ्रेमवर्कमोबाइल सुरक्षा
GitLabkalilinux/nethunter/build-scripts/kali-nethunter-installer

kali-nethunter-installer

फ्लैश करने योग्य इंस्टॉलर ZIP बनाता है जो Android पर एक मोबाइल पेन-टेस्टिंग वातावरण तैनात करते हैं, जिसमें kernel boot पैचिंग, rootfs एकीकरण, और TWRP/Magisk फ्लैशिंग समर्थन शामिल है।

रिपॉजिटरी देखें

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें
3541114 दिन पहलेKitploit द्वारा समीक्षित

Kali NetHunter इंस्टॉलर

यह Kali NetHunter इंस्टॉलर मूल रूप से सिर्फ एक ज़िप फ़ाइल है जो यहाँ मौजूद फ़ोल्डर लेआउट से build.py द्वारा उत्पन्न होती है।

Kali NetHunter इंस्टॉलर ज़िप बनाने के लिए नीचे दिए गए निर्देशों का पालन करें।

आपको बस अपने डिवाइस पर पूर्ण Kali NetHunter वातावरण और chroot के लिए इसे Recovery/TWRP (या Magisk) के माध्यम से फ्लैश करना है।

बूट इमेज पैचिंग स्क्रिप्ट AnyKernel3 पर आधारित है।

अधिक जानकारी के लिए, कृपया दस्तावेज़ीकरण पृष्ठ देखें।

निर्देश

वातावरण तैयार करना

कुछ भी बनाने से पहले, आपको कर्नेल रिपॉज़िटरी को इनिशियलाइज़ करना होगा।

पूरी सेटअप प्रक्रिया स्वचालित कर दी गई है। चूँकि Kali NetHunter कर्नेल का बाइनरी Git इतिहास अत्यंत विशाल है, हम प्रॉम्प्ट आने पर पूर्ण इतिहास के बजाय शैलो क्लोन (--depth 1) का उपयोग करने का सुझाव देते हैं:

root@kitploit:~
$ ./bootstrap.sh

यह Kali NetHunter Kernels को ./kernels/ में क्लोन करेगा

बिल्ड कमांड उदाहरण

Nexus 5 (hammerhead) के लिए बिल्ड का उदाहरण:

root@kitploit:~
$ ./build.py --kernel hammerhead --marshmallow
# OR
$ ./build.py -k hammerhead -6

कर्नेल इंस्टॉलर (यह जाँचने के लिए उपयोगी कि कर्नेल काम करता है) बनाना:

root@kitploit:~
$ ./build.py --kernel hammerhead --marshmallow --installer

कर्नेल इंस्टॉलर के बिना (सिर्फ ऐप्स अपडेट करने के लिए उपयोगी) बिल्ड करना:

root@kitploit:~
$ ./build.py --kernel hammerhead --marshmallow --no-installer

पूर्ण rootfs/chroot जोड़कर बिल्ड करना (या तो पहले से बनाई गई (डिफ़ॉल्ट) या खुद बनाई गई का उपयोग करें, फिर ./rootfs/kalifs-full-[arch].tar.xz में जोड़ें):

root@kitploit:~
$ ./build.py --kernel hammerhead --marshmallow --rootfs full

रिलीज़ संस्करण बनाएँ:

root@kitploit:~
$ ./build.py --kernel hammerhead --marshmallow --rootfs full --release 2024.3
$ ./build.py --kernel hammerhead --marshmallow --rootfs minimal --release daily

सभी बाहरी संसाधनों को डाउनलोड करने के लिए बाध्य करें:

root@kitploit:~
$ ./build.py --kernel hammerhead --marshmallow --force-download

अन्यथा, बिना कुछ बनाए "कैश" करने में सक्षम:

root@kitploit:~
$ ./build.py --force-download

अनइंस्टॉलर बनाना:

root@kitploit:~
$ ./build.py --kernel hammerhead --marshmallow --uninstaller

सहायता दिखाएँ:

root@kitploit:~
$ ./build.py -h
[i] Reading: kernels/devices.yml
usage: build.py [-h] [--generic ARCH] [--kernel KERNEL] [--kitkat] [--lollipop] [--marshmallow] [--nougat] [--oreo] [--pie] [--ten] [--eleven] [--twelve] [--thirteen] [--fourteen] [--fifteen] [--wearos]
                [--rootfs SIZE] [--force-download] [--uninstaller] [--installer] [--no-installer] [--no-branding] [--no-freespace-check] [--supersu] [--release VERSION]

Kali NetHunter Installer (Recovery flashable ZIP script builder)

options:
  -h, --help            show this help message and exit
  --generic ARCH, -g ARCH
                        Build a generic installer (modify ramdisk only)
  --kernel KERNEL, -k KERNEL
                        Allowed kernel IDs: a37-los a5ulte-cm a5ulte-tw a5xelte-tw a7xelte-los ailsa-ii alioth-los-ksu angler angler-los armani beryllium beryllium-los blueline bramble bullhead cancro-cm
                        cedric-los crosshatch davinci-miui dogo-cm dragon drg-los es2 eva-emui eva-los flo flo-cm flounder gemini4g-p1 gemini4g-p2 gemini4g-p3 gracelte graceltekor grouper gts4llte gts4lwifi
                        h830 h850 h918 h990 h990-los hammerhead hammerhead-los hammerhead-caf-los hero2lte-tw hero2lte-los hero2lte-oui hero2lte-kor-tw herolte-tw herolte-los herolte-oui herolte-kor-tw
                        hlte-can-cm hlte-can-tw hlte-dcm-tw hlte-eur-cm hlte-eur-tw hlte-eur-los hlte-kdi-tw hlte-kor-cm hlte-kor-tw hlte-spr-cm hlte-spr-tw hlte-vzw-tw honami-los htc-pmewl ido-los j53g-los
                        j5lte-los j5nlte-los j7y17lte-oui jalebi-los jfltexx-cm jiayus3a kiwi-cm klte-los klte-tw klte-chn-los klte-chnduo-los klte-duos-los klte-duos-tw klte-kdi-los klte-kdi-tw klte-kor-
                        los klte-skt-tw klte-spr-los klte-spr-tw klte-usc-tw klte-vzw-tw kminilte-los laurel-sprout-los lv517-los mako mako-cm manning manta markw-los mocha-cm on7xlte-oui onem7gpe onem8gpe
                        oneplus-nord-oos oneplus1-cm oneplus1-los oneplus2-oos oneplus2-cm oneplus2-los oneplus3-3t-oos oneplus3-3t-los oneplus3-oos oneplus3-v2-oos oneplus3-los oneplus3t-los oneplus3t-oos
                        oneplus5-oos oneplus5-cm oneplus5-los oneplus5-pa oneplus5-los-ksu oneplus5-pa-ksu oneplus6-oos oneplus6-los oneplus7-oos oneplus7-v2-oos oneplus8-oos oneplusx-cm osprey-los payton-
                        los pdx201-los pl2-los potter-los pyxis-los r8q-oui rmx1911-cos rmx1971 rmx2185-los rmx3031 s2-cm sakura-los santoni-miui mido-pe11 shamu shamu-los shieldtablet spacewar star2lte-los
                        sunfish surya-los suzuran-los ticwatchpro ticwatchpro3 us996 vayu victara-cm vienna yuga-cm z00e-los zeroflte-los zeroflte-tw zerolte-los zerolte-tw
  --kitkat, -4          Android 4.4
  --lollipop, -5        Android 5
  --marshmallow, -6     Android 6
  --nougat, -7          Android 7
  --oreo, -8            Android 8
  --pie, -9             Android 9
  --ten, -10            Android 10
  --eleven, -11         Android 11
  --twelve, -12         Android 12
  --thirteen, -13       Android 13
  --fourteen, -14       Android 14
  --fifteen, -15        Android 15
  --wearos, -w          Wear OS
  --rootfs SIZE, -fs SIZE
                        Build with Kali rootfs (full, minimal or nano)
  --force-download, -f  Force re-downloading external resources
  --uninstaller, -u     Create an uninstaller
  --installer, -i       Build only the kernel installer (boot-patcher)
  --no-installer        Build without the kernel installer (boot-patcher)
  --no-branding         Build without wallpaper or boot animation
  --no-freespace-check  Build without free space check
  --supersu, -su        Build with SuperSU installer included
  --release VERSION, -r VERSION
                        Specify NetHunter release version

अधिक उदाहरणों के लिए, कृपया दस्तावेज़ीकरण पृष्ठ देखें।

नया/असमर्थित डिवाइस कैसे जोड़ें

Kali NetHunter Kernels रिपॉज़िटरी में स्थित README.md देखें: https://gitlab.com/kalilinux/nethunter/build-scripts/kali-nethunter-kernels शुरुआत के लिए इनकी समीक्षा करना अच्छा रहेगा:

  • ./kernels/devices.yml (यहाँ)
  • स्वचालित पोर्टिंग (कर्नेल बिल्डर)
  • मैन्युअल पोर्टिंग
टूल डाउनलोड करें