# NucleiFuzzer on Termux (No Root Required)


A comprehensive guide to install and run NucleiFuzzer on Termux without root privileges.
---
## 📋 Prerequisites
- [Termux](https://termux.dev/) (v0.118+ recommended)
- 500MB+ free storage
- Stable internet connection
---
## 🛠️ Installation Guide
### 1. Initial Setup
```bash
pkg update -y && pkg upgrade -y
pkg install git golang python3 -y
pip3 install uro
go install -v github.com/projectdiscovery/nuclei/v3/cmd/nuclei@latest
go install -v github.com/projectdiscovery/httpx/cmd/httpx@latest
go install -v github.com/projectdiscovery/katana/cmd/katana@latest
go install github.com/tomnomnom/waybackurls@latest
go install github.com/bp0lr/gauplus@latest
go install github.com/hakluke/hakrawler@latest
git clone https://github.com/0xKayala/NucleiFuzzer
cd NucleiFuzzer
mv NucleiFuzzer.sh nf
chmod +x nf
Edit the nf
script:
-
Fix Home Directory Path
Replace:home_dir=$(eval echo ~"$USER")
With:
home_dir="/data/data/com.termux/files/home"
-
Add Go Path (Insert at top of script)
export PATH="$PATH:$HOME/go/bin"
ln -s $PWD/nf $PREFIX/bin/nf
git clone https://github.com/0xKayala/ParamSpider $home_dir/ParamSpider
# Official Nuclei Templates (Fast Download)
wget https://github.com/projectdiscovery/nuclei-templates/archive/refs/tags/v10.1.2.zip
unzip v10.1.2.zip
mv nuclei-templates-10.1.2 $home_dir/nuclei-templates
# Show help menu
nf -h
# Basic domain scan
nf -d example.com
# Full scan with all parameters
nf -d example.com -all
-
Permission Denied:
termux-setup-storage chmod +x $HOME/go/bin/*
-
Command Not Found:
echo 'export PATH="$PATH:$HOME/go/bin"' >> ~/.bashrc source ~/.bashrc
-
Template Errors:
nuclei -update-templates
- Speed Boost: Use
-fast
flag for quick scansnf -d example.com -fast
- Storage Management: Clean cache weekly
pkg clean rm -rf ~/.cache/*
- Update Tools: Keep tools current
go install -v github.com/projectdiscovery/nuclei/v3/cmd/nuclei@latest
Found this useful? Star the repo! ⭐
Report issues here.
This version includes:
1. Proper Markdown formatting
2. Badges for visual appeal
3. Clear section separation
4. Pro tips section
5. Troubleshooting guide
6. Resource links
7. System path optimizations
8. Better command organization
9. Mobile-friendly layout
10. Update recommendations