├── .gitconfig ├── .gitignore ├── .vscode └── tasks.json ├── docker └── DockerSetup.txt ├── go.mod ├── images ├── Africana Framework.png └── John 3:16.png ├── main.go ├── makefile ├── readme.md ├── readme ├── changelog.md ├── conduct.md ├── credits.md └── license.md └── src ├── agreements ├── agreements.go └── go.mod ├── core ├── afrconsole │ ├── afrconsole.go │ └── go.mod ├── banners │ ├── banners.go │ └── go.mod ├── bcolors │ ├── bcolors.go │ └── go.mod ├── menus │ ├── go.mod │ └── menus.go ├── setups │ ├── go.mod │ └── setups.go ├── subprocess │ ├── go.mod │ └── subprocess.go └── utils │ ├── go.mod │ ├── unix_utils.go │ ├── utils.go │ └── win_utils.go ├── crackers ├── crackers.go └── go.mod ├── credits ├── credits.go └── go.mod ├── exploits ├── exploits.go └── go.mod ├── networks ├── go.mod └── networks.go ├── phishers ├── go.mod └── phishers.go ├── scriptures ├── go.mod └── scriptures.go ├── securities ├── go.mod └── securities.go ├── webcrackers ├── go.mod └── webcrackers.go └── wireless ├── go.mod └── wireless.go /.gitconfig: -------------------------------------------------------------------------------- 1 | [core] 2 | longpaths = true -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | /build 3 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /docker/DockerSetup.txt: -------------------------------------------------------------------------------- 1 | # comming soon 2 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/go.mod -------------------------------------------------------------------------------- /images/Africana Framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/images/Africana Framework.png -------------------------------------------------------------------------------- /images/John 3:16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/images/John 3:16.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/main.go -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/makefile -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/readme.md -------------------------------------------------------------------------------- /readme/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/readme/changelog.md -------------------------------------------------------------------------------- /readme/conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/readme/conduct.md -------------------------------------------------------------------------------- /readme/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/readme/credits.md -------------------------------------------------------------------------------- /readme/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/readme/license.md -------------------------------------------------------------------------------- /src/agreements/agreements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/agreements/agreements.go -------------------------------------------------------------------------------- /src/agreements/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module agreements.go 4 | -------------------------------------------------------------------------------- /src/core/afrconsole/afrconsole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/core/afrconsole/afrconsole.go -------------------------------------------------------------------------------- /src/core/afrconsole/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module afrconsole.go 4 | -------------------------------------------------------------------------------- /src/core/banners/banners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/core/banners/banners.go -------------------------------------------------------------------------------- /src/core/banners/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module banners.go 4 | -------------------------------------------------------------------------------- /src/core/bcolors/bcolors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/core/bcolors/bcolors.go -------------------------------------------------------------------------------- /src/core/bcolors/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module bcolors.go 4 | -------------------------------------------------------------------------------- /src/core/menus/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module menus.go 4 | -------------------------------------------------------------------------------- /src/core/menus/menus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/core/menus/menus.go -------------------------------------------------------------------------------- /src/core/setups/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module setups.go 4 | -------------------------------------------------------------------------------- /src/core/setups/setups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/core/setups/setups.go -------------------------------------------------------------------------------- /src/core/subprocess/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module subprocess.go 4 | -------------------------------------------------------------------------------- /src/core/subprocess/subprocess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/core/subprocess/subprocess.go -------------------------------------------------------------------------------- /src/core/utils/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module utils.go 4 | -------------------------------------------------------------------------------- /src/core/utils/unix_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/core/utils/unix_utils.go -------------------------------------------------------------------------------- /src/core/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/core/utils/utils.go -------------------------------------------------------------------------------- /src/core/utils/win_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/core/utils/win_utils.go -------------------------------------------------------------------------------- /src/crackers/crackers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/crackers/crackers.go -------------------------------------------------------------------------------- /src/crackers/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module crackers.go 4 | -------------------------------------------------------------------------------- /src/credits/credits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/credits/credits.go -------------------------------------------------------------------------------- /src/credits/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module credits.go 4 | -------------------------------------------------------------------------------- /src/exploits/exploits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/exploits/exploits.go -------------------------------------------------------------------------------- /src/exploits/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module exploits.go 4 | -------------------------------------------------------------------------------- /src/networks/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module networks.go 4 | -------------------------------------------------------------------------------- /src/networks/networks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/networks/networks.go -------------------------------------------------------------------------------- /src/phishers/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module phishers.go 4 | -------------------------------------------------------------------------------- /src/phishers/phishers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/phishers/phishers.go -------------------------------------------------------------------------------- /src/scriptures/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module scriptures.go 4 | -------------------------------------------------------------------------------- /src/scriptures/scriptures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/scriptures/scriptures.go -------------------------------------------------------------------------------- /src/securities/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module securities.go 4 | -------------------------------------------------------------------------------- /src/securities/securities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/securities/securities.go -------------------------------------------------------------------------------- /src/webcrackers/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module webcrackers.go 4 | -------------------------------------------------------------------------------- /src/webcrackers/webcrackers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/webcrackers/webcrackers.go -------------------------------------------------------------------------------- /src/wireless/go.mod: -------------------------------------------------------------------------------- 1 | //John 3:16 2 | 3 | module wireless.go 4 | -------------------------------------------------------------------------------- /src/wireless/wireless.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0jahsm0ntar1/africana-framework/HEAD/src/wireless/wireless.go --------------------------------------------------------------------------------