This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Bands supported by ISPs in Kenya. | |
| 4G Bands | |
| Safaricom: 1,3,8,20,41,42,43 | |
| Airtel: 1,3,8,20 | |
| Telkom: 1,3,8,20. | |
| Faiba: 28 | |
| All supported 4G bands | |
| 1,3,8,20,28,41,42,43 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "command": "/home/op/go/bin/subdominator -l input -o output", | |
| "ext": "txt" | |
| } | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt update && sudo apt install apt-file -y && sudo apt-file update && sudo apt full-upgrade -y && sudo apt autoremove -y | |
| sudo apt install screen vim curl zip libpcap-dev -y | |
| mkdir -p ~/{Documents,Downloads,go/bin} | |
| cd Downloads | |
| wget "https://dl.google.com/go/$(curl https://go.dev/VERSION?m=text | head -n1).linux-amd64.tar.gz" | |
| sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf $(curl -s https://go.dev/VERSION?m=text | head -n1).linux-amd64.tar.gz | |
| # now to figure out how to add pd tools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .login-image { | |
| border-radius: 1.5em; | |
| } | |
| .test1 { | |
| background-color: bisque; | |
| } | |
| .btn1 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #dependencies for building and installing AFL++ on Fedora 32(tested) | |
| # you might to check the source files too if you cant build for include directories | |
| sudo dnf install clang glibc-static pixman-devel glib2-devel python3-devel python3-setuptools libtool automake flex bison llvm llvm-devel zlib-static glibc-static | |
| ref: | |
| 1. official docs -> https://github.com/AFLplusplus/AFLplusplus | |
| 2. dnf search | |
| 3. https://serverfault.com/questions/481859/usr-bin-ld-cannot-find-lz-but-libz-exists | |
| 4. https://stackoverflow.com/questions/16024978/usr-bin-ld-cannot-find-lc-while-compiling-with-makefile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !betting sites and sites from redirects | |
| * 1xbet.co.ke * block | |
| * sportpesa.co.ke * block | |
| * sportpesa.com * block | |
| * 0byv9mgbn0.com * block |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #simple script to upgrade between fedora releases | |
| sudo dnf upgrade --refresh --best --allowerasing -y | |
| #sudo dnf upgrade --refresh #you can alternately use this | |
| sudo dnf install dnf-plugin-system-upgrade | |
| sudo dnf system-upgrade download --releasever=30 #change that acording to the intended release | |
| sudo dnf system-upgrade reboot |