├── Makefile ├── README.md ├── lib ├── Makefile ├── gmp │ └── Makefile ├── libnet │ └── Makefile ├── libpcap │ └── Makefile ├── mpfr │ └── Makefile ├── ncurses │ └── Makefile ├── openssl │ └── Makefile └── zlib │ └── Makefile ├── package ├── Makefile ├── bind9 │ └── Makefile ├── busybox │ ├── .config │ └── Makefile ├── coreutils │ └── Makefile ├── gdb │ └── Makefile ├── htop │ └── Makefile ├── inetutils │ └── Makefile ├── iperf3 │ └── Makefile ├── masscan │ ├── Makefile │ └── patches │ │ └── pcap-stub.patch ├── mtr │ └── Makefile ├── nmap │ └── Makefile ├── openssh │ └── Makefile ├── socat │ └── Makefile ├── sshpass │ └── Makefile ├── strace │ └── Makefile └── tcpdump │ └── Makefile └── rules.mk /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/lib/gmp/Makefile -------------------------------------------------------------------------------- /lib/libnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/lib/libnet/Makefile -------------------------------------------------------------------------------- /lib/libpcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/lib/libpcap/Makefile -------------------------------------------------------------------------------- /lib/mpfr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/lib/mpfr/Makefile -------------------------------------------------------------------------------- /lib/ncurses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/lib/ncurses/Makefile -------------------------------------------------------------------------------- /lib/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/lib/openssl/Makefile -------------------------------------------------------------------------------- /lib/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/lib/zlib/Makefile -------------------------------------------------------------------------------- /package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/Makefile -------------------------------------------------------------------------------- /package/bind9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/bind9/Makefile -------------------------------------------------------------------------------- /package/busybox/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/busybox/.config -------------------------------------------------------------------------------- /package/busybox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/busybox/Makefile -------------------------------------------------------------------------------- /package/coreutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/coreutils/Makefile -------------------------------------------------------------------------------- /package/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/gdb/Makefile -------------------------------------------------------------------------------- /package/htop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/htop/Makefile -------------------------------------------------------------------------------- /package/inetutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/inetutils/Makefile -------------------------------------------------------------------------------- /package/iperf3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/iperf3/Makefile -------------------------------------------------------------------------------- /package/masscan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/masscan/Makefile -------------------------------------------------------------------------------- /package/masscan/patches/pcap-stub.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/masscan/patches/pcap-stub.patch -------------------------------------------------------------------------------- /package/mtr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/mtr/Makefile -------------------------------------------------------------------------------- /package/nmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/nmap/Makefile -------------------------------------------------------------------------------- /package/openssh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/openssh/Makefile -------------------------------------------------------------------------------- /package/socat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/socat/Makefile -------------------------------------------------------------------------------- /package/sshpass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/sshpass/Makefile -------------------------------------------------------------------------------- /package/strace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/strace/Makefile -------------------------------------------------------------------------------- /package/tcpdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/package/tcpdump/Makefile -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/ubiquity-toolkit/HEAD/rules.mk --------------------------------------------------------------------------------