Setup bugbounty hunting env on termux :D
The termux in my memory was Linux on Android, which was only available with some Linux commands.
So I usually remember using it on rooting device. Recently, I found out that packages such as rust and golang can be used on termux among tweets from 1ndianl33t, so I finally set them up on the test phone today. writing note for me :D
제 기억속의 termux는 일부 리눅스 명령 사용만 가능한 안드로이드 위의 리눅스였습니다.
그래서 보통 루팅과 함께 사용했던 기억이 있네요. 최근에 1ndianl33t 와의 트윗 중 termux에서 rust, golang 등의 패키지 사용이 가능한걸 알고 오늘에서야 테스트폰에 세팅을 진행했습니다. 메모 차원에서 작성해둡니다 :D
Oneline script for me
pkg install rust perl make golang git vim nmap htop ;
cargo install findomain;
go get -v github.com/projectdiscovery/naabu/cmd/naabu;
go get -u github.com/tomnomnom/meg;
go get -v github.com/projectdiscovery/subfinder/cmd/subfinder;
go get -u github.com/tomnomnom/qsreplace;
go get -u github.com/tomnomnom/httprobe;
go get github.com/haccer/subjack;
go get -u github.com/tomnomnom/assetfinder;
git clone https://github.com/hahwul/dalfox ; cd dalfox ; go install;
git clone https://github.com/tomnomnom/hacks ;
Install important package(rust, perl, make, golang, git)
pkg install rust perl make golang git vim
Install RUST base tool
cargo install findomain
etc...
Install golang base tool
go get -u github.com/tomnomnom/meg
go get -v github.com/projectdiscovery/subfinder/cmd/subfinder
go get -u github.com/tomnomnom/qsreplace
# etc...
building golang package
git clone https://github.com/hahwul/dalfox
cd dalfox
go build
./dalfox
or go install
# etc...